siriusmart@lemmy.world to Programmer Humor@programming.dev · 5 months agoso my friend asked me to explain whats an rss feedlemmy.worldimagemessage-square33fedilinkarrow-up1429
arrow-up1429imageso my friend asked me to explain whats an rss feedlemmy.worldsiriusmart@lemmy.world to Programmer Humor@programming.dev · 5 months agomessage-square33fedilink
minus-squareGTG3000@programming.devlinkfedilinkarrow-up1·5 months agoYeah, 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.
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.