Skip to content

Instantly share code, notes, and snippets.

/*
* [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
@noromanba
noromanba / README.md
Last active September 2, 2025 23:27
add permanently HEAD links on Gist for UserScript
@noromanba
noromanba / DelocalizeChromeExtension.bat
Created May 11, 2012 15:28
Delocalize Extension of Google Chrome on Standard OS Environment
@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)
@noromanba
noromanba / gist-logs.user.js
Created May 13, 2012 00:07 — forked from saitamanodoruji/gist_logs.user.js
Show commit logs on Gist for Greasemonkey
// ==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)
@noromanba
noromanba / replaceStarByProfileIcon.user.js
Last active November 15, 2017 11:58 — forked from nikolat/replaceStarByProfileIcon.user.js
replace star by profile icon for UserScript
// ==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
@noromanba
noromanba / show-commit-log.md
Created May 26, 2012 23:17
for commit log escape check
@noromanba
noromanba / hatena-star-user-icon.user.js
Created May 27, 2012 01:59 — forked from hitode909/hatena-star-user-icon.user.js
☆をユーザーアイコンにするGreasemonkey
// ==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";
};
@noromanba
noromanba / fancy-expand-hatena-star.user.js
Created May 27, 2012 02:03 — forked from hotchpotch/expand_star.user.js
Expand Hatena Star with visualize avatar, id and quote when quadruple click for UserScript
// ==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
@noromanba
noromanba / addicted-to-google-code-prettify.user.js
Last active November 10, 2018 21:55
auto syntax highlighting by google-code-prettify with Infinite Scrolling for UserScript/Bookmarklet
// ==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*
@noromanba
noromanba / lfy
Created June 9, 2012 08:31
Linebreak convert to LF from CRLF
#!/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