Skip to content

Instantly share code, notes, and snippets.

@BrianTheCoder
Created September 5, 2008 18:59
Show Gist options
  • Save BrianTheCoder/9004 to your computer and use it in GitHub Desktop.
Save BrianTheCoder/9004 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'twitter'
require 'randexp'
EMAIL = ""
PASSWORD = ""
while true do
begin
Twitter::Base.new(EMAIL, PASSWORD).post(/[:sentence:]{2}/.gen)
puts "posted gibberish"
rescue
puts "EPIC FAIL"
end
sleep 90
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment