Related reading
Reversing Factorio's RNG
The author reverse‑engineers Factorio’s RNG, confirms it’s the Boost taus88 generator (a 3‑LFSR XOR combo), proves equivalence with the game’s compiled code via decompilation and symbolic Python checks, and explains how the weak LFSR structure lets you predict future “random” quality outcomes.
Article: Your Next DSL Author Is a Language Model
Typed Domain Grounding (TDG) embeds a DSL inside a mainstream language the LLM already knows (e.g., Kotlin) and uses the host compiler as an oracle. The author describes five building blocks—embedding, choosing a host language with high training‑data frequency, compiler‑driven type safety, a generate‑compile‑repair loop, and an on‑demand teaching tool—and shows measured results from kUML, a Kotli…
InfoQinfoq.com18 minWhen adding a fractional part to a number fixes your shader
A Voronoi fragment shader stutters on an RTX 4070; the author discovers that replacing `fract()` with `x‑floor(x)` eliminates the glitch, suspects a driver miscompile, and documents a week‑long manual debugging process with code, device tests, and LLM‑assisted hypotheses.
Kodebits Day 94: Operator Overloading [FREE]
A brief Swift 6 tutorial showing how to overload the `+` operator for a custom `Point` struct, with a simple code challenge and its solution.
Ray Wenderlichkodeco.com1 minREVERSAL-BENCH: A Reversibility Axis and Reset Oracle for Measuring the Reset-Free RL Cliff
The paper presents REVERSAL‑BENCH, a benchmark that varies environment reversibility with a parameter ρ and provides a ground‑truth reset oracle for eight manipulation tasks. Using it, the authors show that reset‑free RL agents hit a sharp reversibility cliff and become permanently trapped, while episodic agents remain robust.
Apple Machine Learning Researchapple.com1 minpaper


