this post was submitted on 06 Sep 2024
62 points (73.8% liked)

Programming

17349 readers
232 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
62
Why YAML sucks? (programming.dev)
submitted 2 months ago* (last edited 2 months ago) by [email protected] to c/[email protected]
 

I feel that Yaml sucks. I understand the need for such markup language but I think it sucks. Somehow it's clunky to use. Can you explain why?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 29 points 2 months ago (3 children)

Yes it would - look at optional braces for short if expressions in C family languages and why it's so discouraged in large projects. Terminating characters are absolutely worth the cost of an extra LoC

[–] [email protected] 17 points 2 months ago (1 children)

I started in C before moving on to C++, Java, Ruby and Python.

I’ve had more bugs from missing braces than from misaligned whitespace because the latter is far more obvious when looking at a block of code.

[–] [email protected] 18 points 2 months ago (1 children)

Compilation error or run time errors? One is a gift and the other is a curse.

[–] [email protected] 3 points 2 months ago (1 children)

PHP likes to have a word with you. (:

[–] [email protected] 1 points 2 months ago (1 children)
[–] [email protected] 2 points 1 month ago (1 children)

Gonna whisper what the first word in "PHP" stands for

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

Yeah like the programming language

[–] [email protected] 8 points 2 months ago* (last edited 2 months ago) (2 children)

False dichotomy. Optional braces are bad practice because they mislead the programmer that is adding an additional clause to the block.

This misleading behavior wouldn't happen in Python, as it would either be invalid syntax, or it would be part of the block.

Indentation problems are pretty obvious to the reader. Even more than missing or unbalanced braces.

[–] [email protected] 12 points 2 months ago (1 children)

They may be obvious to the reader but they may be impossible to see if tabs and spaces are mixed together.

Closing tokens are always clearer.

[–] [email protected] 3 points 2 months ago* (last edited 2 months ago)

yes, from my other comment

the only mistake of Python when it comes to whitespaces was allowing hard tabs

but that's easily fixed with an editor setting - on the other hand, unbalancing braces (and not realizing it) is too easy all the time.

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

That misleading behavior does happen in Python. The next programmer that comes along can’t tell if the original programmer fucked it up and didn’t unindent to put a statement outside of the block or if they meant to put it inside the block. I’ve debugged this one too many times and it takes hours each time because it’s impossible to see the bug at all!!

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

The misleading behavior is about what you expect to execute in the source code you're looking at vs what's actually executed.

What you describe is a logic ambiguity that can happen in any program / language.

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

I don’t agree. It’s a direct result of whitespace, which does not happen if you don’t use whitespace. For example it can happen in Java and kotlin, but only if you use if statements without braces, which you pretty much never see. If you do see it you know to look out for the exact issue I described. That’s not possible in Python, since there is no alternative.

[–] [email protected] 6 points 2 months ago* (last edited 2 months ago)

I'm fine with python, because it's consistent. In C I get nervous every time I see it.

goto fail;