May 20, 2026 nestjs typescript redis
Building a Ride-Hailing Driver Matching Service with NestJS, Redis GEO, and Turborepo
How I built the driver-matching core of a Grab-style ride-hailing demo — a Turborepo monorepo of NestJS microservices, Redis GEO for nearest-driver search, race-safe assignment with Redis locks, and real-time tracking over WebSocket.
Read more
arrow_forward May 12, 2026 floci localstack aws-lambda
Floci, the No-Strings-Attached LocalStack Alternative: Lambda + SQS + Hono in 80 Lines of Bash
LocalStack Community froze in March 2026. Floci is a free, MIT-licensed AWS local emulator that runs Lambda in real Docker containers. This post wires up a Turborepo with two Hono Lambdas, an SQS trigger, and CloudWatch logs — using nothing but pnpm, the AWS CLI, and 80 lines of bash.
Read more
arrow_forward May 4, 2026 nestjs graphql dataloader
Killing N+1 in NestJS GraphQL: DataLoader with Prisma and Per-Request Context
How to wire DataLoader into a NestJS + Apollo + Prisma stack to batch field resolvers, eliminate N+1 queries, and expose a runtime toggle for live demos.
Read more
arrow_forward May 3, 2026 serverless aws-lambda localstack
Setting Up a Serverless Stack From Scratch: AWS Lambda + API Gateway + SQS on LocalStack
A from-zero walkthrough of building a multi-Lambda serverless backend with API Gateway, SQS, DLQ, and event source mappings — running locally on LocalStack and deployed with a plain AWS SDK script (no Serverless Framework license).
Read more
arrow_forward Apr 14, 2026 go openapi react-query
End-to-End Type Safety: Go → OpenAPI 3.0 → React Query Hooks + Zod Schemas
Replace manual TypeScript interfaces with auto-generated types, React Query hooks, and Zod validation schemas from your Go API — using oaswrap/spec and orval.
Read more
arrow_forward Apr 12, 2026 go golang system-design
Building a CEX Trading Engine in Go: Order Matching, Settlement, and the Saga Pattern
Deep dive into designing a centralized exchange (CEX) order-to-settlement flow in Go — covering order book internals, wallet state machines, gRPC orchestration, NATS JetStream events, and saga-style compensation.
Read more
arrow_forward Apr 9, 2026 git-worktree claude-code shell-script
gw: A Tiny CLI for Git Worktrees with Auto-Symlinks and Claude Code Hooks
Build a shell wrapper around git worktree that auto-creates branches, symlinks shared resources like node_modules and .env, and integrates with Claude Code via WorktreeCreate hooks.
Read more
arrow_forward Apr 6, 2026 go golang react
Google OAuth Login with Go and React: JWT, Refresh Tokens, and HTTP-Only Cookies
Build a production-ready Google OAuth 2.0 login flow using Go (Fiber) on the backend and React (TypeScript) on the frontend with secure JWT access tokens, hashed refresh tokens, and silent token refresh.
Read more
arrow_forward Apr 6, 2026 go golang react
Firebase Authentication with Go and React: Google, GitHub, and Email/Password
Migrate from backend-handled OAuth to Firebase Authentication — supporting Google, GitHub, and email/password in one unified flow. Go (Fiber) backend verifies Firebase ID tokens and issues its own JWT + refresh token pair.
Read more
arrow_forward Apr 5, 2026 go golang temporal
Temporal Workflow Orchestration in Go: Signals, Timers, and Saga Compensation
Build durable, fault-tolerant business workflows in Go using Temporal. Covers orchestration vs choreography, workflow signals, timer-based timeouts, saga compensation, and a real checkout flow with HMAC-verified webhooks.
Read more
arrow_forward Feb 22, 2026 langgraph langchain python
LangGraph Checkpointer: Automatic State Persistence with PostgreSQL
Use LangGraph PostgresSaver to automatically persist agent state across requests, eliminating manual history management with built-in checkpoint tables.
Read more
arrow_forward Feb 22, 2026 langgraph langchain python
LangGraph Server-Side Memory: Load Conversation History from PostgreSQL
Add persistent conversation memory to LangGraph agents by loading chat history from PostgreSQL before classification, enabling personalized responses across sessions.
Read more
arrow_forward Feb 22, 2026 langgraph langchain python
Build a Stateful AI Agent with LangGraph: Intent-Based Routing and Conditional Workflows
Create a production-ready customer support agent using LangGraph for workflow orchestration, conditional routing, structured output with Pydantic, and confidence-based escalation.
Read more
arrow_forward Feb 20, 2026 nextjs lighthouse seo
From 77 to 100: A Practical Guide to Lighthouse Score Optimization in Next.js
Step-by-step fixes that took our Next.js e-commerce site from mediocre Lighthouse scores to near-perfect 98/100/96/100. Real code changes, real results.
Read more
arrow_forward Feb 16, 2026 langchain python claude
Build a Conversational Agent with LangChain, Tools, and Chat History
Create an interactive terminal assistant using LangChain with Claude, custom tools for math, Wikipedia, time, and crypto prices, plus persistent chat history across turns.
Read more
arrow_forward Feb 16, 2026 rag langchain pgvector
Build a RAG System with LangChain, pgvector, and Ollama
Create a complete Retrieval-Augmented Generation pipeline using PostgreSQL pgvector for semantic search, Ollama for local embeddings, and Claude for answer generation.
Read more
arrow_forward Feb 4, 2026 vscode git-worktree claude-code
VS Code Git Worktrees + Claude Code: Parallel Development with Lifecycle Hooks
How to use the VS Code Git Worktrees extension with .worktree.yml lifecycle hooks to automate tmux sessions for Claude Code parallel development workflows.
Read more
arrow_forward Jan 25, 2026 go golang integration-testing
Go Integration Testing with Testcontainers: Real PostgreSQL and Redis
Build robust integration tests using testcontainers-go to spin up real PostgreSQL and Redis instances. Covers test isolation, migrations, and cleanup patterns.
Read more
arrow_forward Jan 25, 2026 go golang unit-testing
Go Unit Testing with Clean Architecture: Mocks, Table-Driven Tests, and Testify
Practical patterns for unit testing Go services using mockery-generated mocks, table-driven tests, and testify assertions in a clean architecture codebase.
Read more
arrow_forward Jan 24, 2026 timescaledb postgresql go
TimescaleDB Continuous Aggregates: 3,600x Faster Than PostgreSQL + Go Aggregation
Real benchmarks on 24.5M rows showing how TimescaleDB continuous aggregates deliver 10x-3,600x speedups for OHLCV candlestick data compared to PostgreSQL with application-side aggregation.
Read more
arrow_forward Jan 19, 2026 vitest oxlint rolldown
10x Faster CI: Migrating to Vitest, Oxlint, Rolldown & tsgo
Real benchmarks showing how we reduced CI time from 165s to 15s by replacing Jest, ESLint, webpack, and tsc with modern Rust-based alternatives.
Read more
arrow_forward