• @AVincentInSpace@pawb.social
    link
    fedilink
    English
    1827 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.

    • @jimitsoni18@lemmy.zip
      link
      fedilink
      97 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.

    • Ephera
      link
      fedilink
      527 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
        87 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.

      • @AVincentInSpace@pawb.social
        link
        fedilink
        English
        337 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!

        • Redex
          link
          fedilink
          27 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
            14
            edit-2
            7 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.

          • 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
          17 months ago

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

        • @interdimensionalmeme@lemmy.ml
          link
          fedilink
          87 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.

        • Codex
          link
          fedilink
          97 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.

        • @frezik@midwest.social
          link
          fedilink
          157 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
            fedilink
            47 months ago

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

        • Phoenixz
          link
          fedilink
          57 months ago

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

        • @racemaniac@lemmy.dbzer0.com
          link
          fedilink
          47 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?

      • @actually@lemmy.world
        link
        fedilink
        57 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

  • BlackEco
    link
    fedilink
    177 months ago

    RSS/ATOM has to be the best thing to come out of XML

  • Tomkoid
    link
    fedilink
    167 months ago

    BASED. What is the name of this AI? I want to use this.

  • Fonzie!
    link
    fedilink
    267 months ago

    I’m sorry which LLM is this? What are its settings? How’d you get that out of it?

    And how did it give sources?

    • @renzev@lemmy.worldOP
      link
      fedilink
      English
      607 months ago

      I’m sorry which LLM is this?

      It’s perplexity.ai. I like it because it doesn’t require an account and because it can search the internet. It’s like microsoft’s bing but slightly less cringe.

      How’d you get that out of it?

      The screenshot is fake. I used Inspect Element.

          • Fonzie!
            link
            fedilink
            127 months ago

            It’s a proxy for a number of LLMs of choice, prompts anonymised before they’re sent. A bit like how their search engine is anonymised Bing, or how their maps are anonymised Apple Maps. I’m happy with the service!

    • @pfjarschel@lemmy.world
      link
      fedilink
      47 months ago

      The answer is not real. The tool, on the other hand, is called Perplexity. It “understands” your question, searches the web, and gives you a summary, citing all the relevant sources.

      • clb92
        link
        fedilink
        English
        287 months 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
            link
            fedilink
            English
            9
            edit-2
            7 months 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.

  • @SzethFriendOfNimi@lemmy.world
    link
    fedilink
    38
    edit-2
    7 months 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
      117 months 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.

      • @Nithanim@programming.dev
        link
        fedilink
        17 months ago

        We slowly need to interface with an app at work that uses fixed-width too. It does not sound that bad if you hear it but it sucks to figure out where you are missing whitespace when most fields are not used and therefore all whitespace. Oh, and of course there are a lot of fields, also are aligned/formatted differently based on their type and has thin/no/wrong documentation. And I have yet to find a simple but decent “debugger”.

  • @AeonFelis@lemmy.world
    link
    fedilink
    English
    197 months ago

    XML is good for markup. The problem is that people too often confuse “markup” and “serialization”.

      • Dr. Bluefall
        link
        fedilink
        English
        27 months ago

        Unironically.

        Given the choice between S-expressions and XML, I will choose S-expressions.