Article URL: https://lem12.uksw.edu.pl/wiki/Loglan%2782_project
Comments URL: https://news.ycombinator.com/item?id=43730885
Points: 22
# Comments: 3


This project uses UML diagrams to illustrate the structure and behavior of the DDD example—a cargo shipping system—from Eric Evans' book (Domain-Driven Design: Tackling Complexity in the Heart of Software).
Comments URL: https://news.ycombinator.com/item?id=43731250
Points: 25
# Comments: 10
https://github.com/takaakit/uml-diagram-for-ddd-example-in-evans-book
Article URL: https://www.playhextraction.com/
Comments URL: https://news.ycombinator.com/item?id=43731746
Points: 4
# Comments: 0

Article URL: https://arxiv.org/abs/2504.11212
Comments URL: https://news.ycombinator.com/item?id=43729063
Points: 8
# Comments: 3
Article URL: https://alichraghi.github.io/blog/zig-gpu/
Comments URL: https://news.ycombinator.com/item?id=43726413
Points: 33
# Comments: 2

Article URL: https://www.inkandswitch.com/ink/notes/phase-2-constraint-system/
Comments URL: https://news.ycombinator.com/item?id=43729932
Points: 25
# Comments: 3
https://www.inkandswitch.com/ink/notes/phase-2-constraint-system/

I make a no-CGO Go SQLite driver, by compiling the amalgamation to Wasm, then loading the result with wazero (a CGO-free Wasm runtime).
To compile SQLite, I use wasi-sdk, which uses wasi-libc, which is based on musl. It's been said that musl is slow(er than glibc), which is true, to a point.
musl uses SWAR on a size_t to implement various functions in string.h. This is fine, except size_t is just 32-bit on Wasm.
I found that implementing a few of those functions with Wasm SIMD128 can m
