TLDR Dev 2026-03-25
Building a pest control SaaS 🐀, Markdown for email 📩, agentic RAG 🔍
Your AI Writes Code Faster Than You Can Review It. (Sponsor)
Code review is the bottleneck. Reviews are slow, inconsistent, and noisy. AI tools flag everything or miss critical issues.
Qodo is a multi-agent AI code review platform built for real issues, not noise. Specialized agents reason with full codebase context, PR history, and your team's actual standards to deliver fixes developers actually commit.
Benchmarked #1 in precision and recall.Real issues caught. Standards enforced. Quality shipped.
Try Qodo free →Node.js worker threads are problematic, but they work great for us (13 minute read)
Inngest encountered event loop starvation in its Node.js-based Connect service, where CPU-heavy user code blocked critical heartbeats, causing "no available worker" errors. Their solution was to move the Connect service's internals, like WebSocket connections and heartbeats, into a separate Node.js worker thread to isolate them from user code execution.
How Agentic RAG Works (12 minute read)
Standard RAG is a one-shot pipeline: query in, retrieve, generate. However, it breaks down the moment a question is ambiguous, the answer is spread across multiple sources, or the retrieved chunk looks relevant but isn't. Agentic RAG fixes this by adding an LLM in the middle that can rewrite the query, route to the right source, evaluate whether what came back is actually good enough, and loop again if not.
So where are all the AI apps? (8 minute read)
AI tools have not created any overall increase in new package creation or a substantial general uptick in package updates across the board since the advent of modern AI. However, there has been a significant boost in update frequency.
Code as a Tool of Process (3 minute read)
Programming is an iterative process that sharpens one's understanding by confronting intricate details and questions as features are built. However, generating code with AI skips this sharpening process, preventing developers from deeply understanding the complexities and trade-offs involved.
Turn your AI agents into autonomous developers (Sponsor)
AI agents generate code fast, but without ever seeing actual API responses, database state, or how your services really behave. mirrord (
5k GitHub stars) gives agents real-world context as they code, then lets them test against real staging, see real errors, and iterate until it works. The agent delivers working code, not just a first draft.
See how it worksVideo.js v10 Beta: Hello, World (again) (14 minute read)
Video.js is an open source media player framework for Web and React. It has been modernized, with reduced bundle sizes by up to 88%. It has also been prepped for AI-augmented development.
Email.md (Website)
Email.md converts Markdown into email-safe HTML that renders correctly across all major email clients. Writing email HTML is challenging due to a wide variety of rendering engines, like Outlook's Word engine and Gmail's CSS stripping. Email.md solves this by allowing users to write simple Markdown, which it then transforms into HTML.
Hypothesis, Antithesis, synthesis (16 minute read)
Hegel is a new family of property-based testing libraries. It currently supports Rust with plans for Go, C++, OCaml, and TypeScript. It uses the Python Hypothesis engine for its core logic.
The most important software engineering news in one daily email
Join 450,000 readers for
one daily email