Skip to content

Instantly share code, notes, and snippets.

@noromanba
noromanba / haiku_downloader.user.js
Last active March 25, 2019 22:20 — forked from Akkiesoft/haiku_downloader.user.js
backup Hatena Haiku to json for UserScript
// ==UserScript==
// @name Haiku Downloader
// @namespace https://kokuda.org/
// @version 0.1
// @description 無茶しやがって
// @author Akkiesoft
// @match http://h.hatena.ne.jp/*
// @require https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.5/jszip.min.js
// @grant none
// ==/UserScript==
@noromanba
noromanba / g-lii.user.js
Last active June 20, 2020 23:06 — forked from to/g-lii.user.js
immediately load images w/ PagerExtention for UserScript
// ==UserScript==
// @name Load Image Immediately
// @namespace http://noromanba.flavors.me
// @description images immediately load w/ PagerExtention for UserScript
// @include *://gigazine.net/*
// @include *://www.moae.jp/comic/*
// @include *://omocoro.jp/*
// @include *://rocketnews24.com/*
// @grant none
// @noframes
@noromanba
noromanba / cmdrank.sh
Last active December 12, 2015 08:49 — forked from morygonzalez/コマンド使用率ランキング.sh
display frequently used commands
#/!bin/sh
# display frequently used commands
# @contributor tokuhirom http://blog.64p.org/entry/20060924/1159057218
# @contributor morygonzalez https://gist.github.com/morygonzalez/935909
# @author noromanba https://gist.github.com/noromanba/4747254
perl -pe 's/.+;//' ~/.`basename $0`_history | awk 'BEGIN {FS="|"} {print $1}' | sort | uniq -c | sort -nr | head -10
@noromanba
noromanba / kokubunizer.user.js
Created December 7, 2012 21:58 — forked from udzura/kokubun.user.js
kokubunize aka NDKify for UserScript
// ==UserScript==
// @name kokubunizer
// @namespace https://flavors.me/noromanba
// @description kokubunize aka NDKify for UserScript
// @include https://www.facebook.com/*
// @downloadURL https://raw.github.com/gist/4236851/kokubunizer.user.js
// @installURL https://raw.github.com/gist/4236851/kokubunizer.user.js
// @version 2012.12.8.3
// @license WTFPL http://sam.zoy.org/wtfpl/ (Do What The Fuck You Want To Public License)
// @contributor udzura https://gist.github.com/4212643
@noromanba
noromanba / google-logo.user.js
Created November 5, 2012 16:47 — forked from arantius/google-logo.user.js
google logo jeu de animated-gif for UserScript
// ==UserScript==
// @name Google Logo
// @namespace test
// @version 1.0.3
// @include http://*.google.tld/
// @include https://*.google.tld/
// @downloadURL https://raw.github.com/gist/4018248/google-logo.user.js
// @installURL https://raw.github.com/gist/4018248/google-logo.user.js
// @license Unknown (as-is)
// @contributor arantius https://gist.github.com/4014321
@noromanba
noromanba / kindai-util.user.js
Created October 12, 2012 16:39 — forked from hitode909/kindai-util.user.js
Betterment UI and UX on Kindai Digital Lib. for Greasemonkey (not working yet)
// ==UserScript==
// @name kindai-util
// @namespace https://www.hatena.ne.jp/noromanba/
// @description Betterment UI and UX on Kindai Digital Lib. for Greasemonkey (not working yet)
// @include http://kindai.da.ndl.go.jp/*
// @include http://kindai.ndl.go.jp/*
// @grant GM_getValue
// @grant GM_setValue
// @version 2012.10.13.1
// @homepage https://gist.github.com/3880159
@noromanba
noromanba / .bashrc
Created June 16, 2012 19:38 — forked from raa0121/.bashrc
Switch bashrc settings for Cygwin or MinGW via http://qiita.com/items/cda2d7265f0809796118
sysname=`uname -s | sed -e "s/\([a-zA-Z]\+\).*/\1/"`
if [ "$sysname" = "CYGWIN" ]; then
LANG=ja_JP.UTF-8
elif [ "$sysname" = "MINGW" ]; then
LANG=ja_JP.sjis
JLESSCHARSET="japanese-sjis"
OUTPUT_CHARSET=sjis
fi
@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 / 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 / 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