this post was submitted on 06 Sep 2024
2 points (100.0% liked)

Programming

21634 readers
218 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 !webdev@programming.dev



founded 2 years ago
MODERATORS
2
Why YAML sucks? (programming.dev)
submitted 10 months ago* (last edited 10 months ago) by heikkiket@programming.dev to c/programming@programming.dev
 

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?

all 15 comments
sorted by: hot top controversial new old
[–] NostraDavid@programming.dev 0 points 10 months ago* (last edited 10 months ago) (1 children)

YAML is fine if you use a subset (don't use the advanced features - not like you know those anyway) and use explicit strings (always add " to strings), otherwise things may be cast when you did not intend values to be cast.

Example:

country: NO (Norway) will be cast to country: False, because it'll cast no (regardless from casing) to false, and yes to true.

country: "NO" should not be cast.

[–] NostraDavid@programming.dev 0 points 10 months ago* (last edited 10 months ago) (1 children)

People are working on making S-Expressions a standard: https://datatracker.ietf.org/doc/draft-rivest-sexp/

Note: This is just a draft, but improvements have been happening since 2023.

I probably won't like the parentheses, but I think I'll take it over yaml/json/whateverelse.

[–] FizzyOrange@programming.dev 1 points 10 months ago

That appears to not support comments. How they made that mistake after JSON is a mystery.

[–] Windex007@lemmy.world 0 points 10 months ago (4 children)

Any language in which whitespace has syntactic value is intrinsically flawed.

Can't speak to your specific issues, but that's why yaml will always suck.

[–] eager_eagle@lemmy.world 1 points 10 months ago* (last edited 10 months ago)

YAML sucks because, among other things, indenting it is not obvious.

In contrast, the only mistake of Python when it comes to whitespaces was allowing hard tabs, which makes it too easy to mix them if your editor is not configured.

Improper indentation stands out more than missing or unbalanced braces and it's really not an issue to delimit code blocks.

[–] deegeese@sopuli.xyz 0 points 10 months ago (1 children)

As a serialization format, agree 100%, but would Python really be better if it switched to braces?

[–] magic_lobster_party@fedia.io 1 points 10 months ago

Yes, I think so. The downside with Python comes when refactoring the code. There’s always this double checking if the code is correctly indented after the refactor. Sometimes small mistakes creep in.

It’s really hard to tell when Python code is incorrectly indented. It’s often still valid Python code, but you can’t tell if it’s wrong unless you know the intention of the code.

In order languages it’s always obvious when code is incorrectly indented. There’s no ambiguity.

[–] marcos@lemmy.world 0 points 10 months ago* (last edited 10 months ago) (1 children)

Haskell supports both semantic whitespace and explicit delimiters, and somehow almost everybody that uses the language disagrees with you.

But anyway, for all the problems of YAML, this one isn't even relevant enough to point out. Even if you agree it's a problem. (And I agree that the YAML semantic whitespace is horrible.) If YAML was a much better language, it would be worth arguing whether semantic whitespace breaks it or not.

[–] hex@programming.dev 0 points 10 months ago

Yeah but Haskell is mostly used by mathematicians..

[–] AdamBomb@lemmy.sdf.org 0 points 10 months ago

Not any language. I code professionally in F# which has semantic whitespace and it has literally never been an issue for me or my team. In contrast to Python, it’s a compiled language and the compiler is quite strict, so that probably helps.

[–] xmunk@sh.itjust.works 0 points 10 months ago (1 children)

Because people over use it. YAML is pretty good for short config files that need to be human readable but it falls apart with complex multi line strings and escaping.

I think there are much better clearly delimited for machine reading purposes formats out there that you should prefer if you're writing a really heavy config file and, tbh, I think for everything else .ini is probably "good enough".

[–] SorteKanin@feddit.dk 0 points 10 months ago

At least use TOML if you like ini, there is no ini spec but TOML can look quite similar.