I'm a full-stack developer and AI engineer based in Kolkata. I build production backends and AI-powered products end-to-end — from Next.js interfaces to FastAPI services and Gemini integrations. I built ShipIntern, an internship-finding tool for fellow students that reached 250+ users.
Build / Ship / Iterate / Repeat
Developing since 2023 — now in final year of college.
// idempotent webhook — Shiprocket / ONDC
app.post("/webhooks/order", async (req, res) => {
if (await seen(req.body.eventId))
return res.sendStatus(200);
await transition(order, req.body.status);
res.sendStatus(200);
});
# compound index — hot-path reads
orders.create_index([
("status", 1),
("updated_at", -1)])
# ShipIntern — real-time classification
model = genai.GenerativeModel("gemini-2.0")
res = model.generate_content(prompt)
return res.text
FROM node:20-alpine
COPY . .
RUN npm ci && npm run build
CMD ["npm", "start"]