Skip to content

Instantly share code, notes, and snippets.

@kejadlen
Created July 28, 2012 02:28
Show Gist options
  • Save kejadlen/3191470 to your computer and use it in GitHub Desktop.
Save kejadlen/3191470 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'rubygems' # Since I"m too lazy to set the RUBYOPTS
# environment variable for NetNewsWire
require 'hpricot'
require 'open-uri'
doc = Hpricot.XML(open('http://themoment.blogs.nytimes.com/feed/atom/'))
(doc/:entry).reject {|entry| (entry/:author/:name).inner_text =~ /Jill Santopietro/ }.remove
puts doc.to_html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment