Refactored various functions to take &T or Arc<T> instead of &Arc<T> to remove double indirection, improving memory efficiency in the VMM.
Enhanced the `#[tokio::main]` procedural macro to provide distinct, context-aware error messages for return type mismatches, significantly improving debugging for async entry points.
Engineered an asynchronous image processing pipeline with caching and downscaling, eliminating UI thread blocking and ensuring smooth performance for the runner used in DHH's Omarchy.

A cloud-native orchestrator that spawns ephemeral microVMs in milliseconds via Cloud Hypervisor. Combines VM isolation with container-like speed using QCOW2, I/O hotplugging, and zero-copy global cache. Built with Rust/Go and supports automatic public ingress.


P2P file sharing utilizing TCP and QUIC for maximum throughput. Engineered to outperform existing solutions like LocalSend and QuickShare in local transfer benchmarks. (Benchmarks coming soon)
A look into for loops and how iteration models differ across programming languages.
Let's build a minimal HTTP router from scratch in Rust, exploring how web servers actually handle requests over raw TCP sockets.