Skip to content

Instantly share code, notes, and snippets.

@auxesis
Created November 24, 2010 05:19
Show Gist options
  • Save auxesis/713159 to your computer and use it in GitHub Desktop.
Save auxesis/713159 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'rubygems'
require 'open-uri'
require 'nokogiri'
page = open("http://www.asnc.cam.ac.uk/").read
doc = Nokogiri::HTML(page)
puts doc.text
puts doc.search("a").map {|e| e["href"] }.compact.sort.uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment