Watch curated video content on artificial intelligence — from technical explainers to documentary insights. Videos are embedded from YouTube and NotebookLM.


All Videos

No videos yet. Check back soon, or browse articles.


How to Embed a Video

YouTube video — add to your post’s front matter:

video_id: "YOUR_YOUTUBE_VIDEO_ID"
video_type: "youtube"

Vimeo video — add to your post’s front matter:

video_id: "YOUR_VIMEO_VIDEO_ID"
video_type: "vimeo"

NotebookLM notebook — add to your post’s front matter:

video_id: "YOUR_NOTEBOOK_ID"
video_type: "notebooklm"

You can also embed inline anywhere in your markdown content:







<div class="video-embed" role="region" aria-label="Video: My Video">
  
    
    <div class="video-embed__container">
      <iframe
        src="https://www.youtube-nocookie.com/embed/dQw4w9WgXcQ?rel=0&modestbranding=1"
        title="My Video"
        allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
        allowfullscreen
        loading="lazy"
        class="video-embed__iframe"
      ></iframe>
    </div>
    <p class="video-embed__caption">
      📺 <a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" target="_blank" rel="noopener noreferrer">Watch on YouTube</a>
    </p>

  
</div>