this post was submitted on 12 Nov 2023
1033 points (97.7% liked)

Programmer Humor

20039 readers
267 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
[–] uid0gid0 20 points 1 year ago (3 children)

I honestly think that JSON and YAML should be swapped due to YAML's strict indentation rules whereas you can just pack an entire JSON object on one line.

[–] [email protected] 9 points 1 year ago (2 children)

Also JSON has no comments. Which is great for me because I hate documenting my work, but it's still annoying.

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

I think yaml’s need for indentation alone makes it chaotic evil. I’ve seen so many people struggle with the indentation than they really need to it’s not fun. Especially problematic with large configuration files.

JSON is easy to unpack with tools like jq or whatever.

[–] peopleproblems 3 points 1 year ago

Oh this is a good point - the syntax error on line one has ruined several productive days.

Of course the tool would happily prettify it for me, but it has to be valid json. Which I think would make it more enjoyable if it said in that message "Good luck, we're counting on you."