The Overhead Is the Story: My Take on Google's TurboQuant

Google’s TurboQuant compresses LLM KV caches and embedding vectors to 3-4 bits with no training and no codebook, and still beats methods that need both. The clever part is not the quantizer, it is what it refuses to store. Here is the intuition, with runnable NumPy you can paste and check.

June 23, 2026 · 8 min · 1562 words
LinkedIn message from a 'private investor' pitching a Web3 backend role

A Fake Web3 Job Sent Me a 'Test Project'. It Was a Remote-Access Backdoor

A LinkedIn ‘investor’ offered me a $70-120/hr Web3 job and sent a ‘skill assessment’ repo with a 2-3 hour deadline. The moment its server boots, it fetches code from an attacker’s machine and runs it with full Node.js privileges. I recognized the trap, told him I’d run it (I hadn’t), and handed him back his own command-and-control link. Here is the full teardown.

June 22, 2026 · 11 min · 2261 words

Failover Before the First Byte: An OpenAI-Compatible LLM Gateway in Pure Go

I just shipped llm-relay, a small OpenAI-compatible LLM gateway in pure Go (zero third-party dependencies). The interesting part is the failover: when a provider is rate-limited or down, it switches to the next one BEFORE any bytes reach the client, so the caller never sees half a stream and then a different model. Here is how it works, with the real code.

June 21, 2026 · 11 min · 2296 words

Every Retrieval Is an Authorization Decision: Multi-Tenant RAG Done Safely

In a single-tenant RAG you trust the index. In a multi-tenant one, a shared index plus one missing filter leaks Tenant A’s documents into Tenant B’s answer. Here is the unified mental model that ties the metadata-filtering mechanics and the authorization layer together, treat the tenant filter as a policy decision, not app code, with the same architecture mapped across AWS, Azure, and Google Cloud (diagrams and Python included).

June 20, 2026 · 11 min · 2188 words

Separations and the Tail: A Field Guide to Distributed Backend Design

Most of what makes a distributed system good is a handful of disciplined separations plus a real respect for the tail. To make that concrete, we design a small identity graph service from scratch, the same shape of system Airbnb runs at 7 billion nodes, and watch each principle earn its place. Node.js snippets included.

June 19, 2026 · 9 min · 1874 words