Aion
(C++ / LLVM / YAML)
LLVM optimization debugger that answers the only question compiler engineers actually care about: "why didn't it optimize?" Decodes pass remarks, multi-context IR analysis, covers vectorization, PGO, devirtualization — basically the stuff LLVM doesn't tell you unless you ask very nicely.
Lain-OS
(C / RISC-V ASM) — codenamed Abyss
Experimental kernel I'm building because I got annoyed at how operating systems manage resources. 10-layer architecture, hierarchical NeuroVFS, a temporal fracture scheduler which is exactly as chaotic as it sounds, and a predictive shell that uses Markov chains to guess what you'll type next (it's disturbingly accurate).
aetherfm
(C / GTK / GLib)
GTK+ file manager that doesn't suck. Fast, minimal, actually respects UNIX philosophy unlike certain other file managers I could name.
Aether Allocator
(C)
Single-header C allocator. Zero overhead. Eliminates leaks, double-free, dangling pointers. The kind of thing you write after you've spent one too many nights debugging someone else's malloc crimes.
inter-cpp
(C++17)
Bytecode interpreter with a custom opcode dispatch mechanism I'm unreasonably proud of.
P.A
(C++)
Process analyzer. Finds and harvests zombie and orphan processes via syscall instrumentation. Yes, "harvests" is the right word.
rune
(Haskell)
Pure Haskell classification library. Human-readable rules, no neural network black-box nonsense. If you can't explain why a decision was made, you don't have a classifier, you have a religion.
krrs
(Rust)
What happens when you try to write a kernel in Rust. Turns out the borrow checker has opinions about interrupt handlers.
bootloader-asm
(x86 ASM)
x86 bootloader in pure assembly. Real-mode to protected-mode. The 47 most important bytes of any computer's life.
VoidAllocator
(C++)
Memory allocator tuned for bulk integer allocations. Turns out when you stop pretending everything is a generic object, things get fast.
bgkernel
(C++ / ASM)
A real working kernel model. Bootloading, interrupts, the whole stack. Yes it actually boots.
QuantumTeleportMAUI
(Q# / C#)
Quantum teleportation simulator. I wanted to understand quantum computing so I built a teleporter. No particles were harmed.