this post was submitted on 24 Feb 2026
620 points (97.8% liked)

Programmer Humor

30077 readers
2174 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
 
you are viewing a single comment's thread
view the rest of the comments
[–] softwarist@programming.dev -1 points 3 days ago (2 children)
[–] Shanmugha@lemmy.world 2 points 2 days ago* (last edited 2 days ago) (1 children)

Because I am not counting white space when I read. Or should we just write machine code/assembler/pick something straight away?

[–] softwarist@programming.dev 1 points 10 hours ago* (last edited 10 hours ago) (1 children)

Not sure I'm following the jump from significant whitespace to machine code. How are those related?

[–] Shanmugha@lemmy.world 2 points 9 hours ago* (last edited 9 hours ago) (1 children)

Human and machine read differently. If you ignore that (in case with indentation), then why bother with writing human-friendly form of code, when what is going to be really executed is something else?

[–] softwarist@programming.dev 1 points 7 hours ago

If anything, that sounds like an argument in favor of significant indentation, not against it. Humans and machines read differently, yes, which is why we tend to add whitespace and indentation to code even for programming languages where it's not significant. We do that expressly because it makes the code more human-friendly, so it's quite the opposite of ignoring their differences.

[–] 3abas@lemmy.world 3 points 3 days ago (1 children)

Because yaml is not a programming language, and debugging why your whatever you're configuring isn't working correctly can be a nightmare. It doesn't tell you you missed an indent on a block, it just assumes it should be there and changes the meaning.

Braces are visually clear.

[–] softwarist@programming.dev 1 points 10 hours ago

I think YAML has its fair share of design flaws, but I don't think significant indentation is one of them. It may not be a programming language (which may be debatable), but there are plenty that use syntactic whitespace.