subreddit stringclasses 7
values | author stringlengths 3 20 | id stringlengths 5 7 | content stringlengths 67 30.4k | score int64 0 140k |
|---|---|---|---|---|
programmingcirclejerk | ryeguy | efw24km | <|sols|><|sot|>"What specifically about [fizzbuzz] is tricky?" Being familiar with the rarely-used mod operator.<|eot|><|sol|>https://www.reddit.com/r/cscareerquestions/comments/anqc2v/how_can_someone_go_through_a_cs_degree_and_not_be/efvvjd4/?context=3<|eol|><|sor|>Why would anyone use an operator when they could include a NPM module instead?<|eor|><|sor|>https://www.npmjs.com/package/divisible<|eor|><|eols|><|endoftext|> | 62 |
programmingcirclejerk | lulzmachine | efw9gbm | <|sols|><|sot|>"What specifically about [fizzbuzz] is tricky?" Being familiar with the rarely-used mod operator.<|eot|><|sol|>https://www.reddit.com/r/cscareerquestions/comments/anqc2v/how_can_someone_go_through_a_cs_degree_and_not_be/efvvjd4/?context=3<|eol|><|sor|>>It's a trick question people with big egos and little experience like to ask. It's designed to trip up people who haven't seen it before, while it's trivial for someone familiar with it's tricks.
Beware guys. Fizzbuzz is trivial for this 10xer.
<|eor|><|sor|>He had me until "tricks"<|eor|><|eols|><|endoftext|> | 44 |
programmingcirclejerk | cmov | efw8b2l | <|sols|><|sot|>"What specifically about [fizzbuzz] is tricky?" Being familiar with the rarely-used mod operator.<|eot|><|sol|>https://www.reddit.com/r/cscareerquestions/comments/anqc2v/how_can_someone_go_through_a_cs_degree_and_not_be/efvvjd4/?context=3<|eol|><|sor|>Why would anyone use an operator when they could include a NPM module instead?<|eor|><|sor|> import createFunction from "create-function";
import modulo from "modulo";
import toString from "to-string";
import isZero from "is-zero";
import three from "three";
import five from "five";
import fifteen from "fifteen";
import constants from "./constants";
const fizzbuzz = createFunction(n => {
if (isZero(modulo(n, fifteen))) {
return constants.FIZZBUZZ;
}
if (isZero(modulo(n, three))) {
return constants.FIZZ;
}
if (isZero(modulo(n, five))) {
return constants.BUZZ;
}
return toString(n);
});
beat me<|eor|><|eols|><|endoftext|> | 38 |
programmingcirclejerk | stingraycharles | efw4d6m | <|sols|><|sot|>"What specifically about [fizzbuzz] is tricky?" Being familiar with the rarely-used mod operator.<|eot|><|sol|>https://www.reddit.com/r/cscareerquestions/comments/anqc2v/how_can_someone_go_through_a_cs_degree_and_not_be/efvvjd4/?context=3<|eol|><|sor|>Why would anyone use an operator when they could include a NPM module instead?<|eor|><|sor|>https://www.npmjs.com/package/divisible<|eor|><|sor|>[https://www.npmjs.com/package/fizzbuzz](https://www.npmjs.com/package/fizzbuzz)
Did I get the job ?<|eor|><|eols|><|endoftext|> | 34 |
programmingcirclejerk | Nulagrithom | efw5ph3 | <|sols|><|sot|>"What specifically about [fizzbuzz] is tricky?" Being familiar with the rarely-used mod operator.<|eot|><|sol|>https://www.reddit.com/r/cscareerquestions/comments/anqc2v/how_can_someone_go_through_a_cs_degree_and_not_be/efvvjd4/?context=3<|eol|><|sor|>Why would anyone use an operator when they could include a NPM module instead?<|eor|><|sor|>https://www.npmjs.com/package/divisible<|eor|><|sor|>[https://www.npmjs.com/package/fizzbuzz](https://www.npmjs.com/package/fizzbuzz)
Did I get the job ?<|eor|><|sor|>/uj
Legit submitted this once. Didn't get the job.
Not that I wanted it. Who the fuck is so lazy that they actually use fizzbuzz as an interview question?<|eor|><|eols|><|endoftext|> | 29 |
programmingcirclejerk | thephotoman | efwf6fi | <|sols|><|sot|>"What specifically about [fizzbuzz] is tricky?" Being familiar with the rarely-used mod operator.<|eot|><|sol|>https://www.reddit.com/r/cscareerquestions/comments/anqc2v/how_can_someone_go_through_a_cs_degree_and_not_be/efvvjd4/?context=3<|eol|><|sor|>Why would anyone use an operator when they could include a NPM module instead?<|eor|><|sor|>https://www.npmjs.com/package/divisible<|eor|><|sor|>[https://www.npmjs.com/package/fizzbuzz](https://www.npmjs.com/package/fizzbuzz)
Did I get the job ?<|eor|><|sor|>/uj
Legit submitted this once. Didn't get the job.
Not that I wanted it. Who the fuck is so lazy that they actually use fizzbuzz as an interview question?<|eor|><|sor|>Me.
Then again, it's a wet paper bag test and nothing more. It fails out a lot of people early.
I wouldn't insta-fail someone for importing Fizzbuzz, oddly enough. It shows some familiarity with the language environment.<|eor|><|eols|><|endoftext|> | 29 |
programmingcirclejerk | thephotoman | efw7xlw | <|sols|><|sot|>"What specifically about [fizzbuzz] is tricky?" Being familiar with the rarely-used mod operator.<|eot|><|sol|>https://www.reddit.com/r/cscareerquestions/comments/anqc2v/how_can_someone_go_through_a_cs_degree_and_not_be/efvvjd4/?context=3<|eol|><|sor|>There is one and only one kind of person that thinks Fizzbuzz is an inappropriate softball starter for a job interview: the kind of person that can't code their way out of a wet paper bag.
#!/usr/bin/env python3
fizzdict = {3: "Fizz", 5:"Buzz"}
def fizzbuzz(num):
buzzer = ''.join([fizzdict[i] for i in fizzdict if not num % i])
return buzzer if buzzer else str(num)
if __name__ == '__main__':
print(' '.join([fizzbuzz(num) for num in range(1, 101)]))
I mean, come on. Is that so hard? I tossed that off while compiling something else.<|eor|><|eols|><|endoftext|> | 28 |
programmingcirclejerk | defunkydrummer | efw4k2g | <|sols|><|sot|>"What specifically about [fizzbuzz] is tricky?" Being familiar with the rarely-used mod operator.<|eot|><|sol|>https://www.reddit.com/r/cscareerquestions/comments/anqc2v/how_can_someone_go_through_a_cs_degree_and_not_be/efvvjd4/?context=3<|eol|><|sor|>>>it's trivial for someone familiar with it's tricks.
fizzbuzz confirmed tricky by the lesser acolytes of Touba No He.<|eor|><|eols|><|endoftext|> | 27 |
programmingcirclejerk | androgynyjoe | efw8u3t | <|sols|><|sot|>"What specifically about [fizzbuzz] is tricky?" Being familiar with the rarely-used mod operator.<|eot|><|sol|>https://www.reddit.com/r/cscareerquestions/comments/anqc2v/how_can_someone_go_through_a_cs_degree_and_not_be/efvvjd4/?context=3<|eol|><|sor|>If you're "rarely" using the mod operator then you're really missing an opportunity to describe your penis as 9 (mod 5) inches.<|eor|><|eols|><|endoftext|> | 27 |
programmingcirclejerk | BaldLife | efw8wa9 | <|sols|><|sot|>"What specifically about [fizzbuzz] is tricky?" Being familiar with the rarely-used mod operator.<|eot|><|sol|>https://www.reddit.com/r/cscareerquestions/comments/anqc2v/how_can_someone_go_through_a_cs_degree_and_not_be/efvvjd4/?context=3<|eol|><|sor|>One of us!
One of us!
/uj
I refuse to believe someone is this delusional. Finally, "rarely used mod operator" and "habitual <=" are too good .<|eor|><|sor|>> Finally, "rarely used mod operator" and "habitual <=" are too good
Actually harmful statements<|eor|><|eols|><|endoftext|> | 27 |
programmingcirclejerk | jocull | efwtwui | <|sols|><|sot|>"What specifically about [fizzbuzz] is tricky?" Being familiar with the rarely-used mod operator.<|eot|><|sol|>https://www.reddit.com/r/cscareerquestions/comments/anqc2v/how_can_someone_go_through_a_cs_degree_and_not_be/efvvjd4/?context=3<|eol|><|sor|>> Mod is pretty common... Even/odd or every X element do something is super common. And you can do it without the mod operator if you really want to.... (number \* 5)/5 == number would do the same thing.
Ivory tower academics are always talking about esoteric operators no one's ever heard of. What's `/`?
But as a 10x, of course I can solve it using simple straight-forward logic, and no weird "modulus" or "division" or whatever.
bool IsDivisibleBy(int n, int d) {
return n < d ? n == 0 : IsDivisibleBy(n - (n & 1) * d >> 1, d);
}
for (int i = 1; i <= 100; i++) {
string output = (IsDivisibleBy(i, 3) ? "Fizz" : "") + (IsDivisibleBy(i, 5) ? "Buzz" : "");
Console.WriteLine(output == "" ? i.ToString() : output);
}<|eor|><|sor|>Almost enterprise quality code <|eor|><|eols|><|endoftext|> | 23 |
programmingcirclejerk | recursive | efwvdtq | <|sols|><|sot|>"What specifically about [fizzbuzz] is tricky?" Being familiar with the rarely-used mod operator.<|eot|><|sol|>https://www.reddit.com/r/cscareerquestions/comments/anqc2v/how_can_someone_go_through_a_cs_degree_and_not_be/efvvjd4/?context=3<|eol|><|sor|>> Mod is pretty common... Even/odd or every X element do something is super common. And you can do it without the mod operator if you really want to.... (number \* 5)/5 == number would do the same thing.
Ivory tower academics are always talking about esoteric operators no one's ever heard of. What's `/`?
But as a 10x, of course I can solve it using simple straight-forward logic, and no weird "modulus" or "division" or whatever.
bool IsDivisibleBy(int n, int d) {
return n < d ? n == 0 : IsDivisibleBy(n - (n & 1) * d >> 1, d);
}
for (int i = 1; i <= 100; i++) {
string output = (IsDivisibleBy(i, 3) ? "Fizz" : "") + (IsDivisibleBy(i, 5) ? "Buzz" : "");
Console.WriteLine(output == "" ? i.ToString() : output);
}<|eor|><|sor|>Almost enterprise quality code <|eor|><|sor|>What if I told you supporting even divisors was a premature optimization?<|eor|><|eols|><|endoftext|> | 23 |
programmingcirclejerk | rsgm123 | efw9z3b | <|sols|><|sot|>"What specifically about [fizzbuzz] is tricky?" Being familiar with the rarely-used mod operator.<|eot|><|sol|>https://www.reddit.com/r/cscareerquestions/comments/anqc2v/how_can_someone_go_through_a_cs_degree_and_not_be/efvvjd4/?context=3<|eol|><|sor|>Why would anyone use an operator when they could include a NPM module instead?<|eor|><|sor|>https://www.npmjs.com/package/divisible<|eor|><|sor|>[https://www.npmjs.com/package/fizzbuzz](https://www.npmjs.com/package/fizzbuzz)
Did I get the job ?<|eor|><|sor|>/uj
Legit submitted this once. Didn't get the job.
Not that I wanted it. Who the fuck is so lazy that they actually use fizzbuzz as an interview question?<|eor|><|sor|>If you aren't writing it from the ground up in brainfuck, you dont deserve the job anyway<|eor|><|eols|><|endoftext|> | 22 |
programmingcirclejerk | EdEddNEddit | efwl5eo | <|sols|><|sot|>"What specifically about [fizzbuzz] is tricky?" Being familiar with the rarely-used mod operator.<|eot|><|sol|>https://www.reddit.com/r/cscareerquestions/comments/anqc2v/how_can_someone_go_through_a_cs_degree_and_not_be/efvvjd4/?context=3<|eol|><|sor|>Why would anyone use an operator when they could include a NPM module instead?<|eor|><|sor|> import createFunction from "create-function";
import modulo from "modulo";
import toString from "to-string";
import isZero from "is-zero";
import three from "three";
import five from "five";
import fifteen from "fifteen";
import constants from "./constants";
const fizzbuzz = createFunction(n => {
if (isZero(modulo(n, fifteen))) {
return constants.FIZZBUZZ;
}
if (isZero(modulo(n, three))) {
return constants.FIZZ;
}
if (isZero(modulo(n, five))) {
return constants.BUZZ;
}
return toString(n);
});
beat me<|eor|><|sor|>Oh, you sweet summer child. [https://github.com/EnterpriseQualityCoding/FizzBuzzEnterpriseEdition](https://github.com/EnterpriseQualityCoding/FizzBuzzEnterpriseEdition)<|eor|><|eols|><|endoftext|> | 20 |
programmingcirclejerk | MaltersWandler | 9ze3ol | <|sols|><|sot|>"C programmers are cut from a different cloth and realize that conferences are largely boondoggles for less-than-average programmers who think a conference will give them some secret sauce to getting ahead in their field"<|eot|><|sol|>https://www.reddit.com/r/C_Programming/comments/9z76mk/comment/ea6u9l9<|eol|><|eols|><|endoftext|> | 136 |
programmingcirclejerk | _king3vbo | ea8flpk | <|sols|><|sot|>"C programmers are cut from a different cloth and realize that conferences are largely boondoggles for less-than-average programmers who think a conference will give them some secret sauce to getting ahead in their field"<|eot|><|sol|>https://www.reddit.com/r/C_Programming/comments/9z76mk/comment/ea6u9l9<|eol|><|sor|>I see no jerk here, only truth<|eor|><|eols|><|endoftext|> | 119 |
programmingcirclejerk | 10xjerker | ea8q9pm | <|sols|><|sot|>"C programmers are cut from a different cloth and realize that conferences are largely boondoggles for less-than-average programmers who think a conference will give them some secret sauce to getting ahead in their field"<|eot|><|sol|>https://www.reddit.com/r/C_Programming/comments/9z76mk/comment/ea6u9l9<|eol|><|sor|>[deleted]<|eor|><|sor|>> taking a day off without billing PTO
lol American<|eor|><|eols|><|endoftext|> | 61 |
programmingcirclejerk | bartekko | ea8s27f | <|sols|><|sot|>"C programmers are cut from a different cloth and realize that conferences are largely boondoggles for less-than-average programmers who think a conference will give them some secret sauce to getting ahead in their field"<|eot|><|sol|>https://www.reddit.com/r/C_Programming/comments/9z76mk/comment/ea6u9l9<|eol|><|sor|>i watch c++ conference videos at work, because i enjoy hearing kate gregory's reassuring voice, telling me that it's simple, while i'm digging through 20 year old german embedded c code. <|eor|><|eols|><|endoftext|> | 46 |
programmingcirclejerk | syndbg | ea8rgrn | <|sols|><|sot|>"C programmers are cut from a different cloth and realize that conferences are largely boondoggles for less-than-average programmers who think a conference will give them some secret sauce to getting ahead in their field"<|eot|><|sol|>https://www.reddit.com/r/C_Programming/comments/9z76mk/comment/ea6u9l9<|eol|><|sor|>C programmers also.. I've never used generics and I don't need them<|eor|><|eols|><|endoftext|> | 28 |
programmingcirclejerk | MaltersWandler | ea8udjd | <|sols|><|sot|>"C programmers are cut from a different cloth and realize that conferences are largely boondoggles for less-than-average programmers who think a conference will give them some secret sauce to getting ahead in their field"<|eot|><|sol|>https://www.reddit.com/r/C_Programming/comments/9z76mk/comment/ea6u9l9<|eol|><|sor|>C programmers also.. I've never used generics and I don't need them<|eor|><|soopr|>void* and offsetof <3<|eoopr|><|eols|><|endoftext|> | 27 |
programmingcirclejerk | AprilSpektra | ea8pe1q | <|sols|><|sot|>"C programmers are cut from a different cloth and realize that conferences are largely boondoggles for less-than-average programmers who think a conference will give them some secret sauce to getting ahead in their field"<|eot|><|sol|>https://www.reddit.com/r/C_Programming/comments/9z76mk/comment/ea6u9l9<|eol|><|sor|>Can you also jerk to a physics 101 textbook?
* Water is wet.
* Gravity is proportional to mass.
* Gravity is proportional to the distance squared.
* Squirrels do not have built-in anti gravity.
<|eor|><|sor|>>Can you also jerk to a physics 101 textbook?
Like everyone who went through puberty before the proliferation of internet porn, yes I can.<|eor|><|eols|><|endoftext|> | 25 |
programmingcirclejerk | bumblebritches57 | ea8x1vd | <|sols|><|sot|>"C programmers are cut from a different cloth and realize that conferences are largely boondoggles for less-than-average programmers who think a conference will give them some secret sauce to getting ahead in their field"<|eot|><|sol|>https://www.reddit.com/r/C_Programming/comments/9z76mk/comment/ea6u9l9<|eol|><|sor|>[deleted]<|eor|><|sor|>> taking a day off without billing PTO
lol American<|eor|><|sor|>being taxed over 50%
lol yuropoor<|eor|><|eols|><|endoftext|> | 23 |
programmingcirclejerk | 10xjerker | ea8y61q | <|sols|><|sot|>"C programmers are cut from a different cloth and realize that conferences are largely boondoggles for less-than-average programmers who think a conference will give them some secret sauce to getting ahead in their field"<|eot|><|sol|>https://www.reddit.com/r/C_Programming/comments/9z76mk/comment/ea6u9l9<|eol|><|sor|>[deleted]<|eor|><|sor|>> taking a day off without billing PTO
lol American<|eor|><|sor|>being taxed over 50%
lol yuropoor<|eor|><|sor|>\> Russian
\> Paying taxes at all<|eor|><|eols|><|endoftext|> | 22 |
programmingcirclejerk | Moarbid_Krabs | ea9e17v | <|sols|><|sot|>"C programmers are cut from a different cloth and realize that conferences are largely boondoggles for less-than-average programmers who think a conference will give them some secret sauce to getting ahead in their field"<|eot|><|sol|>https://www.reddit.com/r/C_Programming/comments/9z76mk/comment/ea6u9l9<|eol|><|sor|>I see no jerk here, only truth<|eor|><|sor|>C gang rise up<|eor|><|sor|>MALLOC IFFY UH, PROGRAM GOT THE SEGFAULT UH
GOT THE TYPEDEF UH, STRUCT IT HOLDS POINTERS UH
C GAAAAAANG!<|eor|><|eols|><|endoftext|> | 21 |
programmingcirclejerk | bumblebritches57 | ea8x3e3 | <|sols|><|sot|>"C programmers are cut from a different cloth and realize that conferences are largely boondoggles for less-than-average programmers who think a conference will give them some secret sauce to getting ahead in their field"<|eot|><|sol|>https://www.reddit.com/r/C_Programming/comments/9z76mk/comment/ea6u9l9<|eol|><|sor|>C programmers also.. I've never used generics and I don't need them<|eor|><|sor|>`_Generic`
I'm getting real damn tired of this shit.<|eor|><|eols|><|endoftext|> | 18 |
programmingcirclejerk | hedgehog1024 | ea93eqz | <|sols|><|sot|>"C programmers are cut from a different cloth and realize that conferences are largely boondoggles for less-than-average programmers who think a conference will give them some secret sauce to getting ahead in their field"<|eot|><|sol|>https://www.reddit.com/r/C_Programming/comments/9z76mk/comment/ea6u9l9<|eol|><|sor|>Nothing to see here, move on, move on.<|eor|><|sor|>lol no move semantics<|eor|><|eols|><|endoftext|> | 18 |
programmingcirclejerk | hedgehog1024 | ea93ait | <|sols|><|sot|>"C programmers are cut from a different cloth and realize that conferences are largely boondoggles for less-than-average programmers who think a conference will give them some secret sauce to getting ahead in their field"<|eot|><|sol|>https://www.reddit.com/r/C_Programming/comments/9z76mk/comment/ea6u9l9<|eol|><|sor|>I see no jerk here, only truth<|eor|><|sor|>C gang rise up<|eor|><|sor|>AWAKEN, MY MASTERS!<|eor|><|eols|><|endoftext|> | 17 |
programmingcirclejerk | ninjaaron | ea8il3b | <|sols|><|sot|>"C programmers are cut from a different cloth and realize that conferences are largely boondoggles for less-than-average programmers who think a conference will give them some secret sauce to getting ahead in their field"<|eot|><|sol|>https://www.reddit.com/r/C_Programming/comments/9z76mk/comment/ea6u9l9<|eol|><|sor|>Can you also jerk to a physics 101 textbook?
* Water is wet.
* Gravity is proportional to mass.
* Gravity is proportional to the distance squared.
* Squirrels do not have built-in anti gravity.
<|eor|><|sor|>You sure about that last one?<|eor|><|eols|><|endoftext|> | 16 |
programmingcirclejerk | vtesterlwg | ea8ww1u | <|sols|><|sot|>"C programmers are cut from a different cloth and realize that conferences are largely boondoggles for less-than-average programmers who think a conference will give them some secret sauce to getting ahead in their field"<|eot|><|sol|>https://www.reddit.com/r/C_Programming/comments/9z76mk/comment/ea6u9l9<|eol|><|sor|>this but unironically<|eor|><|eols|><|endoftext|> | 13 |
programmingcirclejerk | rileyphone | ea9j75y | <|sols|><|sot|>"C programmers are cut from a different cloth and realize that conferences are largely boondoggles for less-than-average programmers who think a conference will give them some secret sauce to getting ahead in their field"<|eot|><|sol|>https://www.reddit.com/r/C_Programming/comments/9z76mk/comment/ea6u9l9<|eol|><|sor|>Well, the PDP-11 doesn't get a whole lot of upgrades these days.<|eor|><|eols|><|endoftext|> | 12 |
programmingcirclejerk | Homeothermus | 7dl64a | <|sols|><|sot|>Outjerked: Silicon Valley thinks it invented roommates. They call it 'co-living'<|eot|><|sol|>https://news.ycombinator.com/item?id=15721155<|eol|><|eols|><|endoftext|> | 137 |
programmingcirclejerk | statistmonad | dpyjb8k | <|sols|><|sot|>Outjerked: Silicon Valley thinks it invented roommates. They call it 'co-living'<|eot|><|sol|>https://news.ycombinator.com/item?id=15721155<|eol|><|sor|>>tfw communes are now disruptive, but not in the way you'd expect<|eor|><|eols|><|endoftext|> | 53 |
programmingcirclejerk | fosforsvenne | dpynpmi | <|sols|><|sot|>Outjerked: Silicon Valley thinks it invented roommates. They call it 'co-living'<|eot|><|sol|>https://news.ycombinator.com/item?id=15721155<|eol|><|sor|>>> By convenient they mean anonymous people on minimum wage clean up after you.
> Hey, let's not stigmatize the upper middle class actually hiring people to do worthwhile work. That's how jobs, small businesses, and economic growth happen.
Every sentence describing a class society must contain a certain amount of middle class asskissing lest it be stigmatizing?<|eor|><|eols|><|endoftext|> | 49 |
programmingcirclejerk | BufferUnderpants | dpyltzo | <|sols|><|sot|>Outjerked: Silicon Valley thinks it invented roommates. They call it 'co-living'<|eot|><|sol|>https://news.ycombinator.com/item?id=15721155<|eol|><|sor|>tfw when capitalists use the language of solidarity to describe establishing a commercial relationship with them out of you living a temporary mockery of an interpersonal relationship with others<|eor|><|eols|><|endoftext|> | 43 |
programmingcirclejerk | pleaseavoidcaps | dpz3835 | <|sols|><|sot|>Outjerked: Silicon Valley thinks it invented roommates. They call it 'co-living'<|eot|><|sol|>https://news.ycombinator.com/item?id=15721155<|eol|><|sor|>> Bodega explained that its overall mission was to use machine learning to constantly reassess the 100 most-needed items in that community.
TIL you can't do basic arithmetic without Machine Learning.<|eor|><|eols|><|endoftext|> | 34 |
programmingcirclejerk | ProfessorSexyTime | dpysaqp | <|sols|><|sot|>Outjerked: Silicon Valley thinks it invented roommates. They call it 'co-living'<|eot|><|sol|>https://news.ycombinator.com/item?id=15721155<|eol|><|sor|>~~> No, its rich millennials living with a bunch of roommates in a fancy building in a recently gentrified part of town.~~
~~`\begin{unjerk}`~~
~~I must not be making the right friends because they only rich millennials I know are the empty-headed morons from high school that are living off their parents money; the men are constantly on Tinder and complain about women all day, and the women complain about all those men not looking somehwat like Ryan Gosling or Jason Momoa and not being as rich as their dads. None of them are in tech. Then again, I'm not in the hipster hub that is Silicon Valley.~~
~~`\end{unjerk}`~~
> But I shouldnt hate on millennial tech types too much. It has to be said, after all, that they are incredibly innovative.
Yea they reinvented JabbaScript to be on the server so they don't have to expend anymore brain power in learning something beside the complex miracle that is JabbaScript.<|eor|><|eols|><|endoftext|> | 25 |
programmingcirclejerk | figureour | dpyye8s | <|sols|><|sot|>Outjerked: Silicon Valley thinks it invented roommates. They call it 'co-living'<|eot|><|sol|>https://news.ycombinator.com/item?id=15721155<|eol|><|sor|>>> By convenient they mean anonymous people on minimum wage clean up after you.
> Hey, let's not stigmatize the upper middle class actually hiring people to do worthwhile work. That's how jobs, small businesses, and economic growth happen.
Every sentence describing a class society must contain a certain amount of middle class asskissing lest it be stigmatizing?<|eor|><|sor|>Everyone in America is Middle Class<|eor|><|eols|><|endoftext|> | 23 |
programmingcirclejerk | HINDBRAIN | dpzn8hu | <|sols|><|sot|>Outjerked: Silicon Valley thinks it invented roommates. They call it 'co-living'<|eot|><|sol|>https://news.ycombinator.com/item?id=15721155<|eol|><|sor|>> Bodega explained that its overall mission was to use machine learning to constantly reassess the 100 most-needed items in that community.
TIL you can't do basic arithmetic without Machine Learning.<|eor|><|sor|>You need to feed a massive 47,000-layer recurrent neural network a corpus of millions of SQL queries until it learns to write
SELECt product_name
FROM sales_summary
ORDER BY total_sales
WHERE kitteh911wasaninsideporn
<|eor|><|sor|>>not using machine learning to semantically parse your weird "select" pseudocode into a mongodb query plan<|eor|><|eols|><|endoftext|> | 21 |
programmingcirclejerk | quicknir | dpyw4l1 | <|sols|><|sot|>Outjerked: Silicon Valley thinks it invented roommates. They call it 'co-living'<|eot|><|sol|>https://news.ycombinator.com/item?id=15721155<|eol|><|sor|>Can someone help the guardian get a pcj account.<|eor|><|eols|><|endoftext|> | 18 |
programmingcirclejerk | jacques_chester | dpzixws | <|sols|><|sot|>Outjerked: Silicon Valley thinks it invented roommates. They call it 'co-living'<|eot|><|sol|>https://news.ycombinator.com/item?id=15721155<|eol|><|sor|>> Bodega explained that its overall mission was to use machine learning to constantly reassess the 100 most-needed items in that community.
TIL you can't do basic arithmetic without Machine Learning.<|eor|><|sor|>You need to feed a massive 47,000-layer recurrent neural network a corpus of millions of SQL queries until it learns to write
SELECt product_name
FROM sales_summary
ORDER BY total_sales
WHERE kitteh911wasaninsideporn
<|eor|><|eols|><|endoftext|> | 13 |
programmingcirclejerk | PM-ME-YOUR-UNDERARMS | dpyqo7x | <|sols|><|sot|>Outjerked: Silicon Valley thinks it invented roommates. They call it 'co-living'<|eot|><|sol|>https://news.ycombinator.com/item?id=15721155<|eol|><|sor|>tfw when capitalists use the language of solidarity to describe establishing a commercial relationship with them out of you living a temporary mockery of an interpersonal relationship with others<|eor|><|sor|>[deleted]<|eor|><|sor|>\>\> tfw when
\> that feeling when when
mfw when someone completely misses the joke
<|eor|><|eols|><|endoftext|> | 13 |
programmingcirclejerk | BufferUnderpants | dpz9iue | <|sols|><|sot|>Outjerked: Silicon Valley thinks it invented roommates. They call it 'co-living'<|eot|><|sol|>https://news.ycombinator.com/item?id=15721155<|eol|><|sor|>tfw when capitalists use the language of solidarity to describe establishing a commercial relationship with them out of you living a temporary mockery of an interpersonal relationship with others<|eor|><|sor|>Someone get this guy a tweed jacket and a glass of champagne for his socialism already<|eor|><|sor|>What do you think I was wearing while I wrote that comment?<|eor|><|eols|><|endoftext|> | 13 |
programmingcirclejerk | ProfessorSexyTime | dpyszw8 | <|sols|><|sot|>Outjerked: Silicon Valley thinks it invented roommates. They call it 'co-living'<|eot|><|sol|>https://news.ycombinator.com/item?id=15721155<|eol|><|sor|>~~> No, its rich millennials living with a bunch of roommates in a fancy building in a recently gentrified part of town.~~
~~`\begin{unjerk}`~~
~~I must not be making the right friends because they only rich millennials I know are the empty-headed morons from high school that are living off their parents money; the men are constantly on Tinder and complain about women all day, and the women complain about all those men not looking somehwat like Ryan Gosling or Jason Momoa and not being as rich as their dads. None of them are in tech. Then again, I'm not in the hipster hub that is Silicon Valley.~~
~~`\end{unjerk}`~~
> But I shouldnt hate on millennial tech types too much. It has to be said, after all, that they are incredibly innovative.
Yea they reinvented JabbaScript to be on the server so they don't have to expend anymore brain power in learning something beside the complex miracle that is JabbaScript.<|eor|><|sor|>lol socialjerking<|eor|><|sor|>*me at first: Is it?
*me 2 seconds later: Yea...I've commited a PCJ deadly sin.
pls don't hurt me u/jacques_chester<|eor|><|eols|><|endoftext|> | 13 |
programmingcirclejerk | fasquoika | dpz47vn | <|sols|><|sot|>Outjerked: Silicon Valley thinks it invented roommates. They call it 'co-living'<|eot|><|sol|>https://news.ycombinator.com/item?id=15721155<|eol|><|sor|>>> By convenient they mean anonymous people on minimum wage clean up after you.
> Hey, let's not stigmatize the upper middle class actually hiring people to do worthwhile work. That's how jobs, small businesses, and economic growth happen.
Every sentence describing a class society must contain a certain amount of middle class asskissing lest it be stigmatizing?<|eor|><|sor|>lol no Marxist utopia<|eor|><|eols|><|endoftext|> | 12 |
programmingcirclejerk | fosforsvenne | dpz4g7e | <|sols|><|sot|>Outjerked: Silicon Valley thinks it invented roommates. They call it 'co-living'<|eot|><|sol|>https://news.ycombinator.com/item?id=15721155<|eol|><|sor|>>> By convenient they mean anonymous people on minimum wage clean up after you.
> Hey, let's not stigmatize the upper middle class actually hiring people to do worthwhile work. That's how jobs, small businesses, and economic growth happen.
Every sentence describing a class society must contain a certain amount of middle class asskissing lest it be stigmatizing?<|eor|><|sor|>Everyone in America is Middle Class<|eor|><|sor|>Sorry, *upper* middle class asskissing.<|eor|><|eols|><|endoftext|> | 11 |
programmingcirclejerk | adtac | dpzytgo | <|sols|><|sot|>Outjerked: Silicon Valley thinks it invented roommates. They call it 'co-living'<|eot|><|sol|>https://news.ycombinator.com/item?id=15721155<|eol|><|sor|>> Bodega explained that its overall mission was to use machine learning to constantly reassess the 100 most-needed items in that community.
TIL you can't do basic arithmetic without Machine Learning.<|eor|><|sor|>You need to feed a massive 47,000-layer recurrent neural network a corpus of millions of SQL queries until it learns to write
SELECt product_name
FROM sales_summary
ORDER BY total_sales
WHERE kitteh911wasaninsideporn
<|eor|><|sor|>>using old enterprise technologies like SQL instead of trendy MongoDB goodness<|eor|><|eols|><|endoftext|> | 11 |
programmingcirclejerk | Katholikos | dpz9jcb | <|sols|><|sot|>Outjerked: Silicon Valley thinks it invented roommates. They call it 'co-living'<|eot|><|sol|>https://news.ycombinator.com/item?id=15721155<|eol|><|sor|>[deleted]<|eor|><|sor|>I should write an app that harvests bitcoins by utilizing the computing power found in household devices like smart fridges and nest thermometers for extra coinage.
Ill sell this idea to anyone that wants it for $450 million.<|eor|><|eols|><|endoftext|> | 9 |
programmingcirclejerk | Mijyuoon | 138hjw7 | <|sols|><|sot|>proposal: cmd/go: add . as an alternate spelling of .go in file names<|eot|><|sol|>https://github.com/golang/go/issues/59968<|eol|><|eols|><|endoftext|> | 134 |
programmingcirclejerk | jalembung | jiy96y8 | <|sols|><|sot|>proposal: cmd/go: add . as an alternate spelling of .go in file names<|eot|><|sol|>https://github.com/golang/go/issues/59968<|eol|><|sor|>idk about you, guys. I guess I just don't get the sense of humour of that thread. if it were up to me, I would've locked that thread, banned all participants, and updated the coc to stop this kind of "funny" proposals. the stake is literally stacks of money we're talking here.<|eor|><|eols|><|endoftext|> | 103 |
programmingcirclejerk | belst | jiy670e | <|sols|><|sot|>proposal: cmd/go: add . as an alternate spelling of .go in file names<|eot|><|sol|>https://github.com/golang/go/issues/59968<|eol|><|sor|>main.<|eor|><|eols|><|endoftext|> | 85 |
programmingcirclejerk | smutterest | jiye48z | <|sols|><|sot|>proposal: cmd/go: add . as an alternate spelling of .go in file names<|eot|><|sol|>https://github.com/golang/go/issues/59968<|eol|><|sor|>idk about you, guys. I guess I just don't get the sense of humour of that thread. if it were up to me, I would've locked that thread, banned all participants, and updated the coc to stop this kind of "funny" proposals. the stake is literally stacks of money we're talking here.<|eor|><|sor|>Agreed. Go is a serious language and joking about it should be a capital offense.<|eor|><|eols|><|endoftext|> | 66 |
programmingcirclejerk | pareidolist | jiz4nuk | <|sols|><|sot|>proposal: cmd/go: add . as an alternate spelling of .go in file names<|eot|><|sol|>https://github.com/golang/go/issues/59968<|eol|><|sor|>> AFAIK go is a language which does not believe in copying features from other languages. Just saying!<|eor|><|sor|>AFAIK go is a language which does not believe in features<|eor|><|eols|><|endoftext|> | 60 |
programmingcirclejerk | rotttencandy | jiyp0us | <|sols|><|sot|>proposal: cmd/go: add . as an alternate spelling of .go in file names<|eot|><|sol|>https://github.com/golang/go/issues/59968<|eol|><|sor|>main.<|eor|><|sor|>\_\_init\_\_.<|eor|><|eols|><|endoftext|> | 42 |
programmingcirclejerk | NotSoButFarOtherwise | jiyk0p9 | <|sols|><|sot|>proposal: cmd/go: add . as an alternate spelling of .go in file names<|eot|><|sol|>https://github.com/golang/go/issues/59968<|eol|><|sor|>idk about you, guys. I guess I just don't get the sense of humour of that thread. if it were up to me, I would've locked that thread, banned all participants, and updated the coc to stop this kind of "funny" proposals. the stake is literally stacks of money we're talking here.<|eor|><|sor|>It's the tragedy of the stupid commons. What could have been a stupid one-off joke that you read, chuckle at, and move on turns into a whole thing because everyone wants to pile on and "participate" in the joke. And some doofus who struggles to write for loops decides to make their pet cause to have it actually merged into the main codebase.<|eor|><|eols|><|endoftext|> | 36 |
programmingcirclejerk | Slammernanners | jiyz6md | <|sols|><|sot|>proposal: cmd/go: add . as an alternate spelling of .go in file names<|eot|><|sol|>https://github.com/golang/go/issues/59968<|eol|><|sor|>> AFAIK go is a language which does not believe in copying features from other languages. Just saying!<|eor|><|eols|><|endoftext|> | 28 |
programmingcirclejerk | ben_bliksem | jiyhyiw | <|sols|><|sot|>proposal: cmd/go: add . as an alternate spelling of .go in file names<|eot|><|sol|>https://github.com/golang/go/issues/59968<|eol|><|sor|>They do this and I'll become a full time developer.<|eor|><|eols|><|endoftext|> | 23 |
programmingcirclejerk | cheater00 | jizwk4y | <|sols|><|sot|>proposal: cmd/go: add . as an alternate spelling of .go in file names<|eot|><|sol|>https://github.com/golang/go/issues/59968<|eol|><|sor|>add . as an alternate spelling of .go<|eor|><|eols|><|endoftext|> | 18 |
programmingcirclejerk | MagmaticKobaian | jj08csy | <|sols|><|sot|>proposal: cmd/go: add . as an alternate spelling of .go in file names<|eot|><|sol|>https://github.com/golang/go/issues/59968<|eol|><|sor|>Proposal: add U+1438 and U+1433 as aliases for < and >, respectively.<|eor|><|eols|><|endoftext|> | 17 |
programmingcirclejerk | cheater00 | jizwvxk | <|sols|><|sot|>proposal: cmd/go: add . as an alternate spelling of .go in file names<|eot|><|sol|>https://github.com/golang/go/issues/59968<|eol|><|sor|>idk about you, guys. I guess I just don't get the sense of humour of that thread. if it were up to me, I would've locked that thread, banned all participants, and updated the coc to stop this kind of "funny" proposals. the stake is literally stacks of money we're talking here.<|eor|><|sor|>Agreed. Go is a serious language and joking about it should be a capital offense.<|eor|><|sor|>You are allowed to joke about Go, but only if you're wearing a black suit, a blue tie, and >! clown makeup to validate that you are a Go user !<.<|eor|><|eols|><|endoftext|> | 14 |
programmingcirclejerk | Bizzaro_Murphy | jizc7ql | <|sols|><|sot|>proposal: cmd/go: add . as an alternate spelling of .go in file names<|eot|><|sol|>https://github.com/golang/go/issues/59968<|eol|><|sor|>> AFAIK go is a language which does not believe in copying features from other languages. Just saying!<|eor|><|sor|>AFAIK go is a language which does not believe in features<|eor|><|sor|>AFAIK go is a language<|eor|><|eols|><|endoftext|> | 13 |
programmingcirclejerk | anon202001 | jj0j13t | <|sols|><|sot|>proposal: cmd/go: add . as an alternate spelling of .go in file names<|eot|><|sol|>https://github.com/golang/go/issues/59968<|eol|><|sor|>Yikes! Another thing for gophers to
copy/paste<|eor|><|eols|><|endoftext|> | 12 |
programmingcirclejerk | Kodiologist | jizixjo | <|sols|><|sot|>proposal: cmd/go: add . as an alternate spelling of .go in file names<|eot|><|sol|>https://github.com/golang/go/issues/59968<|eol|><|sor|>>> If this is only for fun, great. Please don't let it carry any semantical meaning. That would cause more confusion than what could be useful. My $.02.
>
> *This comment was marked as off-topic.*<|eor|><|eols|><|endoftext|> | 11 |
programmingcirclejerk | anon202001 | jj0iljd | <|sols|><|sot|>proposal: cmd/go: add . as an alternate spelling of .go in file names<|eot|><|sol|>https://github.com/golang/go/issues/59968<|eol|><|sor|>main.<|eor|><|sor|>the cancer language has trademark rights on that one, sorry<|eor|><|eols|><|endoftext|> | 10 |
programmingcirclejerk | Circuitizen | jj2uesy | <|sols|><|sot|>proposal: cmd/go: add . as an alternate spelling of .go in file names<|eot|><|sol|>https://github.com/golang/go/issues/59968<|eol|><|sor|>I propose to add the new keyword . You can prepend it to method calls, like ` doSomething()`. It will launch `doSomething()` in a separate thread. Amazing right?<|eor|><|sor|>How readable! How readable!<|eor|><|eols|><|endoftext|> | 10 |
programmingcirclejerk | drakens_jordgubbar | jj07bb9 | <|sols|><|sot|>proposal: cmd/go: add . as an alternate spelling of .go in file names<|eot|><|sol|>https://github.com/golang/go/issues/59968<|eol|><|sor|>I propose to add the new keyword . You can prepend it to method calls, like ` doSomething()`. It will launch `doSomething()` in a separate thread. Amazing right?<|eor|><|eols|><|endoftext|> | 9 |
programmingcirclejerk | Circuitizen | jizedk1 | <|sols|><|sot|>proposal: cmd/go: add . as an alternate spelling of .go in file names<|eot|><|sol|>https://github.com/golang/go/issues/59968<|eol|><|sor|>> AFAIK go is a language which does not believe in copying features from other languages. Just saying!<|eor|><|sor|>AFAIK go is a language which does not believe in features<|eor|><|sor|>AFAIK go is a language<|eor|><|sor|>of all time<|eor|><|eols|><|endoftext|> | 7 |
programmingcirclejerk | saccharineboi | zxhq1v | <|sols|><|sot|>If you're developing something in C, suffering was your conscious choice<|eot|><|sol|>https://www.reddit.com/r/vulkan/comments/zxgst4/is_here_a_way_to_turn_vkresult_into_c_string/j207lhl?utm_medium=android_app&utm_source=share&context=3<|eol|><|eols|><|endoftext|> | 133 |
programmingcirclejerk | binaryblade | j20dodz | <|sols|><|sot|>If you're developing something in C, suffering was your conscious choice<|eot|><|sol|>https://www.reddit.com/r/vulkan/comments/zxgst4/is_here_a_way_to_turn_vkresult_into_c_string/j207lhl?utm_medium=android_app&utm_source=share&context=3<|eol|><|sor|>Where's the jerk?<|eor|><|eols|><|endoftext|> | 78 |
programmingcirclejerk | bfredl | j20k5vm | <|sols|><|sot|>If you're developing something in C, suffering was your conscious choice<|eot|><|sol|>https://www.reddit.com/r/vulkan/comments/zxgst4/is_here_a_way_to_turn_vkresult_into_c_string/j207lhl?utm_medium=android_app&utm_source=share&context=3<|eol|><|sor|>It is funny because it is true.
with Unjerk:
It is funny because it is true.<|eor|><|eols|><|endoftext|> | 76 |
programmingcirclejerk | Kodiologist | j20sq5z | <|sols|><|sot|>If you're developing something in C, suffering was your conscious choice<|eot|><|sol|>https://www.reddit.com/r/vulkan/comments/zxgst4/is_here_a_way_to_turn_vkresult_into_c_string/j207lhl?utm_medium=android_app&utm_source=share&context=3<|eol|><|sor|>If you're developing something in Lisp, suffering of others was your conscious choice.<|eor|><|sor|>So C is the language of masochists and Lisp is the language of sadists? I guess that makes Go the language of foot fetishists, because you must like being stepped on by Commander Pike.<|eor|><|eols|><|endoftext|> | 73 |
programmingcirclejerk | Goheeca | j20dy2u | <|sols|><|sot|>If you're developing something in C, suffering was your conscious choice<|eot|><|sol|>https://www.reddit.com/r/vulkan/comments/zxgst4/is_here_a_way_to_turn_vkresult_into_c_string/j207lhl?utm_medium=android_app&utm_source=share&context=3<|eol|><|sor|>If you're developing something in Lisp, suffering of others was your conscious choice.<|eor|><|eols|><|endoftext|> | 72 |
programmingcirclejerk | Kodiologist | j20shc3 | <|sols|><|sot|>If you're developing something in C, suffering was your conscious choice<|eot|><|sol|>https://www.reddit.com/r/vulkan/comments/zxgst4/is_here_a_way_to_turn_vkresult_into_c_string/j207lhl?utm_medium=android_app&utm_source=share&context=3<|eol|><|sor|>Where's the jerk?<|eor|><|sor|>It suggests that most people writing in C use it by choice.<|eor|><|eols|><|endoftext|> | 56 |
programmingcirclejerk | FreshPrinceOfRivia | j20irrg | <|sols|><|sot|>If you're developing something in C, suffering was your conscious choice<|eot|><|sol|>https://www.reddit.com/r/vulkan/comments/zxgst4/is_here_a_way_to_turn_vkresult_into_c_string/j207lhl?utm_medium=android_app&utm_source=share&context=3<|eol|><|sor|>If you're developing something in Javascript, going to hell was your conscious choice<|eor|><|eols|><|endoftext|> | 54 |
programmingcirclejerk | tomwhoiscontrary | j21hug1 | <|sols|><|sot|>If you're developing something in C, suffering was your conscious choice<|eot|><|sol|>https://www.reddit.com/r/vulkan/comments/zxgst4/is_here_a_way_to_turn_vkresult_into_c_string/j207lhl?utm_medium=android_app&utm_source=share&context=3<|eol|><|sor|>Where's the jerk?<|eor|><|sor|>The fact that it's downvoted to -24.<|eor|><|eols|><|endoftext|> | 29 |
programmingcirclejerk | ItsAllAboutTheL1Bro | j22t9g6 | <|sols|><|sot|>If you're developing something in C, suffering was your conscious choice<|eot|><|sol|>https://www.reddit.com/r/vulkan/comments/zxgst4/is_here_a_way_to_turn_vkresult_into_c_string/j207lhl?utm_medium=android_app&utm_source=share&context=3<|eol|><|sor|>>If that language is C++, but you still chose to use the C API instead of the C++ wrapper, I'd like to hear your reasoning for that so I can try to convince you otherwise.
You wanna go mf? You wanna go?<|eor|><|eols|><|endoftext|> | 28 |
programmingcirclejerk | COMPUTER_WIZARD_822 | j220osb | <|sols|><|sot|>If you're developing something in C, suffering was your conscious choice<|eot|><|sol|>https://www.reddit.com/r/vulkan/comments/zxgst4/is_here_a_way_to_turn_vkresult_into_c_string/j207lhl?utm_medium=android_app&utm_source=share&context=3<|eol|><|sor|>If you're developing something in Lisp, suffering of others was your conscious choice.<|eor|><|sor|>So C is the language of masochists and Lisp is the language of sadists? I guess that makes Go the language of foot fetishists, because you must like being stepped on by Commander Pike.<|eor|><|sor|>This comment is enlightening<|eor|><|eols|><|endoftext|> | 23 |
programmingcirclejerk | binaryblade | j21r6bi | <|sols|><|sot|>If you're developing something in C, suffering was your conscious choice<|eot|><|sol|>https://www.reddit.com/r/vulkan/comments/zxgst4/is_here_a_way_to_turn_vkresult_into_c_string/j207lhl?utm_medium=android_app&utm_source=share&context=3<|eol|><|sor|>Where's the jerk?<|eor|><|sor|>The fact that it's downvoted to -24.<|eor|><|sor|>I am here to lead not to read.<|eor|><|eols|><|endoftext|> | 17 |
programmingcirclejerk | fox-lad | j213qcj | <|sols|><|sot|>If you're developing something in C, suffering was your conscious choice<|eot|><|sol|>https://www.reddit.com/r/vulkan/comments/zxgst4/is_here_a_way_to_turn_vkresult_into_c_string/j207lhl?utm_medium=android_app&utm_source=share&context=3<|eol|><|sor|>not jerk<|eor|><|eols|><|endoftext|> | 14 |
programmingcirclejerk | ComfortablyBalanced | j20lhkd | <|sols|><|sot|>If you're developing something in C, suffering was your conscious choice<|eot|><|sol|>https://www.reddit.com/r/vulkan/comments/zxgst4/is_here_a_way_to_turn_vkresult_into_c_string/j207lhl?utm_medium=android_app&utm_source=share&context=3<|eol|><|sor|>Where's the jerk?<|eor|><|sor|>It's a reality.<|eor|><|eols|><|endoftext|> | 12 |
programmingcirclejerk | camel-cdr | j21awul | <|sols|><|sot|>If you're developing something in C, suffering was your conscious choice<|eot|><|sol|>https://www.reddit.com/r/vulkan/comments/zxgst4/is_here_a_way_to_turn_vkresult_into_c_string/j207lhl?utm_medium=android_app&utm_source=share&context=3<|eol|><|sor|>Were is the fun without it?<|eor|><|eols|><|endoftext|> | 7 |
programmingcirclejerk | rpkarma | j22yaw1 | <|sols|><|sot|>If you're developing something in C, suffering was your conscious choice<|eot|><|sol|>https://www.reddit.com/r/vulkan/comments/zxgst4/is_here_a_way_to_turn_vkresult_into_c_string/j207lhl?utm_medium=android_app&utm_source=share&context=3<|eol|><|sor|>wheres the jerk
Signed, a firmware engineer :)<|eor|><|eols|><|endoftext|> | 7 |
programmingcirclejerk | ItsAllAboutTheL1Bro | j22spui | <|sols|><|sot|>If you're developing something in C, suffering was your conscious choice<|eot|><|sol|>https://www.reddit.com/r/vulkan/comments/zxgst4/is_here_a_way_to_turn_vkresult_into_c_string/j207lhl?utm_medium=android_app&utm_source=share&context=3<|eol|><|sor|>Where's the jerk?<|eor|><|sor|>The fact that it's downvoted to -24.<|eor|><|sor|>Classic Reddit<|eor|><|eols|><|endoftext|> | 6 |
programmingcirclejerk | BarefootUnicorn | y0y4m6 | <|sols|><|sot|>Given Rusts rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake Python in the near future.<|eot|><|sol|>https://blog.logrocket.com/rust-vs-python-could-rust-replace-python/#when-should-you-use-python<|eol|><|eols|><|endoftext|> | 130 |
programmingcirclejerk | BarefootUnicorn | irumner | <|sols|><|sot|>Given Rusts rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake Python in the near future.<|eot|><|sol|>https://blog.logrocket.com/rust-vs-python-could-rust-replace-python/#when-should-you-use-python<|eol|><|soopr|>I'm uninstalling Python right now! Why delay the inevitable?<|eoopr|><|eols|><|endoftext|> | 106 |
programmingcirclejerk | NonDairyYandere | irurmcd | <|sols|><|sot|>Given Rusts rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake Python in the near future.<|eot|><|sol|>https://blog.logrocket.com/rust-vs-python-could-rust-replace-python/#when-should-you-use-python<|eol|><|soopr|>I'm uninstalling Python right now! Why delay the inevitable?<|eoopr|><|sor|>`cargo unisntall python`<|eor|><|eols|><|endoftext|> | 84 |
programmingcirclejerk | jamil333 | iruzwbw | <|sols|><|sot|>Given Rusts rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake Python in the near future.<|eot|><|sol|>https://blog.logrocket.com/rust-vs-python-could-rust-replace-python/#when-should-you-use-python<|eol|><|sor|>Given the forks rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake the spoon in the near future.<|eor|><|eols|><|endoftext|> | 74 |
programmingcirclejerk | elmosworld37 | irv3ca3 | <|sols|><|sot|>Given Rusts rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake Python in the near future.<|eot|><|sol|>https://blog.logrocket.com/rust-vs-python-could-rust-replace-python/#when-should-you-use-python<|eol|><|soopr|>I'm uninstalling Python right now! Why delay the inevitable?<|eoopr|><|sor|>My CS senior project partner accidentally uninstalled the system Python from his MacBook and he had to take it to the Genius Bar to get it fixed.
This guy graduated.<|eor|><|eols|><|endoftext|> | 66 |
programmingcirclejerk | ________null________ | irukw4c | <|sols|><|sot|>Given Rusts rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake Python in the near future.<|eot|><|sol|>https://blog.logrocket.com/rust-vs-python-could-rust-replace-python/#when-should-you-use-python<|eol|><|sor|>thank god
> <|eor|><|eols|><|endoftext|> | 58 |
programmingcirclejerk | acmd | irvrpqc | <|sols|><|sot|>Given Rusts rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake Python in the near future.<|eot|><|sol|>https://blog.logrocket.com/rust-vs-python-could-rust-replace-python/#when-should-you-use-python<|eol|><|sor|>Of course it's inevitable, it's not like nearly all Python libraries which require high-performance such as `numpy` are implemented as C/C++ modules already.
In any case, the article correctly and unironically states the main advantage of Rust over Python, which is "Memory management". I can easily envision data scientists experience epiphany - getting those "Aha!" moments when their beautiful machinery such as `Arc<Mutex<UnsafeCell<...` (`Arc` is **NOT** a GC btw) finally compiles without errors.<|eor|><|eols|><|endoftext|> | 36 |
programmingcirclejerk | jwezorek | iruv63a | <|sols|><|sot|>Given Rusts rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake Python in the near future.<|eot|><|sol|>https://blog.logrocket.com/rust-vs-python-could-rust-replace-python/#when-should-you-use-python<|eol|><|sor|>As much as the Rust children annoy me I do like the idea of dynamically typed languages biting the dust however it happens.
I don't think it is likely though. Serious usage of Python is driven by various kinds of scientist types who are experts in technical domains that are not programming. They're not programmers. They don't want a complicated programming language. They just don't want to have to pay 10 grand for a MatLab seat and Python and SciPy etc. are free.<|eor|><|eols|><|endoftext|> | 35 |
programmingcirclejerk | desumn | irv6m6n | <|sols|><|sot|>Given Rusts rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake Python in the near future.<|eot|><|sol|>https://blog.logrocket.com/rust-vs-python-could-rust-replace-python/#when-should-you-use-python<|eol|><|sor|>That will never happens because "hello world" is easier to write in python; it's not like any python users wrote more complex scripts.
Obviously any decent engineer would use Rust for serious project such as an ls rewrite.<|eor|><|eols|><|endoftext|> | 33 |
programmingcirclejerk | SickOrphan | iruxwnb | <|sols|><|sot|>Given Rusts rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake Python in the near future.<|eot|><|sol|>https://blog.logrocket.com/rust-vs-python-could-rust-replace-python/#when-should-you-use-python<|eol|><|sor|>As much as the Rust children annoy me I do like the idea of dynamically typed languages biting the dust however it happens.
I don't think it is likely though. Serious usage of Python is driven by various kinds of scientist types who are experts in technical domains that are not programming. They're not programmers. They don't want a complicated programming language. They just don't want to have to pay 10 grand for a MatLab seat and Python and SciPy etc. are free.<|eor|><|sor|>Yeah like they're gonna be interested in learning the borrow checker and mutability and stuff<|eor|><|eols|><|endoftext|> | 24 |
programmingcirclejerk | pbspbsingh | irurids | <|sols|><|sot|>Given Rusts rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake Python in the near future.<|eot|><|sol|>https://blog.logrocket.com/rust-vs-python-could-rust-replace-python/#when-should-you-use-python<|eol|><|sor|>Craps like this and I wonder why my pihole won't allow logrocket.com.<|eor|><|eols|><|endoftext|> | 22 |
programmingcirclejerk | desumn | irvfuhj | <|sols|><|sot|>Given Rusts rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake Python in the near future.<|eot|><|sol|>https://blog.logrocket.com/rust-vs-python-could-rust-replace-python/#when-should-you-use-python<|eol|><|sor|>Given the forks rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake the spoon in the near future.<|eor|><|sor|>I can't spoon any software to rewrite it in rust, here's why forks are better.<|eor|><|eols|><|endoftext|> | 21 |
programmingcirclejerk | ToughPhotograph | irw102q | <|sols|><|sot|>Given Rusts rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake Python in the near future.<|eot|><|sol|>https://blog.logrocket.com/rust-vs-python-could-rust-replace-python/#when-should-you-use-python<|eol|><|soopr|>I'm uninstalling Python right now! Why delay the inevitable?<|eoopr|><|sor|>My linux server unfortunately quips it cannot remove python as it would mean removing the package manager itself, damn it.
I'm installing windows now.<|eor|><|eols|><|endoftext|> | 17 |
programmingcirclejerk | ohforth | irvzx46 | <|sols|><|sot|>Given Rusts rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake Python in the near future.<|eot|><|sol|>https://blog.logrocket.com/rust-vs-python-could-rust-replace-python/#when-should-you-use-python<|eol|><|soopr|>I'm uninstalling Python right now! Why delay the inevitable?<|eoopr|><|sor|>`cargo unisntall python`<|eor|><|sor|>no, car go Voom!<|eor|><|eols|><|endoftext|> | 16 |
programmingcirclejerk | n3f4s | irw2d7y | <|sols|><|sot|>Given Rusts rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake Python in the near future.<|eot|><|sol|>https://blog.logrocket.com/rust-vs-python-could-rust-replace-python/#when-should-you-use-python<|eol|><|soopr|>I'm uninstalling Python right now! Why delay the inevitable?<|eoopr|><|sor|>My CS senior project partner accidentally uninstalled the system Python from his MacBook and he had to take it to the Genius Bar to get it fixed.
This guy graduated.<|eor|><|sor|>I updated perl by hand on an Ubuntu and broke apt. I had to reinstall Ubuntu because of that.<|eor|><|eols|><|endoftext|> | 15 |
programmingcirclejerk | JohnnyJayJay | irw0per | <|sols|><|sot|>Given Rusts rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake Python in the near future.<|eot|><|sol|>https://blog.logrocket.com/rust-vs-python-could-rust-replace-python/#when-should-you-use-python<|eol|><|sor|>Finally, [the stable diffusion guy](https://github.com/CompVis/stable-diffusion/issues/283) can rest in peace.<|eor|><|eols|><|endoftext|> | 14 |
programmingcirclejerk | NeilPointer | irvx237 | <|sols|><|sot|>Given Rusts rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake Python in the near future.<|eot|><|sol|>https://blog.logrocket.com/rust-vs-python-could-rust-replace-python/#when-should-you-use-python<|eol|><|sor|>> Community: Stack Overflow and HackerRank surveys
ah yes where the destiny of PL are decided
/uj LogRocket is becoming the Quora of tech blogging, the ratio of bullshit articles is inundating the few good ones<|eor|><|eols|><|endoftext|> | 14 |
programmingcirclejerk | spider-mario | irvo2dr | <|sols|><|sot|>Given Rusts rapidly growing popularity and wide range of use cases, it seems almost inevitable that it will overtake Python in the near future.<|eot|><|sol|>https://blog.logrocket.com/rust-vs-python-could-rust-replace-python/#when-should-you-use-python<|eol|><|sor|>[xkcd: Extrapolating](https://xkcd.com/605/)<|eor|><|eols|><|endoftext|> | 13 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.