this post was submitted on 02 Mar 2025
78 points (93.3% liked)

Programmer Humor

22227 readers
1422 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
 

Someone had to do this before the riots started.

top 13 comments
sorted by: hot top controversial new old
[–] [email protected] 20 points 1 month ago
[–] [email protected] 12 points 1 month ago (2 children)

Thanks (It was bothering me

[–] gnutrino 17 points 1 month ago
[–] bitcrafter 12 points 1 month ago

Nice try, but this post is actually now talking about JavaScript, which means that the close parentheses areautomatically inserted.

[–] zero_spelled_with_an_ecks 6 points 1 month ago (1 children)

Now find the missing semicolon I won't tell you where it should be.

[–] gnutrino 5 points 1 month ago (5 children)

Do people not read compiler errors or something? Finding missing semicolons is easy.

[–] nous 8 points 1 month ago

Once had a missing semi colon at the end of a c header file. The compiler kept complaining about the c file and never mentioned the header. Not all errors lead you to the right place.

Though most of the time people just don't read them. The number of problems I have solve for people by just copy pasting the error they gave me back to them...

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

You fool, it will tell you the error is on a blank line.

[–] bitcrafter 3 points 1 month ago (1 children)

Ah, but you see, JavaScript is not so straightforward. It tries to help you by automatically inserting missing semicolons, but the approach that it uses is that it will insert them in the first place where doing so would make the code parse. This, unfortunately, means that semicolons are often inserted in places where you were not expecting them, so the advice is to always include them manually yourself so that you are never unpleasantly surprised.

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

This, unfortunately, means that semicolons are often inserted in places where you were not expecting them

example:

()=>{
  return {k:"v"}; // returns the object
}
()=>{
  return      // returns undefined 
    {k:"v"};  // unreachable 
}

so the advice is to always include them manually yourself so that you are never unpleasantly surprised.

The example will be unpleasantly surprising, no matter where you put semicolons.

[–] ulterno 1 points 1 month ago* (last edited 1 month ago)

It's just the "Press Next until installation completes" mentality crossing over to the programming side.

You see a dialogue with a red icon and escape it as fast as possible.
You see red text, you just think it is an error and ignore what it says, expecting it to be useless (or maybe not expecting anything at all}


Then when someone tells you to rad the errors, you read them and don't find them useful because all those years of using computers, you didn't learn to understand that stuff, no matter how easy it was.

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

It’s super fucking annoying in Python when you forget a comma between strings and they get concatenated.

The program usually runs just fine after that too.

[–] xoggy 1 points 1 month ago

Took me a minute. And for good measure... ;