• 1 Post
  • 11 Comments
Joined 2 months ago
cake
Cake day: July 22nd, 2024

help-circle







  • And there are some truly magic tools.

    XSDs are far from perfect, but waaay more powerful than json schema.

    XSLT has its problems, but completely transforming a document to a completely different structure with just a bit of text is awesome. I had to rewrite a relatively simple XSLT in Java and it was something like 10 times more lines.





  • Assembly is hard, because you need to understand your problem on multiple levels and get absolute zero guidance by compilers.

    Even C guides you a tiny bit and takes away some of the low level details, so you have more mental capacity to actually solve your problem.

    Oh, and you have a standard library. Assembly seems to involve solving everything yourself. No simple function call to truncate a string or turn a char array to uppercase.