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

Programming

17352 readers
358 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
61
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] 63 points 2 months 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.

[–] [email protected] 12 points 2 months 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

[–] [email protected] 5 points 2 months 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.

[–] [email protected] 9 points 2 months ago

They hated him because he spoke the truth

[–] gravitas_deficiency 4 points 2 months ago

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.

[–] [email protected] 3 points 2 months ago

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

[–] [email protected] 3 points 2 months 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!

[–] [email protected] 1 points 2 months ago* (last edited 2 months 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.

[–] [email protected] 1 points 2 months ago

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