this post was submitted on 28 Jun 2025
1068 points (99.2% liked)

Programmer Humor

24628 readers
865 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
 
top 50 comments
sorted by: hot top controversial new old
[–] [email protected] 1 points 14 hours ago
[–] [email protected] 5 points 20 hours ago (1 children)

I freaking love naan! Bring it!

[–] [email protected] 3 points 19 hours ago

NaN naan Jeremy that's insane

[–] [email protected] 21 points 1 day ago (2 children)

Wait until Null opens the door

[–] [email protected] 2 points 17 hours ago

Knock knock

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

segmentation fault

[–] [email protected] 15 points 1 day ago

Is it a threat?

[–] [email protected] 4 points 1 day ago

Thirteen furries just had an aneurysm.

[–] [email protected] 11 points 1 day ago (1 children)

I'm no acupuncturist, but I'm pretty sure that it's SUPPOSED to say "naan minutes", which is time spent enjoying delicious Indian flatbread.

I guess you just eat your naan and then your ride arrives to ask you if you have any leftovers? 🤷

[–] [email protected] 1 points 1 day ago (1 children)

But what does that have to do with acupuncture?

[–] [email protected] 2 points 1 day ago
[–] [email protected] 18 points 1 day ago

I kid you not, opening this post on piefed.ca gave me "Internal Server Error" the first time.

[–] [email protected] 126 points 1 day ago* (last edited 1 day ago) (2 children)

NaN minutes later, a truck arrives in the alley, its license plate reads "undefined". Someone gets out of the vehicle
"I have something for you"
He gives you a package. You open it. It's an [object Object]

[–] [email protected] 19 points 1 day ago

"I've been looking for you! Got something I'm supposed to deliver. Your hands only."

[–] [email protected] 66 points 1 day ago (4 children)

Must be from the NPM delivery service. The recipient is lucky the driver didn’t give them thousands of dependencies too.

[–] [email protected] 1 points 17 hours ago

You don't get dependencies in real life like that.

You work 10 years in an industry and try to get a promotion? That may be a dependency issue.

[–] [email protected] 13 points 1 day ago* (last edited 1 day ago)

Ah sweet, my left-pad is coming today!

[–] [email protected] 26 points 1 day ago (1 children)

"I got a package from Jason"

[–] [email protected] 1 points 15 hours ago

"I also got a lock"

[–] [email protected] 20 points 1 day ago (1 children)

Guess why he came with a truck and not on a cargo bike...

[–] [email protected] 3 points 1 day ago

Because you forgot to tell them that you already have the dependencies at home?

[–] [email protected] 14 points 1 day ago* (last edited 1 day ago) (2 children)

I'm an old fuck and I started to code in the late 80s. Fast forward 30 years, I once had to work at a WeWork. One day, directly outside of my small office space, I swear to god, a fucking hipster kid with a Macbook under his arm practiced skateboard moves. That was the exact moment I started hating working in IT. It's also what I think every Javascript coder looks and acts like.

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

Youngsters these days, uh?

Now grandpa, time to take your medicine

[–] [email protected] 6 points 1 day ago (3 children)

What's wrong with skateboards

[–] [email protected] 3 points 19 hours ago

I really don't care people using skate boards, even doing it around a workplace isn't necessarily taboo in my mind, but they were in the office right outside someone's door. Do it in the parking lot or something.

[–] [email protected] 16 points 1 day ago

Nothing. But that kid used it inside a coworking space.

[–] [email protected] 8 points 1 day ago (2 children)

I actually wish skateboards made a come back. Much more preferable over the escooters I see around a lot.

[–] [email protected] 1 points 15 hours ago

What about kick scooters?

[–] [email protected] 4 points 1 day ago (1 children)

Yeah but no handle so you're much more likely to eat shit when you go down a slope or something.

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

Yea, it takes actual skill to use them ha ha

[–] [email protected] 2 points 1 day ago
[–] [email protected] 13 points 1 day ago (1 children)

The Javascript literal interpretation of NaN never fails to amuse me.

[–] [email protected] 4 points 1 day ago (1 children)
"a"+"b" -> "ab"
"a"-"b" -> NaN
[–] [email protected] 2 points 1 day ago (1 children)

Yeah:

parseInt("a") -> NoT a NuMbEr
[–] [email protected] 2 points 23 hours ago

Sure, but the main issue here is that JS doesn't only auto cast to more generic but in both directions.

Maybe a better example is this:

"a" + 1 -> "a1"
"a" - 1 -> NaN

With + it casts to the more generic string type and then executes the overloaded + as a string concatenation.

But with - it doesn't throw an exception (e.g. something like "Method not implemented"), but instead casts to the more specific number type, and "a" becomes a NaN, and NaN - 1 becomes NaN as well.

There's no situation where "a" - "b" makes any sense or could be regarded as intentional, so it should just throw an error. String minus number also only makes sense in very specific cases (specifically, the string being a number), so also here I'd expect an error.

If the programmer really wants to subtract one number from another and one or both of them are of type string, then the programmer should convert to number manually, e.g. using parseInt("1") - parseInt("2").

[–] [email protected] 19 points 1 day ago (1 children)

I got one of those too. I called the customer service to get another path home because of disturbances, and they just have robot answering. The robot started halfway through the call just reading pure json at me, and then said "to get this information as a message press 1" or something. This is what I got:

Here is your journey from undefined to undefined: BUSS 506 towards Karolinska sjukhuset 09:36 from undefined 10:18 arrived at undefined. Link to your journey.

[–] [email protected] 1 points 19 hours ago

If you want those on separate lines you need to add two spaces on the end of each line!

[–] [email protected] 35 points 1 day ago (3 children)

As someone who mostly avoids JavaScript, I don't see the IT in this image, I just see a bad language I avoid!

[–] [email protected] 4 points 20 hours ago

I promise you, people make mistakes in every language lol.

[–] [email protected] 15 points 1 day ago (4 children)

This isn't the languages fault, it's the developers.

[–] [email protected] 2 points 22 hours ago
[–] [email protected] 6 points 22 hours ago (1 children)

Albeit true, I want to note that some languages encourage such practices way more than others do. Also, when you've got a hammer everything looks like a ~~string~~ nail.

[–] [email protected] 1 points 15 hours ago

In my mind a simple unit test should have caught this. Mock out the call to the service that sends the message and verify that it's been called with the correct message, and cover the possible failure scenarios. That said I hate loosely typed languages lol.

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

I'm assuming by this you mean the developers of JS /s

[–] [email protected] 4 points 1 day ago (1 children)

besides NaN actually being a number, this could completely and easily be avoided with typescript.

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

Naaah. Good programmers know how to use as any as any to make this work in typescript as well.

[–] [email protected] 3 points 1 day ago

I had the exact same reaction.

[–] [email protected] 9 points 1 day ago

At that point just throw an exception man

[–] [email protected] 72 points 1 day ago (1 children)

You wouldn't want your code throw an exception

[–] [email protected] 3 points 20 hours ago

[object Object]

load more comments
view more: next ›