EntryFullText のなにかが utf8 フラグ落としちゃってる気がするなぁ。

mndks

by typester / at 2006-05-15T12:11:00 / plagger / Comment

掃除機うるせー><

by typester / at 2006-05-15T10:15:00 / life / Comment

ユーコンブレンド 100g

by typester / at 2006-05-15T08:40:00 / life · starbucks / Comment

WWW::Google::Calculator かな。

by typester / at 2006-05-15T08:20:00 / life / Comment

モジュール名

Google 電卓用のモジュールを作った。

http://svn.unknownplace.org/public/library/perl/trunk/WWW-GoogleCalc/

なんか名前がむずかしい。

CPAN みると google 関係だけで

  • Net::Google::*
  • WWW::Google::*
  • WebService::Google::*

とかありまくるし。どれつかえばええねん。

こういう、無理矢理ハック系のは WWW かなとおもったので WWW::GoogleCalc としたのだけど、どうなんだろう。

by typester / at 2006-05-15T07:58:00 / perl / Comment

PlaggerLDR

[743] - Plagger - Trac

rating 対応。

by typester / at 2006-05-15T05:58:00 / plagger / Comment

YAML.pm bug?

use strict; use warnings;

use Data::Dumper;
use YAML;

my $config = {
    default => [ 1, { '*' => 1 }, ],
    deny    => ['script'],
};

my $yaml = Dump($config);

print $yaml;
print Dumper( Load($yaml) );

output:

---
default:
  - 1
  - '*': 1
deny:
  - script
YAML Error: Couldn't parse single line value
   Code: YAML_PARSE_ERR_SINGLE_LINE
   Line: 5
   Document: 1
 at /usr/local/share/perl/5.8.7/YAML.pm line 60

This code works fine with YAML::Syck.

by typester / at 2006-05-15T04:02:00 / perl · yaml / Comment