Skip to content

Instantly share code, notes, and snippets.

@clyfe
Last active October 13, 2015 03:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save clyfe/4134366 to your computer and use it in GitHub Desktop.
Save clyfe/4134366 to your computer and use it in GitHub Desktop.
black friday
# sudo apt-get install vlc vlc-plugin-pulse
require 'open-uri'
song = "Music/Creedence\\ Clearwater\\ Revival\\ -\\ Hey\\ Tonight.mp3"
loop do
begin
sleep 1
open("http://www.emag.ro/")
loop do
Thread.new { system("cvlc #{song}") }.join
end
rescue OpenURI::HTTPError => e
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment