I was doing a code review for a colleague when I found it. The component had five useEffect hooks. No errors. No warnings in the console. The PM had signed off on it. It had been in production for three months. But there was a subtle bug that only showed up when the user navigated quickly between pages. Data would flash. State would reset. Sometimes the old user's name would appear for a split sec
Last week I had a problem. I'd built an internal documentation site in Trilium Notes — about 30 notes covering product, marketing, and operations stuff. It was for non-technical teammates who needed to answer questions from developers about the platform. The docs were good. Structured, searchable, complete. But reading 30 notes to find one answer is not great UX, especially for someone who's been
Go is a compiled language — the code is converted into machine‑readable form before execution. From a beginner’s perspective, this means Go catches many errors during compilation, giving you cleaner, faster, and more predictable performance at runtime. Go is widely used for: API development CLI tools Microservices architecture Backend server. DEVOPS activity So it fits perfectly with the kind of
Why I built it I needed a PostgreSQL parser that could run inside Go tooling without CGO, external binaries, or runtime dependencies. SQL is not one grammar PostgreSQL has a lot of dialect-specific edge cases AST shape matters more than “can it parse” Error handling becomes a product feature Real-world SQL is uglier than examples No CGO, easy installation, works in CI, easy to embed in linters a
If you've tried building an AI agent in the last six months, you've hit the same wall: there are half a dozen frameworks, each with a different philosophy, a different API surface, and a different definition of what an "agent" even is. I spent a weekend writing the same simple agent — "read a GitHub issue, classify it as bug/feature/question, and post a comment" — in six different frameworks. This
Originally published on TechSaaS Cloud Originally published on TechSaaS Cloud An API gateway sits between clients and your backend services. It handles cross-cutting concerns so your services do not have to: authentication, rate limiting, request routing, load balancing, caching, and observability. WebMobileIoTGatewayRate LimitAuthLoad BalanceTransformCacheService AService BService CDB / Cache API
A deep, opinionated, practical guide for the engineer who has crossed the mid-level threshold — or is about to. The mental models, technical habits, ownership patterns, communication skills, and career mechanics that separate "solid senior" from "engineer the whole team builds around." Grounded in 2026 reality — AI-augmented coding, distributed async teams, post-ZIRP efficiency pressure, and a mar
One thread. Multiple AIs. Deliberation, not polling. Most people use AI like this: 🤦 Ask one model → get one answer Ask multiple models → compare results That’s not thinking. That’s polling. Not side by side. Not isolated. But in sequence — where each one reads what the previous one said before responding. Manual Council is the simplest form of that idea. No backend. No orchestration. No