Generative AI and the War on Writing [video] (youtube.com)
Writing a Social Insect Civilization (centauri-dreams.org)
UCSD Pascal: In depth 1/n – markbessey.blog (markbessey.blog)
Show HN: SIMD Optimized Wasm Libc
I was asked to upstream (which I tried to, it's the linked issue), and about additional functions.
Since then, the issue hasn't gained a lot of traction, but I implemented a few far more interesting algorithms, both by Wojciech Muła:
SIMDized check which bytes are in a set: http://0x80.pl/notesen/2018-10-18-simd-byte-lookup.html (for strspn and strcspn).
SIMD-friendly algorithms for substring searching: http://0x80.pl/notesen/2016-11-28-simd-strfind.html (for strstr and memmem).
These basically "complete" the set of string.h methods.
I also made sure the header compiles with C++, added a bunch of tests, and made it easier to integrate in your stuff if even it doesn't get upstreamed.
If you're interested in diving into the code, this is a direct link: https://github.com/ncruces/go-sqlite3/blob/main/sqlite3/libc...
No comments yet