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
#!/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
#!/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
// ==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 | |
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
@-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
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 |
OlderNewer