Rust Podcast Summaries
Rust on Yedapo: 12 summarized podcast and YouTube episodes. Each includes key takeaways, core concepts and notable quotes with timestamps.

The most controversial rewrite in history just shipped...
Fireship
Jul 15, 2026
Bun successfully completed a massive 535,000-line codebase migration from Zig to Rust in just 11 days using parallel AI agents. This aggressive rewrite resolved deep-seated memory management issues and long-standing bugs, while highlighting the deepening cultural and technical rift between the Bun team and the Zig community.
Key insight: Bun utilized 64 parallel Claude agents to refactor their entire codebase, resulting in 1,300 lines of Rust code generated per minute during the 11-day migration process.

Eric S Raymond Build and Ramble
Level1Techs
Jun 25, 2026
Wendell and Eric S. Raymond demonstrate how modern LLMs can decompile and modernize orphaned 1980s DOS software into functional Rust code. By leveraging high-end workstation hardware and local AI, they prove that preserving digital history is now a practical, accessible task rather than a niche archaeological endeavor.
Key insight: Eric S. Raymond successfully used an LLM to decompile a 1985 DOS game binary into readable Borland Pascal, then translated the entire logic into modern Rust in under five hours without being a Rust programmer himself.

The most trusted code on Earth is being rewritten in Rust
Fireship
Jun 19, 2026
Turso attempts to modernize the world's most trusted database, SQLite, by porting it to Rust with native concurrency, async support, and vector search. While the project faces the immense challenge of matching SQLite's 25-year track record of rock-solid reliability, its promise of native AI integration suggests a critical evolution in local data storage.
Key insight: SQLite is used in trillions of instances globally, including every iPhone, Android, and even on the Mars rover, making it potentially the most important software ever written.

One of the toughest engineering problems I've encountered recently
Dreams of Code
Jun 10, 2026
The developer struggled with slow audio alignment in his video editor due to massive AWS Lambda cold starts. He discovered that reactive on-demand scaling couldn't match the speed required for user satisfaction. By shifting to ECS Fargate with predictive scaling, image slimming, and partial always-on capacity, he successfully balanced infrastructure costs with near-instant performance.
Key insight: Using SOCI (Seekable OCI) to boot containers before the full image finishes downloading cut startup times significantly, proving that image pull speed is often the hidden bottleneck in serverless deployments.

10 weird OSS projects you need right now...
Fireship
May 26, 2026
While the tech industry drowns in AI-generated noise, a wave of rebellious developers is building deeply impractical, beautiful, and highly functional software. From GPU-accelerated 3D terminal emulators to SQLite-native pub/sub systems, these projects prove that true innovation often thrives in the fringes, far away from the standard corporate toolchain.
Key insight: Honker, a SQLite extension, allows developers to implement Postgres-style notify/listen, task queues, and cron schedulers directly within a single .db file, potentially eliminating the need for complex infrastructure like Redis or Kubernetes for most applications.

I finally found a reason to build my own AI agent
Dreams of Code
May 19, 2026
By treating broken builds as low-value tasks rather than technical hurdles, the host built a custom agent system to autonomously fix cross-platform regressions. Running on local hardware and secured by Tailscale, these agents diagnose failures and submit pull requests, effectively eliminating the context-switching tax associated with managing Windows and Linux builds from macOS.
Key insight: Rather than relying solely on generic coding harnesses, the host used the Rust 'Cersei' crate to build a hybrid agent that uses deterministic code for standard API tasks and LLMs only for diagnosing and patching logic, ensuring higher reliability and better observability.

Bun di Rewrite ke Rust full pake AI 🔥
Programmer Zaman Now
May 18, 2026
Tim pengembang Bun berhasil memigrasikan basis kode runtime JavaScript mereka dari bahasa Zig ke Rust dalam hitungan bulan menggunakan AI. Langkah ini membuktikan bahwa AI kini mampu menangani tugas refactoring berskala besar secara modular, meningkatkan produktivitas tanpa menghilangkan peran kritis engineer dalam tahap testing dan review.
Key insight: Proses migrasi basis kode jutaan baris dilakukan dengan memecah proyek menjadi modul-modul kecil untuk diterjemahkan oleh AI, yang kemudian divalidasi melalui sistem pengujian ketat dan ditinjau ulang oleh manusia.

Rust on the web is starting to look quite good.
Dreams of Code
Apr 21, 2026
Rust has become a viable, high-performance alternative to JavaScript for web development, thanks to frameworks like Dioxus, Leptos, and Yew. By leveraging WebAssembly (WASM), developers can now achieve full-stack parity without the cognitive load of traditional JS/TS, particularly when using AI-driven coding agents to handle complex browser API interop.
Key insight: Dioxus stands out as a top-tier framework because it allows developers to write code once and deploy it across web, desktop, and mobile, effectively bypassing the fragmented ecosystem of JavaScript-only packages.

КАКОЙ ЯЗЫК УЧИТЬ В 2026? ЧТОБЫ ТЕБЯ НЕ ЗАМЕНИЛ ИИ
Хауди Хо™ - Просто о мире IT!
Mar 1, 2026
Нейросети успешно справляются с типовыми задачами, вытесняя начинающих разработчиков и фронтенд-верстальщиков. Чтобы избежать замены, программистам следует фокусироваться на системном проектировании, кибербезопасности и сферах, где критически важны ответственность и глубокое понимание архитектуры проекта.
Key insight: Нейросети крайне неэффективны при работе с крупными проектами из-за ограниченной памяти — они не способны удерживать контекст всей архитектуры, в отличие от человека, поэтому сложный код на Rust или C++ остается вне их досягаемости.

Why I'm so bullish about Rust in 2026
Dreams of Code
Feb 17, 2026
Rust has matured into a dominant force for desktop, web, and infrastructure development. Its strict compiler acts as a vital safety layer for AI-generated code, while its extreme memory efficiency offers a strategic defense against rising hardware costs. For developers, it now rivals faster-to-ship languages in both API development speed and deployment flexibility.
Key insight: A Rust API using the Axum framework can consume nearly 30 times less memory than an equivalent TypeScript implementation using Bun/Elysia, highlighting the massive efficiency gap as hardware costs continue to climb.

Pourquoi les devs réécrivent tout en Rust ?
Underscore_
Jan 22, 2026
Rust is replacing C and C++ as the industry standard for critical systems, from Windows to Android. By enforcing strict memory safety at compile time, it eliminates entire classes of security vulnerabilities that have plagued software for decades, while offering the high performance required for modern, parallel computing.
Key insight: A single security vulnerability in a browser like Firefox can be sold on the black market for $400,000, while exploits for iOS can fetch up to $4 million, highlighting the extreme value and danger of memory-unsafe code.

Faster than your favorite JS framework?
ThePrimeagen
Dec 28, 2022
A direct performance comparison reveals that Leptos, despite the overhead of WebAssembly, outperforms React in heavy UI update scenarios. This shift challenges the conventional wisdom that WASM-based frameworks are inherently slower for client-side rendering.
Key insight: On Firefox, React was found to be approximately 80% slower than Leptos when processing 1,920 simultaneous UI updates.