this post was submitted on 13 Oct 2023
781 points (93.5% liked)

Programmer Humor

32410 readers
1019 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 23 points 1 year ago (1 children)

That's nerve wracking. But you know what's worse? Finding code that shouldn't work, not being able to figure out why it works, and having to leave it in production because of you "fix" it, the whole damned thing will come fluttering down like a house of cards in a slight breeze.

[–] xantoxis 19 points 1 year ago (2 children)

There is actually an approach for this. Leave the cursed code in, but implement it again in the same file, from scratch, without looking at the cursed code. You'll either unthinkingly fix the combination of conditions that led to bad code being correct, or you'll realize why that was what you needed the whole time.

[–] [email protected] 6 points 1 year ago

More often than not you'll actually learn that the code is never really ran and it just looks like it does something, while the real code runs somewhere entirely else.

[–] [email protected] 1 points 1 year ago

thank you so much