this post was submitted on 13 Nov 2024
785 points (99.5% liked)

Programmer Humor

20743 readers
204 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 

Source: https://musicians.today/@barnetboy/113475747574177779

Mastodon: @barnetboy@musicians.today

top 25 comments
sorted by: hot top controversial new old
[–] tourist@lemmy.world 109 points 3 months ago (1 children)

arbitrary npm package:

  • last updated 4 years ago
  • sole developer legit dead and buried
  • 47 dependencies
  • 608 critical vulnerabilities
  • condemned by the United Nations

Still has 7 million weekly downloads

[–] MadMadBunny@lemmy.ca 30 points 3 months ago

Please mark this as NSFL.

Seriously, who the fuck starts a conversation like this, I just sat down!!

[–] GarlicToast@programming.dev 68 points 3 months ago (2 children)

// This line does nothing, however removing it causes production to crash. DO NOT REMOVE

[–] troyunrau@lemmy.ca 40 points 3 months ago (3 children)

I love hitting these things in the real world. Not the big, but the comment. You just know someone spent a fortune in time and company resources to never solve the problem and their frustration level was ragequit. But then something stupid like adding

while (0){};

Suddenly made it work and they were like, fuckit.

Usually it's a bug somewhere in a compiler trying to over optimize or something and putting the line in there caused the optimization not to happen or something. Black magic.

The downside is that the compiler bug probably gets fixed, and then decades later the comment and line are still there...

[–] nogooduser@lemmy.world 12 points 3 months ago (1 children)

I used to work on an old DOS product and we didn’t have a debugger so we used to have a DEBUG command line argument with

if (DEBUG) printf(“debugging”);

to try to see what was happening and the number of times that code alone fixed the problem was scary.

[–] psycho_driver@lemmy.world 5 points 3 months ago

I mean . . . I still do this on my own stuff. If I'm interested in optimizing for speed I'll do it as #ifdef instead of if ()

[–] zea_64@lemmy.blahaj.zone 11 points 3 months ago

And then the compiler updates to get better at spotting optimization opportunities and it blows up again

[–] GarlicToast@programming.dev 5 points 3 months ago

The real world case I remember also included a TODO to return and fix the code later. In a published scientific software. I wonder how many paper were messed up by this buggy software. As I looked at the code due to the amount of bugs I encountered.

It's been many years from publication, and to the surprise of no one, they did not return to fix it.

[–] Smokeydope@lemmy.world 12 points 3 months ago* (last edited 3 months ago)

The digital manifestation of the ghost in the machine. It likes playing with the bits that line occupies when you aren't looking. Don't touch its line.

[–] Gork@lemm.ee 32 points 3 months ago (2 children)

Mmm yes. Unexplained issues that have a single mention in StackOverflow five years ago, have a single reply by the author just saying "nvm I figured it out" and doesn't explain the resolution.

[–] troyunrau@lemmy.ca 32 points 3 months ago (1 children)
[–] frezik@midwest.social 20 points 3 months ago

I've found that that comic alone has reduced the instances of this sort of thing happening. Not completely, of course, but when people figure it out, they seem much more likely to post the solution. Randall may have single-handedly improved the Internet a few points with that one comic.

[–] Buddahriffic@lemmy.world 13 points 3 months ago (1 children)

Or marked as duplicate and closed but when you click the duplicate it's a different issue.

[–] dubyakay@lemmy.ca 9 points 3 months ago

And there's a comment after closure, also from a decade ago, mentioning that this should not have been closed as a duplicate.

[–] henfredemars@infosec.pub 31 points 3 months ago (2 children)

Like the horror of this code is wrong but the program works.

[–] marcos@lemmy.world 11 points 3 months ago (2 children)

Doesn't work anymore. It stops working as soon as you notice the code has always been wrong.

[–] henfredemars@infosec.pub 5 points 3 months ago

Universe: whoops let me fix that.

[–] psycho_driver@lemmy.world 2 points 3 months ago

Schrodinger's Bug

[–] mindbleach@sh.itjust.works 4 points 3 months ago

I have too many comments reading "... how did this ever work?"

[–] psycho_driver@lemmy.world 17 points 3 months ago* (last edited 3 months ago)

Ahh, the C pointer debugging section.

[–] AllHailTheSheep@sh.itjust.works 13 points 3 months ago

an entire section on race conditions I see

[–] frezik@midwest.social 11 points 3 months ago

There are perfectly good reasons to sacrifice a goat to your USB drivers. Don't let Reddit Atheists tell you otherwise.

[–] mindbleach@sh.itjust.works 7 points 3 months ago* (last edited 3 months ago)

"Oh come on, why the fuck, there's no possible reason this code should-- wrong variable."

[–] JoYo@lemmy.ml 5 points 3 months ago

Undefined Phenomena

fify

oooo cake 🎂

[–] sheepishly@fedia.io 1 points 3 months ago