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

Top 5 Claude Cowork Tips I Wish I Knew from Day One
Jeff Su
May 19, 2026
Effective Claude workspace management requires strict token efficiency and modular file structures. By treating markdown files as a readable, hierarchical system, you can reduce bloat, automate routine tasks, and ensure consistent behavior across different projects.
Key insight: Keep your root claw.md file between 200 and 250 lines; exceeding 300 lines significantly degrades performance and wastes tokens on redundant data.

Astro Crash Course #10 - Dynamic Routes
Net Ninja
Apr 13, 2026
Mastering dynamic routing in Astro requires utilizing getStaticPaths to programmatically generate pages from a collection. By mapping data to route parameters and props, you can efficiently render complex markdown content into fully functional, accessible pages.
Key insight: The render function automatically converts markdown front matter into a reusable component, transforming raw text into semantic HTML tags with functional IDs.

Astro Crash Course #9 - Content Collections (with Markdown)
Net Ninja
Apr 9, 2026
Stuffed JSON files kill website scalability. The host reveals how swapping Astro's file function for the glob loader instantly unlocks robust Markdown content management. Discover how file names automatically become your data IDs without altering a single line of component logic.
Key insight: Astro unifies the Collections API so perfectly that swapping your entire data source from JSON to multiple Markdown files requires zero updates to your frontend component code.