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 AutoRemove accesskey Attribute | |
// @namespace http://d.hatena.ne.jp/esperia/ | |
// @description remove "accesskey" attribute for Vimperator | |
// @include http://*.wikipedia.org/* | |
// ==/UserScript== | |
// | |
(function(doc){ | |
var removeAccesskey = function() { |
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 test | |
// @author esperia | |
// @namespace http://d.hatena.ne.jp/esperia/ | |
// @description test only | |
// @include http://localhost:8080/ | |
// @version 0.01 | |
// ==/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 test | |
// @author esperia | |
// @namespace http://d.hatena.ne.jp/esperia/ | |
// @description テスト用のuserjs | |
// @include http://localhost:8080/ | |
// @version 0.01 | |
// ==/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
set nocompatible | |
set number | |
syntax on | |
set tabstop=4 | |
" set history=100 | |
set ignorecase | |
set wrapscan | |
"set title | |
set ruler |
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
zen-coding : | |
html>(head>title{sample}+meta[charset="UTF-8"]+link[rel="stylesheet"][href="./style.css"][type="text/css"]+script[type="text/javascript"])+(body>div#wrap>(header#header>nav>ul#menu>li*5>a)+(section#contents>h1.title)+(footer#footer>div#copyright) | |
to html : | |
<html> | |
<head> | |
<title>sample</title> |
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
var express = require('express'); | |
var util = require('util'); | |
var oauth = require('oauth'); | |
var app = express.createServer(); | |
var _twitterConsumerKey = "YOURTWITTERCONSUMERKEY"; | |
var _twitterConsumerSecret = "YOURTWITTERCONSUMERSECRET"; | |
function consumer() { |
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 Kimoine! in mixi | |
// @namespace http://d.hatena.ne.jp/esperia/ | |
// @author esperia | |
// @description Let's Say, "Kimoine"! | |
// @include http://mixi.jp/home.pl* | |
// @match http://mixi.jp/home.pl* | |
// ==/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
set nocompatible | |
set number | |
syntax on | |
set tabstop=4 | |
set showtabline=1 | |
set shiftwidth=4 | |
set history=255 | |
set ignorecase | |
set wrapscan |
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
/** | |
* Make shorten url. | |
* | |
* work fine on node.js. | |
* | |
* via http://search.cpan.org/~alexbio/Algorithm-URL-Shorten-0.06/lib/Algorithm/URL/Shorten.pm | |
* based version 0.06. | |
*/ | |
/* |
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
package com.esperia09.android.utils; | |
import com.esperia09.android.BuildConfig; | |
import android.util.Log; | |
public class Logger { | |
private static final boolean debug = BuildConfig.DEBUG; | |
private static final int TRACE_CALLER_COUNT = 2; |
OlderNewer