This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Amazon Ichikawa Library Linky | |
| // @namespace http://gist.github.com/99670 | |
| // @description Ichikawa Library Lookup from Amazon book listings. | |
| // @include http://*.amazon.* | |
| // ==/UserScript== | |
| // Version 20090105 | |
| var DEBUG=true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Add arrows on JIRA number | |
| // @namespace http://gist.github.com/259327 | |
| // @include http://sydlinux3:8080/browse/* | |
| // ==/UserScript== | |
| // Version 20091218 | |
| addArrows(); | |
| function addArrows() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Show RSS link at the top | |
| // @include http://* | |
| // @include https://* | |
| // @namespace http://gist.github.com/408263 | |
| // ==/UserScript== | |
| // Version 20100521 | |
| var DEBUG=true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [BlockSite] | |
| http://www.naver.jp/* | |
| http://2chblog.xrea.jp/* | |
| http://matome-plus.com/* | |
| http://--2ch.matomemo.net/* | |
| http://blog.livedoor.jp/jyoushiki43/* | |
| http://alfalfalfa.com/* | |
| http://blog.livedoor.jp/himasoku123/* | |
| http://kanasoku.blog82.fc2.com/* | |
| http://newtou.info/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name MediaMarker Improvements | |
| // @namespace http://gist.github.com/484213 | |
| // @include http://mediamarker.net/* | |
| // ==/UserScript== | |
| // | |
| if (0 < location.href.indexOf("reg?cat=")) clickRegisterBtn(); | |
| libsearch(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Remove top part of Safari Printable page | |
| // @namespace http://gist.github.com/xxxxx | |
| // @description Remove top part of Safari Printable page | |
| // @include http://my.safaribooksonline.com/print?* | |
| // ==/UserScript== | |
| // | |
| deleteTopPart(); | |
| function deleteTopPart() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require "fileutils" | |
| def formatCode(line) | |
| line2 = line + "<br/>" | |
| len = line2.length | |
| line3 = "" | |
| len.times{|i| | |
| c = line2[i].chr | |
| if c == " " then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; Skip splash screen | |
| (setq inhibit-startup-message t) | |
| ;; Set Menubar and Toolbar hidden | |
| (menu-bar-mode -1) | |
| (tool-bar-mode -1) | |
| ;; Set window style | |
| (setq initial-frame-alist | |
| (append |