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

はてダラ 修正版

はてなのシステム刷新にともなってか、http://www.hyuki.com/techinfo/hatena_diary_writer.html:はてダラが使えなくなっています。不便なので、さくっと修正。単にフォームのname属性の値が変ったのが原因のようです。 *** hw 2007-07-05 23:05:59.00000000…

JRuby with Swing

30分プログラム、その74。JRubyで遊ぼう。 require 'java' include_class 'javax.swing.JFrame' include_class 'javax.swing.JLabel' frame = JFrame.new('hello') frame.add JLabel.new('Hello,world!!') frame.setSize 200,100 frame.setVisible true loop…