Skip to content

Instantly share code, notes, and snippets.

@gonzaloserrano
Last active December 16, 2015 20:59
Show Gist options
  • Save gonzaloserrano/5496751 to your computer and use it in GitHub Desktop.
Save gonzaloserrano/5496751 to your computer and use it in GitHub Desktop.
Download some computer science videos popular in the HackerNews community
# requires python, use at your own risk :-)
mkdir youtube-dl
cd youtube-dl
wget http://youtube-dl.org/downloads/2013.05.01/youtube-dl
chmod +x youtube-dl
wget https://dl.dropboxusercontent.com/u/16897247/cs-videos.txt
for i in `cat cs-videos.txt | awk '{print $1}'`; do ./youtube-dl $i; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment