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
<html> | |
<body> | |
<canvas id="test" width="320" height="320"></canvas> | |
<script type="text/javascript"> | |
(function() { | |
var proto = document.createElement('canvas').getContext('2d').constructor.prototype; | |
var x = proto.fillText; | |
proto.fillText = function fillText(text) { | |
if (proto.fillText !== fillText) { | |
proto.fillText = fillText; |
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 newmouse | |
// @namespace http://www.hatena.ne.jp/hitode909 | |
// @include * | |
// ==UserScript== | |
var Nears = function(x, y) { | |
this.centerX = x; | |
this.centerY = y; | |
this.i = 0; |
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 Ubiquity 0.5 | |
*/ | |
CmdUtils.CreateCommand({ | |
names: ["alc"], | |
icon: "http://www.alc.co.jp/favicon.ico", | |
homepage: "http://d.hatena.ne.jp/bellbind/", | |
author: {name: "bellbind", email: "[email protected]"}, | |
license: "GPL", | |
description: [ |
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
//本体 | |
Twittelien = {}; | |
Twittelien.entryFilters = {}; | |
Twittelien.template = {}; | |
Twittelien.classes = {}; | |
(function($){ | |
function TableUpdator(params){ | |
this._parseRules = params['parseRules'] || {}; | |
this._table = params['table'] || new TAFFY([]); |