• Shanmugha@lemmy.world
        link
        fedilink
        arrow-up
        2
        ·
        edit-2
        5 days ago

        Because I am not counting white space when I read. Or should we just write machine code/assembler/pick something straight away?

          • Shanmugha@lemmy.world
            link
            fedilink
            arrow-up
            2
            ·
            edit-2
            3 days ago

            Human and machine read differently. If you ignore that (in case with indentation), then why bother with writing human-friendly form of code, when what is going to be really executed is something else?

            • softwarist@programming.dev
              link
              fedilink
              English
              arrow-up
              1
              ·
              2 days ago

              If anything, that sounds like an argument in favor of significant indentation, not against it. Humans and machines read differently, yes, which is why we tend to add whitespace and indentation to code even for programming languages where it’s not significant. We do that expressly because it makes the code more human-friendly, so it’s quite the opposite of ignoring their differences.

              • Shanmugha@lemmy.world
                link
                fedilink
                arrow-up
                1
                ·
                2 days ago

                No, it is an argument against it. We indent code so that it is more comfortable to read it, not in order to make it easier to understand

                  • Shanmugha@lemmy.world
                    link
                    fedilink
                    arrow-up
                    1
                    ·
                    2 days ago

                    Lol. Go on, show me how it is easier to understand structure of the code when I am 3 levels down, first two are already out of sight

      • 3abas@lemmy.world
        link
        fedilink
        arrow-up
        4
        arrow-down
        1
        ·
        6 days ago

        Because yaml is not a programming language, and debugging why your whatever you’re configuring isn’t working correctly can be a nightmare. It doesn’t tell you you missed an indent on a block, it just assumes it should be there and changes the meaning.

        Braces are visually clear.

        • softwarist@programming.dev
          link
          fedilink
          English
          arrow-up
          1
          ·
          3 days ago

          I think YAML has its fair share of design flaws, but I don’t think significant indentation is one of them. It may not be a programming language (which may be debatable), but there are plenty that use syntactic whitespace.

          • 3abas@lemmy.world
            link
            fedilink
            arrow-up
            1
            ·
            22 hours ago

            It’s not debatable… You linked to a programming language that uses yaml syntax, that didn’t make yaml itself a programming language… It’s not.

            And I know there are plenty that use syntactic whitespace, and I hate that about all of them. Literally my only real frustration with python is due to the time of my life wasted debugging perfectly fine logic that fails because a few lines had incorrect indentation.