• 0 Posts
  • 16 Comments
Joined 1 year ago
cake
Cake day: August 20th, 2023

help-circle


  • Slurs work like a treadmill. Technical terms start being used as slurs (“moron” and “idiot” are examples) and are replaced by new, neutral words, and the cycle begins again. We’ve had a few decades of “special” being used as a euphemism for mental disability, and that word is on its way to becoming a slur (in certain contexts, it can be used unambiguously as one).













  • “Hand-written assembly” is not more powerful than any other Turing-complete language (including Perl and Python), just more painfully slow and prone to human error to write. (Perhaps if you have a special case requiring speed (such as the processing being done in a tight loop in a financial trading app and the results needing to beat rival trading systems by milliseconds or something equally esoteric), it’d make sense, but in that case, a modern compiler (for, say, C/C++/Rust or similar) would yield comparable results, and if a lot is riding on those milliseconds, you’d eschew code and build a FPGA that pulls the data out of memory buffers in hardware or similar.)

    So these days, the only use case for hand-writing assembly language (other than low-level OS/firmware programming or compiler development) is performative Feats Of Strength, where the challenge is the point. And in that case, you’d be trying to do something heroically challenging, like writing an Atari 2600 demake of Baldur’s Gate or something.