// TODO: I’m martinuke0

Welcome to my corner of the internet. This website is a personal blog which I use as a platform to document my learning journey and showcase it for the world to see.
Stylized illustration of a bloom filter grid and an LSM-tree SSTable stack.

Implementing Bloom Filters in LSM-Tree Storage Engines for High-Throughput Key Lookups

Bloom filters are the unsung hero of LSM-tree reads: a few bits per key let engines like RocksDB skip 99% of disk seeks. Here’s the math, the tradeoffs, and what to tune in production.

September 3, 2026 · 11 min · 2217 words · martinuke0
Abstract representation of encrypted network traffic and connection resumption between client and server.

Implementing TLS 1.3 Zero Round-Trip Resumption: Mechanisms, Pitfalls, and Production Deployment

How TLS 1.3 0-RTT resumption actually works on the wire, why replay attacks make it risky for non-idempotent requests, and the patterns real teams use to deploy it safely behind NGINX, Envoy, and HAProxy.

September 3, 2026 · 12 min · 2352 words · martinuke0
Abstract diagram of traffic flowing through a load shedding filter before reaching backend services.

Designing Adaptive Load Shedding Strategies: Patterns, Thresholds, and Failover Mechanisms for Overload Resilience

How to design load shedding that adapts in real time, sets thresholds based on signal quality, and fails over gracefully when the system is already on fire.

September 3, 2026 · 11 min · 2210 words · martinuke0
Diagram of a load balancer distributing HTTP requests across backend server nodes.

Build an HTTP Load Balancer in Go: A CV-Worthy Side Project

A practical, runnable build guide for an HTTP load balancer with health checks and least-connections routing. Architecture, code, and a roadmap to senior-level extensions.

September 3, 2026 · 11 min · 2239 words · martinuke0
Abstract diagram of an LSM-tree with sorted runs cascading across levels.

Architecting RocksDB Storage Engines: Selecting Between Tiered and Leveled Compaction for Production Workloads

Compaction strategy is the single most consequential knob in a RocksDB deployment. This post walks through how tiered (universal) and leveled compaction actually work, what they cost at write and read time, and how to pick one based on your workload shape.

September 3, 2026 · 11 min · 2196 words · martinuke0
Feedback