2008-03-09から1日間の記事一覧

[firefox] IE Tab が Firefox 3 beta に対応

してるーーーーーーーーーーーー!!!!

[ruby] Cygwin で fastladder を動かす

INSTALL.txt にそって作業 FreeImage のインストール DL http://freeimage.sourceforge.net/download.html Makefile のリネーム Makefile.cygwin -> Makefile make make install ニコニコ見ながらのせいか make がかなり長い gem のインストール $ gem insta…

[diary] Shut the fuck up and "Read" some code.

Shut the fuck up and write some code. 有名な(?) 「うだうだ言ってねーで黙ってコード書け」だけど、「うだうだ言ってねーで、黙ってコード嫁」も結構大事だなぁと気づいた。当たり前なんだけど。 がむしゃらにコードを書くのもいい、でもそのコーディング…

[java] String#equals のソースを読んでみる

同一文字列かどうかを判定する public boolean equals(Object anObject) { if (this == anObject) { return true; } if (anObject instanceof String) { String anotherString = (String)anObject; int n = count; if (n == anotherString.count) { char v1[…