Skip to content

Instantly share code, notes, and snippets.

@lyuehh
Created April 1, 2013 13:05
Show Gist options
  • Save lyuehh/5284831 to your computer and use it in GitHub Desktop.
Save lyuehh/5284831 to your computer and use it in GitHub Desktop.
require 'open-uri'
require 'nokogiri'
def check
doc = Nokogiri::HTML(open('http://www.yyets.com/resource/10733'))
doc.css('.f14').each do |l|
if l.to_s.include?('片源')
puts 'no'
sleep 60 * 10
else
`terminal-notifier -message "可以看了..."`
puts "haha"
exit
end
end
end
while true
check
end
@lyuehh
Copy link
Author

lyuehh commented Apr 1, 2013

桌面通知只支持mac系统, 使用gem install terminal-notifier安装

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment