2011-11-01から1ヶ月間の記事一覧

アクセスログのパースはたまにしかやらないけど、忘れるので書いとこう

PHP

yesodを試す

ubuntu server 64bit 11.10 環境でyesodを始めるhaskell-platformによると、ubutnu 11.10はhaskell-platform-2011.2.0.2がはいる。cabalは0.10.2が入った。 % sudo aptitude install haskell-platform % sudo aptitude install libedit-dev libbsd-dev libgm…

Herokuに登録

前回からの続き Getting Started with Herokuを参考にherokuをinstall // rvm インストールしてパスを通す % sudo aptitude install curl git make % bash < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer) % echo 'P…

IRCの部屋に在席してる人を取得してくる

PEARのライブラリの使い方がいまひとつ解らなかったので自分で書いてみた。 connect($host,$port); $irc->login('test_bot'); $irc->read(); $irc->send('names #testroom'); $buffer = $irc->read(); $row = split("\n",$buffer); $members = preg_replace(…