Skip to content

Instantly share code, notes, and snippets.

View fommil's full-sized avatar
😽
having a fantastic day not writing any scala

>>= fommil

😽
having a fantastic day not writing any scala
View GitHub Profile
@fommil
fommil / gist:5761e86671f33a615f9b
Created July 6, 2014 17:42
Download Feynman Lectures
#!/bin/sh
#./wkhtmltopdf http://www.feynmanlectures.caltech.edu/I_51.html
OPTS="--proxy localhost:3128 --javascript-delay 20000 --no-stop-slow-scripts"
for PAGE in `seq -w 1 52` ; do
echo ./wkhtmltopdf http://www.feynmanlectures.caltech.edu/I_${PAGE}.html $OPTS i_${PAGE}.pdf
done