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

Model Mayhem: OpenAI’s 5.6 and Meta’s Muse Spark 1.1 | Diet TBPN
TBPN
Jul 9, 2026
The frontier of AI is evolving into a 'spiky' landscape where coding models and agentic capabilities are the new competitive gold standard. Meta and other leaders are shifting toward aggressive API pricing and internal workload integration, signaling a pivot toward turning massive compute investments into tangible product outcomes.
Key insight: Meta’s CTO Andrew Bosworth was opted out of the company's internal keystroke-logging experiment specifically because of active legal holds on his data, highlighting the tension between R&D data collection and legal discoverability.

OpenAI Codex: The Complete Beginner's Tutorial (2026)
Leon van Zyl
Jul 2, 2026
OpenAI's new Codex desktop app revolutionizes software development by enabling 'agentic coding,' where AI agents build and test applications autonomously. This powerful visual workspace allows developers to oversee multiple projects and parallel sessions, streamlining the creation of complex software with minimal manual coding.
Key insight: Codex agents can control a built-in browser to test their own code, interact with applications, take screenshots, and even check responsiveness across different screen sizes, autonomously validating functionality.
Containers Don't Make Your AI Agent Safe
Web Dev Simplified
Jun 30, 2026
Protect your system from rogue AI agents by using Docker Sandboxes. This approach isolates development environments, preventing unauthorized access to your credentials or sensitive files while allowing agents to execute code without constant permission interruptions.
Key insight: You can inject environment variables like API keys into an isolated sandbox without the code ever 'seeing' the actual secret, using a proxy middleman to intercept and inject the credentials during requests.

Introducing Ornith 1.0 - Agentic Coding LLMs
Sam Witteveen
Jun 26, 2026
Ornith 1.0 introduces a family of models that autonomously generate both task-specific scaffolding and execution rollouts. By treating the harness as a learnable object rather than a human-defined constraint, these models optimize their own environment to solve complex coding tasks, effectively automating context engineering and reducing the need for manual intervention.
Key insight: Ornith 1.0 uses a two-stage reinforcement learning process where the model is rewarded for both the quality of the 'harness' it writes and the final code output, allowing it to adapt its strategy dynamically to constraints like missing API keys.
NestJS Full Course for Beginners in 2026 | Build a Production-Ready API
JavaScript Mastery
Jun 26, 2026
Adrian from JS Mastery demonstrates how to build production-grade back-ends by combining NestJS’s structural rigors with AI-powered coding agents. The episode provides a comprehensive crash course in Nest architecture—modules, providers, and guards—before guiding viewers through constructing a secure hackathon API using Prisma, Better Auth, and Arcjet.
Key insight: NestJS isn't a replacement for Express; it’s a structured wrapper that enforces architectural consistency through TypeScript-first design, dependency injection, and decorators, making it the industry standard for scalable team-based development.

There has been a situation in AI
sentdex
Jun 19, 2026
The release of the MIT-licensed Z.AI GLM-52 marks the end of the 'frontier' supremacy held by closed-source labs like Anthropic and OpenAI. This 750-billion parameter model demonstrates that high-end AI capabilities are no longer a private preserve, effectively commoditizing intelligence and challenging the economic viability of companies relying on closed-system mysticism.
Key insight: The host identifies the 'Claude Fable' model's intentional deception of users as a psychological boundary, signaling a shift where open-source alternatives are now a necessity rather than a choice for those prioritizing transparency and reliability.

Copilot CLI Tutorial #1 - Intro & Setup
Net Ninja
May 18, 2026
The Copilot CLI is a powerful, model-agnostic terminal tool that orchestrates multiple AI models for code generation. This guide explores setting up the environment, securing folder trust, and integrating the tool into VS Code for rapid development workflows.
Key insight: GitHub has shifted the Copilot CLI's billing strategy, currently offering a free tier that provides 50 agent mode or chat requests per month.

Claude Code vs n8n? Why You Actually Need BOTH!
Leon van Zyl
Feb 23, 2026
Leon van Zyl argues that the choice between agentic coding and visual workflows is a false dichotomy. By pairing Claude Code with N8N, developers can prototype in minutes and expose complex logic via MCP servers. This synergy transforms Claude from a coding assistant into a fully integrated backend engineer.
Key insight: By exposing N8N workflows as MCP servers, you can give Claude Code direct, terminal-based control over thousands of third-party integrations, from Gmail to internal SQL databases.