This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
repeat_key(key, wait) { | |
ToolTip, %A_ThisFunc% %key% (ESC to exit) | |
MouseGetPos, sx, sy | |
escape := 0 | |
Loop { | |
MouseGetPos, mx, my | |
if (sx <> mx || sy <> my) | |
break | |
Send, %key% | |
i := 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-moz-document url-prefix("http://b.hatena.ne.jp/entry/"), url-prefix("http://b.hatena.ne.jp/entry?eid=") { | |
/* Quoted from http://tpex.hateblo.jp/entry/b-hatena-user-css */ | |
/*タグ*/ | |
.tags a.user-tag, | |
ul.entry-data li.tag a, | |
ul.entry-meta li.tag a { background: none !important; float: none !important; color: green !important; margin: 0!important; padding: 0 6px 0 0 !important; font-size: 100% !important; } | |
.tags a.user-tag:before, | |
ul.entry-data li.tag a:before, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
use WebService::Google::Reader; | |
my $feed_uri = 'http://search.cpan.org/uploads.rdf'; | |
my $reader = WebService::Google::Reader->new( | |
username => '', | |
password => '', | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Simple Reach Killer | |
// @namespace http://nkmrgk.tumblr.com/ | |
// @include * | |
// ==/UserScript== | |
function removeTags () { | |
var ng = /simplereach/; | |
var tag, tags = document.getElementsByTagName('div'); | |
var i = tags.length; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
# | |
# googleget.pl - Downloader for Google | |
# * Export Google Bookmarks | |
# $ googleget.pl "https://www.google.com/bookmarks/bookmarks.html?hl=ja" | |
# * Export Google Reader Subscription | |
# $ googleget.pl "http://www.google.com/reader/subscriptions/export?hl=en" | |
# | |
use strict; | |
use warnings; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
# | |
# googlehistory.pl - Downloader for Google history | |
# | |
use strict; | |
use warnings; | |
use Encode; | |
use utf8; | |
use URI; | |
use HTTP::Cookies; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Google Reader Compact | |
// @namespace http://nkmrgk.tumblr.com/ | |
// @description Hide/show search bar on the Google Reader | |
// @include http://www.google.com/reader/view/* | |
// @include http://www.google.co.jp/reader/view/* | |
// @include https://www.google.com/reader/view/* | |
// @include https://www.google.co.jp/reader/view/* | |
// @version 1.2 | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Google Instant Previews Killer | |
// @namespace http://nkmrgk.tumblr.com/ | |
// @include http://*.google.*/* | |
// @version 1.0.0 | |
// ==/UserScript== | |
(function(){ | |
var d=window.document; | |
d.documentElement.appendChild(d.createElement('style')); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal | |
set FFMPEG=ffmpeg.exe | |
set LAME=lame.exe | |
set touch=touch.exe | |
if "%1"=="" echo usage: mp4tomp3 {directory} && goto err | |
if not exist %1 echo %1: Not found. && goto err | |
pushd %1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Show more notes | |
// @namespace http://nkmrgk.tumblr.com/ | |
// @description Load next notes on tumblr | |
// @include http://*.tumblr.com/post/* | |
// ==/UserScript== | |
(function() { | |
var is_in_view = function(elem) { | |
// ref: http://d.hatena.ne.jp/edvakf/20100205/1265338487 | |
var rect = elem.getBoundingClientRect(); |
NewerOlder