$ python3
>>> import pydicom
| // ==UserScript== | |
| // @name Hide deleted posts in Nicodic BBS | |
| // @namespace https://twitter.com/takuya_murao | |
| // @include http://dic.nicovideo.jp/a/* | |
| // @include http://dic.nicovideo.jp/l/* | |
| // @include http://dic.nicovideo.jp/v/* | |
| // @include http://dic.nicovideo.jp/b/a/* | |
| // @include http://dic.nicovideo.jp/b/l/* | |
| // @include http://dic.nicovideo.jp/b/v/* | |
| // @grant none |
| #!/usr/local/bin/ruby | |
| # coding: utf-8 | |
| require 'oauth' | |
| require 'readline' | |
| identica = { | |
| site: 'https://identi.ca', | |
| request_token_path: '/api/oauth/request_token', | |
| access_token_path: '/api/oauth/access_token', |
| #!/bin/sh | |
| operating_time=10 | |
| du -sx / > /dev/null 2>&1 & | |
| du_pid=$! | |
| sleep $operating_time | |
| kill $du_pid |
| // ==UserScript== | |
| // @name Disable onmousedown in Google search results page | |
| // @namespace https://gist.github.com/3081371 | |
| // @include http://www.google.*/search?* | |
| // @include https://www.google.*/search?* | |
| // ==/UserScript== | |
| (function () { | |
| var disableOnmousedown = function (node) { | |
| var a, i; |