I build backend systems that hold up under real load.
Ex-Antino Labs, where I owned core backend systems for Stackd — a smart vending platform serving 375K+ registered users — designing REST APIs, optimizing PostgreSQL at scale, and re-architecting order workflows end to end.
Systems worked on: 375K+ users · 22K+ MAU · 10K+ daily orders
My impact
Open to backend, full-stack, and startup engineering roles.
<Selected Work/>
Personal projects built and shipped in competitive tech fests
<Tech Stack/>
Backend
Databases
Languages
Frontend
Tooling
<Engineering Principles/>
How I actually approach building systems, not just what I've used
Measure before optimizing
CoreI profile first, guess later. The 87% latency cut on Stackd's order API came from tracing the actual bottleneck — the inventory reservation step — not from broad, speculative changes.
Keep systems observable
CoreYou can't fix what you can't see. Reporting queries that silently took 6+ minutes only got fixed because the execution flow was actually inspected end to end, not assumed to be fine.
Build for scale, not for show
Indexing, pagination, and execution-plan tuning across 5+ high-traffic endpoints mattered more than any single clever query — scale comes from consistent discipline, not one-off tricks.
Simple beats clever
Async processing over synchronous reservation logic wasn't a clever trick — it was the obvious fix once the bottleneck was clear. The simplest fix that addresses the real cause wins over a complex one that impresses.
<Work Experience/>
Associate Software Developer
Most recent roleJun 2025 - Jul 2026
Antino Labs • Gurugram
Owned core backend systems for Stackd, a smart vending platform serving 375K+ registered users and 22K+ MAU.
The 87% latency cut came from parallelizing the inventory reservation step — moving it off the request path into async processing instead of resolving it synchronously per order.
- Redesigned reporting queries and the database execution flow, cutting API response time from 6+ minutes to 5–6 seconds
- Re-architected the end-to-end order workflow, cutting average completion time from ~2min to ~50s
- Designed REST APIs handling 10K+ daily orders across inventory, wallets, refunds, and vending machine operations
- Tuned indexing, pagination, and execution plans across 5+ high-traffic endpoints to reduce database load
- Shipped features across web and mobile (React.js / React Native), partnering with backend teams end-to-end