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
javascript:(function(){_my_script=document.createElement('SCRIPT');_my_script.type='text/javascript';_my_script.src='https://github.com/msmhrt/b4/raw/master/bookmarklet.js?x='+(Math.random());document.getElementsByTagName('head')[0].appendChild(_my_script);})(); |
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
javascript:(function(){_my_script=document.createElement('SCRIPT');_my_script.type='text/javascript';_my_script.src='https://github.com/msmhrt/b4/raw/b4kml/bookmarklet.js?x='+(Math.random());document.getElementsByTagName('head')[0].appendChild(_my_script);})(); |
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
javascript:(function(){if(!window.teritori){teritori={};}teritori.cfg='mode:tweet';teritori.s=document.createElement('script');teritori.s.type='text/javascript';teritori.s.charset='utf-8';teritori.s.src='https://raw.github.com/msmhrt/teritori/master/teritori.js?key='+(Math.random());document.getElementsByTagName('head')[0].appendChild(teritori.s);}()); |
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
javascript:(function(){if(!window.teritori){teritori={};}teritori.cfg='mode:profile';teritori.s=document.createElement('script');teritori.s.type='text/javascript';teritori.s.charset='utf-8';teritori.s.src='https://raw.github.com/msmhrt/teritori/master/teritori.js?key='+(Math.random());document.getElementsByTagName('head')[0].appendChild(teritori.s);}()); |
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
javascript:(function(){if(!window.teritori){teritori={};}teritori.cfg='mode:tweet4kml';teritori.s=document.createElement('script');teritori.s.type='text/javascript';teritori.s.charset='utf-8';teritori.s.src='https://raw.github.com/msmhrt/teritori/master/teritori.js?key='+(Math.random());document.getElementsByTagName('head')[0].appendChild(teritori.s);}()); |
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
/*global UiApp:false, Utilities:false */ | |
function apply_style(widget, styles) { | |
'use strict'; | |
var key; | |
for (key in styles) { | |
if (styles.hasOwnProperty(key)) { | |
widget.setStyleAttribute(key, styles[key]); |
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 twttr.tco fixer | |
// @namespace https://gist.github.com/1430180 | |
// @description This is just a script for quick and dirty hack to fix the problem caused by twttr.tco.updateSelection() on Twitter | |
// @include https://twitter.com/* | |
// @include http://twitter.com/* | |
// @author Masami HIRATA | |
// @version 0.1 | |
// ==/UserScript== |
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
(function (i) { | |
'use strict'; | |
var foo; | |
switch (i) { | |
case 1: | |
foo = 'bar'; | |
break; | |
} | |
return foo; | |
}()); |
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
#!/usr/bin/env python3.2 | |
import unittest | |
from mock import call, patch | |
class Spam: | |
def __init__(self, *args): | |
pass |
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
RE_PERLQQ_META = re.compile(r'''(?x) | |
\\(?: (?P<special>[nrt\\@$]) | |
| (?P<octal>[0-3][0-7][0-7]|[0-7][0-7]|[0-7]) | |
| x(?: (?P<hex>[0-9a-fA-F]{2}) | |
| \{(?P<bracketed_hex>[0-9a-fA-F]{2,4})\} | |
) | |
| N\{(?: U\+(?P<unicode>[0-9a-fA-F]{4}) | |
| (?P<unicode_name>[-A-Z0-9 ]*) | |
)\} | |
) |
OlderNewer