Skip to content

Instantly share code, notes, and snippets.

View tenpercent's full-sized avatar

Max Podkorytov tenpercent

  • San Francisco Bay Area
  • 14:49 (UTC -07:00)
View GitHub Profile
@tenpercent
tenpercent / it-ebooks.rb
Last active December 20, 2015 04:39 — forked from davidhq/it-ebooks.rb
Download ALL books from it-ebooks.info without prompting
require 'nokogiri'
require 'open-uri'
MARK_FILE = "mark.dat"
MAX_THREADS = 5
def wait_for_threads(threads)
print "Waiting for downloads to finish..."
threads.each { |t| t.join }
puts " ok"