Skip to content

Instantly share code, notes, and snippets.

@miwillhite
Created December 9, 2011 22:46
Show Gist options
  • Save miwillhite/1453659 to your computer and use it in GitHub Desktop.
Save miwillhite/1453659 to your computer and use it in GitHub Desktop.
# gem install crack
%w[crack open-uri].each{ |dep| require dep }; Crack::XML.parse(open("http://news.ycombinator.com/rss").read)['rss']['channel']['item'].each{ |i| puts("== #{ i['title'] } ==", "#{ i['link'] }\n\n") }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment