2007-05-21から1日間の記事一覧

Lunascape

先輩からLunascapeというタブブラウザを教えてもらった。検索して調べたら何やら良さそうで時間(というか興味)を見つけて試してみるつもり。

デコレータ

RubyのModuleクラスのattr_accessor、attr_reader、attr_writer、private、protected、publicメソッドはデコレータメソッドである。 class Foo1 def test print "hello\n" end private :test end class Foo2 private def test print "hello\n" end end Pytho…