2012-03-16

stahl

鋼 as a welding symbol

2012-03-12

<harmony/>

<definition>
    <i: human>
        <d: a patchy existence>
</definition>
個人とは何かに関する考察が悲しいほどに行き届いていると思う。
伊藤計劃の天才さが伺えた。
ある意味ハッピィエンディングだが、こんなことになるくらいなら、
人類にとってのエンドロールが始まる前に席を立ちたいものだ。
A really sad story on what is an individual, which implies Project Itoh's genius.
This ending can be counted as a happy one indeed, but I'd rather vacate my seat
before the credits if we cannot help but fall into this result.

<list: to discuss>
    <i: 状況の多様化が意識を生み出す。>
    <i: 双曲線関数で畳み込まれたパルス波の選択的発現。>
    <i: 意識をもつことが脊椎動物には実装しやすかった。>
    <i: 自己嫌悪とは。>
</list>

2012-06-05 追記
結局、ハーモニーの何が恐ろしかったのかというと、
やれ平和だ愛だと叫ばれる理想が「実現」された状態として、
ハーモニーのエンディングの世界が描かれていることだ。
大まじめにあの世界が理想的だと思う読者はそう多くないであろうが、
確かにあの世界は「理想的」であり、それが否定できない。
ではその世界に辿りつきたいのかと言われると、そんなことはごめんだという
意見のほうが多いであろう。
普段何の疑いもなく受け入れていしまう世界の理想像を追い求めた結果を、
あの形で提示したこと。
全ての物語からハッピィエンドを奪い去ったこと、いや、ハッピィエンドの行き着く先を
アリジゴクにしてしまったことこそが、ハーモニーの衝撃なのだと思う。

2012-03-11

2012-03-06

みぎて / ひだりて

Likeが右手を握らせて、Loveが左手を握らせる。
Right hand meets right hand by ``Like'', left hand by ``Love''.

http://video.asahi.com/viewvideo.jspx?Movie=48464140/48464140peevee447698.flv

2012-01-08

870125

円周率小数第1,601,382桁目に初めて出現するらしい。

# ご協力頂いた方々 : SUPER_PI.EXE, python

SUPER_PI.EXEで209万桁の表を出力(pi.dat)

def search_pi(num):
    num=str(num)
    if not all(x.isdigit() for x in num):
        print "Cannot search {}".format(num)
        return
    with open('pi.dat') as f:
        pi="".join(["".join(l.split()) for l in filter(lambda x:x!="\n", f.readlines())])
    try:
        return pi.index(num)-4 # pi='PI=3.1415926535897932384...'
    except ValueError:
        print "{} not found".format(num)
        return

for year in range(2000,2013):
    pidigit=search_pi(year)
    print "{} is found at {} - {}".format(year, pidigit, pidigit+3)

--->

2000 is found at   600 -   603
2001 is found at 12232 - 12235
2002 is found at 30926 - 30929
2003 is found at 25410 - 25413
2004 is found at  7235 -  7238
2005 is found at 33382 - 33385
2006 is found at  8623 -  8626
2007 is found at  2805 -  2808
2008 is found at 11651 - 11654
2009 is found at  8184 -  8187
2010 is found at  1009 -  1012
2011 is found at  5774 -  5777
2012 is found at  7200 -  7203

mapBetween

http://blog.livedoor.jp/dankogai/archives/51763038.html
より、mapBetweenのPython実装。

def mapBetween(lis,func=lambda x,y:x+y):
    try:
        return map(func, lis[:-1], lis[1:])
    except TypeError:
        print 'func should be a binary operator'
        return

2012-01-04

2012 = x + y

どことなく「2012」、どことなく横にした「辰」…、
的な、感じの、ニュアンスを、、、こう、、、思いが届けばと。
(ラーメンズ「Big news」より)


足して2012になる素数の組は

 13,  19,  61,  79, 139, 151, 181, 211, 223,
229, 271, 313, 349, 433, 463, 523, 541, 613,
631, 691, 709, 733, 811, 859, 883, 919, 991

とその相方の27組。

円周率の小数点以下第7200桁目から第7203桁目に、
初めて"2012"が並ぶ(たぶん)。