AI cannot replace humans spiteful spirit

https://lemmy.zip/post/43636274

this is like when I built that web server in x86 assembly lol.
I bet that thing was fast!

Meh. Even hosting static files in a RAM disk over localhost, you’re 99% as good as you can be by using the sendfile() system call. The kernel can copy data from one file descriptor to another faster than any userspace program can. Implementing the Length header is a stat() call.

If you’re not on a RAM disk and not on localhost, then disk access or network throughput will predominate.

Assembly is not magic go faster sauce.