Building DoStuff: An AI Agent From Scratch (No Frameworks, Just the Fundamentals)Watch the walkthrough for a less technical deep dive: https://www.youtube.com/watch?v=Ah3I2DKsljo Most "build an AI agent" tutorials wrap LangChain or a similar framework around a model and call it doAug 2, 2026·17 min read
Engineering an AI-Native Interface: Architecture, Authentication, and Lessons from Shipping the GetHired MCP ServerJul 23, 2026·8 min read
Introducing GetHired: The AI-First Platform Revolutionizing How You Find Startup & Remote JobsFinding a job in 2026 is broken. It’s a fragmented, exhausting loop of opening fifty tabs, wrestling with terrible search filters, and hitting paywalls to access basic "AI features" on legacy platforms. Whether you are hunting for high-growth startup...Dec 30, 2025·6 min read
Master React State with Zustand: A Scalable Redux Toolkit AlternativeState management is a crucial aspect of React applications, and developers often debate which library to use. Redux Toolkit (RTK) has been the go-to solution for many years, but an alternative has gained popularity for its simplicity and performance:...Dec 29, 2025·4 min read
Guide to Implementing E2EE in Your Modern Web ApplicationsEnd-to-end encryption (E2EE) has become a critical standard in applications that deal with sensitive communication—whether it's messaging apps, secure file sharing, or identity management platforms. Today, I’ll be sharing with you how I implemented E...Jun 7, 2025·6 min read
Horizontally Scaling Socket.IO: Architecting Real-Time Apps for ScaleReal-time applications have become fundamental in modern web and mobile apps — think live chats, multiplayer games, collaboration tools, notifications, and more. Socket.IO is one of the most popular libraries for building real-time bidirectional comm...Jun 3, 2025·5 min read
Building Real Push Notifications in a Full-Stack Next.js App Using Web PushAdvanced guide with full source code using web-push, MongoDB, and Next.js App Router. Introduction Push notifications bring real-time interaction to the web, even when your app is closed. Unlike polling or WebSockets, web push is battery-efficient a...Jun 2, 2025·7 min read
Building Hybrid Semantic Search with MongoDB Atlas, FastAPI (Sentence Transformers) & JavaScriptIn this article, we'll implement hybrid semantic search using MongoDB Atlas Full-Text Search and Vector Search. This approach powers a fast, relevant search experience by combining keyword and semantic understanding. We'll use a FastAPI backend for c...May 17, 2025·11 min read