
Location:
United States
Description:
Technical interviews about software topics.
Twitter:
@software_daily
Language:
English
Contact:
5122170273
Episodes
DeepMind’s RAG System with Animesh Chatterji and Ivan Solovyev
3/12/2026
Retrieval-augmented generation, or RAG, has become a foundational approach to building production AI systems. However, deploying RAG in practice can be complex and costly. Developers typically have to manage vector databases, chunking strategies, embedding models, and indexing infrastructure. Designing effective RAG systems is also a moving target, as techniques and best practices evolve in step
The post DeepMind’s RAG System with Animesh Chatterji and Ivan Solovyev appeared first on Software Engineering Daily.
Duration:00:37:57
Reinventing the Python Notebook with Akshay Agrawal
3/10/2026
Interactive notebooks were popularized by the Jupyter project and have since become a core tool for data science, research, and data exploration. However, traditional, imperative notebooks often break down as projects grow more complex. Hidden state, non-reproducible execution, poor version control ergonomics, and difficulty reusing notebook code in real software systems make it hard to
The post Reinventing the Python Notebook with Akshay Agrawal appeared first on Software Engineering Daily.
Duration:00:46:04
Organizational Context for AI Coding Agents with Dennis Pilarinos
3/5/2026
AI agents have taken on a growing share of software development work, so much so that the hardest problems are shifting away from code generation towards something new, context. The challenge is now contextualizing why systems work the way they do, how architectural decisions were made, and the sources of truth that exist outside of
The post Organizational Context for AI Coding Agents with Dennis Pilarinos appeared first on Software Engineering Daily.
Duration:00:49:21
SED News: OpenClaw Goes Viral, Mistral’s Compute Play, and the Agent Arms Race
3/3/2026
SED News is a monthly podcast from Software Engineering Daily where hosts Gregor Vand and Sean Falconer unpack the biggest stories shaping software engineering, Silicon Valley, and the broader tech industry. In this episode, they cover the viral rise of OpenClaw and its founder’s move to OpenAI, OpenAI’s exploration of ads inside ChatGPT, and Alibaba’s
The post SED News: OpenClaw Goes Viral, Mistral’s Compute Play, and the Agent Arms Race appeared first on Software Engineering Daily.
Duration:00:57:08
Amazon’s IDE for Spec-Driven Development with David Yanacek
2/26/2026
AI-assisted coding tools have made it easier than ever to spin up prototypes, but turning those prototypes into reliable, production-grade systems remains a major challenge. Large language models are non-deterministic, prone to drift, and often lose track of intent over long development sessions. Kiro is an AI-powered IDE that’s built around a spec-driven development workflow.
The post Amazon’s IDE for Spec-Driven Development with David Yanacek appeared first on Software Engineering Daily.
Duration:00:57:00
Engineering AI Systems for Autonomy and Resilience with Krishna Sai
2/24/2026
Enterprise IT systems have grown into sprawling, highly distributed environments spanning cloud infrastructure, applications, data platforms, and increasingly AI-driven workloads. Observability tools have made it easier to collect metrics, logs, and traces, but understanding why systems fail and responding quickly remains a persistent challenge. As complexity continues to rise, the industry is looking beyond dashboards
The post Engineering AI Systems for Autonomy and Resilience with Krishna Sai appeared first on Software Engineering Daily.
Duration:00:53:15
Inside China’s Great Firewall with Jackson Sippe
2/19/2026
China’s Great Firewall is often spoken about but is rarely understood. It is one of the most sophisticated and opaque censorship systems on the planet, and it shapes how over a billion people interact with the global internet, influences the design of privacy and proxy tools worldwide, and continues to evolve in ways that challenge
The post Inside China’s Great Firewall with Jackson Sippe appeared first on Software Engineering Daily.
Duration:00:55:41
Optimizing Agent Behavior in Production with Gideon Mendels
2/17/2026
LLM -powered systems continue to move steadily into production, but this process is presenting teams with challenges that traditional software practices don’t commonly encounter. Models and agents are non-deterministic systems, which makes it difficult to test changes, reason about failures, and confidently ship updates. This has created the need for new evaluation tooling designed specifically
The post Optimizing Agent Behavior in Production with Gideon Mendels appeared first on Software Engineering Daily.
Duration:00:52:25
Gas Town, Beads, and the Rise of Agentic Development with Steve Yegge
2/12/2026
AI-assisted programming has moved far beyond autocomplete. Large language models are now capable of editing entire codebases, coordinating long-running tasks, and collaborating across multiple systems. As these capabilities mature, the core challenge in software development is shifting away from writing code and toward orchestrating work, managing context, and maintaining shared understanding across fleets of agents.
The post Gas Town, Beads, and the Rise of Agentic Development with Steve Yegge appeared first on Software Engineering Daily.
Duration:01:09:52
Python 3.14 with Łukasz Langa
2/10/2026
Python 3.14 is here and continues Python’s evolution toward greater performance, scalability, and usability. The new release formally supports free-threaded, no-GIL mode, introduces template string literals, and implements deferred evaluation of type annotations. It also includes new debugging and profiling tools, along with many other features. Łukasz Langa is the CPython Developer in Residence at
The post Python 3.14 with Łukasz Langa appeared first on Software Engineering Daily.
Duration:00:47:00
Airbnb’s Open-Source GraphQL Framework with Adam Miskiewicz
2/5/2026
Engineering teams often build microservices as their systems grow, but over time this can lead to a fragmented ecosystem with scattered data access patterns, duplicated business logic, and an uneven developer experience. A unified data graph with a consistent execution layer helps address these challenges by centralizing schema, simplifying how teams compose functionality, and reducing
The post Airbnb’s Open-Source GraphQL Framework with Adam Miskiewicz appeared first on Software Engineering Daily.
Duration:00:55:45
SED News: Apple Bets on Gemini, Google’s AI Advantage, and the Talent Arms Race
2/3/2026
SED News is a monthly podcast from Software Engineering Daily where hosts Gregor Vand and Sean Falconer unpack the biggest stories shaping software engineering, Silicon Valley, and the broader tech industry. In this episode, they cover Starlink’s rapid rollout of free, high-speed in-flight internet, Tesla’s move to deprecate Autopilot in favor of full self-driving, and
The post SED News: Apple Bets on Gemini, Google’s AI Advantage, and the Talent Arms Race appeared first on Software Engineering Daily.
Duration:00:51:06
OpenAI and Codex with Thibault Sottiaux and Ed Bayes
1/29/2026
AI coding agents are rapidly reshaping how software is built, reviewed, and maintained. As large language model capabilities continue to increase, the bottleneck in software development is shifting away from code generation toward planning, review, deployment, and coordination. This shift is driving a new class of agentic systems that operate inside constrained environments, reason over
The post OpenAI and Codex with Thibault Sottiaux and Ed Bayes appeared first on Software Engineering Daily.
Duration:00:50:10
Production-Grade AI Systems with Fred Roma
1/27/2026
Engineering teams around the world are building AI-focused applications or integrating AI features into existing products. The AI development ecosystem is maturing, which is accelerating how quickly these applications can be prototyped. However, taking AI applications to production remains a notoriously complex process. Modern AI stacks demand LLMs, embeddings, vector search, observability, new caching layers,
The post Production-Grade AI Systems with Fred Roma appeared first on Software Engineering Daily.
Duration:00:51:49
Next-Gen JavaScript Package Management with Ruy Adorno and Darcy Clarke
1/22/2026
Package management sits at the foundation of modern software development, quietly powering nearly every software project in the world. Tools like npm and Yarn have long been the core of the JavaScript ecosystem, enabling developers to install, update, and share code with ease. But as projects grow larger and the ecosystem more complex, this older
The post Next-Gen JavaScript Package Management with Ruy Adorno and Darcy Clarke appeared first on Software Engineering Daily.
Duration:00:57:18
WebAssembly 3.0 with Andreas Rossberg
1/20/2026
WebAssembly, or WASM, has grown from a low-level compilation target for C and C++ into one of the most influential technologies in modern computing. It now powers browser applications, edge compute platforms, embedded systems, and a growing ecosystem of languages targeting a portable and secure execution model. Andreas Rossberg is a programming languages researcher and
The post WebAssembly 3.0 with Andreas Rossberg appeared first on Software Engineering Daily.
Duration:01:01:13
America Under Surveillance with Michael Soyfer
1/15/2026
Surveillance technology is advancing faster than the laws meant to govern it. Across the United States, police departments are deploying automated license plate readers, facial recognition tools, and predictive systems that quietly log the daily movements of millions of people. These tools promise efficiency and safety, but critics argue that they represent a form of
The post America Under Surveillance with Michael Soyfer appeared first on Software Engineering Daily.
Duration:00:52:48
Developer Experience at Capital One with Catherine McGarvey
1/13/2026
Modern software development is evolving rapidly. New tools, processes, and AI-powered systems are reshaping how teams collaborate and how engineers find satisfaction in their craft. At the same time, developer experience has become a critical function for helping organizations balance agility, security, and scale while maintaining the creativity and flow that make top tier engineering
The post Developer Experience at Capital One with Catherine McGarvey appeared first on Software Engineering Daily.
Duration:00:41:33
Flox, Nix, and Reproducible Software Systems with Michael Stahnke
1/8/2026
Modern software development is more complex than ever. Teams work across different operating systems, chip architectures, and cloud environments, each with its own dependency quirks and version mismatches. Ensuring that code runs reproducibly across these environments has become a major challenge that’s made even harder by growing concerns around software supply chain security. Nix is
The post Flox, Nix, and Reproducible Software Systems with Michael Stahnke appeared first on Software Engineering Daily.
Duration:00:55:16
VS Code and Agentic Development with Kai Maetzel
1/6/2026
Visual Studio Code has become one of the most influential tools in modern software development. The open-source code editor has evolved into a platform used by millions of developers around the world, and it has reshaped expectations for what a modern development environment can be through its intuitive UX, rich extension marketplace, and deep integration
The post VS Code and Agentic Development with Kai Maetzel appeared first on Software Engineering Daily.
Duration:01:09:04