Created
October 11, 2011 20:43
-
-
Save siyo/1279379 to your computer and use it in GitHub Desktop.
tweetをマトリックス(映画)っぽくしたくなったとき用 earthquake plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# zalgo tweet / earthquake plugin | |
# | |
# e.g. :zalgo Hello,World! | |
# | |
Earthquake.init do | |
command :zalgo do |m| | |
s = open(URI.encode("http://zalgo-text.jgate.de/convert?q=#{m[1]}")){|f| f.read} | |
input(":update #{s}") | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment