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
// @author = http://c4se.sakura.ne.jp/profile/ne.html | |
// @date = 2011-02-23 | |
// @site = https://gist.github.com/833567 | |
// @license = public domain | |
var COMMANDS_LIST = { | |
open: 'open', | |
o: 'open', | |
url: 'open url', |
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
// @author = http://c4se.sakura.ne.jp/profile/ne.html | |
// @date = 2011-02-25 | |
// @site = https://gist.github.com/835563 | |
// @license = public domain | |
var services = [], | |
cashe = { | |
'http://c4se.tk/': 'http://c4se.sakura.ne.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
// ==AzureaScript== | |
// @author http://c4se.sakura.ne.jp/profile/ne.html | |
// @scriptUrl http://c4se.sakura.ne.jp/widgets/azurea/ | |
// @date 2011-03-13 | |
// @site https://gist.github.com/835993 | |
// @license public domain | |
// ==/AzureaScript== | |
var _notify; |
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
// @author = http://c4se.sakura.ne.jp/profile/ne.html | |
// @date = 2011-02-24 | |
// @site = | |
// @license = public domain | |
var AzureaUtil = {}; | |
AzureaUtil.event = {}; | |
AzureaUtil.time = {}; |
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
// @license = public domain | |
// =Usage | |
// Number = Xorshift.random(); | |
// | |
// var xor128 = Xorshift.init(); | |
// Array = xor128.make(1000000); | |
(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
# HTTP POSTをWEBRickで受け、Growl通知します。 | |
# POSTのkeyには、 title, text, twitter_screen_name, icon_uri, sticky を使用します。 | |
# ruby_gntp と nokogiri に依存します。 | |
require 'webrick' | |
require 'ruby_gntp' | |
require 'open-uri' | |
require 'nokogiri' | |
require 'json' |
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
// WindowsXPでのAzurea for Windows向けです。 | |
// http://azurea.refy.net/ja/wiki/index.php?%E7%9B%AE%E5%AE%89%E7%AE%B1%2F12 の案4のパターンです。 | |
// @License Public Domain | |
System.addContextMenuHandler('全ての検索を閉じる', 0, function() { | |
System.views.closeAllSearch(); | |
}); | |
System.addContextMenuHandler('全てのユーザータイムラインを閉じる', 0, function() { | |
System.views.closeAllUserTimeline(); | |
}); |
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
// AzureaScript キーワード定義ファイル | |
// CASE=False | |
Geo | |
GeoLocation | |
Http | |
HttpResponce | |
PostFilterProcessTimelineStatus | |
PostProcessTimelineStatus | |
PostProcessTimelineStatuses |
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
// Copyright (c) 2010 Robert Kieffer | |
// http://www.broofa.com | |
// mailto:[email protected] | |
// Copyright (c) 2011 http://c4se.sakura.ne.jp/profile/ne.html | |
// Dual licensed under the MIT and GPL licenses. | |
(function() { | |
var CHARS = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'.split(''), | |
random; |
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
/* | |
* convApp.js 20110203 | |
* 正字俗字変換エンジン | |
* ne_Sachirou [email protected] | |
* | |
* ==History | |
* 0.1 http://d.hatena.ne.jp/Kureduki_Maari/20090519/1242715608 | |
* 0.2 http://d.hatena.ne.jp/Kureduki_Maari/20090817/1250464485 | |
* 0.3 http://d.hatena.ne.jp/Kureduki_Maari/20100212/1265937568 | |
* 0.4 http://d.hatena.ne.jp/Kureduki_Maari/20100413/1271113925 |
OlderNewer