Skip to content

Instantly share code, notes, and snippets.

@hovatterz
Created July 17, 2012 00:27
Show Gist options
  • Save hovatterz/3126101 to your computer and use it in GitHub Desktop.
Save hovatterz/3126101 to your computer and use it in GitHub Desktop.
Excluding tweets!
def get_recent_tweets(username, number_of_tweets)
Twitter.user_timeline(username).keep_if {|tweet|
tweet.in_reply_to_user_id == nil
}.slice(0, number_of_tweets)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment