๐งช The Lab
Dig to the bottom of each topic and see it work. You write the implementation; the Lab makes the internals visible, runnable, and tweakable โ so you can prove you truly understand it and explain it to anyone.
AI engineering
โ bounded numeric and mock-model engines with explicit evidence labelsedit a bounded fixture โ calculate Q/K/V, attention, logits, and seeded sampling
prompt โ tokens โ greedy vs sampled, temperature/seed
model emits a call โ host runs it โ result fed back
RAG, ReAct, memory, MCP, multi-agent, ops
Run real code
โ browser runtimes and bounded server fixtures โ each route states what actually ranreal CPython in your browser (WASM) โ write & run, no server
live Sandpack runner in the Dojo React lessons
edit one reviewed source โ run a fixed Java 21 child JVM โ replay classfile, main, reference-value copy, and GC unknowns
Data structures
โ code it yourself, watch it moveOpenJDK 21 semantic model: lazy table, collisions, resize split, treeify, mutable-key failure
capacity, size, amortized doubling
LIFO, one end, O(1)
ring buffer, head/tail wrap
nodes, pointers, reversal
parent[], path compression, rank
immutability, interning, char vs byte
BST insert, rotation, traversal
BFS/DFS frontier, adjacency
sift up/down, heapify
prefix paths, node explosion
Algorithms
โ specification โ invariant โ counterexample โ proof transferSystems & reliability
โ watch the dynamics, not just the diagramdedup key, retry-safe writes
type transition rules as code โ graph redraws live
backoff, jitter, poison โ DLQ
cache-aside, TTL, stampede, hot key
partitions, offsets, rebalance, lag
predict B-tree key order โ real EXPLAIN ANALYZE โ defend plan and counterexample
resources, idempotency, versioning
follow one request through Spring, Hikari, JDBC, and PostgreSQL โ then move its work
Production pitfalls & load
โ watch it break as traffic grows, then fix itedit a real patch โ run two consumer workloads โ prove context reversal
real Hikari active/waiting/timeout captured replay
real PostgreSQL 40P01 victim + committed survivor
review source โ predict proxy advice โ inspect real post-failure rows
hot key expires โ N requests hammer DB
edit one Spring path โ replay two real transactions โ preserve a patch ledger
fixed window edge, token bucket
produce > consume โ lag grows
at-least-once โ dedup key
API paradigms
โ really understand what each ISresources, verbs, status, statelessness
protobuf, HTTP/2 streams, codegen
one graph, client-picked fields, N+1
Every route states whether its evidence is measured, calculated, modeled, or illustrative. Some slices complete prediction โ change โ evidence โ defense/transfer; an interactive model alone is not presented as mastery proof.