他言語版のリンクをh1の隣に持ってくるやつ。
ja,en,itという並びは適当。
| // ==UserScript== | |
| // @name PukiWiki Plus!の検索でハイライト部分の一覧を作るあれ | |
| // @namespace http://github.com/unarist/ | |
| // @version 0.1 | |
| // @description enter something useful | |
| // @author unarist | |
| // @match http://wikiwiki.jp/*/?*&word=* | |
| // @match http://*.swiki.jp/index.php?*&word=* | |
| // @grant none | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/sugar/1.4.1/sugar.min.js |
| public static class MatchExt | |
| { | |
| public static MatchState<TResult> BeginMatch<TResult>(this object source) | |
| { | |
| return new MatchState<TResult>(source); | |
| } | |
| } | |
| public struct MatchState<TResult> | |
| { |
| " https://gist.githubusercontent.com/unarist/c9f69e31dfe757c7d2fd/raw/.vimrc | |
| set encoding=utf-8 | |
| set fileencodings=utf-8,iso-2022-jp,cp932,eucjp,default | |
| filetype plugin on | |
| filetype indent on | |
| colorscheme torte |
| #!/bin/sh | |
| set -e | |
| # cd .git/hooks/../.. | |
| cd $(dirname "$0")/../.. | |
| unset GIT_DIR | |
| # read arguments | |
| read oldrev newrev refname | |
| branch=${refname#refs/heads/} |
| // ==UserScript== | |
| // @name アマゾンポチと入れさせないやつ | |
| // @namespace http://github.com/unarist/ | |
| // @version 0.2 | |
| // @description 「#アマゾンポチ と入れて@返信でカートに追加・後で買う」「@amazonJPさんから」を消す | |
| // @author unarist | |
| // @match http://www.amazon.co.jp/*dp/* | |
| // @match http://www.amazon.co.jp/gp/product/* | |
| // @grant none | |
| // ==/UserScript== |
Stack Exchangeのサイトをさまざまな指標にもとづいたツリーマップで表示します。色分けはサイト一覧上のカテゴリによります。
| // for http://ja.stackoverflow.com/a/20861/ | |
| using System; | |
| using System.Diagnostics; | |
| using System.Runtime.InteropServices; | |
| using System.Text; | |
| using System.Threading; | |
| using System.Windows.Forms; | |
| namespace Sample |
| // ==UserScript== | |
| // @name pso2swiki 検索結果のコメント系を折りたたむ | |
| // @namespace https://github.com/unarist/ | |
| // @updateURL https://gist.github.com/unarist/6e4e55a1fafec9942024/raw | |
| // @version 0.2 | |
| // @author unarist | |
| // @match http://pso2.swiki.jp/?*&cmd=search&* | |
| // @match http://pso2m.swiki.jp/?*&cmd=search&* | |
| // @grant none | |
| // ==/UserScript== |
| // ==UserScript== | |
| // @name SE: 信用度にカーソルを乗せると権限を一覧するやつ | |
| // @namespace https://github.com/unarist/ | |
| // @version 0.1 | |
| // @author unarist | |
| // @match http://ja.stackoverflow.com/* | |
| // @match http://meta.ja.stackoverflow.com/* | |
| // @grant none | |
| // ==/UserScript== | |
| /* jshint -W097 */ |