Hi!👋
Welcome to my little slice of the web
I'm a self-taught software developer with a focus on distributed systems and the low-level code they run on. I hope to one day be a robotics engineer working with humanoids. I'm currently learning Rust and building a web server with only Rust's standard library.
Aug 20, 2026
Closures, the Sealed Box a Thread Can Open
A closure is like a sealed box holding instructions plus the values it captured.
Aug 6, 2026
Many Readers, One Mover
This is about the borrow checker that allows many readers or one change permit, never both, and it's enforced by the compiler reading the whole script before the program ever runs.
Jul 19, 2026
I/O, Syscalls, and What Async Is Actually For
What a syscall is and why the kernel sits between your program and the hardware. Also why I/O does not mean slow, and why the real waiting happens inside the accept loop rather than in code you write.
Projects
Agora
A web server written in Rust using only the standard library.
PostgreSQL driver benchmark
A timing comparison of the asyncpg and psycopg2 PostgreSQL drivers under Django.
AnimalsMD
A Flask REST API that matches a pet's symptoms to possible illnesses and returns treatments and products.