Skip to content

Instantly share code, notes, and snippets.

@kazgoto
Last active August 29, 2015 14:03
Show Gist options
  • Save kazgoto/712bbaf8f6b06e977820 to your computer and use it in GitHub Desktop.
Save kazgoto/712bbaf8f6b06e977820 to your computer and use it in GitHub Desktop.
AWS Service Health DashboardからRSSフィードを抽出(2014.7.7版)
require 'rubygems'
require 'nokogiri'
require 'open-uri'
doc = Nokogiri::HTML(open('http://status.aws.amazon.com/'))
doc.xpath('//td[@class="bb center top"]/a').each do |link|
puts 'http://status.aws.amazon.com/' + link.attribute('href').value
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment