Skip to content

Instantly share code, notes, and snippets.

@abevoelker
Last active August 29, 2015 13:57
Show Gist options
  • Save abevoelker/9472146 to your computer and use it in GitHub Desktop.
Save abevoelker/9472146 to your computer and use it in GitHub Desktop.
require 'nokogiri'
require 'open-uri'
r = open('http://en.wikipedia.org/wiki/List_of_The_Price_Is_Right_pricing_games').read
doc = Nokogiri::HTML(r)
name = doc.css('span.mw-headline').map(&:text).select{|name| name.size > 1}.sample
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment