1213
AI's take on XML (lemmy.world)
top 50 comments
sorted by: hot top controversial new old
[-] AVincentInSpace@pawb.social 169 points 2 weeks 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 49 points 2 weeks 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.

load more comments (1 replies)
[-] interdimensionalmeme@lemmy.ml 23 points 2 weeks ago

Strong competition from yaml and json on this point however

JSON not supporting comments is a human rights violation

[-] frezik@midwest.social 13 points 2 weeks ago

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

load more comments (1 replies)
load more comments (3 replies)
[-] AVincentInSpace@pawb.social 32 points 2 weeks 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!

load more comments (17 replies)
load more comments (6 replies)
[-] annoyed_onion@lemmy.world 142 points 2 weeks ago
[-] Serinus@lemmy.world 18 points 2 weeks 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.

load more comments (1 replies)
[-] toothpaste_sandwich@feddit.nl 89 points 2 weeks ago

Wow, that's a very passive aggressive reaction. I enjoyed a lot.

[-] SkyNTP@lemmy.ml 46 points 2 weeks ago

This is what happens when stack overflow is used for training.

[-] Agent641@lemmy.world 21 points 2 weeks ago

Not long before AI just tells me to google it, or read the manual.

load more comments (1 replies)
load more comments (1 replies)
[-] umbrella@lemmy.ml 71 points 2 weeks ago
[-] RunningInRVA@lemmy.world 15 points 2 weeks ago

Except for obvious typos

load more comments (1 replies)
[-] gregor@gregtech.eu 70 points 2 weeks ago

a wate of time

[-] Batman@lemmy.world 59 points 2 weeks ago
[-] renzev@lemmy.world 62 points 2 weeks ago* (last edited 2 weeks ago)
[-] clb92@feddit.dk 27 points 2 weeks 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.

[-] SzethFriendOfNimi@lemmy.world 9 points 2 weeks ago* (last edited 2 weeks ago)

Sounds like it’s actually using XSLT or some kind of content validation. Which to be honest sounds like a good practice.

load more comments (4 replies)
load more comments (1 replies)
[-] LittleWizard@feddit.org 42 points 2 weeks ago

I hate writing xml with a passion

[-] Knock_Knock_Lemmy_In@lemmy.world 30 points 2 weeks ago

If you are writing it then you are doing it wrong.

load more comments (1 replies)
load more comments (2 replies)
[-] SzethFriendOfNimi@lemmy.world 38 points 2 weeks ago* (last edited 2 weeks 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 10 points 2 weeks 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.

load more comments (2 replies)
[-] Dirk@lemmy.ml 32 points 2 weeks ago
[-] Aceticon@lemmy.world 29 points 2 weeks ago

I'm starting to like this AI thing...

[-] lord_ryvan@ttrpg.network 24 points 2 weeks 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.world 59 points 2 weeks 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.

[-] lord_ryvan@ttrpg.network 18 points 2 weeks ago

perplexity.ai

Like DuckDuckGo's AI's, but with sources? Sounds cool, thanks!

fake

Ah... Too bad (:

load more comments (2 replies)
load more comments (1 replies)
[-] AeonFelis@lemmy.world 18 points 2 weeks ago

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

load more comments (2 replies)
[-] Tomkoid@lemmy.ml 16 points 2 weeks ago

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

load more comments (1 replies)
[-] BlackEco@lemmy.blackeco.com 16 points 2 weeks ago

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

[-] flashgnash@lemm.ee 14 points 2 weeks ago

Listen we all know deep down the solution is to try to parse it with regex

[-] expatriado@lemmy.world 13 points 2 weeks ago

stuff like this is how reddit found out their users comments were being used 😂

[-] it_depends_man@lemmy.world 10 points 2 weeks 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...

[-] ByteJunk@lemmy.world 18 points 2 weeks ago

I disagree, with a passion.

It is soooo cluttered, so much useless redundant tags everywhere. Just give JSON or YAML or anything really but XML...

But to each their own i guess.

load more comments (1 replies)
load more comments (10 replies)
[-] Fubarberry@sopuli.xyz 9 points 2 weeks ago

AI is starting to get really smart

load more comments
view more: next ›
this post was submitted on 08 Sep 2024
1213 points (98.4% liked)

Programmer Humor

32113 readers
349 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS