About

I build products that ship

At NexTrend, I work on quotation flows, dashboards, voice features, and website updates. That usually means touching frontend, backend, database, debugging, and production fixes.

Before that, I built AI products during industrial training. That period taught me something simple: flashy demos are easy to like, but clear and stable systems are what people keep using.

Take a break

Need a moment? Try not to die:

War stories

Bugs I've met and survived

Real problems from real projects. Click any card to read the full story.

Built an AI chatbot for an e-commerce platform. WebSocket connection worked great — until it didn't. Messages would randomly appear twice. I spent a day convinced the AI model was hallucinating duplicates. Turned out: React's StrictMode mounts components twice in dev, creating two WebSocket connections to the same room. In production, rapid re-renders during streaming were doing the same thing. Fix: moved the socket to a singleton ref, deduped by message ID. One line of logic that took a full day to earn.

Built an inventory management platform that used OCR to scan barcodes and product labels. Seemed fine — until someone noticed stock counts were wildly off. Investigation revealed: our OCR was confusing the letter 'O' with the number '0' in product codes like 'P0012' vs 'PO012'. They mapped to completely different items. Thousands of units misattributed. The fix was a post-processing regex to normalize ambiguous characters based on code schema patterns. But first I had to explain to a warehouse manager why the computer couldn't read the letter O. That was a fun meeting.

Built a restaurant booking system. Everything worked perfectly — until Daylight Saving Time happened. Reservations stored as UTC were being displayed without accounting for the DST offset switch. Customers got confirmation emails saying 7 PM, showed up at 7, and their table wasn't ready until 8. The restaurant was not happy. The fix was straightforward (use a proper timezone library, always store with timezone context, never do manual UTC offset math). The lesson: never assume a timestamp is just a number. It is a political statement about what time zone a government decided to observe in 1978.