Skip to content

Instantly share code, notes, and snippets.

View Brent1LT's full-sized avatar

Brent Bumann Brent1LT

View GitHub Profile
@Brent1LT
Brent1LT / index.js
Created February 4, 2026 20:01
web scraping pair programming
const puppeteer = require('puppeteer');
const fs = require('fs');
const path = require('path');
const url = `https://icanhas.cheezburger.com/`;
async function main(url) {
const browser = await puppeteer.launch({headless: false, slowMo: 50 });
const page = await browser.newPage();
await page.goto(url, {