2012-04-01から1ヶ月間の記事一覧

日本のゲームセンターを描くドキュメンタリー『100円』

http://wired.jp/2012/04/20/100-yen-documentary/ 「彼らのほうも、言葉を通してコミュニケーションができないことを心配している。だからゲームを言葉にできればいいんだ」とクローフォード監督は言う。「ゲームは、コミュニケーションの素晴らしいツール…

Galaxy Express 999

今日のほしぞら

http://eco.mtk.nao.ac.jp/cgi-bin/koyomi/skymap.cgi

閏月

http://88d.jp/feature01/feature4.html 閏月の挿入位置は二十四節気で決まる。 http://88d.jp/feature01/feature5_3.html#uru wikipedia:定気法 中気は黄経30°の倍数、正節はそれに15°足したものとされている。 wikipedia:二十四節気 太陽黄経が30の倍数で…

wikipedia:月

特殊文字・記号や罫線文字

特殊文字・記号や罫線文字の入力一覧表 http://support.microsoft.com/kb/883172/ja HTMLの特殊文字 http://e-words.jp/p/r-htmlentity.html

http://www.zdic.net/zd/zi/ZdicE7ZdicAFZdic80.htm

http://www.zdic.net/zd/zi/ZdicE6ZdicB0ZdicA3.htm

http://www.zdic.net/zd/zi/ZdicE6ZdicB0Zdic97.htm

漢典

http://www.zdic.net/

http://www.zdic.net/zd/zi/ZdicE7Zdic90Zdic86.htm http://dic.yahoo.co.jp/dsearch?p=%e7%90%86&stype=1&dtype=0&dname=0ss

http://www.zdic.net/zd/zi/ZdicE9Zdic87Zdic8C.htm http://dic.yahoo.co.jp/dsearch?enc=UTF-8&p=%e9%87%8c&dtype=0&dname=0na&stype=1&pagenum=1&index=21145900 http://dic.yahoo.co.jp/dsearch?enc=UTF-8&p=%e9%87%8c&dtype=0&dname=0ss&stype=1

灌仏会

wikipedia:灌仏会 灌仏会(かんぶつえ)は、釈迦の誕生を祝う仏教行事である。日本では原則として毎年4月8日に行われる。 甘茶 wikipedia:甘茶

バイナリデータをつくる

#!/usr/bin/env perl print pack("H*",$ARGV[0]); $ ./hex.pl 616263646566670a | od -t x1 0000000 61 62 63 64 65 66 67 0a 0000010 $ ./hex.pl 616263646566670a abcdefg $ ./hex.pl e9ab99e5b3b6e5b18b0a ←UTF8 島屋 参照したURL: http://x68000.q-e-d.…

月齢を計算する

#!/usr/bin/env perl use Time::Piece; @value = (0, 0, 2, 0, 2, 2, 4, 5, 6, 7, 8, 9, 10); $time = localtime; print $time->strftime(),"\n"; $the_age_of_the_moon = ((($time->year - 11) % 19) * 11 + $value[$time->mon] + $t ime->mday) % 30; prin…

十五夜

今日は陰暦15日らしい。 空を見上げて、だいたいの日にちがわかるのはいいかも。 http://d.hatena.ne.jp/keyword/%BD%BD%B8%DE%CC%EB http://88d.jp/feature01/feature1.html

上岡龍太郎とダウンタウン

rrdファイルのデータをgnuplotで表示する

(rrdplot.pl) #!/usr/bin/env perl open(GP,"|gnuplot -persist") or die "no gnuplot"; print GP "set term dumb\n"; print GP "set xdata time\n"; print GP "set timefmt \"%Y/%m/%d %H:%M:%S\"\n"; print GP "plot \"-\" using 1:3, \"-\" using 1:4\n";…