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
// AsakusaSatellite Image Paster | |
(function($, document, window, undefined){ | |
$('form.inputarea').on('paste', function(event){ | |
var items = event.originalEvent.clipboardData.items; | |
for (var i = 0, l = items.length; i < l; i++) { | |
var item = items[i]; | |
if (item.type.indexOf("image") == -1) { | |
continue; | |
} |
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
class MultiGrep | |
def usage | |
puts "Example: ruby multi_grep.rb base.php:10-20 search/*.php" | |
end | |
def grep(argv = ARGV) | |
base = argv.first | |
path, range = base.split(":") | |
s, e = range.split("-").map { |i| i.to_i } |
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
#!/bin/bash | |
# | |
# Plugin for monitor JVM activity - Heap Usage - | |
# | |
# Usage: | |
# | |
# Symlink into /etc/munin/plugins/ and add the monitored | |
# alias name like : | |
# | |
# ln -s /usr/share/munin/plugins/jstat__heap \ |
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
/* for http://b.hatena.ne.jp/entrylist */ | |
.box-wrap.box4 { display: none; } | |
.box-wrap.box4.top { display: block; } | |
li.ad-head-text { display: 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 nicovideo thumnail popup | |
// @author mallowlabs | |
// @version 0.0.2 | |
// @namespace http://mallowlabs.s206.xrea.com/ | |
// @updated 2008-05-19 | |
// @published 2007-05-22 | |
// @license public domain | |
// @description Show popup of thumnail in nicovideo.jp | |
// @include http://www.nicovideo.jp/* |
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 GR+?B for Opera | |
// @author mallowlabs | |
// @version 0.0.1 | |
// @namespace http://mallowlabs.s206.xrea.com/ | |
// @published 2007-01-16 | |
// @license public domain | |
// @description show ?B button and count in Google Reader for Opera | |
// @include http://www.google.com/reader/view/* | |
// ==/UserScript== |
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 Google Multi Search | |
// @author mallowlabs | |
// @version 0.0.3 | |
// @namespace http://mallowlabs.s206.xrea.com/ | |
// @published 2007-01-11 | |
// @modified 2007-01-17 | |
// @license public domain | |
// @description : Add Blog and Code search option to Google search | |
// @include http://www.google.co*/ |
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 googledefine_popup.user.js | |
// @author mallowlabs | |
// @version 0.0.2 | |
// @namespace http://mallowlabs.s206.xrea.com/ | |
// @published 2006-12-01 | |
// @modified 2006-12-07 | |
// @description : Popup "Google Define" by word selection | |
// @include http://* | |
// |
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 dyeJS | |
// @author mallowlabs | |
// @namespace http://mallowlabs.s206.xrea.com/ | |
// @version 0.0.1 | |
// @license public domain | |
// @description : Syntax highlighting on JavaScript | |
// @published 2006-11-23 | |
// @modified 2006-11-23 | |
// @include *.js |
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 googleimagefilter | |
// @author mallowlabs | |
// @namespace http://mallowlabs.s206.xrea.com/ | |
// @version 0.0.2 | |
// @license public domain | |
// @description : Add a switch that on/off the filter in Google Image Search | |
// @published 2006-11-12 | |
// @modified 2007-07-16 | |
// @include http://images.google.co.jp/* |
NewerOlder