this post was submitted on 09 Sep 2024
417 points (95.8% liked)

Programmer Humor

19187 readers
1192 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
[–] corroded@lemmy.world 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.

[–] i_am_not_a_robot@feddit.uk 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.

[–] MagicShel@programming.dev 4 points 1 week ago (1 children)
[–] corroded@lemmy.world 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?

[–] MagicShel@programming.dev 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.