this post was submitted on 06 Sep 2024
61 points (73.6% liked)

Programming

16996 readers
228 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 1 year ago
MODERATORS
 

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
[–] Windex007@lemmy.world 83 points 1 week ago (6 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.

[–] deegeese@sopuli.xyz 25 points 1 week ago (5 children)

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

[–] magic_lobster_party@fedia.io 62 points 1 week ago (3 children)

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.

[–] GBU_28@lemm.ee 12 points 1 week ago

I think this is just familiarity. I never have issues with indentation, but when refactoring js I'm always like hey who's fucking brace is this

[–] deegeese@sopuli.xyz 5 points 1 week ago (4 children)

It’s only hard to tell indentation in Python when the code block gets longer than about a screen, which is usually a sign the code should be refactored into smaller methods.

[–] AdamBomb@lemmy.sdf.org 9 points 1 week ago

They hated him because he spoke the truth

As someone who has been working in Python a ton for the last couple years, it’s amusing to me how many downvotes you’re getting for simply noting that good code style and tight, terse, modularized implementation of business logic more or less addresses the issue. Because it absolutely does in the vast majority of cases.

[–] hex@programming.dev 3 points 1 week ago

People hate hearing that they are bad coders 😂

You and the other guy are saying to focus on writing code with less indentation and using smaller methods, and you both got downvoted.

I fully agree, small methods all the way, and when that's not possible it's time to refactor into possibility!

[–] Venat0r@lemmy.world 3 points 1 week ago

Or a sign you should get a bigger screen 😂 (j/k)

[–] Kache@lemm.ee 1 points 1 week ago* (last edited 1 week ago) (1 children)

Can address it by writing code that doesn't depend much on indentation, which also makes code more linear and easier to follow.

[–] poinck@lemm.ee 1 points 1 week ago

Yes, totally agree, and it applies to formats and language syntaxes even if braces are used.

[–] xmunk@sh.itjust.works 29 points 1 week 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

[–] deegeese@sopuli.xyz 17 points 1 week 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.

[–] Windex007@lemmy.world 18 points 1 week ago (1 children)

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

[–] poinck@lemm.ee 3 points 1 week ago (1 children)

PHP likes to have a word with you. (:

[–] msage@programming.dev 1 points 1 week ago (1 children)
[–] Windex007@lemmy.world 2 points 6 days ago (1 children)

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

[–] msage@programming.dev 1 points 6 days ago (1 children)
[–] Windex007@lemmy.world 1 points 6 days ago

Yeah like the programming language

[–] eager_eagle@lemmy.world 8 points 1 week ago* (last edited 1 week 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.

[–] xmunk@sh.itjust.works 12 points 1 week 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.

[–] eager_eagle@lemmy.world 3 points 1 week ago* (last edited 1 week 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.

[–] tyler@programming.dev 2 points 1 week 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!!

[–] eager_eagle@lemmy.world 2 points 1 week ago* (last edited 1 week 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.

[–] tyler@programming.dev 1 points 2 days 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.

[–] sevon@lemmy.kde.social 6 points 1 week ago* (last edited 1 week ago)

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

goto fail;

[–] MajorHavoc@programming.dev 16 points 1 week ago* (last edited 1 week ago)

would Python really be better if it switched to braces?

Yes. A thousand times, yes.

[–] LainTrain@lemmy.dbzer0.com 5 points 1 week ago (1 children)

To be pendantic, it's level of indentation in Python that has semantic meaning, not whitespace.

[–] marcos@lemmy.world 13 points 1 week ago (1 children)

The end of line also has semantic meaning. Both indentation and eol are whitespace.

[–] LainTrain@lemmy.dbzer0.com 1 points 1 week ago* (last edited 1 week ago)

Indentation can be (and should be) tabs, EOL is it's its own thing either \n or CRLF which Python source code did actually care about as recently as 2.3.

Assumptions like this is why most people should stick to verbose languages with lots of guardrail braces.

[–] realitista@lemm.ee 2 points 1 week ago

If nothing else it enforces readable code which I think is a good thing.

[–] marcos@lemmy.world 6 points 1 week ago* (last edited 1 week 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 1 points 1 week ago

Yeah but Haskell is mostly used by mathematicians..

[–] eager_eagle@lemmy.world 6 points 1 week ago* (last edited 1 week ago) (1 children)

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.

[–] ugo@feddit.it 8 points 1 week ago (1 children)

Hard tabs are the only accessible option though. If you care about developers with a different vision capability than yours, the only correct indentation choice is tabs.

If, because of bad vision, someone needs to crank the font size way up, it’s very possible that they might need to work with a tabstop of 3, 2, or even just 1 space.

With tabs, this is user configurable. With spaces it isn’t.

[–] tyler@programming.dev 1 points 1 week ago (1 children)

In any modern editor it is configurable with spaces too

[–] ugo@feddit.it 1 points 1 week ago

What “it” is configurable? If the code is indented with 4 spaces, it is indented with 4 spaces. You can configure your editor to indent with 1 space if you want, but then your code is not going to respect the 4 spaces of indentation used by the rest of the code.

I repeat, the only accessible indentation option is using tabs. This is not an opinion because every other option forces extra painful steps for those with vision issues (including, but not limited to, having to reformat the source files to tabs so they can work on them and then reformat them back to using spaces in order to commit them)

[–] AdamBomb@lemmy.sdf.org 1 points 1 week 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.

[–] Nighed@sffa.community 1 points 1 week ago

It's the only time that tabs Vs spaces really riles me up. So annoying when everyone has different tab lengths

[–] benjhm@sopuli.xyz -1 points 1 week ago

I now use Scala 3, and very happy with syntactic whitespace (combined with an intelligent compiler)