CVS

そういや昔はCSVをCVSとかtypoしてたけど、今は逆だなぁ。

by typester / at 2006-01-15T01:36:00 / life / Comment

つーかPOEよくわからねえええkつ

by typester / at 2006-01-14T02:44:00 / perl / Comment

昨日の DAAP Proxy は POE::Component::Proxy::TCP はなんかLinuxでしかうまく動かんので、適当に実装してる。

sekimura さんので iTunes の共有に表示出すのは簡単にできて、そっから DAAP の server-info content-codes login まではいくんだけど、そのあと updates で固まる。

土日マター。

by typester / at 2006-01-14T02:37:00 / perl / Comment

退社。

by typester / at 2006-01-14T02:13:00 / life / Comment

雨の歌 - ムローヴァ

ブラームス : ヴァイオリン・ソナタ 第1番 ト長調 作品78「雨の歌」

これも購入。

バイオリン曲の中でも多分一番すきなんじゃないかなってくらいのブラームスのバイオリンとピアノのためのソナタ第一番。繊細な演奏家ムローヴァがかなり良い感じに弾きこなしてます。

高校の文化祭で視聴覚室借りてこれ弾いたなぁ。立ち見出るくらい人集まってびびった、良い思い出。

by typester / at 2006-01-13T16:51:00 / music / Comment

by typester / at 2006-01-13T16:01:00 / life / Comment

MY FOOT - the pillows

MY FOOT - the pillows

ゲッツ。

pillows、en.wikipedia.org にのってんだな。。

by typester / at 2006-01-13T13:08:00 / music / Comment

出社。

by typester / at 2006-01-13T11:57:00 / life / Comment

daap-proxy.pl

sekimura さんが Net::Rendezvous::Publish::Backend::BonjourWin32 とかいうアツイモジュールを作っているのを見てこんなの思いついた。

実行できる環境にないので適当に書いてみただけで多分動きませんが、

#!/usr/bin/perl

use strict;
use warnings;

use Getopt::Long;
use FindBin;
use lib "$FindBin::Bin/../lib";

use POE qw/Component::Proxy::TCP/;
use Net::Rendezvous::Publish;
use Net::Rendezvous::Publish::Backend::BonjourWin32;

my $server_name   = 'daap proxy';
my $server_port   = 9999;
my $remote_server = 'localhost';
my $remote_port   = 3689;

GetOptions(
    'n|server-name=s'   => \$server_name,
    'p|port=i'          => \$server_port,
    'r|remote-port=i'   => \$remote_port,
    's|remote-server=s' => \$remote_server,
);

POE::Component::Proxy::TCP->new(
    Alias       => "ProxyServerSessionAlias",
    Port        => $server_port,
    OrigPort    => $remote_port,
    OrigAddress => $remote_server,
);

my $service = Net::Rendezvous::Publish->new->publish(
    name => $server_name,
    type => '_daap._tcp',
    port => $server_port,
);

$poe_kernel->run;

目的はLANの外にあるDAAP ServerをiTunesの共有で聞きたい、てのがしたいということ。

家にも会社にも音楽ファイル置いててめんどいのでこゆのほしかった。

これで動くといいけどなぁ。詳しくは明日。

by typester / at 2006-01-13T02:31:00 / perl / Comment

退社。

by typester / at 2006-01-13T01:16:00 / life / Comment

147 148 149 150 151 152 153 154 155 156

(Page 151 of 203)