Skip to content

Instantly share code, notes, and snippets.

@robertokl
Created April 12, 2010 14:17
Show Gist options
  • Save robertokl/363601 to your computer and use it in GitHub Desktop.
Save robertokl/363601 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'mechanize'
class AgressivometroNotifier
q = 0
while(true) do
agent = Mechanize.new
agent.get('http://173.203.109.223/')
c = agent.page.images.find_all {|i| i.src == "images/bomb2.png"}.count
if q != c
`growlnotify "Mudança no agressivomêtro!" -m "Mudou para #{c} a quantidade de palavrões falados pela equipe" --image "/Users/roberto.klein/bomb2.png"`
q = c
end
sleep 10
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment