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

arguments.callee

初めて知ったので callee - Mozilla Developer Center を読む。 Specifies the currently executing function. spidermonkey で試してみる。 js> function test() { print(arguments.callee); } js> test(); function test() { print(arguments.callee); } a…

Tombloo で Delicious をプライベートポストに

tombloo/script に保存。 addAround(Delicious, 'post', function(proceed, args) { var ps = args[0] = update({}, args[0]); ps.private = true; return proceed(args); }); 参考にしたサイト 僕がtombloo/scriptに入れているもの - cxxの日記 - たんぶら…

Tombloo-0.3.11 で delicious のプライベートポストができないバグを修正してみた

--- 20_model.js.orig 2008-08-06 13:12:28.000000000 +0900 +++ 20_model.js 2008-08-06 13:12:46.000000000 +0900 @@ -743,7 +743,7 @@ jump : 'no', notes : joinText([ps.body, ps.description], ' ', true), tags : ps.tags? ps.tags.join(' ') : '', -…