• @[email protected]
        link
        fedilink
        153 months ago

        IIRC, the original reason was to avoid people making custom parsing directives using comments. Then people did shit like "foo": "[!-- number=5 --]" instead.

        • Codex
          link
          43 months ago

          I’ve written Go code; they were right to fear.

      • Codex
        link
        93 months ago

        I wrote a powershell script to parse some json config to drive it’s automation. I was delighted to discover the built-in powershell ConvertFrom-Json command accepts json with // comments as .jsonc files. So my config files get to be commented.

        I hope the programmer(s) who thought to include that find cash laying in the streets everyday and that they never lose socks in the dryer.

      • Phoenixz
        link
        fedilink
        53 months ago

        Wouldn’t go that far, but it’s an annoyance for sure.

    • @[email protected]
      link
      fedilink
      English
      323 months ago

      Alright, the YAML spec is a dang mess, that I’ll grant you, but it seems pretty easy for my human eyes to read and write. As for JSON – seriously? That’s probably the easiest to parse human-readable structured data format there is!

        • @virku
          link
          6
          edit-2
          3 months ago

          What data format is easy to read if it fills more than the entire screen?

      • @[email protected]
        link
        fedilink
        83 months ago

        My biggest gripe is that human eyes cannot in fact see invisible coding characters such as tabs and spaces. I cannot abide by python for the same reason.

          • Rolling Resistance
            link
            43 months ago

            Until you’re doing an online course in a simplistic web editor. Don’t ask me how I know 🥲

            • @[email protected]
              link
              fedilink
              23 months ago

              It would be a compiler directive, I think. Or let me type “end if” and just disregard the coding indentation

            • @[email protected]
              link
              fedilink
              23 months ago

              That’d be an editor thing rather than a language thing, I would have thought. It’s probably configurable in some

      • Redex
        link
        23 months ago

        I don’t know much apart from the basics of YAML, what makes it complicated for computers to parse?

        • lime!
          link
          fedilink
          English
          13
          edit-2
          3 months ago

          the spec is 10 chapters. everything is unquoted by default, so parsers must be able to guess the data type of every value, and will silently convert them if they are, but leave them alone otherwise. there are 63 possible combinations of string type. “no” and “on” are both valid booleans. it supports sexagesimal numbers for some reason, using the colon as a separator just like for objects. other things of this nature.

          • @daddy32
            link
            13 months ago

            Yes, the classic “no” problem of YAML. But the addition of the comments is very nice.

        • @mynameisigglepiggle
          link
          93 months ago

          Sometimes it’s a space, sometimes its a tab, and sometimes it’s two spaces which might also be a tab but sometimes it’s 4 spaces which means 2 spaces are just whack And sometimes we want two and four spaces because people can’t agree.

          But do we want quotes or is it actually a variable? Equals or colon? Porque no los dos?

      • 𝘋𝘪𝘳𝘬
        link
        fedilink
        13 months ago

        Those formats are not for humans to read or write. Those are for parsers to interpret.