AI Weekly Malaysia

Summaries

Short AI and tech summaries with source links, signal scores, and why each update matters for builders, founders, and Malaysian tech workers.

Reset

Showing 1-1 of 1 results

DateProviderScoreSummary
02 Sep 2026, 1:50 PMSimon Willison8.0 Quoting Rick Brewster

Rick Brewster, author of Paint.NET, shipped a from-scratch clean-room reverse-engineered rewrite of Direct2D (180,000 lines) to make Paint.NET work on WINE/Linux, written almost entirely by Claude. He describes the code as 'vibe coded'—unreviewed at scale because 180,000 lines is unreviewable by one person—and notes he had to actively babysit Claude on resource management (it wasn't doing COM AddRef() for reference-counted objects) and correct bad architectural decisions, while being impressed by its tireless reverse engineering of Direct2D's built-in effects formulas.

Why: This is a concrete data point on what 'vibe coding' looks like at production scale: 180,000 lines of shipped, unreviewed AI-generated code inside a 20-year-old mature codebase. The specific failure modes (missing COM reference counting, bad architecture decisions) tell you exactly what to watch for when using coding agents on systems-level code—resource lifecycle and design coherence are where the agent breaks down, not raw implementation. If you're shipping AI-generated code, plan your review strategy around the classes of bugs Brewster hit, not around line-by-line verification.

Top