this post was submitted on 09 Sep 2024
408 points (95.7% liked)

Programmer Humor

19187 readers
1058 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 91 points 1 week ago (3 children)

XML aims to be both human-readable and machine-readable, but manages neither. It's only really worth it if you actually need the complexity or extensibility, otherwise it's just a major pain to map XML structures to any sensible type representation. I've been forced to work with some of the protocols that people like to present as examples of good XML usage and I hate every single one of them.

Fuck YAML though. That spec is longer and more complex than any other markup language I know of and it doesn't have a single fully compliant implementation.

[–] [email protected] 0 points 1 week ago

Yeah, I remember when I was trying to parse XML into some lua tables and it forever stumped me how to represent something like

<thing important_param=10 other_param="abracadabra"> stuff </thing>

You just have to have different ways to turn different tags into stuff in your program and that's a huge amount of overhead to think about when all I want is a hash map and maybe an array.

[–] [email protected] 23 points 1 week ago (2 children)

I'm okay with the "human-readability," but I've never been happy with the "machine-readibility" of XML. Usually I just want to pull a few values from an API return, yet every XML library assumes I want the entire file in a data structure that I can iterate through. It's a waste of resources and a pain in the ass.

Even though it's not the "right" way, most of the time I just use regex to grab whatever exists between an opening and closing tag. If I'm saving/loading data from my own software, I just use a serialization library.

[–] [email protected] 4 points 1 week ago (1 children)
[–] [email protected] 3 points 1 week ago (1 children)

I appreciate the suggestion, but that looks like a Java library. Interpreted languages make me feel dirty. Java makes me feel even dirtier. If it's not C, C++, or ASM, is it really worth using?

[–] [email protected] 2 points 1 week ago

Idk. Been doing it for nearly 20 years and before that I was doing IBM's take on VBScript for another 10. So I have my own perspective there. I've only ever had to parse massive xmls when doing web apps, and for web backends I really only like Java and NodeJS.

But everyone is entitled to their own take. I would imagine there is a streaming parser in other languages as well.

[–] [email protected] 7 points 1 week ago

Yep, it's a PITA to parse and get the values you want. Much prefer JSON. Recently when I needed to parse XML I ran it through an XML to JSON library. Much easier!

If you need to parse XML just for RSS though, it isn't so bad as there are RSS specific libraries which take most of the pain away.

[–] [email protected] 24 points 1 week ago

Ye, we like to use toml for configuration files etc.