Full-Stack & Systems Engineer

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

Will Domine
Available for Work

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

avx2_filter.cpp

// 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...)

Max Throughput1.3 Billion PPS

Projects

A selection of projects exploring high-performance systems and modern web architecture.

AVX2 High-Performance Packet Filter

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.

C++AVX2SIMDNetworking
BitMesh Gateway

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.

GogRPCLinux Kernel TuningDistributed Systems
Portfolio Website

Portfolio Website

A high-performance, edge-deployed portfolio built with Nuxt 3. Dynamically syncs project data using GitHub's GraphQL API and features real-time localization.

Nuxt 3TypeScriptGraphQLCloudflare