• AVincentInSpace@pawb.social
    link
    fedilink
    English
    arrow-up
    4
    ·
    1 month 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.

      • actually@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        1 month 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

    • Ephera@lemmy.ml
      link
      fedilink
      arrow-up
      1
      ·
      1 month 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.

  • it_depends_man@lemmy.world
    link
    fedilink
    Deutsch
    arrow-up
    1
    ·
    1 month ago

    It is very cool, specifically as a human readable mark down / data format.

    The fact that you can make anything a tag and it’s going to be valid and you can nest stuff, is amazing.

    But with a niche use case.

    Clearly the tags waste space if you’re actually saving them all the time.

    Good format to compress though…

    • CanadaPlus@lemmy.sdf.org
      link
      fedilink
      arrow-up
      1
      ·
      1 month ago

      I think we did a thread about XML before, but I have more questions. What exactly do you mean by “anything can be a tag”?

      It seems to me that this:

      <address>
          <street_address>21 2nd Street</street_address>
          <city>New York</city> 
          <state>NY</state>
          <postal_code>10021-3100</postal_code>
      </address>
      

      Is pretty much the same as this:

        "address": {
          "street_address": "21 2nd Street",
          "city": "New York",
          "state": "NY",
          "postal_code": "10021-3100"
        },
      

      If it branches really quickly the XML style is easier to mentally scope than brackets, though, I’ll give it that.

      • ClassifiedPancake@discuss.tchncs.de
        link
        fedilink
        arrow-up
        1
        ·
        edit-2
        1 month ago

        Since XML can have attributes and children, it’s not as easy to convert to JSON.

        Your JSON example is more akin to:

        <address street_address="21 2nd Street" city="New York" ...></address>
        
        • CanadaPlus@lemmy.sdf.org
          link
          fedilink
          arrow-up
          1
          ·
          edit-2
          1 month ago

          Hmm, so in tree terms, each node has two distinct types of children, only one of which can have their own children. That sounds more ambiguity-introducing than helpful to me, but that’s just a matter of taste. Can you do lists in XML as well?

    • Caveman@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      1 month ago

      I don’t mind xml as long as I don’t have to read or write it. The only real thing I hate about xml is that an array of one object can mistaken for a property of the parent instead of a list

    • Gremour@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      1 month ago

      YAML for human-written files, JSON for back-to-front and protobuf for back-to-back. XML is an abomination.

      • clb92@feddit.dk
        link
        fedilink
        English
        arrow-up
        1
        ·
        1 month ago

        Lots or file formats are just zipped XML.

        I was reverse engineering fucking around with the LBX file format for our Brother label printer’s software at work, because I wanted to generate labels programmatically, and they’re zipped XML too. Terrible format, LBX, really annoying to work with. The parser in Brother P-Touch Editor is really picky too. A string is 1 character longer or shorter than the length you defined in an attribute earlier in the XML? “I’ve never seen this file format in my life,” says P-Touch Editor.

          • clb92@feddit.dk
            link
            fedilink
            English
            arrow-up
            1
            ·
            edit-2
            1 month ago

            Here’s an example of a text object taken from the XML, if you’re curious: https://clips.clb92.xyz/2024-09-08_22-27-04_gfxTWDQt13RMnTIS.png

            EDIT: And with more complicated strings (like ones havingnumbers or symbols - just regular-ass ASCII symbols, mind you) there will be tens of <stringItem>, because apparently numbers and letters don’t even work the same. Even line breaks have their own <stringItem>. And if the number of these <stringItem> and their charLen don’t match what’s actually in pt:data, it won’t open the file.

    • Serinus@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      1 month ago

      Disagree. I prefer XML for config files where the efficiency of disk size doesn’t matter at all. Layers of XML are much easier to read than layers of Json. Json is generally better where efficiency matters.

  • SzethFriendOfNimi@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    edit-2
    1 month ago

    It’s not a waste of time… it’s a waste of space. But it does allow you to “enforce” some schema. Which, very few people use that way and so, as a data store using JSON works better.

    Or… we could go back to old school records where you store structs with certain defined lengths in a file.

    You know what? XML isn’t looking so bad now.

    If you want to break the AI ask instead what regex you should use to parse HTML.

    • leisesprecher@feddit.org
      link
      fedilink
      arrow-up
      1
      ·
      1 month ago

      Had to work with a fixed string format years ago. Absolute hell.

      Something like 200 variables, all encoded in fixed length strings concatenated together. The output was the same.

      …and some genius before me used + instead of stringbuilders or anything dignified, so it ran about as good as lt. Dan.