Skip to content

Instantly share code, notes, and snippets.

View paytonjewell's full-sized avatar
🏠
Working from home

Payton Pierce paytonjewell

🏠
Working from home
View GitHub Profile
@paytonjewell
paytonjewell / watch-later-migrate.js
Created October 3, 2025 16:24
Migrate from Watch later to Watch Later 2.0
// YouTube Watch Later to Watch Later 2.0 Migration Script
// Paste this into Chrome DevTools Console while on your Watch Later playlist page
(async function migrateWatchLater() {
console.log('Starting Watch Later migration...');
// Step 1: Scroll to bottom to load all videos
console.log('Step 1: Scrolling to load all videos...');
await scrollToBottom();
@paytonjewell
paytonjewell / FreeCodeCamp-Notes.md
Last active January 28, 2020 03:53
Codes from the FCC curriculum to use as reference :)

Responsive Web Design

Basic HTML & HTML5

  • HTML5 introduces more descriptive HTML tags. These include main, header, footer, nav, video, article, section and others.

    • These tags give a descriptive structure to your HTML, make your HTML easier to read, and help with Search Engine Optimization (SEO) and accessibility. The main HTML5 tag helps search engines and other developers find the main content of your page.