Chris

Chris

1p

1 comments posted · 0 followers · following 0

16 years ago @ Random Stuff that Matters - Manipulating list of t... · 0 replies · +1 points

You might want to install the twitter gem (sudo gem install twitter) and then try something like:

#!/usr/bin/env ruby
require 'rubygems'
gem 'twitter'
require 'twitter'

Twitter::Search.new('#oerhf').from('houshuang').each do |r|
puts r.created_at, r.text
end