• AVincentInSpace@pawb.social
    link
    fedilink
    English
    arrow-up
    174
    ·
    3 months ago

    Some data formats are easy for humans to read but difficult for computers to efficiently parse. Others, like packed binary data, are dead simple for computers to parse but borderline impossible for a human to read.

    XML bucks this trend and bravely proves that data formats do not have to be one or the other by somehow managing to be bad at both.

    • Ephera@lemmy.ml
      link
      fedilink
      arrow-up
      48
      ·
      3 months ago

      The thing is, it was never really intended as a storage format for plain data. It’s a markup language, so you’re supposed to use it for describing complex documents, like it’s used in HTML for example. It was just readily available as a library in many programming languages when not much else was, so it got abused for data storage a lot.

      • Treczoks@lemmy.world
        link
        fedilink
        arrow-up
        8
        ·
        3 months ago

        That’s why professionals use XML or JSON for this kind of projects and SQL for that kind of projects. And sometimes even both. It simply depends on the kind of problem to solve.

    • jimitsoni18@lemmy.zip
      link
      fedilink
      arrow-up
      9
      ·
      3 months ago

      Just a while ago, I read somewhere: XML is like violence. If it doesn’t solve your problem, maybe you are not using it enough.

      • actually@lemmy.world
        link
        fedilink
        arrow-up
        5
        ·
        3 months ago

        Over time I have matured as a programmer and realize xml is very good to use sometimes, even superior. But I still want layers between me and it. I do output as yaml when I have to see what’s in there

        • racemaniac@lemmy.dbzer0.com
          link
          fedilink
          arrow-up
          4
          ·
          3 months ago

          But is that the fault of XML, or is the data itself just complex, or did they structure the data badly?

          Would another human readable format make the data easier to read?