2008-05-30から1日間の記事一覧

thxは小学生まで

13:09 (mst) thx? 13:09 (purl) please don't say "thx", if you're genuinely grateful it's worth the effort to type three extra characters and say "thanks". this is IRC, after all, not SMS or twitter IRCでは感謝の意を込めて略さずthanksってタ…

Catalystからメールを送るには

use Catalyst::View::Email or Catalyst::View::Email::Template DO NOT use Catalyst::Plugin::Email

初めてのMoose - クラスを作る

use Moose Mooseでクラスを作るのは簡単です。 package Dog; use Moose; 1; これで、newというコンストラクタメソッドを持ったDogクラスのインスタンスを生成することができます。 my $dog = Dog->new; print ref $dog; ちゃんと$dogがDogのインスタンスであ…