Case studies
Projects

Multi Service Architecture in One Process
Isolated routers run side by side on separate ports in one process, sharing memory instead of network hops, with per-service fault containment built in.
View project
Architecting Static Site Generator (SSG)
Markdown folders compile into SEO-ready pages, wiring JSON-LD, feeds, search, and multilingual routing into a single build from the first commit onward.
View project
Turning Runtime Events Into a Smart Firewall
Runtime events feed a small model learning normal traffic per endpoint, then flag deviations a static rulebook never anticipated and block them inline.
View project
Designing HTTP Servers Around Deno Runtime
Dropping a file into a routes folder becomes a typed HTTP endpoint on the next request, with composable middleware and streaming responses, no restart.
View project
One Template Engine for Server Edge and Browser
Templates compile once and render into safe markup as a string or stream on any JavaScript runtime, moving server to edge to browser with no code changes.
View project
Type-Safe SQL Queries Across Multiple Dialects
Schema definitions feed a builder emitting parameterized queries with inferred types, catching a bad column before runtime across SQLite, Postgres, MySQL.
View project