退社。

by typester / at 2006-02-14T03:22:00 / life / Comment

盗聴

Term::ReadPasswordてのもある

by typester / at 2006-02-14T03:20:00 / life · perl / Comment

隣の人のtypoはよく見つけられる法則。

by typester / at 2006-02-13T22:13:00 / life / Comment

盗聴

Term::ReadKey

password とか入力するときに Linux のコマンドラインっぽく画面の出力を隠して入力文字列をとりたいときにいいモジュール

by typester / at 2006-02-13T20:05:00 / life · perl / Comment

mmm-mode 悪戦苦闘

みやーんととくひろむが教えてくれた mmm-mode をためしてるのだけど、html-mode 内で ecmascript-mode 使おうとするとエラーる。

mmm-mode-on して C-c % C-r してリージョンを ecmascript-mode にしてからその中で Tab かなんかで整形させようとすると

c-looking-at-decl-block: Wrong type argument: stringp, nil

こんなのでる。

うう、cc-mode の何かとの関係? 全然わからん。

ちなみに同じく html-mode 内で css-mode ならちゃんと動く。

CSS とかまったくインラインでかかねっつの!! もう眠いので今度にしよう。

by typester / at 2006-02-13T05:22:00 / emacs / Comment

ヴィエニーズブレンド 100g

by typester / at 2006-02-12T23:30:00 / life · starbucks / Comment

出社。

なんか手裏剣とかお菓子とかコロッケとかもらった。誕生日だ。

by typester / at 2006-02-12T23:01:00 / life / Comment

uinona と 小松未歩 の区別が付きません。

by typester / at 2006-02-12T18:25:00 / music / Comment

refactored

sub fuzzyfind { my ( $self, $id ) = @_;

    $id and $id =~ /\D/
        ? ( $self->find( { uuid => $id } ), 1 )
        : $self->find($id);
}

こうか。

by typester / at 2006-02-12T17:46:00 / perl · dbic / Comment

fuzzyfind

sub fuzzyfind { my ( $self, $id ) = @_;

    my ( $exist, $uuid );
    $exist = $self->find( { uuid => $id } ) and $uuid++
        if $id and $id =~ /\w/;

    defined $exist ? ( $exist, $uuid ) : $self->find($id);
}

namingsence by 2ndlife.

* 16:46 コード修正

by typester / at 2006-02-12T16:27:00 / perl · dbic / Comment

133 134 135 136 137 138 139 140 141 142

(Page 137 of 203)