
Astro Crash Course #13 - Deploying to Netlify
The video walks viewers through deploying an Astro static site to Netlify, emphasizing the workflow of pushing the code to a GitHub repository and then connecting that repo to Netlify for automated builds. It details creating a new private repo named Astro-BookBytes, adding the remote with `git remote add origin`, pushing the main branch, and then signing into Netlify, linking the GitHub account, selecting the repo, confirming the default build command (`npm run build`) and publish directory (`dist`). The presenter notes that no extra base directory or environment variables are needed for a basic Astro project. A key moment is the live demonstration of Netlify’s “Deploy site” button, after which the platform imports, builds, and publishes the site within minutes, displaying a green “published” status and a clickable live URL. The instructor also mentions plans for an expanded Astro masterclass if audience interest grows. For developers, this streamlined process eliminates manual server configuration, enabling rapid iteration and continuous deployment. It showcases Netlify’s tight Git integration, making Astro a viable choice for production‑grade static sites.

Spec Driven Workflow with Claude Code #4 - Implementing the Plan
Claude Code’s fourth tutorial walks through turning a detailed plan into working authentication components. The presenter switches from the default Sonic model to Opus 4.5, noting its superior instruction‑following ability, and enables extended thinking mode to let the model reason longer...

Spec Driven Workflow with Claude Code #3 - Using Plan Mode
The video demonstrates Claude Code’s Plan Mode, a read‑only workflow that generates a detailed implementation plan for new features before any code is written. By activating Plan Mode, Claude spawns a sub‑agent that scans the existing repository, gathers context, and...

Spec Driven Workflow with Claude Code #1 - Making a /Spec Command
The video previews a new chapter of the Claude Code masterclass, demonstrating a lightweight spec‑driven workflow that begins with a custom “/spec” slash command. The instructor explains how the command generates a feature title, creates a safe Git branch, and...