subreddit
stringclasses
7 values
author
stringlengths
3
20
id
stringlengths
5
7
content
stringlengths
67
30.4k
score
int64
0
140k
programminghorror
OMG_A_CUPCAKE
gpn0fo7
<|sols|><|sot|>... but why?<|eot|><|sol|>https://i.redd.it/q2h4sjhndzk61.png<|eol|><|sor|>Maybe there is supposed to be some cleanup code before the re-throw? I sometimes do this: ``` try { something(); } catch (Exception e) { cleanup(); throw e; } ``` If failed `something()` requires some `cleanup()` but...
65
programminghorror
Cormandragon
gpn2345
<|sols|><|sot|>... but why?<|eot|><|sol|>https://i.redd.it/q2h4sjhndzk61.png<|eol|><|sor|>F the caller. No specific exception for them.<|eor|><|sor|>I'd prolly only print a stack trace tbh lol<|eor|><|eols|><|endoftext|>
57
programminghorror
TheOneTrueTrench
gpn16xf
<|sols|><|sot|>... but why?<|eot|><|sol|>https://i.redd.it/q2h4sjhndzk61.png<|eol|><|sor|>Maybe there is supposed to be some cleanup code before the re-throw? I sometimes do this: ``` try { something(); } catch (Exception e) { cleanup(); throw e; } ``` If failed `something()` requires some `cleanup()` but...
47
programminghorror
thermitethrowaway
gpnb31p
<|sols|><|sot|>... but why?<|eot|><|sol|>https://i.redd.it/q2h4sjhndzk61.png<|eol|><|sor|>Maybe there is supposed to be some cleanup code before the re-throw? I sometimes do this: ``` try { something(); } catch (Exception e) { cleanup(); throw e; } ``` If failed `something()` requires some `cleanup()` but...
44
programminghorror
TheStrangeDarkOne
gpn23oh
<|sols|><|sot|>... but why?<|eot|><|sol|>https://i.redd.it/q2h4sjhndzk61.png<|eol|><|sor|>Probably left from some debugging session where they wanted to have a breakpoint trigger on an Exception or something and put it at the \`throw new Exception\` line.<|eor|><|soopr|>this is from the source code of a framework we ar...
43
programminghorror
2xsaiko
gpn9m2j
<|sols|><|sot|>... but why?<|eot|><|sol|>https://i.redd.it/q2h4sjhndzk61.png<|eol|><|sor|>Maybe there is supposed to be some cleanup code before the re-throw? I sometimes do this: ``` try { something(); } catch (Exception e) { cleanup(); throw e; } ``` If failed `something()` requires some `cleanup()` but...
43
programminghorror
avwie
gpn5spi
<|sols|><|sot|>... but why?<|eot|><|sol|>https://i.redd.it/q2h4sjhndzk61.png<|eol|><|sor|>Probably left from some debugging session where they wanted to have a breakpoint trigger on an Exception or something and put it at the \`throw new Exception\` line.<|eor|><|soopr|>this is from the source code of a framework we ar...
37
programminghorror
daerogami
gpp33vk
<|sols|><|sot|>... but why?<|eot|><|sol|>https://i.redd.it/q2h4sjhndzk61.png<|eol|><|sor|>F the caller. No specific exception for them.<|eor|><|sor|>I'd prolly only print a stack trace tbh lol<|eor|><|sor|>Yea but this pattern of catching an exception and passing it on to the caller is rather common. The idea is that t...
36
programminghorror
EggCess
gpmyy6o
<|sols|><|sot|>... but why?<|eot|><|sol|>https://i.redd.it/q2h4sjhndzk61.png<|eol|><|sor|>Verbose stacktraces<|eor|><|eols|><|endoftext|>
33
programminghorror
thermitethrowaway
gpoa1w7
<|sols|><|sot|>... but why?<|eot|><|sol|>https://i.redd.it/q2h4sjhndzk61.png<|eol|><|sor|>Maybe there is supposed to be some cleanup code before the re-throw? I sometimes do this: ``` try { something(); } catch (Exception e) { cleanup(); throw e; } ``` If failed `something()` requires some `cleanup()` but...
32
programminghorror
kreiger
gpn5gv1
<|sols|><|sot|>... but why?<|eot|><|sol|>https://i.redd.it/q2h4sjhndzk61.png<|eol|><|sor|>The catch clause catches all subclasses of exception, including unchecked exceptions (RuntimeException), and rewraps them in Exception. This has the effect of making sure all unchecked exceptions are caught.<|eor|><|eols|><|endof...
28
programminghorror
TheStrangeDarkOne
gpn8x88
<|sols|><|sot|>... but why?<|eot|><|sol|>https://i.redd.it/q2h4sjhndzk61.png<|eol|><|sor|>Maybe there is supposed to be some cleanup code before the re-throw? I sometimes do this: ``` try { something(); } catch (Exception e) { cleanup(); throw e; } ``` If failed `something()` requires some `cleanup()` but...
27
programminghorror
TheOneTrueTrench
gpn4yfj
<|sols|><|sot|>... but why?<|eot|><|sol|>https://i.redd.it/q2h4sjhndzk61.png<|eol|><|sor|>Maybe there is supposed to be some cleanup code before the re-throw? I sometimes do this: ``` try { something(); } catch (Exception e) { cleanup(); throw e; } ``` If failed `something()` requires some `cleanup()` but...
24
programminghorror
Itchy-Phase
gpobnoi
<|sols|><|sot|>... but why?<|eot|><|sol|>https://i.redd.it/q2h4sjhndzk61.png<|eol|><|sor|>Maybe there is supposed to be some cleanup code before the re-throw? I sometimes do this: ``` try { something(); } catch (Exception e) { cleanup(); throw e; } ``` If failed `something()` requires some `cleanup()` but...
19
programminghorror
arekp09
gpn1ba0
<|sols|><|sot|>... but why?<|eot|><|sol|>https://i.redd.it/q2h4sjhndzk61.png<|eol|><|sor|>Maybe there is supposed to be some cleanup code before the re-throw? I sometimes do this: ``` try { something(); } catch (Exception e) { cleanup(); throw e; } ``` If failed `something()` requires some `cleanup()` but...
17
programminghorror
ComicBookFanatic97
j6sd61
<|sols|><|sot|>I was just looking at the documentation for scipy.integrate. WHO PICKED THESE METHOD NAMES?<|eot|><|sol|>https://i.redd.it/1h3ksuplsor51.png<|eol|><|eols|><|endoftext|>
3,557
programminghorror
avwie
g80o3z6
<|sols|><|sot|>I was just looking at the documentation for scipy.integrate. WHO PICKED THESE METHOD NAMES?<|eot|><|sol|>https://i.redd.it/1h3ksuplsor51.png<|eol|><|sor|>Blame Matlab, SciPy copied it from them to make the transition smoother<|eor|><|eols|><|endoftext|>
514
programminghorror
WhiteBlondie
g80u5ux
<|sols|><|sot|>I was just looking at the documentation for scipy.integrate. WHO PICKED THESE METHOD NAMES?<|eot|><|sol|>https://i.redd.it/1h3ksuplsor51.png<|eol|><|sor|>Numpy has a cumsum function<|eor|><|eols|><|endoftext|>
331
programminghorror
Anunoby3
g80x5r5
<|sols|><|sot|>I was just looking at the documentation for scipy.integrate. WHO PICKED THESE METHOD NAMES?<|eot|><|sol|>https://i.redd.it/1h3ksuplsor51.png<|eol|><|sor|>I was profiling an app and the c-profiler would track everything in terms of cumtime<|eor|><|eols|><|endoftext|>
277
programminghorror
Andy_B_Goode
g80ukvt
<|sols|><|sot|>I was just looking at the documentation for scipy.integrate. WHO PICKED THESE METHOD NAMES?<|eot|><|sol|>https://i.redd.it/1h3ksuplsor51.png<|eol|><|sor|>Blame Matlab, SciPy copied it from them to make the transition smoother<|eor|><|sor|>[deleted]<|eor|><|sor|>So that means thesealmost definitely predat...
217
programminghorror
pooerh
g81vxn8
<|sols|><|sot|>I was just looking at the documentation for scipy.integrate. WHO PICKED THESE METHOD NAMES?<|eot|><|sol|>https://i.redd.it/1h3ksuplsor51.png<|eol|><|sor|>In one of the projects I work on there's a really fun naming convention for database objects, it goes like this for indexes: * f = fact table (or d f...
187
programminghorror
danfay222
g80xxlp
<|sols|><|sot|>I was just looking at the documentation for scipy.integrate. WHO PICKED THESE METHOD NAMES?<|eot|><|sol|>https://i.redd.it/1h3ksuplsor51.png<|eol|><|sor|>I was profiling an app and the c-profiler would track everything in terms of cumtime<|eor|><|sor|>As most women will tell you, cumtime is a very import...
152
programminghorror
WisejacKFr0st
g80vfyv
<|sols|><|sot|>I was just looking at the documentation for scipy.integrate. WHO PICKED THESE METHOD NAMES?<|eot|><|sol|>https://i.redd.it/1h3ksuplsor51.png<|eol|><|sor|>Blame Matlab, SciPy copied it from them to make the transition smoother<|eor|><|sor|>[deleted]<|eor|><|sor|>So that means thesealmost definitely predat...
91
programminghorror
trro16p
g81b8b0
<|sols|><|sot|>I was just looking at the documentation for scipy.integrate. WHO PICKED THESE METHOD NAMES?<|eot|><|sol|>https://i.redd.it/1h3ksuplsor51.png<|eol|><|sor|>doesn't beat the one I saw in a program that was retrieving student ids. they used 'stupid' for the field. Ex. where stupid > 100;<|eor|><|eols|><|...
64
programminghorror
Ollymid2
g812o0s
<|sols|><|sot|>I was just looking at the documentation for scipy.integrate. WHO PICKED THESE METHOD NAMES?<|eot|><|sol|>https://i.redd.it/1h3ksuplsor51.png<|eol|><|sor|>r/theyknew<|eor|><|eols|><|endoftext|>
58
programminghorror
dpelego
g80zr9g
<|sols|><|sot|>I was just looking at the documentation for scipy.integrate. WHO PICKED THESE METHOD NAMES?<|eot|><|sol|>https://i.redd.it/1h3ksuplsor51.png<|eol|><|sor|>I was profiling an app and the c-profiler would track everything in terms of cumtime<|eor|><|sor|>As most women will tell you, cumtime is a very import...
57
programminghorror
Galdwin
g81026e
<|sols|><|sot|>I was just looking at the documentation for scipy.integrate. WHO PICKED THESE METHOD NAMES?<|eot|><|sol|>https://i.redd.it/1h3ksuplsor51.png<|eol|><|sor|>Blame Matlab, SciPy copied it from them to make the transition smoother<|eor|><|sor|>[deleted]<|eor|><|sor|>So that means thesealmost definitely predat...
56
programminghorror
JamN3ko
g80etnp
<|sols|><|sot|>I was just looking at the documentation for scipy.integrate. WHO PICKED THESE METHOD NAMES?<|eot|><|sol|>https://i.redd.it/1h3ksuplsor51.png<|eol|><|sor|>10/10<|eor|><|eols|><|endoftext|>
53
programminghorror
Bishops_Guest
g81lvxo
<|sols|><|sot|>I was just looking at the documentation for scipy.integrate. WHO PICKED THESE METHOD NAMES?<|eot|><|sol|>https://i.redd.it/1h3ksuplsor51.png<|eol|><|sor|>Come visit statistics. A lot of survival analysis work is named after Cox. We also have the Slutsky theorem, and if you get into the underpinnings of p...
47
programminghorror
YoCodingJosh
g80ut1g
<|sols|><|sot|>I was just looking at the documentation for scipy.integrate. WHO PICKED THESE METHOD NAMES?<|eot|><|sol|>https://i.redd.it/1h3ksuplsor51.png<|eol|><|sor|>Ah, I see SciPy is a library of culture.<|eor|><|eols|><|endoftext|>
44
programminghorror
Polantaris
g81002p
<|sols|><|sot|>I was just looking at the documentation for scipy.integrate. WHO PICKED THESE METHOD NAMES?<|eot|><|sol|>https://i.redd.it/1h3ksuplsor51.png<|eol|><|sor|>I was profiling an app and the c-profiler would track everything in terms of cumtime<|eor|><|sor|>As most women will tell you, cumtime is a very import...
43
programminghorror
curtmack
g814tr4
<|sols|><|sot|>I was just looking at the documentation for scipy.integrate. WHO PICKED THESE METHOD NAMES?<|eot|><|sol|>https://i.redd.it/1h3ksuplsor51.png<|eol|><|sor|>I was profiling an app and the c-profiler would track everything in terms of cumtime<|eor|><|sor|>As most women will tell you, cumtime is a very import...
41
programminghorror
tonnynerd
g83dpcn
<|sols|><|sot|>I was just looking at the documentation for scipy.integrate. WHO PICKED THESE METHOD NAMES?<|eot|><|sol|>https://i.redd.it/1h3ksuplsor51.png<|eol|><|sor|>In one of the projects I work on there's a really fun naming convention for database objects, it goes like this for indexes: * f = fact table (or d f...
37
programminghorror
SuspiciousScript
g81rfe3
<|sols|><|sot|>I was just looking at the documentation for scipy.integrate. WHO PICKED THESE METHOD NAMES?<|eot|><|sol|>https://i.redd.it/1h3ksuplsor51.png<|eol|><|sor|>Blame Matlab, SciPy copied it from them to make the transition smoother<|eor|><|sor|>> Blame Matlab Incidentally also the reason why matplotlib's API ...
28
programminghorror
IAmAnIssue
fi6fra
<|sols|><|sot|>Oh no<|eot|><|sol|>https://i.redd.it/ymnis43d4im41.png<|eol|><|eols|><|endoftext|>
3,495
programminghorror
brainfreeze91
fkfdygt
<|sols|><|sot|>Oh no<|eot|><|sol|>https://i.redd.it/ymnis43d4im41.png<|eol|><|sor|>This is the just medieval way of curing the disease. Amputation and bloodletting.<|eor|><|eols|><|endoftext|>
412
programminghorror
Karnex
fkfg5g7
<|sols|><|sot|>Oh no<|eot|><|sol|>https://i.redd.it/ymnis43d4im41.png<|eol|><|sor|>In JS, there's already a npm module for this. [fuckitjs](https://github.com/mattdiamond/fuckitjs)<|eor|><|eols|><|endoftext|>
328
programminghorror
1008oh
fkflgar
<|sols|><|sot|>Oh no<|eot|><|sol|>https://i.redd.it/ymnis43d4im41.png<|eol|><|sor|>In JS, there's already a npm module for this. [fuckitjs](https://github.com/mattdiamond/fuckitjs)<|eor|><|sor|>//@TODO: give a shit<|eor|><|eols|><|endoftext|>
143
programminghorror
Jakeupdylan
fkfe7kf
<|sols|><|sot|>Oh no<|eot|><|sol|>https://i.redd.it/ymnis43d4im41.png<|eol|><|sor|>4. Deploy to client 5. Get money<|eor|><|eols|><|endoftext|>
98
programminghorror
RageBull
fkfisxi
<|sols|><|sot|>Oh no<|eot|><|sol|>https://i.redd.it/ymnis43d4im41.png<|eol|><|sor|>I don't have any files left<|eor|><|sor|>But you aint got no errors either *mind blown*<|eor|><|eols|><|endoftext|>
73
programminghorror
arndta
fkfhi08
<|sols|><|sot|>Oh no<|eot|><|sol|>https://i.redd.it/ymnis43d4im41.png<|eol|><|sor|>I don't have any files left<|eor|><|eols|><|endoftext|>
70
programminghorror
IAmAnIssue
fkfjbxq
<|sols|><|sot|>Oh no<|eot|><|sol|>https://i.redd.it/ymnis43d4im41.png<|eol|><|soopr|>I forgot to give the repo [Have fun](https://github.com/AXDOOMER/mochadoom#how-to-run)<|eoopr|><|eols|><|endoftext|>
41
programminghorror
blueg3
fkfw6py
<|sols|><|sot|>Oh no<|eot|><|sol|>https://i.redd.it/ymnis43d4im41.png<|eol|><|sor|>Among all the barely-horror things that get posted here... This might be peak horror. It's relateably realistic. It demonstrates a deep misunderstanding of... everything that is right in the world. It's set up to produce something that ...
39
programminghorror
frosted-mini-yeets
fkfixtd
<|sols|><|sot|>Oh no<|eot|><|sol|>https://i.redd.it/ymnis43d4im41.png<|eol|><|sor|>This sounds eerily like me in my early programming days. "wtf is a compiler? Production? Distribution? Professionalism? Idk but if I click this .snl file it opens visual studios and I then I can click run :)"<|eor|><|eols|><|endoftext|>
38
programminghorror
SirQuackTheDuck
fkfvw00
<|sols|><|sot|>Oh no<|eot|><|sol|>https://i.redd.it/ymnis43d4im41.png<|eol|><|sor|>In JS, there's already a npm module for this. [fuckitjs](https://github.com/mattdiamond/fuckitjs)<|eor|><|sor|>I don't really think like the license of that. Got anything better?<|eor|><|eols|><|endoftext|>
38
programminghorror
murphvienna
fkgxyuy
<|sols|><|sot|>Oh no<|eot|><|sol|>https://i.redd.it/ymnis43d4im41.png<|eol|><|sor|>In JS, there's already a npm module for this. [fuckitjs](https://github.com/mattdiamond/fuckitjs)<|eor|><|sor|>//@TODO: give a shit<|eor|><|sor|>/* drunk, fix later */<|eor|><|sor|>// 2008-07-22 temporary fix<|eor|><|eols|><|endoftext|>
33
programminghorror
Karnex
fkg35gx
<|sols|><|sot|>Oh no<|eot|><|sol|>https://i.redd.it/ymnis43d4im41.png<|eol|><|sor|>In JS, there's already a npm module for this. [fuckitjs](https://github.com/mattdiamond/fuckitjs)<|eor|><|sor|>I don't really think like the license of that. Got anything better?<|eor|><|sor|>Yes, the delete button. But you might need a ...
30
programminghorror
dalepo
fkgi9qb
<|sols|><|sot|>Oh no<|eot|><|sol|>https://i.redd.it/ymnis43d4im41.png<|eol|><|sor|>In JS, there's already a npm module for this. [fuckitjs](https://github.com/mattdiamond/fuckitjs)<|eor|><|sor|>``` FuckIt.moreConflict = function(){ for (var prop in window){ if (prop === "location"){ //you're not gett...
27
programminghorror
asplodzor
fkg3yg4
<|sols|><|sot|>Oh no<|eot|><|sol|>https://i.redd.it/ymnis43d4im41.png<|eol|><|sor|>In JS, there's already a npm module for this. [fuckitjs](https://github.com/mattdiamond/fuckitjs)<|eor|><|sor|>I don't really think like the license of that. Got anything better?<|eor|><|sor|>Sure, [here you go](https://github.com/kelsey...
26
programminghorror
DaaxD
fkhs38w
<|sols|><|sot|>Oh no<|eot|><|sol|>https://i.redd.it/ymnis43d4im41.png<|eol|><|sor|>In JS, there's already a npm module for this. [fuckitjs](https://github.com/mattdiamond/fuckitjs)<|eor|><|sor|>> If the Author of the Software (the "Author") needs a place to crash and you have a sofa available, you should maybe give the...
25
programminghorror
spacezombiejesus
fkfgvxe
<|sols|><|sot|>Oh no<|eot|><|sol|>https://i.redd.it/ymnis43d4im41.png<|eol|><|sor|>4. Deploy to client 5. Get money<|eor|><|sor|>'It wont open'<|eor|><|eols|><|endoftext|>
22
programminghorror
phyllisTheWebDev
fkgdy5t
<|sols|><|sot|>Oh no<|eot|><|sol|>https://i.redd.it/ymnis43d4im41.png<|eol|><|sor|>In JS, there's already a npm module for this. [fuckitjs](https://github.com/mattdiamond/fuckitjs)<|eor|><|sor|>I don't really think like the license of that. Got anything better?<|eor|><|sor|>Sure, [here you go](https://github.com/kelsey...
19
programminghorror
Jakeupdylan
fkfhctt
<|sols|><|sot|>Oh no<|eot|><|sol|>https://i.redd.it/ymnis43d4im41.png<|eol|><|sor|>4. Deploy to client 5. Get money<|eor|><|sor|>'It wont open'<|eor|><|sor|>PEBKAC<|eor|><|eols|><|endoftext|>
18
programminghorror
kqxy
jepglp
<|sols|><|sot|>Shoutout to the intern at IG that logged my password...<|eot|><|sol|>https://i.redd.it/yqsverok49u51.jpg<|eol|><|eols|><|endoftext|>
3,471
programminghorror
havocLSD
g9fpi6u
<|sols|><|sot|>Shoutout to the intern at IG that logged my password...<|eot|><|sol|>https://i.redd.it/yqsverok49u51.jpg<|eol|><|sor|>Im actually quite interested in why IG decided to say anything at all and not sweep this under the rug like so many other companies.<|eor|><|eols|><|endoftext|>
341
programminghorror
BornOnFeb2nd
g9gdxeo
<|sols|><|sot|>Shoutout to the intern at IG that logged my password...<|eot|><|sol|>https://i.redd.it/yqsverok49u51.jpg<|eol|><|sor|>[deleted]<|eor|><|sor|>A place I worked at had a ticketing system. No surprise there. To query the back-end, they had a shitload of views that limited you on a per-client basis. Afte...
277
programminghorror
sbd549
g9frrmm
<|sols|><|sot|>Shoutout to the intern at IG that logged my password...<|eot|><|sol|>https://i.redd.it/yqsverok49u51.jpg<|eol|><|sor|>Im actually quite interested in why IG decided to say anything at all and not sweep this under the rug like so many other companies.<|eor|><|sor|>[deleted]<|eor|><|sor|>Certified DPO here...
249
programminghorror
gp57
g9g1ihz
<|sols|><|sot|>Shoutout to the intern at IG that logged my password...<|eot|><|sol|>https://i.redd.it/yqsverok49u51.jpg<|eol|><|sor|>"Hey we stored your password in plain text, you should read our article about account security."<|eor|><|eols|><|endoftext|>
161
programminghorror
pfannkuchen_gesicht
g9foj1j
<|sols|><|sot|>Shoutout to the intern at IG that logged my password...<|eot|><|sol|>https://i.redd.it/yqsverok49u51.jpg<|eol|><|sor|>That's why you use a password manager: you can't even trust high profile websites.<|eor|><|sor|>[deleted]<|eor|><|sor|>Makes it easier to have a unique password for every website/service ...
158
programminghorror
soaliar
g9fmn7r
<|sols|><|sot|>Shoutout to the intern at IG that logged my password...<|eot|><|sol|>https://i.redd.it/yqsverok49u51.jpg<|eol|><|sor|>That's why you use a password manager: you can't even trust high profile websites.<|eor|><|eols|><|endoftext|>
148
programminghorror
Mr_Redstoner
g9fow7j
<|sols|><|sot|>Shoutout to the intern at IG that logged my password...<|eot|><|sol|>https://i.redd.it/yqsverok49u51.jpg<|eol|><|sor|>[deleted]<|eor|><|sor|>Grep/sed? Explain for a frontend dev pl <|eor|><|sor|>Simple commandline programs present on virtually all \*nix systems. Allows you to search files for regular exp...
121
programminghorror
blueg3
g9ftd9k
<|sols|><|sot|>Shoutout to the intern at IG that logged my password...<|eot|><|sol|>https://i.redd.it/yqsverok49u51.jpg<|eol|><|sor|>[deleted]<|eor|><|sor|>Grep/sed? Explain for a frontend dev pl <|eor|><|sor|>Simple commandline programs present on virtually all \*nix systems. Allows you to search files for regular exp...
77
programminghorror
Famous_Profile
g9fnu66
<|sols|><|sot|>Shoutout to the intern at IG that logged my password...<|eot|><|sol|>https://i.redd.it/yqsverok49u51.jpg<|eol|><|sor|>[deleted]<|eor|><|sor|>You monster<|eor|><|eols|><|endoftext|>
65
programminghorror
BornOnFeb2nd
g9genum
<|sols|><|sot|>Shoutout to the intern at IG that logged my password...<|eot|><|sol|>https://i.redd.it/yqsverok49u51.jpg<|eol|><|sor|>[deleted]<|eor|><|sor|>A place I worked at had a ticketing system. No surprise there. To query the back-end, they had a shitload of views that limited you on a per-client basis. Afte...
65
programminghorror
soaliar
g9ft6zh
<|sols|><|sot|>Shoutout to the intern at IG that logged my password...<|eot|><|sol|>https://i.redd.it/yqsverok49u51.jpg<|eol|><|sor|>That's why you use a password manager: you can't even trust high profile websites.<|eor|><|sor|>[deleted]<|eor|><|sor|>Makes it easier to have a unique password for every website/service ...
61
programminghorror
nightbefore2
g9fswiw
<|sols|><|sot|>Shoutout to the intern at IG that logged my password...<|eot|><|sol|>https://i.redd.it/yqsverok49u51.jpg<|eol|><|sor|>That's why you use a password manager: you can't even trust high profile websites.<|eor|><|sor|>[deleted]<|eor|><|sor|>Makes it easier to have a unique password for every website/service ...
54
programminghorror
Abakol
g9ga1ry
<|sols|><|sot|>Shoutout to the intern at IG that logged my password...<|eot|><|sol|>https://i.redd.it/yqsverok49u51.jpg<|eol|><|sor|>>You do not need to take any action. I'm surprised to see them saying that. If any password was ever compromised even as a hash, let alone clear text format, it should be changed immedia...
49
programminghorror
superrugdr
g9fpex4
<|sols|><|sot|>Shoutout to the intern at IG that logged my password...<|eot|><|sol|>https://i.redd.it/yqsverok49u51.jpg<|eol|><|sor|>[deleted]<|eor|><|sor|>Grep/sed? Explain for a frontend dev pl <|eor|><|sor|>Simple commandline programs present on virtually all \*nix systems. Allows you to search files for regular exp...
47
programminghorror
ohbeeonecanobee
k1dxx8
<|sols|><|sot|>hmm yes... experience yes...<|eot|><|sol|>https://i.redd.it/fqrq6wf1pk161.png<|eol|><|eols|><|endoftext|>
3,457
programminghorror
Mikkolek
gdnofcj
<|sols|><|sot|>hmm yes... experience yes...<|eot|><|sol|>https://i.redd.it/fqrq6wf1pk161.png<|eol|><|sor|>Wow, some of these are just sad. Also, do companies really ask such easy questions on interviews?<|eor|><|eols|><|endoftext|>
553
programminghorror
casualdoge
gdo6ltx
<|sols|><|sot|>hmm yes... experience yes...<|eot|><|sol|>https://i.redd.it/fqrq6wf1pk161.png<|eol|><|sor|>this explains the existence of isOdd as a npm package.<|eor|><|sor|>IsEven is even better, it includes one package: isOdd.<|eor|><|eols|><|endoftext|>
401
programminghorror
Look_Ma_Im_On_Reddit
gdnrt1i
<|sols|><|sot|>hmm yes... experience yes...<|eot|><|sol|>https://i.redd.it/fqrq6wf1pk161.png<|eol|><|sor|>If this is your own work OP, why the fuck can I not get an interview when all these people exist?<|eor|><|eols|><|endoftext|>
396
programminghorror
aznyoln
gdo95n8
<|sols|><|sot|>hmm yes... experience yes...<|eot|><|sol|>https://i.redd.it/fqrq6wf1pk161.png<|eol|><|sor|>this explains the existence of isOdd as a npm package.<|eor|><|sor|>Are you serious? There are many, like 15+ approaches at prime numbers. But isOdd function? I'm dead.<|eor|><|sor|>My favourite isOdd implementatio...
369
programminghorror
mohragk
gdnlopt
<|sols|><|sot|>hmm yes... experience yes...<|eot|><|sol|>https://i.redd.it/fqrq6wf1pk161.png<|eol|><|sor|>No wonder there is a constant stream of new posts on this sub. Incredible. I understand that in some fields you never really have to work with (even basic) algorithms. In front-end web development you hardly ever ...
250
programminghorror
MiataCory
gdo342w
<|sols|><|sot|>hmm yes... experience yes...<|eot|><|sol|>https://i.redd.it/fqrq6wf1pk161.png<|eol|><|sor|>If this is your own work OP, why the fuck can I not get an interview when all these people exist?<|eor|><|sor|>There was a /r/dataisbeautiful post the other day from a hiring manager or something. Out of 400+ appli...
219
programminghorror
Hobbamok
gdo4gvg
<|sols|><|sot|>hmm yes... experience yes...<|eot|><|sol|>https://i.redd.it/fqrq6wf1pk161.png<|eol|><|sor|>Wow, some of these are just sad. Also, do companies really ask such easy questions on interviews?<|eor|><|sor|>you wouldn't believe how easy it is to weed out bad programmers by simple tasks. code represents their...
203
programminghorror
TheGhostBrain
gdo60fz
<|sols|><|sot|>hmm yes... experience yes...<|eot|><|sol|>https://i.redd.it/fqrq6wf1pk161.png<|eol|><|sor|>this explains the existence of isOdd as a npm package.<|eor|><|sor|>Are you serious? There are many, like 15+ approaches at prime numbers. But isOdd function? I'm dead.<|eor|><|eols|><|endoftext|>
150
programminghorror
Thaddaeus-Tentakel
gdnx8ki
<|sols|><|sot|>hmm yes... experience yes...<|eot|><|sol|>https://i.redd.it/fqrq6wf1pk161.png<|eol|><|sor|>While I'm not a fan of programming interviews that are basically math tests, find odd numbers I guess is easy enough. Seeing one of the solutions I gotta wonder: assuming someone doesn't know modulo and can't come ...
134
programminghorror
casualdoge
gdo8suf
<|sols|><|sot|>hmm yes... experience yes...<|eot|><|sol|>https://i.redd.it/fqrq6wf1pk161.png<|eol|><|sor|>this explains the existence of isOdd as a npm package.<|eor|><|sor|>IsEven is even better, it includes one package: isOdd.<|eor|><|sor|>Haha.. nice use of words<|eor|><|sor|>It wasn't even(this also wasn't even(I'm...
119
programminghorror
TheGhostBrain
gdo9arp
<|sols|><|sot|>hmm yes... experience yes...<|eot|><|sol|>https://i.redd.it/fqrq6wf1pk161.png<|eol|><|sor|>this explains the existence of isOdd as a npm package.<|eor|><|sor|>Are you serious? There are many, like 15+ approaches at prime numbers. But isOdd function? I'm dead.<|eor|><|sor|>My favourite isOdd implementatio...
118
programminghorror
Hobbamok
gdo4n44
<|sols|><|sot|>hmm yes... experience yes...<|eot|><|sol|>https://i.redd.it/fqrq6wf1pk161.png<|eol|><|sor|>Wow, some of these are just sad. Also, do companies really ask such easy questions on interviews?<|eor|><|sor|>Yes, for entry level positions (or in my case work students) they do, mainly to weed out people like i...
112
programminghorror
the_lonely_game
gdo6czd
<|sols|><|sot|>hmm yes... experience yes...<|eot|><|sol|>https://i.redd.it/fqrq6wf1pk161.png<|eol|><|sor|>If this is your own work OP, why the fuck can I not get an interview when all these people exist?<|eor|><|sor|>There was a /r/dataisbeautiful post the other day from a hiring manager or something. Out of 400+ appli...
101
programminghorror
road_laya
gdo5ofc
<|sols|><|sot|>hmm yes... experience yes...<|eot|><|sol|>https://i.redd.it/fqrq6wf1pk161.png<|eol|><|sor|>Wow, some of these are just sad. Also, do companies really ask such easy questions on interviews?<|eor|><|sor|>Some companies weed out the majority of the engineering graduates by asking them to provide the formul...
99
programminghorror
Sethasaur
gdnzbmy
<|sols|><|sot|>hmm yes... experience yes...<|eot|><|sol|>https://i.redd.it/fqrq6wf1pk161.png<|eol|><|sor|>This is actually hilarious. /r/programmerhumor<|eor|><|eols|><|endoftext|>
98
programminghorror
aznyoln
gdobbom
<|sols|><|sot|>hmm yes... experience yes...<|eot|><|sol|>https://i.redd.it/fqrq6wf1pk161.png<|eol|><|sor|>this explains the existence of isOdd as a npm package.<|eor|><|sor|>Are you serious? There are many, like 15+ approaches at prime numbers. But isOdd function? I'm dead.<|eor|><|sor|>My favourite isOdd implementatio...
89
programminghorror
ejakash
gdo88fl
<|sols|><|sot|>hmm yes... experience yes...<|eot|><|sol|>https://i.redd.it/fqrq6wf1pk161.png<|eol|><|sor|>this explains the existence of isOdd as a npm package.<|eor|><|sor|>IsEven is even better, it includes one package: isOdd.<|eor|><|sor|>Haha.. nice use of words<|eor|><|eols|><|endoftext|>
88
programminghorror
BitcoinBishop
ns149l
<|sols|><|sot|>For the guy with 3740 vulnerabilities, here's the project that's just been handed over to my team<|eot|><|sol|>https://i.redd.it/hswi6lh9y7371.png<|eol|><|eols|><|endoftext|>
3,456
programminghorror
_alright_then_
h0k8st7
<|sols|><|sot|>For the guy with 3740 vulnerabilities, here's the project that's just been handed over to my team<|eot|><|sol|>https://i.redd.it/hswi6lh9y7371.png<|eol|><|sor|>[deleted]<|eor|><|sor|>*Casually ignores the 46144 high risk ones* Aah yes, that's not too bad<|eor|><|eols|><|endoftext|>
464
programminghorror
yourteam
h0jwepv
<|sols|><|sot|>For the guy with 3740 vulnerabilities, here's the project that's just been handed over to my team<|eot|><|sol|>https://i.redd.it/hswi6lh9y7371.png<|eol|><|sor|>Wtf this is unreal. This is not a project this is just an npm archive server<|eor|><|eols|><|endoftext|>
379
programminghorror
glorious_reptile
h0jxo82
<|sols|><|sot|>For the guy with 3740 vulnerabilities, here's the project that's just been handed over to my team<|eot|><|sol|>https://i.redd.it/hswi6lh9y7371.png<|eol|><|sor|>npm install \*<|eor|><|eols|><|endoftext|>
319
programminghorror
_th30n34nd0nly_
h0k76zt
<|sols|><|sot|>For the guy with 3740 vulnerabilities, here's the project that's just been handed over to my team<|eot|><|sol|>https://i.redd.it/hswi6lh9y7371.png<|eol|><|sor|>Are vulnerabilities like pokemon?<|eor|><|sor|>gotta exploit em all<|eor|><|eols|><|endoftext|>
207
programminghorror
lulzmachine
h0k1f71
<|sols|><|sot|>For the guy with 3740 vulnerabilities, here's the project that's just been handed over to my team<|eot|><|sol|>https://i.redd.it/hswi6lh9y7371.png<|eol|><|sor|>Are vulnerabilities like pokemon?<|eor|><|eols|><|endoftext|>
198
programminghorror
WrongdoerSufficient
h0k7rht
<|sols|><|sot|>For the guy with 3740 vulnerabilities, here's the project that's just been handed over to my team<|eot|><|sol|>https://i.redd.it/hswi6lh9y7371.png<|eol|><|sor|>Me : create new react native project. NPM : DO YOU KNOW YOU HAVE 116386 VULNERABILITIES IN YOUR PROJECT ?<|eor|><|eols|><|endoftext|>
188
programminghorror
AvenDonn
h0jvaor
<|sols|><|sot|>For the guy with 3740 vulnerabilities, here's the project that's just been handed over to my team<|eot|><|sol|>https://i.redd.it/hswi6lh9y7371.png<|eol|><|sor|>How many lines of code is it?<|eor|><|sor|>1<|eor|><|eols|><|endoftext|>
118
programminghorror
dannyb_prodigy
h0kb15h
<|sols|><|sot|>For the guy with 3740 vulnerabilities, here's the project that's just been handed over to my team<|eot|><|sol|>https://i.redd.it/hswi6lh9y7371.png<|eol|><|sor|>[deleted]<|eor|><|sor|>*Casually ignores the 46144 high risk ones* Aah yes, that's not too bad<|eor|><|sor|>If they were *really* a problem we w...
109
programminghorror
BitcoinBishop
h0k13xq
<|sols|><|sot|>For the guy with 3740 vulnerabilities, here's the project that's just been handed over to my team<|eot|><|sol|>https://i.redd.it/hswi6lh9y7371.png<|eol|><|sor|>How many dependences is that?<|eor|><|soopr|>There's 1010 folders in node_modules<|eoopr|><|eols|><|endoftext|>
107
programminghorror
kopczak1995
h0kbma5
<|sols|><|sot|>For the guy with 3740 vulnerabilities, here's the project that's just been handed over to my team<|eot|><|sol|>https://i.redd.it/hswi6lh9y7371.png<|eol|><|sor|>Me : create new react native project. NPM : DO YOU KNOW YOU HAVE 116386 VULNERABILITIES IN YOUR PROJECT ?<|eor|><|sor|>This. It's terrible that ...
90
programminghorror
KoldOne19
h0k1lmz
<|sols|><|sot|>For the guy with 3740 vulnerabilities, here's the project that's just been handed over to my team<|eot|><|sol|>https://i.redd.it/hswi6lh9y7371.png<|eol|><|sor|>Keep it going, guys. I want to see what happens when we exceed MaxInt<|eor|><|eols|><|endoftext|>
87
programminghorror
Arufer720
h0jxvpt
<|sols|><|sot|>For the guy with 3740 vulnerabilities, here's the project that's just been handed over to my team<|eot|><|sol|>https://i.redd.it/hswi6lh9y7371.png<|eol|><|sor|>Okey this guy won<|eor|><|eols|><|endoftext|>
61
programminghorror
gyroda
h0kva6r
<|sols|><|sot|>For the guy with 3740 vulnerabilities, here's the project that's just been handed over to my team<|eot|><|sol|>https://i.redd.it/hswi6lh9y7371.png<|eol|><|sor|>Me : create new react native project. NPM : DO YOU KNOW YOU HAVE 116386 VULNERABILITIES IN YOUR PROJECT ?<|eor|><|sor|>This. It's terrible that ...
51