Skip to content

Instantly share code, notes, and snippets.

@itopoid
Created March 1, 2012 14:53
Show Gist options
  • Save itopoid/1950266 to your computer and use it in GitHub Desktop.
Save itopoid/1950266 to your computer and use it in GitHub Desktop.
時限般若心経
# coding: utf-8
require "twitter"
require "date"
Process.daemon
class Timebomb
TIME_BOMB = DateTime.new(2012, 02, 27, 21, 50, 00, Rational(9, 24))
Twitter.configure do |config|
config.consumer_key = ''
config.consumer_secret = ''
config.oauth_token = ''
config.oauth_token_secret = ''
end
while true
if TIME_BOMB <= DateTime.now
Twitter.update("仏説摩訶般若波羅蜜多心経観自在菩薩行深般若波羅蜜多時照見五蘊皆空度一切苦厄舎利子色不異空空不異色色即是空空即是色受想行識亦復如是舎利子是諸法空相不生不滅不垢不浄不増不減是故空中無色無受想行識無眼耳鼻舌身意無色声香味触法無眼界乃至無意識界無無明亦無無明尽乃至無老死亦無老死尽無苦集滅")
Twitter.update("道無智亦無得以無所得故菩提薩埵依般若波羅蜜多故心無罣礙無罣礙故無有恐怖遠離一切顛倒夢想究竟涅槃三世諸仏依般若波羅蜜多故得阿耨多羅三藐三菩提故知般若波羅蜜多是大神呪是大明呪是無上呪是無等等呪能除一切苦真実不虚故説般若波羅蜜多呪即説呪曰羯諦羯諦波羅羯諦波羅僧羯諦菩提薩婆訶般若心経")
exit
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment