[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

/dpt/ - Daily Programming Thread

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 343
Thread images: 40

File: dpt programming club.png (890KB, 1550x1123px) Image search: [Google]
dpt programming club.png
890KB, 1550x1123px
old thread: >>60870341

What are you working on, /g/?
>>
File: 1452471092796.png (372KB, 1280x720px) Image search: [Google]
1452471092796.png
372KB, 1280x720px
>>60874998
Delete this fag shit.
>>
I love taking it up the ass. Can you guess what my favorite programming language is?
>>
>>60875018
Rust?
>>
>>60874998
>read each panel right to left
>but read pages from left to right
what is this horse shit
>>
>>60875018
JavaScript
>>
>>60875018
FAGLAB
>>
File: chen_rape_face.png (54KB, 241x235px) Image search: [Google]
chen_rape_face.png
54KB, 241x235px
>>60874998
Post more of this fag shit.
>>
write a function which generates a string n characters long consisting of only the prime numbers in sequential order

ex:
n=12
'2357911131719'
>>
>>60875057
What if you truncate a prime number? Also
>still baiting dpt into doing your homework
>>
>>60874998
Why does she have a key around her neck?
>>
>>60875071
>she
It obviously is the key to the programming club room.
>>
>>60875071
To unlock your heart, anon
>>
>>60875057
111 isn't prime (3×37).

Or I'm misunderstanding the problem, and it is actually stupidly simple.
>>
>>60875057
What happens if you ask for a 13-character string?
>>
>>60875071
she wears the key to your heart on her chest.
>>
>>60875091

That's 11 and 13 concatenated.
>>
>>60875091
That's 11 and 13 you dumb monkey.
>>
>>60875104
But 113 is prime, and still contains 11 and 13 in sequential order, as substrings. I thought it might be something fancy like that, where each substring needs to be prime too.

But it sounds like it is actually just a stupidly simple homework problem.
>>
>>60875140
Are you only pretending to be retarded?
>>
>>60875064
not homework. actually was the equivalent of a fizzbuzz test.

here was my solution:

length_of_string=25

#create a string n characters long composed of the first prime numbers in order
class PrimeStringSieve():

#estimate of highest prime number to search for
SEEMINGLY_MAGIC_CONSTANT=3.1415

_outString=''

def __init__(self,StrLengthToGen):
def sieveSize(str_length):
return self.SEEMINGLY_MAGIC_CONSTANT * str_length + 1
def toString(array):
string=''
for each in array:
string+=str(each)
return string
def sieve(size):
array = [True] * size
for each in xrange(3,int(size**0.5)+1,2):
if array[each]:
array[each*each::2*each]=[False]*((size-each*each-1)/(2*each)+1)
return [2] + [each for each in xrange(3,size,2) if array[each]]
self._outString = toString(sieve(int(sieveSize(StrLengthToGen))))

def fetchString(self):
return self._outString[:50]

zz=PrimeStringSieve(length_of_string)


print zz.fetchString()
>>>2357111317192329313741434
>>
>>60875071
Cock cage.
>>
>>60874998
sauce manga on image please
>>
gradating in december, when should I start applying for jobs?
>>
>>60875018
A girly language like Java or Cobol.
>>
>>60875057
char* primestr(int size)
{
char* primes = calloc(size, 1);
int* sieve = calloc(size, sizeof(int));
int head = 0;
for(int i=2; i<size; ++i) {
if(sieve[i]) {
continue;
} else {
for(int j=i; (j+=i) < size;) sieve[j] = 1;
int inc = sprintf(&primes[head], "%d", i);
if((head+=inc) > size) break;
}
}
return primes;
}
>>
>>60875397
Forgot to free sieve, and forgot to add one to the breaking to ensure no overflow when the number of digits increases. It works, though.
>>
>>60875397

>calloc
why
>>
>>60875454
zeroes the array without memset, doesn't require me to explicitly multiply by size of int
>>
more of a scripting question, in windows cmd

I have a script executing programs in a sequence, and one of the programs prints a load of output including a key word or string that if printed i'd like NOT proceed with further executions in the script

how do i catch that?
>>
>>60875465
Edit the script, or maybe run it in a debugger and step thru.
>>
File: 1468453553434.jpg (186KB, 665x1000px) Image search: [Google]
1468453553434.jpg
186KB, 665x1000px
>>60875057
I couldn't be bothered to make it cleaner, this is dumb.
int is_prime(size_t n)
{
if (n < 2)
return 0;
else if (n == 2)
return 1;
else
{
size_t i;
for (i = 2; i <= n; i++)
if ((n % i) == 0 && i != n)
return 0;
}
return 1;
}

char *primestr(size_t n)
{
size_t i = 0, size = 1;
while (size < n && ++i)
if (is_prime(i))
size += floor(log(n) / log(10)) + 1;
char *str = (char *) calloc(size, sizeof(char));
i = 0;
while (strlen(str) < n && ++i)
{
if (is_prime(i))
{
char buf[UCHAR_MAX] = { 0 };
sprintf(buf, "%zu", i);
strcat(str, buf);
}
}
return str;
}
>>
>>60875397
char* primestr(int size)
{
char* primes = calloc(size+1, 1);
int* sieve = calloc(size, sizeof(int));
int head = 0;
for(int i=2;; ++i) {
if(sieve[i]) {
continue;
} else {
for(int j=i; (j+=i) < size;) sieve[j] = 1;
head += snprintf(&primes[head], (size-head)+1, "%d", i);
if(head>=size) break;
}
}
free(sieve);
return primes;
}
>>
>>60875397
>Forgot to free sieve
Of course, C tard
>>
>>60875721

I don't even know why you'd bother to use freestore memory here when you can just allocate it on the stack
>>
>>60874998
Trying to work with libsensors. Is there a way to select only the CPU thermal sensors? I would be surprised if the library itself was capable of that, but maybe someone knows where I could find a list of all possible CPU sensor names?
>>
>>60875740
Apples and Oranges.

If I use stack it segfaults on very large values.
>>
Threadly reminder that dlang-chan has RAII; she's quite fast in execution and compilation; she's becoming fully memory-safe; and she's super duper cute! Say something nice about her, /dpt/!

>Tour
http://tour.dlang.org/
>Books
https://wiki.dlang.org/Books
>GC
https://dlang.org/blog/2017/04/28/automem-hands-free-raii-for-d/
https://wiki.dlang.org/Libraries_and_Frameworks#Alternative_standard_libraries_.2F_runtimes
>>
File: 14212750.jpg (47KB, 960x545px) Image search: [Google]
14212750.jpg
47KB, 960x545px
import std.algorithm, std.range, std.stdio;

void main()
{
//fib
recurrence!("a[n-1] + a[n-2]")(1, 1).take(10).writeln;

//fact
recurrence!((a, n) => a[n - 1] * n)(1).take(10).writeln;

// triangluar
static size_t genTriangular(R)(R state, size_t n)
{
return state[n - 1] + n;
}

recurrence!genTriangular(0).take(10).writeln;
}

$ ./main
[1, 1, 2, 3, 5, 8, 13, 21, 34, 55]
[1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880]
[0, 1, 3, 6, 10, 15, 21, 28, 36, 45]
>>
>>60875721
>Freeing memory
>Before the program closes
Aaaaaaaye
>>
>>60875918
>>60875928
back to
>>>/d/
>>
>>60875057
difficulty++;

Make it so that you have to match the string length n exactly, and the primes doesn't have to be sequential, but just in growing order.
example: n=5
worng: 235711 (6 digits, too large)
right: 23511
>>
>>60875928
Looking at programs written in dlang-chan gets me hard.
>>
>>60875935
I'd want to free it if I was using it in a loop or something.

>>60875943
sequential versus growing order? What's the difference?
>>
>>60875928
Can Rust and C++ do these?
>>
>>60875918
>>60875928
>>60875959
samefag pls
>>60875968
the difference is you can skip numbers.
>>
>>60875993
>samefag pls
Please, anon, not even I'm that pathetic. There's two dfags itt
>>
>>60875993
Only one me
>>
>>60875993
pythonfag pls
>>
>>60875993
idk, both of your requirements seem kinda dumb. Why would I want to skip numbers? Why is it harder to write the exact amount? The C code above does that pretty simply.

>>60875982
Rust can do these nicely using list stuffs that I haven't bothered to learn.
https://doc.rust-lang.org/std/iter/trait.Iterator.html
>>
>>60876041
>dumb
>I don't understand it therefore it's dumb
Read the example I gave.
The code above does not give a right answer.
>>
has anybody here had sex with a woman
>>
>>60876086
Why does this matter to you?
>>
>>60876086
having sex with women will make you a worse programmer
>>
>>60876097
i guess that answers the question
>>
>>60876086
Yes, your mum
>>
>>60875202
Now
>>
File: >her.png (273KB, 294x442px) Image search: [Google]
>her.png
273KB, 294x442px
>>60875071
>she
>>
File: DBzmfrQUMAADRB2.jpg (42KB, 502x557px) Image search: [Google]
DBzmfrQUMAADRB2.jpg
42KB, 502x557px
why is golang so godlike
>>
File: 18953445.jpg (72KB, 961x544px) Image search: [Google]
18953445.jpg
72KB, 961x544px
>>60876041
>https://doc.rust-lang.org/std/iter/trait.Iterator.html
That's a decent collection of higher order functions. Still lacks a few things tho. Maybe I'll try out Rust some day
>>
File: konachan-228329.jpg (4MB, 4830x2802px) Image search: [Google]
konachan-228329.jpg
4MB, 4830x2802px
>>60876086
>3DPD
>when glorious 2D exists
Laugh at this fag.
>>
>>60876086

Yes, why?
>>
>>60876226
He was probably just seeing who would lie.
>>
>>60875766
Anyone?
>>
>>60876086
I was raped by a faggy emo kid once, does that count?
>>
>>60876086
Yes.

I'm a girl by the way ;)
>>
>>60876393
fag
>>
>>60876393
Me too~
We're all lolis here!
>>
>>60876678
I don't even see the appeal of lolis, yet I can't help seeing a room full of them debating programming on a message board as anything other than incredibly fucking adorable
>>
>>60876700
As long as you think we're cute, it's all good. Though "debating" is an overly nice way to put it.
>>
Doing one of the labs from CS:App.
/* 
* getByte - Extract byte n from word x
* Bytes numbered from 0 (LSB) to 3 (MSB)
* Examples: getByte(0x12345678,1) = 0x56
* Legal ops: ! ~ & ^ | + << >>
/*


I was messing around and can do:
#include <stdio.h>

int main(void)
{
int a = 0x12345678;
int b = 0xFF; // Bit mask.
int n = 1; // The nth byte of 'a'.

b <<= (n * 8); // Shift the mask into position.

a &= b;

a >>= (n * 8); // Shift the nth byte to be LSB.

printf("%x\n", a);

return 0;
}


But multiplication using * isn't an allowed operation. What do, /dpt/?
>>
>>60876725
Think about what << does
>>
>>60876725
Multiplication by 8 is equivalent to left shifting by 3.
>>
File: vlcsnap-2017-05-31-16h27m37s529.png (880KB, 768x576px) Image search: [Google]
vlcsnap-2017-05-31-16h27m37s529.png
880KB, 768x576px
>>60874998
Hey guys new to programming as a whole so sorry if this is a dumb question. How can I decode DTMF signals from an audio input in python? I see a lot of solutions online but all of them only decode wav files, I need this to be done in real time.
>>
>>60876720
I know, I'm more enamoured with the image than the reality

And there's just this one over in the corner yelling about haskell

Speaking of fucking explain something to me here about the functional fags

I'm a diehard lisper, I love lisp, I mean I REALLY love lisp, out of all the languages I've ever written a line in half of them are lisps, I know Scheme, Clojure, Racket, Common Lisp, I use fucking emacs for a reason

I do me some functional programming, I gets it

What I don't quite gets is why these memers gotta come all up in here ranting about their monads and bashing mutable variables and object orientation

It's just a different way to do things

Coming from a guy who will tolerate
(((((((((((((((((((((((((((((((((((((())))))))(((((((((()))))))))))))(((((((((((((((((((((((((((+ 2 2)))))))))))))))((((((((((()))))))))))))))))))))))(((((((((((((())))))))))))))))))))


I just don't get it
>>
>>60876802
>Reddit spacing
>>
>>60876840
don't bully daiz, anon
>>
How the fuck do you declare a new type and then create an array of that type in javascript?
>>
>>60876802
>What I don't quite gets is why these memers
This is your first mistake.
>>
File: trash.png (143KB, 1363x717px) Image search: [Google]
trash.png
143KB, 1363x717px
>>60874998
Anyone know why the fuck Netbeans is such a piece of bloated trash? I'm trying to work through this MOOC but the entire time it's been constantly freezing up for 10-30 seconds at a time or just completely crashing. I tried turning off some of the 50+ plugins it had, but every time it said it would have to disable the 2-3 plugins that I actually need due to dependency issues or whatever. It's really driving me fucking crazy, I want to do the second part of the course but I can't deal with this shit anymore, it's killing my productivity to have to sit there waiting for it to unfreeze every time I type a bit too fast or run something. Seriously, even a "hello world" freezes it for a good 20 seconds before running.

>inb4 "lmao java"
your gay
>>
>>60875057
import primes

def cat_primes(length) -> str:
s = ''
for i in primes.sieve((length << 1 ) + length):
s += str(i)
if len(s) >= length:
return s[:length]

Hard to establish an accurate bound on the sieve.
>>
>>60876912
Netbeans is written in Java, Java has GC, GCs make applications pause, use a language without GC, like C/C++ or Rust
>>
>>60876912
Try literally any other IDE?
>>
>>60875707
Why not alloca now?
>>60875057
How long a string can you generate where if you pop the front of the string it remains a prime until its an empty string or <=2?
How would CS people approach this problem? I expect it to be stupid short.
>>
>>60876941
I would but you gotta use this netbeans plugin to turn in assignments for the course. Normally I wouldn't care but you can't access new assignments until you turn in something like 95% of the ones from the previous week.
>>60876932
Yeah C is pretty nice, I gave C++ a try for a while but it's that's a massive fucking language, I don't even have foundational knowledge, I wanted something dumber.
>>
>>60876959
Bonus:
Any base.
>>
File: Untitled.png (1KB, 118x101px) Image search: [Google]
Untitled.png
1KB, 118x101px
>>60876912
saved
>>
>>60876959
>How long a string can you generate where if you pop the front of the string it remains a prime until its an empty string or <=2?
>How long a string can you generate where if you pop the front of the string it remains a prime until its an empty string or <=2?
Well, if you consider 2 cat 3 = 23, and is prime, and 23 cat 5= 235 and is not prime, the length is 2 ("23"), or 3 ('235") if starting from first non-prime string. No prime besides 5 has its last digit ending in 5.
>>
File: 1496950420231.jpg (411KB, 600x1602px) Image search: [Google]
1496950420231.jpg
411KB, 600x1602px
>>60876912
Good work blocking out your name, Caleb
>>
How can I learn to write nice, modern and idiomatic C++?
>>
>>60876912
Software for software developers is among the worst software on the planet. Strangely enough.
>>
>>60874998
Fuck off with your faggot shit back to >>>/lgbt/
>>
>>60876959
1061 is the highest I can think of right now.
I expect it to be very short too. So I'd just evaluate primes as you go.
>>
>>60875103
>>60875104
>>60875151
the code monkey is you
>>
>>60876912
i can relate, caleb
>>
File: groping the keions.jpg (892KB, 1672x2221px) Image search: [Google]
groping the keions.jpg
892KB, 1672x2221px
I'm doing some coding challenges to teach myself javascript, is this good practice?
If I was doing this in a C-like, I'd just make a simple anonymous struct array and sort it in place, but apparently this isn't possible in JS, it forces you to create a bunch of redundant intermediate arrays.

function order(words)
{
var find = function(str) {
for (var i = 0; i < str.length; i++)
if (str[i] >= '0' && str[i] <= '9')
return parseInt(str[i] - '0');
return 0;
};
var arr = [], ret = [];
var sp = words.split(" ");
for (var i = 0; i < sp.length; i++)
arr.push({ idx: find(sp[i]), str: sp[i] });
arr.sort(function(a, b) { return a.idx - b.idx; });
for (var i in arr)
ret.push(arr[i].str);
return ret.join(" ");
}
...
console.log(order("is2 Thi1s T4est 3a"));
Thi1s is2 3a T4est
>>
>>60877220
DFC a best!
With regards to your problem: there's probably a better way.
>>
>>60876763
>>60876771
I can't believe I had to ask you guys this.
>>
>>60877220
>inserting values with known indices, then sorting them based on these indices
>not just inserting them into their index right away
>>
>>60877312
What I have malformed input with multiple values having the same index?
>>
I just read about transactional memory. How the fuck is this shit more efficient than a simple lock?
It sounds inefficient and complicated as fuck.
>>
>>60876771
if bitshift x is equivalent to 2**x, how do you multiple/divide via bitshift by something other than a multiple of 2? e.g. 3, or 6?
>>
>>60877337
tranactional memory models use locks, they're just better suited to handle dozens of write operations per second.
>>
>>60877322
Then you stop computing and find who gave you that fucked input and humble his family
>>
>>60877341
That becomes much more complicated to do efficiently. Let the hardware deal with that.
>>
>>60877322
Give an error.
Doesn't change anything.
>>
What's a good JS framework for web applications? I was thinking about making an application that visually looks like a discord but for news aggregation.

Doesn't have to be JS btw. Just figured since it's the hottest meme language it'd be good to have some experience with one.
>>
>>60877322
>>60877401
Shit if you do it the way anon suggests you can even give a _helpful_ error message because you can tell them exactly where the word is in their input.
>>60877405
People here generally don't know web stuff
>>>/g/wdg might be more helpful.
>>
>>60875320
>COBOL
>Girly
>>
>>60877413
Thanks famalam
>>
>>60876959
alloca is identical to C99 vla and still can easily overflow
>>
File: POO.jpg (68KB, 709x895px) Image search: [Google]
POO.jpg
68KB, 709x895px
>>60877155
>>60877214
Umm, my name isn't Caleb. My name is Rajesh.
>>
>>60877382
>Let the hardware deal with that.
Do you mean that the compiler will optimize? What about for dynamic languages like Python? For example, bitshift right by 1 is faster than "// 2" in Python.
>>
>>60877414
My mom got yelled at by her faculty representative for suggesting she should take a cobol course. She was told she shouldn't waste her time or intellect with languages for morons like cobol. But she was literally yelled at. Which was weird. Times were different back then. But given she started programming with punch cards it's not that surprising I guess.
>>
>>60877405
Right now i'm using vue.js and flask/python

vue.js uses the virtual dom or something, like react and angularjs. Really nice to use, pretty good uptake in the community so tones to copy from.

https://github.com/vue-bulma/vue-admin

django is the most popular web framework for python, flask is the same but barebones w/ lots of community extension (for database/auth/etc anything that would be in django. I like it because it's easier to approach than django, literally just glue between werkzueg and jinja2

http://djangobook.com/tutorials/django-overview/
http://flask.pocoo.org/

other python frameworks (tornado, pyramid) are probably better if you're working on something bigger

http://www.tornadoweb.org/en/stable/
https://trypyramid.com/

I worked on this thing that used web2py, seems ok

i'm kind of learning some nodejs atm. it's okay and really nice only working in javascript. switching back and forth between python andjavascript is inconvienent, and trying to do websockets stuff

https://nodeschool.io/#workshoppers
>>
>>60877468
Who knows. Languages like python have entirely unpredictable performance.
I recall there being a difference between their range functions somehow. Like xrange() being massively faster than range(). Despite being rather similar in usage and intent.

>hardware deal with it
There could be many things she means here. But yes most likely your optimizer will deal with it.
That applies to shifting VS power of two multiplies.
It's only if both the values of the operation are dynamic and can't be value range optimized to determine that its a multiple by a power of two that you may want to choose to shift instead of multiply.
The easiest way to do things is always write wherever you know is the real intent. It's not that important to consider before you have a good reason to. It's a trivial change in any piece of code.
>>
>>60877413
>>60877401
>>60877374
Ok I won't do that, but I figured out how to eliminate redundancy in my little toy program.

Is this good javascript?
function order(words)
{
var idx = function(a, b) {
var find = function(str) {
for (var i = 0; i < str.length; i++)
if (str[i] >= '0' && str[i] <= '9')
return parseInt(str[i] - '0');
return 0;
};
return find(a) - find(b);
};
return words.split(" ").sort(idx).join(" ");
}
>>
>>60877447
>Caleb
>Not Glorious Kaleb
FAG
>>
>>60877529
In python2, range() made a list of the numbers in the range, while xrange() was an iterator. So range() took up a fuck ton of memory if the range was large.

Your programs only perform in unintended way if you're retarded. i.e. if you are checking for inclusion of a value in set, use a fucking set, not a list. I've seen a million retards do that.
>>
Golang!
>>
how can i design a database table ('trust') that has many users connected to it, but only one company associated with it?

e.g.
i have:

(company | company_id, etc ) <--> (trust | trust_id, company_id, user_id)

but in the above current form you can only have 1 user_id per trust -- how would i make it so there can be multiple user_ids associated with the single trust?
>>
>>60875018
No. I cannot.
Do you know why?
Because you just described all programmers.
>>
>>60878133
remove user_id from trust, make a third table that maps
(user_id, trust_id)
>>
>he "programs"
>>
Do you guys use cloud storage for your projects? What's the best one assuming I'm not storing large media files?
>>
>>60878228
If you have both a desktop and a laptop, your desktop can make a pretty good cloud storage service for your laptop. Just make sure to lock it down tight.
>>
File: 324873463.png (16KB, 310x330px) Image search: [Google]
324873463.png
16KB, 310x330px
>What are you working on, /g/?
Personal replacement for Yahoo pipes

It pulls entries from separate rss feeds, sorts them by date, cleans up the name and joins them back together.

Now I have to figure out how to put them back into a single rss feed and how to host it. Any ideas?
>>
File: 1497326151850.png (2MB, 880x624px) Image search: [Google]
1497326151850.png
2MB, 880x624px
burgersharts will defend this
>>
>>60878312
Arguably that could be correlated to the rise in instant information access, as compared to having to sit in the library researching through a dozen books over the course of a week in 1970's now you just type in something to google and have 30 different sources at your fingertips
>>
>>60878330
the bar is too low to be a "perfect" student, there is no distinction between a hardworking genius and a non-lazy mediocre person
>>
>>60877471
>>>60877414
>languages for morons like cobol

At my peak back when I took all the OT hours I could get, I made over $200K a year working exclusively in COBOL and SQL. The language is stupid easy but aside from working with ancient mainframes, it's useless.
>>
>>60878377
I know. It's clearly an economic gain. I don't think my mom would care too much about working where she does now vs the alternative. She finds joy in anything.
>>
Is using electron frowned upon?
>>
>>60878457
Yes. Greatly.
>>
>>60876165
>Still lacks a few things tho.
There's also this https://docs.rs/itertools/0.6.0/itertools/trait.Itertools.html
>>
>>60876912
(((Caleb)))
>>
>>60875199
yes, this
>>
>>60878291
print my_dictionary

prints them in order

but printing them like:
for key in my_dictionary.keys():
print my_dictionary[key]
print key

prints them in a random order?
How home?
>>
>>60878898
You shouldn't expect ordering from a hashmap.
>>
What is the best book for learning modern idiomatic C++ using at least C++11 but preferably C++14?
>>
>>60878921
I wasn't but it did it anyway.

for key in sorted(my_dictionary.keys()):


works
>>
>>60878935
None.
>>
>>60878935
D
>>
>>60878358
As soon as I hit grade 11 (when marks start counting toward uni entrance and school certificates), my marks went from C+ range to A range. And I don't think it was due to me applying myself more. Teachers want their students to look good.

My computing teacher gave my whole class 90%+ marks except for the kid who didn't hand in the work after two extensions. We all got 70%+ marks in an exam that every single one of use should have failed, myself included.
>>
Write a function which will use a vigenere cypher to encrypt the message "Attack at dawn while the mods are asleep" using the key 'faggot'. no need to block.

ill provide a solution:
letters='abcdefghijklmnopqrstuvwxyz '

def Vigenere(p,k):
c=''
for each in range(len(p)):
c += letters[(letters.index(p[each])+keyvalue) % len(letters)]
return c

>>Vigenere("Attack at dawn while the mods are asleep","faggot")
'gzzgiqfgzfjgbtfbnorkfznkfsujyfgxkfgyrkkv'
>>
File: dpt 2.png (890KB, 1550x1123px) Image search: [Google]
dpt 2.png
890KB, 1550x1123px
>>60875031
Christ's tits, I'm sorry already, I fixed it now. The layers were annoying as fuck to try to move together in GIMP so I just edited the exported png.

>>60875199
>>60878835
Hatsu Kokuhaku

>>60875012
No
>>
>>60879073
Are you going to make more of these? /dpt/ and /g/ in general need it desperately.
>>
>>60879091
Maybe if I can find some good ideas. When I was reading that manga it really struck out at me which is why I made it.
>>
>>60874998
/dpt/ - Designated Pajeet Thread
>>
>>60879126
You my friend, are the designated pajeet.
>>
>>60879116
Well hopefully some page, panel, manga, etc. will inspire you. I should probably get off my lazy ass and make some OC too. Anyway, thanks for your current efforts, anon.
>>
File: thinking.png (4KB, 225x225px) Image search: [Google]
thinking.png
4KB, 225x225px
>>60879126
As soon as the gatekeeper is away webshits and pajeets start flooding in

Really makes you think
>>
>>60879142
No problem. It's sort of heartwarming to see my OC pop up on its own in these threads. I'll be on the lookout from now on.
>>
>>60879138
Yes. I'm a pro in C and Haskell, I heard that these are admirable skills in the Designated Pajeet Thread.
>>
>>60879159
>pro
>Haskell
Can I get fries with that?
>>
im working on a masturbator 9000, i want to forget about womans and use all my time to my work, so i can get lots of money to spent on some projects i have
>>
>>60876932
I really can't understand why you'd choose to use Java for a fucking IDE. It's not like they've got great performance in C.
>>
>>60876912
try getting a computer from the last two decades
>>
>>60874998
Learn Lisp.
>>
File: jokerface.jpg (30KB, 576x432px) Image search: [Google]
jokerface.jpg
30KB, 576x432px
What are we going to do when every new API is designed by asshats of gen-fuckyouforme?

I swear vulkan is the result of an collective orgy+acid trip.
>>
>>60879384
>>60879359
>>
>>60879384
just use opengl whiny cunt. vulkan actually looks pretty great i'm just disappointed by the lack of support on mobile devices.
>>
>>60877471
>COBOL
>Morons
Sub 60 IQ Panjeet spotted
>>
What program should I make? learning and on c++.
>>
>>60879499
A program that generates ideas for programs to make
>>
>>60874998
Gotta love consistency
#include <stdio.h>
#include <stdlib.h>

int main ()
{
printf("Output: %d\n", (int)atoi((int)(int**)(float***)(float)(double)atoi(((5))))); // Output: 5
return 0;
}
>>
>>60875158
>SEEMINGLY_MAGIC_CONSTANT
Thats just Pi, aint it? Why name it something so retarded? Were you born a meme?
>>
>>60879511
thats a bit too easy unless i make it take names from github projects and splice them together
>>
I want to write a Snake clone in Haskell.
>>
>>60879535
Since when do people make github projects with logical names?
>>
>>60879620
do it
>>
>>60879621
using machine learning, make a program that figures out what a github project does and create a reccomendation on what the programmer should program by combining two compatible github projects
>>
/dpt/ - Dead programming thread
>>
Actually predSwitch is pretty inconvenient.
It's time for me to try out rust again. I believe their language has pattern matching and good iterator traits. And the build dependency system is pretty nice, I like it.
>>
Is Cordova for Windows platform dead?
I can't figure out how to start a blank project in Visual Studio.
Why is Microsoft tooling so crappy.
>>
>>60879634
Will it impress a potential employer?
>>
>>60879741
it can't hurt can it
>>
Working on making a tool for creating text adventure games. I'm working on user input at the minute.

Is using regular expressions the best way to go about processing arbitrary commands (e.g. go north, pick up rock), or is there some other way I don't know about?
>>
>>60879757
parser generator
parser monad
>>
>>60879749
Ok, on it. Is openGL a good idea or is there a simpler way to do the display part? I'm new to Haskell.
>>
>>60879793
Just found this, haven't tried it before but it looks alright
https://hackage.haskell.org/package/HGL-3.2.3.1/docs/Graphics-HGL.html
>>
>>60879793
https://wiki.haskell.org/Applications_and_libraries/Graphics
is the wiki page on it

there's also gloss
>>
>>60874998
gimme the 411 on OOP
>>
>>60879869
its oop. The name says all you need to know
>>
>>60879816
>>60879837
Cool, let's see if I can finish it by the end of the week.
>>
Where would I start on making a program that analyzes 4chan threads? I wanna get statistics like posts per minute, amount of dubs in thread, idk what else, any idea?
>>
>>60879888
Use python or R and the 4chan API.
>>
>>60879888
github.com/4chan/4chan-API
>>
>>60879888
>amount of dubs in thread
>>
>>60879888
what's your level of competence

btw anyone knows an android app that will automatically follow dpt through the day? i want it to be able to stay on dpt following all the new thread links or whatever. maybe something that onStart will display the newest thread with dpt in its title
>>
>>60879908
>greentext may may
just what are you implying, anon?
>>60879897
>>60879895
cool thanks
>>
File: Hannover Fist.jpg (55KB, 640x480px) Image search: [Google]
Hannover Fist.jpg
55KB, 640x480px
>>60879912
Pretty much a beginner, been doing different courses and just random shit the last few months. This should hopefully be a decent step towards getting better by actually creating something i'm mildly interested in.
>>
>>60879915
not everything is a meme you retard. you got dubs, but theyre wasted on someone like you
>>
>>60879966
>no, I got trips.
Nice double dubs tho
>>
>>60879966
>not everything is a meme
what did he mean by this?
>>
File: 1437663010095.jpg (93KB, 679x453px) Image search: [Google]
1437663010095.jpg
93KB, 679x453px
I started doing some work on an ai. I never did anything in that direction because I was always the opinion that we dont know enough about us and how we interact with the world on a philosophical level. but now, after watching maps of meaning from Jordan B. Peterson I actually conceptualised an ai that can find its way in a world and have interactions with objects in a primitive way (for example: kick it -> evaluate -> remember the outcome) and acts if it has a body. I intend this to use in a game, if I can make it work.
can someone tell em the current state of research in ai at the moment?
>>
https://stackoverflow.com/questions/25379300/preventing-undefined-macro

why does the shitty answer have more upvotes?
>>
File: completion-1.png (23KB, 555x268px) Image search: [Google]
completion-1.png
23KB, 555x268px
can someone tell me what font this is?
>>
>>60880695
Artisan #2
>>
I'm learning fortran, how in the fucking shitting cocks do implied DOs work?
>>
>>60875091
>111 isn't prime
It actually is if the Riemann hypothesis is true.
>>
>>60876802
>>60876906
>memers
Try visiting >>>/v/

>>60877405
>hottest meme
Try >>>/v/

>>60879533
>>60879966
>>60880275
>meme
Use >>>/v/
>>
I really don't like when people refer to themselves as a programmer.
>>
>>60880972
if they're employed as a programmer or similar you don't really have a case
>>
File: 1483533362703.png (94KB, 396x395px) Image search: [Google]
1483533362703.png
94KB, 396x395px
>>60879533
>pi is 3.1415
What did he mean by this?
>>
>>60881048
It's a Pytoddler
>>
>>60880972
This
I refer to myself as a code artisan
>>
>>60880972
Why would people refer to themselves as programmers?

The term is software engineer.
>>
>>60881104
>software "engineer"
kek
>>
>>60881003
What I don't like is it's a very broad term. A frontend dev is a programmer, but so is a someone who works on critical systems. Yet the difference in required expertise is huge.
Someone could say they work with money, and be cashier and a wall street trader as well.
Programming is just a tool, and it can really differ what it is used for.
>>
>>60880972
I call myself a code-memelosopher
>>
>>60881108
I'm not arguing that some forms of programming aren't more simplistic than others. But that is the literal classification for people who engineer software. And if you are arguing that it isn't engineering because you aren't making something physical you have shit in your skull.
>>
>>60881120
>memelosopher
>>>/v/
>>
>>60881145
praise kek
>>
>>60881150
Go back there
>>
>>60881158
no
>>
>>60879719
>Is Cordova for Windows platform dead?
Yes.

What are you actually trying to do?
>>
>>60874998
>acts like a girl when crossdressing
fucking dropped
i wanted the attitude AND the girly clothes
>>
File: anal beads.png (2KB, 403x31px) Image search: [Google]
anal beads.png
2KB, 403x31px
>>60879888
dude NuGet lmao

check my sick dubs algorithm

var dubsInDpt = Chan.GetThread("g", 60874998).Posts.Count(x => !x.PostNumber.ToString().TakeFromEnd(2).Distinct().Skip(1).Any());
>>
>>60879915
>may may
>greentext
I don't want reddit stink nearby, fuck off.
>>>/v/
>>
>>60881249
a math is fine, too

 var dubsInDpt = Chan.GetThread("g", 60874998).Posts.Count(x => x.PostNumber % 100 % 11 == 0);
>>
>>60877988
>if you are checking for inclusion of a value in set, use a fucking set
but what if you are checking for inclusion in an ordered multiset where the order is arbitrary? i.e. if it's in there you want to return specifically the first one that's in there
>>
File: 30.png (52KB, 162x164px) Image search: [Google]
30.png
52KB, 162x164px
why is antox so shit?
140 issues open currently with all manner of bugs, and years later it still doesnt have feature parity with desktop clients.
>>
>>60881306
>ordered multiset where the order is arbitrary
in other words a list?
then use a fucking list
this should not be a difficult concept
>>
>his language a shit
>>
File: 1495525724443.jpg (9KB, 185x152px) Image search: [Google]
1495525724443.jpg
9KB, 185x152px
>>60876802
>object orientation
How do you live with yourself?
>>
>>60881391
>hating on OOP
>>
>>60875057
primes = <infinite list comprehension>
foo n = take n $ concatMap show primes
>>
>>60881495
Who said this?
>>
>>60881516
<interactive>:1:10: error: parse error on input ‘<’
>>
>>60875928
>recurrence
is that a macro that has some supar specific functionality?
>>
File: rustfmt.png (26KB, 874x210px) Image search: [Google]
rustfmt.png
26KB, 874x210px
So....this is the power of rustfmt....woah...
>>
>>60881391
not him but object orientation is simply better

>muh cache
this is a myth, first of all you can store functions back to back in memory to minimize cache problems with the vtable, of course they'll eventually be an issue anyway but second of all functional programming suffers from the same issue, gee who'd've thunk but it turns out functions actually occupy memory whether you access them through objects or not!

>le stanky inheritance is bad meme
it's not bad to have what amounts to a heterogeneous array that gets cut off at a different point depending on what function you pass it to. there's absolutely no reason that would be bad. what horse shit.

>dynamic allocation is bad
i've never understood this argument against oop, particularly because oop doesn't even strictly need dynamic allocation, whereas fp does, what with its rampant generation of data structures and closures. show me a functional language that's not garbage collected and maybe i'll begin to take this argument seriously

>it's just not as pretty / elegant
that's bull. higher kinded types, for loops, and inheritance are just as beautiful to me as dependent types, recursion, and closures are to you.

>every implementation of it is so bloated and slow
i agree except for one single case: adts in c. and that's exactly what i use always. so fuck you.

><<<>>>::::::->->->
(((((()))))(())())
>>
File: 1489534162640.png (92KB, 448x336px) Image search: [Google]
1489534162640.png
92KB, 448x336px
>>60881564
>rust
Please don't post that type of garbage here.
>>
>>60881582
This post is pure retardation.
>>
>muh
>le stanky
>meme
This thread is for 80+ IQ posters only.
>>
>>60881564
>fn
>&str/str
>Addr/addr
>Err
I always get so triggered when I see this weird mixture of names.
>>
>>60881564
I literally thought that was c++ until i saw the fn
>>
>>60881599
it ain't tho
>>
File: 1495050123417.png (181KB, 385x385px) Image search: [Google]
1495050123417.png
181KB, 385x385px
>>60881582
>object orientation is simply better
I won't deny that it's better for simple-minded "people" such as yourself.
>>
>>60881564
Rust is somewhat functional, isn't it?
>>
>>60881582
>not him but object orientation is simply better
how?
OO is just ugly sprinkling and enterprise trash on top of the FP that's often under the hood
>>
>>60881626
No, it's actually better in general, and people who stick with functional """languages""" are the simple minded ones.
>>
>>60881582
Who are you quoting?
>>
>>60881632
>how?
(see rest of post)
>>
File: rustfmt.png (20KB, 857x135px) Image search: [Google]
rustfmt.png
20KB, 857x135px
>>60881564 (You)
Scratch this, I'm just being retarded.
>>60881631
It's pretty functional, it's basically Haskell + C++.
>>
File: 1496219604226.png (523KB, 764x735px) Image search: [Google]
1496219604226.png
523KB, 764x735px
>>60881634
So you are indeed a simpleton, thanks for confirming it. Only someone mentally deficient would claim that "functional "languages"" are somehow the opposite of OOP.
>>
>>60881631
>>60881632
>>60881634
>>60881648
What is "FP" and "functional" though?
>>
>>60881652
incorrect, functional languages are not the opposite of oop but they are shit and oop isn't
>>
>>60881648
Why would you want to add C++ to Haskell?
>>
>>60881648
>Haskell
>C++
So in other words it's complete garbage?
>>
File: rustfmt.png (22KB, 777x170px) Image search: [Google]
rustfmt.png
22KB, 777x170px
>>60881648 (You)
It's getting better and better.
>>
>>60881663
purity and a lack of mutability.
>>
File: 1496079383073.jpg (11KB, 177x184px) Image search: [Google]
1496079383073.jpg
11KB, 177x184px
>>60881665
Both are complete garbage and should be despised by any remotely intelligent person. I don't think you are even capable of understanding that though.
>>
>>60881694
>implying you can't have that in OOP
>>
>>60881694
So none of the languages mentioned in this thread? Why are people talking about "FP" then?
>>60881710
>POO is the opposite of "FP"
This thread is for non-retards only.
>>
>>60881694
>purity
the only kind of "pure" functional languages are is purely functional. i.e. pure garbage
>lack of mutability
the only advantages to this are theoretical. in practice it only makes everything slower
>>
>>60881710
POO is literally "stateful: the paradigm".
>>
>>60881691
>|_|
And rustfags complain that C++ is an unintelligible mashup of special characters.
>>
>>60881104
Maybe that's what you are, but I'm a code artisan.
>>
>>60881699
incorrect, only fp is complete garbage, oop is actually quite fast and useful, but only when implemented using adts and static allocation, which is the only way it should ever be implemented
>>
>>60881732
That being the most objectionable thing to you clearly shows your retardation.
>>
>>60881726
That's procedural senpai. OOP makes immutability just as easy as immutability.
>>
>>60881710
Functional POO defeats the purpose of both paradigms. You can do it, but its a half/breed monster.
>>
>>60881726
computers are inherently stateful
>>
>>60881740
>useful
It's useful for simpletons such as yourself.
>>
>>60881746
*mutability
>>
Is |_| Rust's version of a Hole?
>>
>>60881753
no, it's useful in the general case and you'd have to be an idiot not to use it
>>
>>60881740
>>60881746
>>60881747
>"FP"
>POO
80+ IQ only. Get out.

>>60881726
>>60881752
>state == shared mutable state
80+ IQ only. Get out.
>>
>>60881765
>>state == shared mutable state
Computers are inherently stateful in a way that's both shared and mutable. Functional programming, by trying to avoid this, is a lie.
>>
>>60881762
>it's useful in the general case
The average programmer is a simpleton, so obviously it would be useful in the general case. Nobody is denying that. Being useful for a large amount of people suffering from retardation doesn't mean it's "good".
>>
>>60881759
No, it's awful lambda syntax

|x| e
|_| e
>>
@60881765
80 is a pretty low standard desu
>>
>>60881777
What is a "computer"? What does that have to do with "programming"?
>>
>>60881779
>The average programmer is a simpleton, so obviously it would be useful in the general case. Nobody is denying that. Being useful for a large amount of people suffering from retardation doesn't mean it's "good".
You keep implying there's some elite better way of doing things. There isn't, and the way you're talking about is actually not as good, for anyone, including you.
>>
Things that piss you off.
>loop macro doesn't have a continue keyword
>>
>>60881784
The majority of this thread is sub-80 though.
>>
>>60881794
>`loop` is a macro in his language
Wew, lad.
>>
@60881791
>You keep implying there's some elite better way of doing things.
There's infinitely many, anything non-POO is automatically better simply by virtue of not being POO.
>>
>>60881807
>There's infinitely many, anything non-POO is automatically better simply by virtue of not being POO.
Incorrect, OOP is better
>>
>>60881807
Fantastic non-answer.
>>
@60881811
>OOP is better
POO is better than POO? That's the only possibility where POO is better than something.
>>
>>60881807
If POO is crap does take make the Linux kernel also crap as they use POO?
>>
>>60881825
Where in the Linux kernel do they use OOP?
>>
>>60881825
The Linux kernel is crap independently of POO.
>>
https://www.youtube.com/watch?v=Q-1z7lUKz-Y
>>
>>60881821
No, OOP is better than literally any other paradigm.
>inb4 "any other """paradigm""", maybe"
yes because that's what they're called and anything you can propose as alternative is also a paradigm
>inb4 "for simpletons maybe"
no, for anyone
>inb4 "maybe if by "better" you mean shit"
no I mean better
>inb4 "except all of them"
no, including all of them
>>
>>60881805
>he needs loops to do simple operations that should be in the standard library already
>loop aren't just a luxury in his language
lmaoing @ ur life
>>
>>60881848
>>60881849
Who are you quoting?
>>
>>60881834
The kernel is full of badly implemented OOP, for example http://www.tldp.org/LDP/khg/HyperNews/get/fs/vfstour.html .
>>
>>60881848
>OOP is better than literally any other paradigm.
Only if that other paradigm is POO itself.
>>
>>60881848
>mfw those inb4s are actually accurate
>>
>>60881856
Should have just used C++.
>>
>>60881849
>he uses a standard library
>he uses libraries ever
t. brainlet
>>
>>60881854
learn to greentext
>>
>Come back to thread to check replies
>Autistic weebs in full force shitposting mode
kek glad I wasted time here today
>>
>>60881871
they aren't tho
>>60881870
already inb4'd you, see post
>>
>>60881871
>>60881878
>>60881888
Who said this?

>>60881883
>greentext
What is this? Is it something they use on /b/?
>>
>>60881878
With you brother.
that faggot can't even implement printf lol
>>
>>60881888
>kek
>>>/b/
>>60881890
>already inb4'd you
>>>/b/
>>60881893
>lol
>>>/b/
>>
File: 1b2.png (72KB, 200x222px) Image search: [Google]
1b2.png
72KB, 200x222px
Hello it is me the OOPfag who falls for all the memes.
I'm going to stop falling for your memes now because I would like a sandwich.
Good day.
>>
>>60881909
>meme
>>>/wdg/
Dumb animeposter
>>
>>60881909
>memes
>>>/v/

>>60881919
>meme
>incorrect linking
>>>/v/
>Dumb animeposter
>>>/r/abbit/
Your kind isn't welcome here.
>>
I don't even program anything, I just hang out here every day to shitpost.
>>60881927
> >>>/r/abbit/
back to 9gag with you
>>
>>60881932
>I don't even program anything
>>>/g/wdg/
>""9gag""
Use >>>/r/ibbit/
>>
>>60881942
>"""
who are you quoting?
>>
>>60881891
>Who said this cancer
>>60881899
>Gate keeper
So these two(?) kills /dpt/.
>>
>>60881949
>""Gate keeper""
I don't want reddit stink nearby. Fuck off.
>>>/r/abbit/
>>
>>60881949
And both of them happen to be weebs
>>
>>60881956
What reddit stink are you talking about? If you are so worried about it, whey are you on a fucking general?
>>
>>60881958
Are we being raided by redditors like you today?
>>>/r/abbit/
>>
>>60881919
>>60881927
That's what they are though. They're memes. He calls them memes because they're memes.
>inb4 >memes >>>/wdg/
That's what they are though. They're memes. He calls them memes because they're memes.
>inb4 >memes >>>/wdg/
That's what they are though. They're memes. He calls them memes because they're memes.
>inb4 >memes >>>/wdg/
That's what they are though. They're memes. He calls them memes because they're memes.
>inb4 >memes >>>/wdg/
That's what they are though. They're memes. He calls them memes because they're memes.
>inb4 >memes >>>/wdg/
That's what they are though. They're memes. He calls them memes because they're memes.
>inb4 >memes >>>/wdg/
That's what they are though. They're memes. He calls them memes because they're memes.
>inb4 >memes >>>/wdg/
That's what they are though. They're memes. He calls them memes because they're memes.
>inb4 >memes >>>/wdg/
That's what they are though. They're memes. He calls them memes because they're memes.
>inb4 >memes >>>/wdg/
That's what they are though. They're memes. He calls them memes because they're memes.
>inb4 >memes >>>/wdg/
That's what they are though. They're memes. He calls them memes because they're memes.
>inb4 >memes >>>/wdg/
That's what they are though. They're memes. He calls them memes because they're memes.
>inb4 >memes >>>/wdg/
That's what they are though. They're memes. He calls them memes because they're memes.
>inb4 >memes >>>/wdg/
That's what they are though. They're memes. He calls them memes because they're memes.
>inb4 >memes >>>/wdg/
That's what they are though. They're memes. He calls them memes because they're memes.
>inb4 >memes >>>/wdg/
That's what they are though. They're memes. He calls them memes because they're memes.
That's what they are though. They're memes. He calls them memes because they're memes.
>inb4 >memes >>>/wdg/
That's what they are though. They're memes. He calls them memes because they're memes.
>inb4 >memes >>>/wdg/
(etc ad infinitum)
>>
File: 1495563288513.png (132KB, 400x333px) Image search: [Google]
1495563288513.png
132KB, 400x333px
>>60880965
>>60881145
>>60881293
>>60881899
>>60881927
>>60881932
>>60881942
>>60881956
>>60881971
please stop
>>
>>60881971
All it takes is a chronic shitposter to ruin a thread.
>>
>>60881970
>What reddit stink are you talking about?
About you. If you aren't a redditor don't act like one.
>whey are you on a fucking general?
This is a reddit-free zone as of right now.

>>60881974
>memes
Use >>>/v/

@60881977
>ribbit the reddit frog
Use >>>/v/
Your kind isn't welcome here.

>>60881981
Yeah, I'm pretty sick of their kind. Hopefully they'll die out soon.
>>
>>60881981
>>60881958
>>60881949
The gate keeper was inactive yesterday, probably took the meds. He is awake now
>>
>>60881991
>>memes
>Use /v/
That's what they are though. They're memes. He calls them memes because they're memes.
>>
>>60881977
dumb frogposter
>>
>tfw your haskell homework would be trivial to implement in an imperative language
>tfw it's super hard in haskell

Am I Indian, /g/?
>>
>>60881991
>This is a reddit-free zone as of right now.
Get out of this thread then? Why are you on a general thread if you dislike reddit in the first place?
>>
>>60881995
>""gate keeper"
Try using >>>/r/ibbit/

>>60881996
>That's what they are though.
They aren't.
>memes
Use >>>/v/
>>
>>60882005
No, Haskell is just garbage
>>
>>60882012
>They aren't.
They are.
>>memes
>Use /v/
That's what they are though. They're memes. He calls them memes because they're memes.
>>
>>60882007
>Get out of this thread then?
I'm not a reddit citizen though. And this is officially a zone which any non-redditor can use freely.
>Why are you on a general thread if you dislike reddit in the first place?
This is a reddit-free zone.

>>60882023
>memes
Use >>>/v/
>>
>>60882012
Keep going, gate keeper. I actually want /dpt/ to die (just like you).

/dpt/ spreads misinformation, this thead is best dead
>>
>>60882031
>/dpt/ spreads misinformation,
Only the cniles and rustlets do.
>>
>>60882031
>/dpt/ spreads misinformation, this thead is best dead
This
>>
>>60882031
Everything in your post reeks of reddit.
Seriously: piss off. Your kind is not welcome here.
>>
>>60882031
Holy shit and I always despised the gate keeper
>>
>>60882031
>>60882046
>gate keeper
Is that from a video game?
Use >>>/v/
>>
File: 0gf5s.jpg (382KB, 2702x1826px) Image search: [Google]
0gf5s.jpg
382KB, 2702x1826px
>>>>>reddit
>>>>>memes
>>>>>/v/
>>>>>your kind
>>>>>who are you quoting
Seriously, it's like you guys are actively trying to kill /dpt/.
Please stop.
>>
>>60882061
killing /dpt/ is necessary.
>>
New thread
>>60882065
>>60882065
>>60882065
>>60882065
>>60882065
New thread
>>
>>60882061
>0gf5s.jpg
Why are you using this image?
Please use >>>/b/ or >>>/r/ibbit/ for that
>>
>>60882061
He's not doing a bad thing you know
>>
>>60881782
lmao the more i learn about rust it's looking more and more like a trainwreck

https://www.reddit.com/r/rust/comments/46w4g4/what_is_rusts_lambda_syntax_and_design_rationale/
>>
>>60882255
>reddit
I don't want your reddit stink nearby. Fuck off
>>
>>60882299
it's one of the top google results for rust lambda
>>
>>60882314
>google results
I don't use goverment websites, Fuck off to rabbit
>>
>>60875051
http://www2.mangafreak.com/josou-shounen-anthology-comic/chapter-44/full
>>
>>60882255
>https://www.reddit.com
Your kind isn't welcome here. Piss off
>>>/r/abbit/
>>
>>60882299
>>60882581
>gatekeeping the same post twice
>>>/r/gatekeeping
Thread posts: 343
Thread images: 40


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.