INTERNALS · LAB INDEX

Engineering, instrumented

Interactive demos of the systems-engineering problems behind production-grade software. Each one models a real algorithm or production system — naming the system it mirrors and the invariant it proves. Projects show I can build products; this section shows I can solve hard engineering problems for other engineers.

Live

Planned

#7planned

Mini-Postgres: WAL + MVCC

A relational store with a visible write-ahead log. Press CRASH mid-transaction; restart; committed txns survive, uncommitted ones don't.

SIGNAL Database engine internals.

databasesdurability
#8planned

Bloom Filter Playground

Watch the false-positive rate trace the theoretical curve as you insert items. Slider for k shows the optimum.

SIGNAL Probabilistic data structures.

data-structures
#9planned

CRDT Collab Sandbox

Two textareas synced across browser tabs via BroadcastChannel using a real RGA-style CRDT. Diverge offline, converge on reconnect.

SIGNAL Eventual consistency / collaboration architecture.

distributedcrdts
#10planned

Consistent Hashing Ring

Add or remove a server — ~1/N of keys move (vs ~all on naive hash). Side-by-side with Rendezvous (HRW) hashing.

SIGNAL Sharding / cache routing — Cassandra, DynamoDB, every CDN.

shardingdata-structures

Deferred

#3deferred

WebGPU Performance Benchmark

JS vs WebGL vs WebGPU compute. Reads as graphics-flex more than systems-flex; deferred.

#4deferred

Custom WASM VM

Compile a tiny DSL to bytecode + a stack VM with a mark-sweep GC. Enormous scope; overlaps with the existing polyglot sandbox.