Skip to content

Instantly share code, notes, and snippets.

@oleander
Created March 27, 2011 00:08
Show Gist options
  • Save oleander/888766 to your computer and use it in GitHub Desktop.
Save oleander/888766 to your computer and use it in GitHub Desktop.
list = []
300.times do |n|
list << Thread.new do
begin
data = RestClient.get "http://ws.spotify.com/search/1/track?q=a?#{Time.now.to_f}"
puts data.code
rescue
retry
end
end
end
list.map(&:join)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment