Visit Gist and see 'raw' link, It's including SHA-1 long hash name like this.
https://gist.github.com/raw/2370972/47150711fedb7375d19d761ab122485b8105678d/gist-raw-perm-HEAD.user.js
| /* | |
| * [Original Section] | |
| * Ustream Status Watcher v1.07.1 | |
| * http://www36.atwiki.jp/jikkyosha_ust/pages/80.html#id_89ffd34f | |
| * @author Unknown(s) | |
| * @license Unknown (as-is) | |
| * | |
| * [Patch Section] | |
| * Ustream Status Watcher v1.07.1-nrmpatch | |
| * @author noromanba |
Visit Gist and see 'raw' link, It's including SHA-1 long hash name like this.
https://gist.github.com/raw/2370972/47150711fedb7375d19d761ab122485b8105678d/gist-raw-perm-HEAD.user.js
| @rem =========================================================================== | |
| @rem Delocalize Extension of Google Chrome | |
| @rem @author noromanba https://www.hatena.ne.jp/noromanba/ | |
| @rem @license MIT License http://nrm.mit-license.org/2012 | |
| @rem @see http://support.microsoft.com/kb/177665/ja over MAX_PATH (> 256 Characters) pathname handling | |
| @rem =========================================================================== | |
| @echo off | |
| pushd %~dp0 | |
| :: de fr ja zh_CN (et al. default: en) |
| // ==UserScript== | |
| // @name gist logs | |
| // @namsgpace https://www.hatena.ne.jp/noromanba/ | |
| // @description Show commit logs on Gist for Greasemonkey | |
| // @include https://gist.github.com/* | |
| // @downloadURL https://raw.github.com/gist/2669793/gist-logs.user.js | |
| // @installURL https://raw.github.com/gist/2669793/gist-logs.user.js | |
| // @grant GM_xmlhttpRequest | |
| // @version 2012.11.6.2 | |
| // @license WTFPL http://sam.zoy.org/wtfpl/ (Do What The Fuck You Want To Public License) |
| // ==UserScript== | |
| // @name replace star by profile icon | |
| // @namespace https://www.hatena.ne.jp/noromanba/ | |
| // @description replace star by profile icon for UserScript | |
| // @include http://* | |
| // @include https://*.hatena.tld/* | |
| // @exclude http://serif.hatelabo.jp/* | |
| // @grant none | |
| // @version 2017.2.28.2 | |
| // @run-at document-end |
The file contribute to git log for Show commit logs on Gist for Greasemonkey — Gist
<>&"\n
| // ==UserScript== | |
| // @name hatena-star-user-icon | |
| // @namespace http://www.hatena.ne.jp/hitode909 | |
| // @include * | |
| // ==/UserScript== | |
| (function(){ | |
| var user_icon = function(name) { | |
| return "http://www.st-hatena.com/users/" + name.slice(0, 2) + "/" + name + "/profile_s.gif"; | |
| }; |
| // ==UserScript== | |
| // @name Fancy Expand Hatena Star | |
| // @namespace https://www.hatena.ne.jp/noromanba/ | |
| // @description Expand Hatena::Star with avatar, id and quote when quadruple-click for UserScript | |
| // @include http://* | |
| // @include https://*.hatena.tld/* | |
| // @version 2012.11.20.0 | |
| // @homepage https://gist.github.com/2795925 | |
| // @downloadURL https://raw.github.com/gist/2795925/fancy-expand-hatena-star.user.js | |
| // @installURL https://raw.github.com/gist/2795925/fancy-expand-hatena-star.user.js |
| // ==UserScript== | |
| // @name addicted to google-code-prettify | |
| // @namespace https://www.hatena.ne.jp/noromanba/ | |
| // @description auto syntax highlighting by google-code-prettify with Infinite Scrolling for UserScript/Bookmarklet | |
| // @include http://let.hatelabo.jp/* | |
| // @include http://let.st-hatelabo.com/* | |
| // @include https://raw.githubusercontent.com/* | |
| // @include https://gist.githubusercontent.com/ | |
| // @include https://bitbucket.org/*/raw/* | |
| // @exclude http://let.hatelabo.jp/help* |
| #!/usr/bin/bash | |
| # Linebreak convert to LF from CRLF | |
| # @author noromanba http://flavors.me/noromanba | |
| # @license CC0 Univ PD https://creativecommons.org/publicdomain/zero/1.0/ | |
| for stream in $@ | |
| do | |
| cat $stream | tr -d '\r' > tmpstream | |
| mv tmpstream $stream | |
| done |