जो मैं बना रहा हूं
खुले में।
छोटी चीज़ें जो मैंने बनाईं और सार्वजनिक रूप से ship कीं। हर एक के साथ code है, और जहां लागू हो, वहां यह भी कि क्या गलत हुआ।
Task Manager REST API
A task management REST API built with FastAPI, SQLAlchemy 2.0 and JWT auth, with routers, services and repositories kept strictly separated and schema managed by Alembic. Built with Claude Code. The generation prompts are committed alongside the code, and so are the fixes I made afterwards: replacing create_all with Alembic-managed migrations, adding validation the model omitted, and rate-limiting the login endpoint. Not production: no test suite, no CI, SQLite. I recorded the autopsy rather than the highlight reel.
- →The generation prompts are committed alongside the code, and so are the fixes I made afterwards
- →Not production: no test suite, no CI, SQLite. I recorded the autopsy rather than the highlight reel
Real-Time Notification Service
A lightweight real-time notification service built with Node.js, Express and Socket.io. Clients connect over WebSockets and subscribe to notification rooms.
- →Clients connect over WebSockets and subscribe to notification rooms
- →Express HTTP surface alongside the Socket.io server