

“Control the System. Or Be Controlled By It.”
Crafting code.
Chasing horizons.
I'm a Software Developer drawn to unfamiliar systems, new fields, and new places — building deeply on one frontier, then stepping into another with the same curiosity.
Based in Kerala, India. Currently obsessed with distributed systems, clean architecture, and the next flight out. I believe the best ideas live at the intersection of deep focus and wide wandering.
When I'm not pushing code, I'm pushing altitude.







Things I've
built & written.
Interceptor — PostgreSQL Protocol Proxy
A high-performance PostgreSQL wire-protocol proxy that intercepts destructive queries for admin approval, adds audit logging, and keeps latency low with zero-copy forwarding for safe traffic.
if (isDestructive(sql)) { await createApprovalRequest(sql, actor); return blockUntilApproved();}forwardZeroCopy(packet, upstreamSocket);Designing Retry Systems that Don't Melt Your Queue
How to combine retry budgets, backoff, and idempotency so recovery stays predictable instead of amplifying incidents.
Read articleSchema Evolution in Event-Driven Systems
Practical versioning patterns that keep producers and consumers moving without synchronized releases.
Read article