2007-08-01から1ヶ月間の記事一覧

fifty ways to leave your lover

Steve Gaddのドラムで好きな曲。最近はこればかり練習中。 http://www.drummerworld.com/Videos/stevegaddfifty.mov

tripletのエクササイズ

右手のシンバルレガータに左手のスネア頭抜きの3連のコンビネーション。 これを2週間ほど続けているうち、左手が細かく叩けるようになった。 3 3 3 3 _____ _____ _____ _____ | | | | | | | | | | | | x | | x | x x | | x | x * * * * * * * *

Ruby on Railsメモ

ここのチュートリアルに沿って実習してみた: http://www-06.ibm.com/jp/developerworks/linux/050708/j_l-rubyrails.htmlscaffoldの生成に指定するモデル名が大文字ではじまるのはなぜだろう? $ ruby script/generate scaffold Contactpublic/stylesheets/s…

7拍子の曲といえばUnsquare Dance

ああ、まさにこの曲。75年頃、FM福岡で聴いてた。Take FiveのDave Brubeckの曲(?)だったのだね。当時このスティックさばきをコピーしようとして挫折した。http://oshiete1.goo.ne.jp/qa54262.html http://www.last.fm/music/Dave+Brubeck/_/Unsquare+Dance

Cindy Blackman

デクレシエンドでの終わらせ方が官能的。http://www.drummerworld.com/drummers/Cindy_Blackman.html http://www.cindyblackman.com/

rubyで2chクローラーを書いてみた(改訂)

キャッシュ機能追加 #!/usr/bin/ruby -KU -w require 'net/http' require 'kconv' def getfile(url) content='' begin res = Net::HTTP.get_response(URI.parse(url)) puts "#{res.code} #{url}" if res.code == '200' content=res.body.toutf8 end rescue T…

rubyでクローラーを書いてみた

2ちゃんねるのスレッド(dat落ち含む)タイトルを取得する。 #!/usr/bin/ruby -KU -w require 'net/http' require 'kconv' def getfile(url) content='' begin res = Net::HTTP.get_response(URI.parse(url)) if res.code == '200' content=res.body.toutf8…

/usr/bin/headが/usr/bin/HEADで上書きされた

headコマンドを実行するとhttpヘッダが出力されて、あれれ。 LWPをインストールしたとき/usr/bin/headが上書きされたようだ。HFS+、大文字と小文字を区別しないのね。http://blog.livedoor.jp/dankogai/archives/50764262.html