State Management Podcast Summaries
State Management on Yedapo: 2 summarized podcast and YouTube episodes. Each includes key takeaways, core concepts and notable quotes with timestamps.
How to prompt AI when there's nothing to design
JavaScript Mastery
May 29, 2026
Mastering non-visual feature implementation requires moving beyond UI descriptions to architectural instructions. By clearly defining state transitions and testing utilities, developers can effectively leverage AI agents to build complex backend and state-management workflows.
Key insight: Always prompt for the infrastructure that lets you verify the feature, not just the feature itself, such as adding temporary testing buttons for state resets.
Zustand Crash Course
Web Dev Simplified
Apr 21, 2026
Kyle exposes the massive performance flaws of React Context, which needlessly rerenders your entire application on minor data changes. He reveals how Zustand fixes this bottleneck with precise data selection, operates entirely outside the React lifecycle, and effortlessly handles deeply nested state through Immer.
Key insight: Zustand operates completely independently of React, allowing you to access and modify global state directly inside vanilla JavaScript event listeners without passing down any props.