Skip to content

Instantly share code, notes, and snippets.

@Leko
Last active December 20, 2015 13:38
Show Gist options
  • Save Leko/6140257 to your computer and use it in GitHub Desktop.
Save Leko/6140257 to your computer and use it in GitHub Desktop.
バルス!!!!!!
# encoding: utf-8
require "twitter"
Twitter.configure{ |conf|
conf.consumer_key = CONSUMER_KEY
conf.consumer_secret = CONSUMER_SECRET
conf.oauth_token = OAUTH_TOKEN
conf.oauth_token_secret = OAUTH_TOKEN_SECRET
}
def bals(n)
n.times{|i|
tweet = "バルス" + "!" * (i+1)
Twitter.update(tweet)
i += 1
}
end
bals(20)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment