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
// apppend this file after ssl.js | |
twitterURL = 'http://mobile.twitter.com/'; |
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
registerPlugin({ | |
init: function() { | |
if(!navigator.geolocation) { | |
try { | |
navigator.geolocation = google.gears.factory.create("beta.geolocation"); | |
} catch(e) { | |
// Not found Gears. | |
} | |
} | |
} |
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
javascript:void(function(){var%20d=document,w=window,t=(d.selection)?(d.selection.createRange().text):(d.getSelection)?d.getSelection():(w.getSelection)?w.getSelection():'';w.open('http://twicli.neocat.jp/twicli.html?status='+encodeURIComponent((t?'"'+t+'"':'%20>')+'%20'+d.title+'%20'+location.href),'twicli')}()) |
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
.retweeted .non-follower { | |
color: #555588; | |
} |
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
(function(){ | |
var footerSetting = footer; | |
registerPlugin({ | |
switchTo: function(m) { | |
var sel = document.getElementsByClassName("sel"); | |
if(sel.length < 1) return; | |
if(sel[0].id.indexOf("search-#") != 0) { |
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 denyIframe = [ | |
/^https?:\/\/(www\.)?twitter\.com\b/, | |
/^http:\/\/(www\.)?ustream\.tv\b/, /^http:\/\/ustre\.am\b/, | |
/^http:\/\/blogs\.msdn\.com\/b\/ie\b/ | |
]; |
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 followers_limit = 200; | |
var followers_ids_list = (readCookie('followers_ids') || ''); | |
var followers_idx = 0, followers_ids_slice; | |
while(true) { | |
followers_ids_slice = readCookie('followers_ids' + (followers_idx++)||'') | |
if(!followers_ids_slice) break; | |
followers_ids_list = followers_ids_list.concat(followers_ids_slice); | |
} | |
followers_ids_list = followers_ids_list != '' ? followers_ids_list.split(',') : []; | |
var followers_ids = []; |
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
@echo off | |
setlocal | |
if not defined VIM set VIM=%1 | |
pushd %VIM%\src || goto end | |
rem mingw32-make -f Make_ming.mak clean | |
rem pause | |
mingw32-make -f Make_ming.mak OLE=yes | |
mingw32-make -f Make_ming.mak GUI=no |
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
function setFstHeight(h, force) { | |
if (!h) | |
h = $("fst").value.length ? Math.max($("fst").scrollHeight+2,min_fst_height) : min_fst_height; | |
if (no_resize_fst && !force) return; | |
var exh = (navigator.userAgent.indexOf("MSIE 8") >= 0 ? 1 : 0), opt = $("option").clientHeight; | |
$("fst").style.height = h; | |
var twh = (window.innerHeight || document.documentElement.clientHeight)-$("control").offsetHeight-2; | |
$("tw").style.height = $("re").style.height = $("tw2").style.height = | |
twh > 0 ? twh : 0; | |
} |
OlderNewer