Currently open to work

v.sys

Full-stack engineer with a growing curiosity for systems internals and production ML. I build things end-to-end and then try to understand why they work.

View ProjectsRead BlogGitHub
Scroll
Work

Latest Projects

All projects →
CMakefile
Low-Level HTTP Client

Built a concurrent HTTP client library in C using direct Linux system calls (no libcurl/libc networking), implementing TCP sockets, HTTP/1.1 request/response handling, and buffer-based parsing. Extended the library with a custom thread pool and thread-safe task queue built from scratch using pthreads, mutexes, and condition variables, enabling async HTTP requests with a callback API. Achieved a 3.8x speedup over sequential execution across 10 concurrent requests.

2026
C++Makefile
File Encryptor/Decryptor

Built a parallel file encryptor/decryptor in C++ implementing four concurrency architectures - thread pool, multiprocessing, hybrid, and async I/O (io_uring) - empirically identifying disk I/O as the bottleneck via instrumentation and perf stat, and demonstrating that async IO achieves equivalent throughput with 7x lower CPU consumption than multiprocessing on a 6-core machine.

2026
PytorchAWS SagemakerNext.js
Sentiment Analysis SAAS

Built and deployed a multimodal PyTorch model for video emotion analysis using text, video, and audio encoders with late fusion. Deployed on AWS SageMaker with a production Next.js frontend featuring S3 direct uploads, API inference, and quota enforcement, implementing a complete ML-to-production pipeline.

2026
Writing

Latest Posts

All posts →
Mar 3, 2026
Building a Concurrent HTTP Client and Parallel File Encryptor From Scratch
From raw sockets to io_uring - building an HTTP fetch library and a parallel file encryptor from scratch, and what broke along the way.