Will
Domine
Bridging the gap between high-throughput backends and modern user experiences. I build end-to-end solutions with a focus on performance at every layer.
8
Months Exp.
5+
Projects
100%
Passion

About Me
I am a 21-year-old developer who enjoys the logic behind complex systems. Whether it's shaving milliseconds off a backend process or ensuring a smooth frontend interaction, I love the satisfaction of finding the right solution to a hard problem.
Key Achievements
C++ AVX2 Packet Filter
Achieved 1.3 billion PPS throughput with 0.76ns latency using AVX2 SIMD intrinsics and cache-line alignment.
BitMesh Gateway (Go)
Built a zero-allocation gRPC router handling 44,000+ RPS using O(1) bitwise logic and custom connection pooling.
Japanese Language Study
Currently self-studying with the Genki I curriculum to build a strong foundation for professional communication.
Education
Computer Science B.S.
Status
Graduating Dec 2026
// Fits exactly 2 packets per 64B cache line
struct alignas(32) Packet {
uint32_t header;
float x, y, z;
uint8_t data[16];
};
// SIMD Intrinsic for batch processing
_mm256_i32gather_epi32(batch...)
Projects
A selection of projects exploring high-performance systems and modern web architecture.

AVX2 High-Performance Packet Filter
A header-only C++ library leveraging AVX2 SIMD intrinsics to filter network packets with 0.76ns latency. Benchmarks confirm a 2.44x speedup over standard scalar C++, capable of processing ~1.3 billion packets per second. Includes an io_uring based zero-copy TCP server demo.

BitMesh Gateway
A cloud-native gRPC edge router handling 44,000+ RPS with ~1ms latency. Engineered to solve the 'Thundering Herd' problem using thread-safe connection pooling. Optimized on Linux (CachyOS) to leverage kernel-level scheduling for maximum throughput.
