• FilthyShrooms@lemmy.world
    link
    fedilink
    arrow-up
    49
    arrow-down
    1
    ·
    6 months ago

    That’s why my business only uses pure, crisp .txt files. If I can’t open it in notepad, I don’t want it!

    • CancerMancer
      link
      fedilink
      arrow-up
      27
      ·
      6 months ago

      I have unironically been preaching the powers of text and JSON, and have some converts. Universal compatibility is great.

      • lolcatnip@reddthat.com
        link
        fedilink
        English
        arrow-up
        3
        ·
        6 months ago

        Json is a garbage format for anything that’s meant to ever be touched by a human. At least use yaml or json5.

        • CancerMancer
          link
          fedilink
          arrow-up
          4
          ·
          edit-2
          6 months ago

          In the first paragraph of JSON5’s site:

          It is not intended to be used for machine-to-machine communication.

          YAML is not supported by a lot of enterprise software (example: Azure pipelines supports it but Power Automate does not). JSON, XML, CSV, or failing that Text are the safe bets. We use a few options for reading or building presentation layers quickly. Ultimately the idea is to move data around in a way that is friendly to our current and future applications.

          • lolcatnip@reddthat.com
            link
            fedilink
            English
            arrow-up
            2
            ·
            6 months ago

            It’s absolutely trivial to convert either format to json if necessary. The real killer for me with json is the lack of comments. Human-maintained files absolutely need comments.