Skip to content

Instantly share code, notes, and snippets.

View sunbird-sameer's full-sized avatar

SAMEER KULKARNI sunbird-sameer

View GitHub Profile
@aayushdutt
aayushdutt / scrape_feynman_lectures_playlist.sh
Last active June 20, 2025 11:07
Bash script to scrape Feynman Lecture Recordings Playlist from https://www.feynmanlectures.caltech.edu/flptapes.html
#!/bin/bash
# Number of concurrent downloads
num_concurrent_downloads=9
# Function to perform curl request
perform_curl() {
local url=$1
local filename=$2
printf "\nDownloading: $filename from $url\n"