Skip to content

Instantly share code, notes, and snippets.

View toshia's full-sized avatar

Toshiaki Asai toshia

View GitHub Profile
@toshia
toshia / 0_reuse_code.js
Created May 16, 2014 11:15
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@toshia
toshia / favstarfix.js
Created September 23, 2011 18:08 — forked from toshia/favstarを良くするOpera用UserJS
favstarを良くするOpera用UserJS
// ==UserScript==
// @name favstarfix
// @version 1.1
// @namespace http://toshia.dip.jp/gm/favstarfix
// @description favstar display issue fix
// @include http://favstar.fm/*
// ==/UserScript
window.addEventListener('DOMContentLoaded', function(e){
if( !document.body ) { return; }
@toshia
toshia / proxy.rb
Created May 1, 2011 07:20 — forked from osak/proxy.rb
# -*- coding: utf-8
miquire :addon, 'addon'
miquire :core, 'environment'
miquire :addon, 'settings'
require 'net/http'
module Net
class <<HTTP
alias new_org new