Skip to content

Instantly share code, notes, and snippets.

View willbarrett's full-sized avatar
💭
🚀

Will Barrett willbarrett

💭
🚀
View GitHub Profile
@natanael-araujo
natanael-araujo / destroydownloader.rb
Created May 21, 2012 07:08
download all the screencasts from destroyallsoftware.com <3
# encoding: UTF-8
begin
require "mechanize"
rescue LoadError => e
p e; abort "please run \"gem install mechanize\""
end
download_path = File.expand_path(File.join(File.dirname(__FILE__), "destroy_all_software"))
Dir.mkdir download_path unless Dir.exists? download_path