this post was submitted on 08 Sep 2024
1230 points (98.3% liked)

Programmer Humor

32371 readers
425 users here now

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

Rules:

founded 5 years ago
MODERATORS
 
top 50 comments
sorted by: hot top controversial new old
[–] AVincentInSpace@pawb.social 179 points 1 month ago (8 children)

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 50 points 1 month ago (1 children)

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 26 points 1 month ago (2 children)

Strong competition from yaml and json on this point however

[–] ClassifiedPancake@discuss.tchncs.de 43 points 1 month ago (4 children)

JSON not supporting comments is a human rights violation

[–] frezik@midwest.social 15 points 1 month ago (1 children)

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 33 points 1 month ago (17 children)

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 143 points 1 month ago (2 children)
[–] Serinus@lemmy.world 18 points 1 month ago (2 children)

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.

[–] Hexarei@programming.dev 17 points 1 month ago (1 children)
load more comments (1 replies)
load more comments (1 replies)
load more comments (1 replies)
[–] toothpaste_sandwich@feddit.nl 90 points 1 month ago (1 children)

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

[–] SkyNTP@lemmy.ml 46 points 1 month ago (2 children)

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

[–] Agent641@lemmy.world 21 points 1 month ago (1 children)

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 1 month ago (2 children)
[–] RunningInRVA@lemmy.world 15 points 1 month ago

Except for obvious typos

load more comments (1 replies)
[–] gregor@gregtech.eu 70 points 1 month ago

a wate of time

[–] Batman@lemmy.world 59 points 1 month ago (1 children)
[–] renzev@lemmy.world 63 points 1 month ago* (last edited 1 month ago) (2 children)
[–] clb92@feddit.dk 28 points 1 month ago (1 children)

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 10 points 1 month ago* (last edited 1 month ago) (1 children)

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

[–] clb92@feddit.dk 9 points 1 month ago* (last edited 1 month ago) (3 children)

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 numbers or symbols - just regular-ass ASCII symbols) there will be tens of , because apparently numbers and letters don't even work the same. Even line breaks have their own . And if the number of these and their charLen don't match what's actually in pt:data, it won't open the file.

load more comments (3 replies)
load more comments (1 replies)
[–] LittleWizard@feddit.org 44 points 1 month ago (3 children)

I hate writing xml with a passion

[–] Knock_Knock_Lemmy_In@lemmy.world 30 points 1 month ago (1 children)

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 1 month ago* (last edited 1 month ago) (1 children)

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 11 points 1 month ago (2 children)

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 34 points 1 month ago
[–] Aceticon@lemmy.world 30 points 1 month ago

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

[–] lord_ryvan@ttrpg.network 26 points 1 month ago (2 children)

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 60 points 1 month ago (1 children)

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 1 month ago (2 children)

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 1 month ago (2 children)

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 1 month ago (1 children)

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

load more comments (1 replies)
[–] BlackEco@lemmy.blackeco.com 16 points 1 month ago

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

[–] flashgnash@lemm.ee 14 points 1 month ago

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

[–] expatriado@lemmy.world 13 points 1 month ago (1 children)

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

[–] it_depends_man@lemmy.world 12 points 1 month ago (6 children)

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 1 month ago (1 children)

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)
[–] CanadaPlus@lemmy.sdf.org 9 points 1 month ago (5 children)

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.

load more comments (5 replies)
load more comments (4 replies)
load more comments
view more: next ›