SemVer Considered Harmful
https://jolynch.github.io/posts/semver_considered_harmful/
https://jolynch.github.io/posts/semver_considered_harmful/
Async Rust is about concurrency, not (just) performance
https://kobzol.github.io/rust/2025/01/15/async-rust-is-about-concurrency.html
https://kobzol.github.io/rust/2025/01/15/async-rust-is-about-concurrency.html
Kobzol’s blog
Async Rust is about concurrency, not (just) performance
TLDR: I think that the primary benefit of async/await is that it lets us concisely express complex concurrency; any (potential) performance improvements are just a second-order effect. We should thus judge async primarily based on how it simplifies our code…
Improve Rust Compile Time by 108x
https://burn.dev/blog/improve-rust-compile-time-by-108x/
https://burn.dev/blog/improve-rust-compile-time-by-108x/
burn.dev
Improve Rust Compile Time by 108X
We started with a compilation time of 108 seconds for the matmul
benchmarks, which was reduced to only 1 second after all the
optimizations. The most effective optimization was the element-type
generics swap, where we instantiated generic functions with predefined…
benchmarks, which was reduced to only 1 second after all the
optimizations. The most effective optimization was the element-type
generics swap, where we instantiated generic functions with predefined…
A minimalistic implementation of Refal (in Rust).
https://github.com/ilya-klyuchnikov/refal
https://github.com/ilya-klyuchnikov/refal
GitHub
GitHub - ilya-klyuchnikov/refal
Contribute to ilya-klyuchnikov/refal development by creating an account on GitHub.
Reverse Engineering Call Of Duty Anti-Cheat
https://ssno.cc/posts/reversing-tac-1-4-2025/
https://ssno.cc/posts/reversing-tac-1-4-2025/
ssno
Reverse Engineering Call Of Duty Anti-Cheat
Interested in Anti-Cheat analysis? I highly recommend checking out Guided Hacking’s Anti-Cheat section.
I’ve been reversing Black Ops Cold War for a while now, and I’ve finally decided to share my research regarding the user-mode anti-cheat inside the game.…
I’ve been reversing Black Ops Cold War for a while now, and I’ve finally decided to share my research regarding the user-mode anti-cheat inside the game.…
Examples of quick hash tables and dynamic arrays in C
https://nullprogram.com/blog/2025/01/19/
https://nullprogram.com/blog/2025/01/19/
A WebAssembly compiler that fits in a tweet
https://wasmgroundup.com/blog/wasm-compiler-in-a-tweet/
https://wasmgroundup.com/blog/wasm-compiler-in-a-tweet/
WebAssembly from the Ground Up
A WebAssembly compiler that fits in a tweet
Starting with a 192-byte one-liner that implements a Reverse Polish Notation arithmetic compiler, we'll work backward to transform it into readable JavaScript by removing one code golf trick at a time
Cloud virtualization
: Red Hat, AWS Firecracker, and Ubicloud internalshttps://www.ubicloud.com/blog/cloud-virtualization-red-hat-aws-firecracker-and-ubicloud-internals
Ubicloud
Cloud virtualization: Red Hat, AWS Firecracker, and Ubicloud internals
VMs are much harder to understand these days. Linux provides many building blocks for virtualization, but only a select few kernel engineers know how to stitch them together. So, we compiled our understanding into this blog that describes four reference architectures…
HyperLogLog is an algorithm for the count-distinct problem, approximating the number of distinct elements in a multiset.
https://en.wikipedia.org/wiki/HyperLogLog
https://en.wikipedia.org/wiki/HyperLogLog
Wikipedia
HyperLogLog
approximate distinct counting algorithm
Anti-unification and Generalization: A Survey
https://arxiv.org/pdf/2302.00277
https://arxiv.org/pdf/2302.00277
Categorical Unification
http://umu.diva-portal.org/smash/get/diva2:142802/FULLTEXT01
http://umu.diva-portal.org/smash/get/diva2:142802/FULLTEXT01
LinuxPDF
: Linux running inside a PDF file via a RISC-V emulatorhttps://github.com/ading2210/linuxpdf
GitHub
GitHub - ading2210/linuxpdf: Linux running inside a PDF file via a RISC-V emulator
Linux running inside a PDF file via a RISC-V emulator - ading2210/linuxpdf
Fun with C++26 reflection - Keyword Arguments
https://pydong.org/posts/KwArgs/
https://pydong.org/posts/KwArgs/
Pydong
Fun with C++26 reflection - Keyword Arguments
In this blog post, we’ll explore implementing order-independent keyword arguments for C++ through use of C++26’s proposed reflection features. I stumbled upon this technique while experimenting with reflection a few days ago and thought it might be worthwhile…