Skip to content

Instantly share code, notes, and snippets.

@james
Created June 9, 2009 17:24
Show Gist options
  • Save james/126663 to your computer and use it in GitHub Desktop.
Save james/126663 to your computer and use it in GitHub Desktop.
last_response = `curl http://www.macrumors.com/2009/06/06/wwdc-2009-spoiler-free-keynote-stream/`.gsub(/\d/,"")
while true
current_response = `curl http://www.macrumors.com/2009/06/06/wwdc-2009-spoiler-free-keynote-stream/`.gsub(/\d/,"")
unless last_response == current_response
`say aaaaaaaaaaaaarrgh steevie`
end
last_response = current_response
sleep 10
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment