this post was submitted on 24 Feb 2026
573 points (98.2% liked)

Programmer Humor

30013 readers
1964 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
[–] qevlarr@lemmy.world 74 points 1 day ago (4 children)
[–] LiveLM@lemmy.zip 33 points 1 day ago

The json spec is not versioned. There were two changes to it in 2005 (the removal of comments

See, this is why we can't have nice things.

[–] olafurp@lemmy.world 2 points 23 hours ago

Iceland mentioned 🇮🇸

As if I didn't hate the format enough before

[–] onlyhalfminotaur@lemmy.world 7 points 1 day ago (1 children)

Almost all of those issues are solved by explicitly quoting your strings, the author even acknowledges that. Yeah it's annoying that yaml lets you do otherwise, but the title is a bit dramatic.

[–] Appoxo@lemmy.dbzer0.com 3 points 15 hours ago

Coming from powershell scripting, every string is put in quotes and to be printed strings with variables are put in $($var) (e.g. Write-Host "Example-Issue: $($IssueVariable)")
Saves me the trouble of hoping that $($IssueVariable) isnt interpreted as a string by PowerShell.