リンク: [ホーム] [自己紹介] [リンク集] [アルバム] [ソフトウェア] [発表文献] [その他]

まさおのChangeLogメモ / 2003-08-22

01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

2003-08-22 Fri

* Diggler Bookmarklet

よく考えたら、Bookmarklet で実現可能じゃん!!

javascript:if (location.hash) location.hash = ''; else if (location.search) location.search = ''; else if (location.pathname.charAt(location.pathname.length-1) == "/") location = ".."; else if (location.pathname) location = "."; void 0

これにて diggler の役目は終了。

* moz-jtp bookmarklet

日英切替: mozilla.org と jt.mozilla.gr.jp のコンテンツを切り替え
ながら閲覧する際に便利。

javascript:if (location.hostname == 'www.mozilla.org' || location.hostname == 'mozilla.org') location.hostname = 'jt.mozilla.gr.jp'; else if (location.hostname == 'lxr.mozilla.org'){ location.href = location.href.replace(/lxr.mozilla.org\//, 'jt.mozilla.gr.jp/lxr/'); } else if (location.hostname=='jt.mozilla.gr.jp' && location.pathname.search(/^\/lxr/) == 0) { location.href = location.href.replace(/jt\.mozilla\.gr\.jp\/lxr/, 'lxr.mozilla.org'); } else if (location.hostname == 'jt.mozilla.gr.jp') location.hostname = 'www.mozilla.org';

* 「Googleの検索結果に物申す」:オープンソースの検索エンジン

http://japan.cnet.com/news/media/story/0,2000047715,20060468,00.htm
中身は Lucene を使うみたい。

だけど、ランキングのアルゴリズムってそんなに簡単に示せるほど単純じゃ
ないと思うんだけどなあ(普通は)。