this post was submitted on 17 Jul 2023
460 points (97.1% liked)

Programmer Humor

32000 readers
775 users here now

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

Rules:

founded 5 years ago
MODERATORS
 

When your code works, but you don't know how
@programmerhumor

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

Just containerize the dev environment and ship that to the customer.

[–] [email protected] 16 points 1 year ago (3 children)

Just make sure to add comments like

//Magic, do not touch

To make sure no-one accidentally breaks the spell.

[–] [email protected] 9 points 1 year ago (1 children)
// Do not delete! Yes, it's not used anywhere in the code, but if it is removed
// the application crashes and the error code is useless for debugging.
let f = 'a';
[–] [email protected] 6 points 1 year ago (1 children)

if ( "a" == "a" ) { // i swear i saw this somewhere }

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

I once did const theNumber = 4 in a function (and then took a second, actually random, number and compared it to theNumber).

In the comment to the function I actually referenced https://xkcd.com/221/.

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

If you even know which line of random bullshit you changed that made it work, that is

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

//HERE BE DRAGONS