- building an LLM Gateway in Go — request routing, provider abstraction, rate limiting
- went deep on
net/httpinternals — handlers, middleware, graceful shutdown, concurrent map safety
|
🚦 Throttlr
Rate-limiting-as-a-service. Atomic Redis Lua scripts, published |
🎨 Lynx's Draw Real-time collaborative whiteboard. 100 concurrent users @ 110ms p95. WebSockets · Redis · Node.js |
|
🔀 goproxy Concurrent HTTP load balancer / reverse proxy built from scratch — zero external deps. Go · net/http · Systems |
⚡ LogFix Solo build, 6 days, 2Fast2MCP 2026 hackathon. Go · Hackathon |
~/skills.mod — the go.mod version, for anyone who reads this far
module github.com/JejurkarYash/skills
go 1.23
require (
go v1.23.0 // daily driver
postgresql v16.0 // raw SQL, no ORM
redis v7.4 // pub/sub, atomic Lua scripting
docker v24.0
)
require (
typescript v5.0 // shipped, maintained
nextjs v15.0
react v19.0
websockets v1.0
)
require (
kubernetes v1.30 // indirect, learning
)computed by a GitHub Action inside this repo — no third-party server, updates itself daily

