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
import code; code.interact(local=dict(globals(), **locals())) |
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
source :rubygems | |
group :test do | |
gem "rspec" | |
gem "remote_http_testing" | |
# Beautifying | |
gem 'awesome_print' | |
end |
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
東京大学心青会 ホームカミングデイ企画 | |
日時:2012 年 10 月 20 日(土)17:00 ~ 19:00 | |
会場:東京大学 理学部 7 号館 地階 007 講義室 | |
次第 | |
17:00~ぐらい(それとなくスタート) | |
懇談会 | |
※お飲物,おつまみを準備します |
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
https://twitter.com/bulkneets/status/224725678833147904 | |
ってのを書いたわけだけど | |
元ネタは覚えてる人居ないかもしれないけど、ココらへんの話ねー | |
http://internet.watch.impress.co.jp/docs/news/20090728_305316.html | |
http://mixi.co.jp/press/2009/0727/1691/ | |
で、後々、携帯電話会社とちゃんと連携して、契約者の年齢わかるようにした。 | |
http://mixi.co.jp/press/2011/0119/4179/ |
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
module Maybe | |
class NullObject | |
def initialize | |
@origin = caller.first | |
end | |
def __null_origin__ | |
@origin | |
end |