2012-03-01から1ヶ月間の記事一覧

Perfumeを踊らせる

鼻息荒く https://github.com/perfume-dev/example-processing をcloneした諸君、あなたのprocessingでPerfumeが踊ると思ったら残念、音楽もなく3人がブラブラしてるだけでした。まあ、そこでいきなり投げ出したひとはそんなにいないと思いますが、ダウンロ…

CRaSH備忘録

crsh-1.0.0-beta24 は repo コマンドが何かおかしいので crsh-1.0.0-beta20 を使うtelnet localhost 5000 ws login -u root -p gtn -c ecmdemo collaboration ls cd 'sites content/' 空白がある時は''で囲む cd '/sites content/live/acme/documents/vvvv.p…

server.log を grep する備忘録

JBoss Messaging メッセージの到着(add)、配信(remove)に対するDBストア更新を確認。この後コミットに失敗している可能性はあるので要チェック cat server.log | grep JDBCPersistenceManager | grep 'channel 16' | grep adding | ruby -ne 'puts $1 if $_ …

Nexus備忘録

http://www.sonatype.org/nexus/ admin/admin123 http://www.andrejkoelewijn.com/wp/2010/03/09/getting-started-with-nexus-maven-repository-manager/

Yourkit備忘録

右クリック -> Exclude Method で、いらないメソッドを取り除く(SocketInputStream.readとか)と、残りのボトルネックぶりがクローズアップされる

Debugging MVEL.eval()

You may hit a weird result from MVEL.eval() due to type coercion.http://mvel.codehaus.org/MVEL+2.0+TypingAs the rules of type coercion are not fully documented, you may need to go though source codes to understand what is happening.Here is…