Skip to content

Instantly share code, notes, and snippets.

View mattgiamou's full-sized avatar

Matthew Giamou mattgiamou

View GitHub Profile
@philosopherdog
philosopherdog / youtube-dl-cheat.txt
Created March 21, 2017 13:08
youtube-dl cheat sheet
# Basic Download:
youtube-dl URL
# Download Playlist, put in folder, and index with order:
youtube-dl -o '%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s' URL
# Download to /$uploader/$date/$title.$ext:
youtube-dl -o '%(uploader)s/%(date)s/%(title)s.%(ext)s' URL
# Download playlist starting from certain video:
@mharsch
mharsch / gist:5542211
Created May 8, 2013 17:53
raspbian config for unsecured ad-hoc wifi using edimax EW-7811UN usb wifi adapter 8192cu driver
pi@raspberrypi ~ $ cat /etc/network/interfaces
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet static
address 10.0.0.1
netmask 255.0.0.0