2009-03-25から1日間の記事一覧

付録A, B

Perl 問題を解決するためのガイド 熊さんに話しかけているか? Jon Stewart が司会の「The Daily Show」は見ているか? エゴを抑えているか? 熊じゅーよーということで原文はコチラ http://github.com/briandfoy/mastering-perl/tree/master マスタリングPe…

18章 モジュール

scriptdist

17章 tie

tied VARIABLE で,その変数に関連付けられているオブジェクトが得られる tied($var)->method; # STORE()/FETCH() みたいなものでなくとも直接呼べる

16章 ビット

perldoc -f oct で,"0x", "0b" が渡せるのは覚えてなかった oct EXPR oct Interprets EXPR as an octal string and returns the corresponding value. (If EXPR happens to start off with "0x", interprets it as a hex string. If EXPR starts off with "…

15章 Pod

perldoc perlpodspec Pod::Simple Test::Pod Test::Pod::Coverage

14章 データ永続性

Data::Dumper YAML DBI じゃないとわ

13章 ロギング

Log::Log4perl

12章 エラー

$!(システムエラー)は,dualvar だ $! は,$!{$!} として存在するので,$! == ENOENT を $!{ENOENT} と書けたりする*1 $ perl -e 'for ($!=1; $! <=102;$!+=1){printf"%d: %s\n", $!, $!}'|head -2 1: 許可されていない操作です 2: そのようなファイルやディ…

11章 設定

constant Readonly Getopt::Long AppConfig Config モダンPerl 入門だと MooseX::Getopt

10章 モジュール

Hook::LexWrap 考え方かな

9章 動的サブルーチン

ささる三連.AUTOLOAD() -> *{$AUTOLOAD} = sub { ... }; -> goto &{$AUTOLOAD}; http://hop.perl.plover.com/

サイドバーが入らんくなった

Firefox 3.0.7 にて,hatena2 系のデザインのサイドバーが入らなくなったので,とりあえず以下を追加 .sidebar { margin-left: -222px; /* 微妙に入らなくなった */ } これを機にFirebug とか Web Developper [日本語版] などを入れた.併わせて読みたい よ…