this post was submitted on 02 May 2024
401 points (92.8% liked)

Programmer Humor

18947 readers
687 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
[–] frezik@midwest.social 12 points 3 months ago (1 children)

It was a markup language until someone decided to parse and execute it as a programming language. This person should be watched for other deranged behavior.

[–] ZILtoid1991@lemmy.world 3 points 3 months ago (1 children)

I use XML as markup language, what kind of deranged person thought to turn it into a programming language? My problems with the Lua API led me down the rabbit hole of making my own VM and implementation, not looking at a markup languge, then go "what if I used this for scripting?".

[–] frezik@midwest.social 4 points 3 months ago

When they make XML do these things (or the way Github Actions does it with YAML), they're essentially creating a representation of the AST that the compiler would make internally from a mini language. So there's a few possibilities:

  • They don't know how compilers work and reach for a tool they do know
  • They know, but figure the problem at hand doesn't need the complexity of a mini language and start the project the quick and dirty way, and it gets out of hand as they add features
  • They may or may not know, but they do get caught up in the hype of some other tool (likely what happened with XSLT)