This file contains 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 favlevel | |
// @namespace http://www.hatena.ne.jp/hitode909/ | |
// @description show favotter level | |
// @include http://twitter.com/* | |
// @include https://twitter.com/* | |
// @require http://code.jquery.com/jquery-1.3.2.min.js | |
// ==/UserScript== | |
(function() { |
This file contains 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
(function bookmarkIconStyleSetup() { | |
GM_addStyle([ | |
"div.tooltip {", | |
" display: block;", | |
" position: absolute;", | |
" margin: 0px;", | |
" max-width: 50%;", | |
" padding: 5px;", | |
" z-index: 2;", | |
" list-style: none;", |
This file contains 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 htnIcon-onGoogle | |
// @namespace http://www.hatena.ne.jp/Cside | |
// @include http://www.google.co.jp/search* | |
// ==/UserScript== | |
var hatenaID; | |
var favs = []; | |
var entries = []; |
This file contains 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 Slider-Interface-of-Hatena-Bookmark's-Threshold | |
// @namespace http://d.hatena.ne.jp/Cside | |
// @include http://b.hatena.ne.jp/* | |
// ==/UserScript== | |
function inputAndCount(mode) { | |
var threshold; | |
var loc = location.href; |
This file contains 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 Hatebu-FavotterLike | |
// @namespace http://www.hatena.ne.jp/Cside | |
// @description はてブのお気に入りページをふぁぼったーライクに | |
// @include http://b.hatena.ne.jp/* | |
// ==/UserScript== | |
(function () { | |
var lv1 = 4; | |
var lv2 = 5; |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>net.cside.HatebuFavoriteGrowler</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>絶対パス /hatebu-favorite-growler.pl</string> | |
<string>あなたのUser ID</string> |
This file contains 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
*.o | |
*.lo | |
*.la | |
#*# | |
.*.rej | |
*.rej | |
.*~ | |
*~ | |
.#* | |
.DS_Store |
This file contains 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
use Path::Class; | |
use List::MoreUtils qw/uniq/; | |
my $file = file(__FILE__)->dir->file('ack_log.txt'); | |
my @lines = $file->slurp; | |
my $exclude = 'exclude_string'; | |
my @modules = uniq( | |
grep { | |
$_ !~ /$exclude/; |
This file contains 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
Cwd | |
ExtUtils::MakeMaker | |
Sort::Versions | |
Module::Install::Base | |
Carp | |
Config | |
File::Spec | |
Net::FTP | |
Fcntl | |
File::Find |
This file contains 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
package GmailSender; | |
use strict; | |
use warnings; | |
use Class::Accessor::Lite ( | |
new => 1, | |
rw => [ qw( | |
username | |
password | |
from | |
to |
OlderNewer