corrode cover art
ActiveTechnologyGermany

corrode

Interviews with engineers and founders about how their companies use the Rust programming language in production systems.

The brief

A technical interview podcast that uses the "Rust in production" theme as a lens to explore complex software engineering challenges. Rather than just evangelizing the language, host Matthias Endler focuses on the messy reality of integration—adding Rust to massive C++ codebases, replacing Python components, or building for constrained environments like the Linux kernel. The conversations are case studies in managing polyglot systems, technical debt, and team adoption.

Unlike many language-specific podcasts, its core focus is on the practicalities of *integration* and *interoperability* with existing systems, not just greenfield projects. The host's own expertise as a consultant allows for unusually deep and credible conversations about trade-offs, build tooling, and FFI boundaries.
— What makes it distinctive
§1 · The host

Who hosts this show

Hosted by Rust consultant Matthias Endler, "Rust in Production" features deep-dive interviews with engineering leaders from companies that have adopted Rust. The podcast is a core part of his consultancy, Corrode, and explores the real-world technical and organizational challenges of using Rust to build critical infrastructure and high-performance software.

AI-extracted bio · help us verify· Source: gemini-video-grounded

Credentials & credits

  • Rust Consultant at Corrode
  • Studied Computer Science at Universität Bayreuth
  • Former Backend Engineer at Trivago
  • Maintainer of 'lychee' link checker
  • Creator of 'Idiomatic Rust' learning resource
  • Speaker at conferences like RustLab and GoLab

Other ventures

  • corrode (Rust consultancy)
  • lychee (open-source link checker)
  • Idiomatic Rust (learning resource)
  • Analysis Tools (comparison platform)
  • Hello, Rust! (discontinued YouTube channel)
§2 · Classification

What kind of podcast

Country
Germany
Region
europe
§3 · Cadence & catalog

When new episodes drop

Publishing rate
~2/month
Not shown by Apple / Spotify
Total episodes
60
Last episode
12 days ago
Jun 18, 2026
Status
Active
Recent episodes
  1. 01
  2. 02
  3. 03
  4. 04
  5. 05
    Helsing with Jon GjengsetApr 23, 2026 · 1h 33m
  6. 06
    Cloudsmith with Cian ButlerApr 9, 2026 · 1h 15m
  7. 07
    Gama Space with Sebastian ScholzJan 22, 2026 · 58 min
  8. 08
    Radar with Jeff KaoJan 8, 2026 · 1h 03m
§3b · Editor's picks

Notable episodes

AI-extracted picks + commentary · help us verify
  1. 01
    Rust for Linux with Alice Ryhl and Greg Kroah-Hartman

    A landmark conversation with two key figures on the social and technical journey of integrating Rust into the Linux kernel, one of the world's most significant open-source projects.

  2. 02
    ClickHouse with Alexey Milovidov and Austin Bonander

    A deep dive into the messy, practical details of integrating Rust into a massive, high-performance C++ database, covering FFI, build systems, and error handling.

  3. 03
    NLnet Labs with Arya Khanna and Martin Hoffmann

    Explores the difficult but pragmatic decision *not* to rewrite a critical, 25-year-old C codebase in Rust, offering a nuanced take on when a rewrite isn't the right answer.

  4. 04
    Veo with Anders Hellerup Madsen and Gorm Casper

    Showcases Rust's versatility by detailing its use in both low-level embedded systems for an AI camera and high-level backend services for video processing.

§4 · Signature

What you'll be asked on this show

AI-extracted from recent episodes · help us verify
How the host interviews

Host Matthias Endler is an expert practitioner who guides conversations with informed, specific questions. He begins with broad, scene-setting inquiries about a guest's background and a project's origin before drilling down into the technical weeds. He frequently uses his own experience to build rapport and asks precise follow-ups about specific trade-offs (e.g., GStreamer vs. FFmpeg), integration pain points (CMake with Cargo, C++ exceptions vs. Rust panics), and architectural patterns. His interviews often progress from a high-level business problem to the specific lines of code that solved it, and he consistently closes by asking guests for their 'message to the Rust community.'

This is a single-host interview show featuring one or two guests, typically senior engineers or founders. Episodes follow a consistent arc: guest introductions, company origin story, the initial problem that led to Rust, a deep dive into technical implementation challenges, and team/cultural dynamics. The host often concludes with a signature question for the community.

Questions the host keeps coming back to

15 catalogued

If you're going on this show as a guest, expect some version of each of these. Each note explains when the host reaches for it.

origin

2
  1. Q.01

    Can you introduce yourself and the organization you work for?

    This is the standard opening question to establish the guest's role and the company's mission.

  2. Q.02

    What is the origin story of the company or project?

    The host uses this to establish the initial business context and technical landscape before Rust's introduction.

process

3
  1. Q.01

    What was the initial technology stack like before Rust was introduced?

    This question sets the stage by defining the legacy system and its constraints.

  2. Q.02

    What problems or limitations prompted the move towards Rust?

    Focuses the conversation on the specific pain points (performance, safety, concurrency) that Rust was chosen to solve.

  3. Q.03

    How do you handle integrating Rust with your existing build systems?

    Aimed at guests with C/C++ codebases, this question surfaces the practical difficulties of polyglot builds.

controversy

2
  1. Q.01

    Was adopting Rust more of a social or a technical challenge?

    Probes the organizational dynamics and internal resistance to adopting a new language.

  2. Q.02

    Do you think it makes sense to rewrite mature, battle-tested C/C++ projects in Rust?

    A recurring question that forces a pragmatic discussion about the trade-offs of a rewrite versus interoperability.

mindset

1
  1. Q.01

    How do you manage differences in error handling between Rust and other languages?

    This question explores the philosophical and technical approaches to bridging different error models across an FFI boundary.

craft

3
  1. Q.01

    Why did Rust succeed in this context where other languages might have failed?

    Asks guests to articulate the specific technical merits of Rust that made it uniquely suitable for their problem.

  2. Q.02

    What common patterns do developers from other languages (like C++) bring to Rust?

    This surfaces the 'un-learning' process required when adopting Rust's ownership and borrowing paradigms.

  3. Q.03

    Where do you draw the line between pragmatic code and perfectly idiomatic Rust?

    Examines the team's philosophy on code style, especially regarding shortcuts like `.unwrap()` in production.

advice

4
  1. Q.01

    Do you think developers reach for async Rust too early?

    This question addresses a common debate within the ecosystem about the complexity and appropriate use of async.

  2. Q.02

    How do you manage varying levels of Rust expertise within a team?

    Focuses on the practical challenges of training, onboarding, and maintaining code quality in a mixed-skill environment.

  3. Q.03

    What can the Rust community learn from the C/C++ community?

    A closing question, often paired with its inverse, to foster cross-community understanding.

  4. Q.04

    What's your message to the Rust community?

    The host's signature closing question, giving guests a final platform for advice or a call to action.

Signature segments

  • · Signature closing question: "What's your message to the Rust community?"
  • · Podcast intro: "It's Rust in Production, a podcast about companies who use Rust..."
  • · Podcast outro: "Rust in Production is a podcast by Corrode..."

Topics covered repeatedly

RustSoftware EngineeringSystems ProgrammingC++ InteroperabilityConcurrencyForeign Function Interface (FFI)Build SystemsOpen SourcePerformance EngineeringTechnical Leadership
§5 · Guests

Who gets booked here

AI-extracted guest list + profile · help us verify
Typical guest

The show books senior/principal engineers, CTOs, and founders who were instrumental in adopting or implementing Rust at their companies. Guests often come from organizations known for solving hard infrastructure problems, from critical internet services (NLnet Labs) to high-performance databases (ClickHouse) and operating systems (Linux Kernel).

Recent guests
  • Alexey Milovidov
    on ClickHouse with Alexey Milovidov and Austin Bonander
  • Austin Bonander
    on ClickHouse with Alexey Milovidov and Austin Bonander
  • Anders Hellerup Madsen
    on Veo with Anders Hellerup Madsen and Gorm Casper
  • Alice Ryhl
    on Rust for Linux with Alice Ryhl and Greg Kroah-Hartman
  • Greg Kroah-Hartman
    on Rust for Linux with Alice Ryhl and Greg Kroah-Hartman
  • Jon Gjengset
    on Helsing with Jon Gjengset
§6 · Channels & links

Where to find this show

§7 · Stats

Audience & reach

YouTube · first-party
Subscribers
6.7K
6,700
Avg views / video
1.4K
Trailing window
Total views
179K
178,500
Videos published
60
Sponsor readEstimated

The podcast serves as content marketing for the host's Rust consultancy, Corrode, establishing expertise and attracting clients for training and development. It also features external sponsors like CodeCrafters, targeting a highly technical audience of software developers.

AI-extracted sponsor read · help us verify

Subscriber and view counts are pulled live from YouTube and re-verified on a 30-day cycle. Listener estimates for the RSS feed aren't published here unless they're host-verified.

§8 · Contact

Pitch this show

Sign-in required
Verified contact
Host / booking email
h•••@•••.dev
Public channels

Free: limited reveals · Pro: unlimited reveals + CSV export
You’re only charged when we return a verified hit.

§9b · FAQ

People also ask

AI-extracted researched answers · help us verify
What is the host's name?
The podcast is hosted by Matthias Endler.
Is this podcast still active?
Yes, it releases new episodes every other Thursday.
What is the show's format?
It's an interview show where host Matthias Endler talks to engineers and founders about their company's use of Rust in production.
Where can I listen to the podcast?
The podcast is available on YouTube, Apple Podcasts, Spotify, and other major podcast platforms.
What is Corrode?
Corrode is the host's friendly, professional Rust consulting company, for which this podcast serves as a form of content marketing.
Who is this podcast for?
It's for software engineers, tech leaders, and anyone interested in real-world case studies of adopting the Rust programming language.
Last updatedJun 29, 2026Not yet host-verified
Research depthDeep dossierHigh confidence · Jun 29, 2026 · gemini-2.5-pro

Built from the show's public RSS feed, YouTube, the host's own websites, and the cited sources below. Computed and AI-extracted fields are labelled. Facts only — no private info, no fabrication, no transcripts republished.

§9c · Methodology

Sources & how this page was built

This page is AI-assisted, grounded in the public sources cited below, and host-verifiable. We publish facts only; we do not republish transcripts. If anything here is wrong, the host can claim and correct the page above.Model: gemini-2.5-pro · high confidence

  1. [01]Rust in Production Podcast | corrode Rust Consultingcorrode.dev
  2. [02]Matthias Endler - Rust Consultant & Open Source Maintainerendler.dev
  3. [03]corrode | Friendly, Professional Rust Consultingcorrode.dev
  4. [04]Matthias Endler (mre) - GitHubgithub.com
  5. [05]Rust in Production - Apple Podcastspodcasts.apple.com
  6. [06]corrode - YouTube Channelyoutube.com
  7. [07]Matthias Endler - RustLab Speaker Profile2024.rustlab.it
More to explore

Podcasts like corrode

Thomas Brush

Thomas Brush

A podcast for aspiring indie game developers, hosted by a solo dev who interviews peers about the practical and emotional journey of making games.

438K subs· ~1.5/week· United States
BusinessTechnologyEducation

Rusty Quill Podcasts

Rusty Quill Podcasts

A network feed from a London-based production house specializing in full-cast speculative fiction and horror audio dramas.

132K subs· ~1.3/week· United Kingdom
BusinessTechnologyGaming

Satish K Videos

Satish K Videos

An interview show that deconstructs the business models of successful Indian entrepreneurs, with a sharp focus on revenue, strategy, and digital tools.

2M subs· ~4/week· India
BusinessMarketingTechnology

The American Business Podcast (ABP)

A live, daily business podcast that doubles as the media arm for a national, digital-first chamber of commerce.

202K subs· Daily· United States
BusinessTechnologyPolitics

Jay Clouse

Jay Clouse

A podcast and video series breaking down the business of being a creator, with a strong focus on building membership communities.

142K subs· ~3/month· United States
BusinessMarketingTechnology

The Senior Health Podcast

A health show for seniors offering simple, actionable exercises and habit changes based on the philosophy of "Japan's Oldest Doctor."

222K subs· ~3/week· United States
BusinessTechnologyHealth & Wellness

Madam Speaker

Madam Speaker

A South African talk show where a social activist helps guests and callers navigate trauma, relationship crises, and the path to self-love.

195K subs· Daily· South Africa
BusinessTechnologyHealth & Wellness

Technical Suneja

Technical Suneja

A career-focused podcast for India's next generation of software developers, deconstructing the journeys of successful engineers.

610K subs· Daily· India
BusinessTechnologyAutomotive