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 _Add kbd shortcut | |
// @namespace StackExchange | |
// @description Adds a button and a keyboard shortcut to add <kbd> tags. | |
// @match http://*.askubuntu.com/* | |
// @match http://*.onstartups.com/* | |
// @match http://*.serverfault.com/* | |
// @match http://*.stackapps.com/* | |
// @match http://*.stackexchange.com/* | |
// @match http://*.stackoverflow.com/* |
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 _Add kbd shortcut | |
// @namespace StackExchange | |
// @description Adds a button and a keyboard shortcut (Alt-K) to add <kbd> tags. | |
// @match http://*.askubuntu.com/* | |
// @match http://*.onstartups.com/* | |
// @match http://*.serverfault.com/* | |
// @match http://*.stackapps.com/* | |
// @match http://*.stackexchange.com/* | |
// @match http://*.stackoverflow.com/* |
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 Stack Exchange Retag helper | |
// @namespace Rob W | |
// @author Rob W | |
// @description Configurable helper to enable a quicker retagging of questions at Stack Overflow | |
// @include http://stackoverflow.com/questions/* | |
// @include http://stackoverflow.com/q/* | |
// @include http://stackoverflow.com/search?* | |
// @include http://stackoverflow.com/posts/*/edit* | |
// @version 2.1 |
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
var $paperTape = $("#paperTape"), | |
$li = $("#paperTape li"), | |
$sum = $("#sum"), | |
height = parseInt($li.css("height"),10), | |
top = RocknCoder.Dimensions.top, | |
getTop = function(){ | |
return top; | |
}; |
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 Stack Exchange Retag helper | |
// @namespace Rob W | |
// @author Rob W | |
// @description Configurable helper to enable a quicker retagging of questions at Stack Overflow | |
// @include http://physics.stackexchange.com/questions/* | |
// @include http://physics.stackexchange.com/q/* | |
// @include http://physics.stackexchange.com/search?* | |
// @include http://physics.stackexchange.com/posts/*/edit* | |
// @version 2.1 |
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 Stack Exchange Retag helper | |
// @namespace Rob W | |
// @author Rob W | |
// @description Configurable helper to enable a quicker retagging of questions at Stack Overflow | |
// @include http://physics.stackexchange.com/questions/* | |
// @include http://physics.stackexchange.com/q/* | |
// @include http://physics.stackexchange.com/search?* | |
// @include http://physics.stackexchange.com/posts/*/edit* | |
// @version 2.1 |
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/python | |
# kalina.py | |
# by Manish Goregaokar | |
# requires https://github.com/Manishearth/ChatExchange | |
from random import choice | |
import json,os,sys | |
from ChatExchange.SEChatWrapper import * | |
if("ChatExchangeU" in os.environ): | |
username=os.environ["ChatExchangeU"] |
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 Main site link on meta topbar | |
// @namespace Manishearth | |
// @description Brings back the bold reputation counter/post scores! | |
// @include http://meta.stackoverflow.com/* | |
// @include http://meta.serverfault.com/* | |
// @include http://meta.superuser.com/* | |
// @include http://stackapps.com/* | |
// @include http://meta.*.stackexchange.com/* | |
// @include http://meta.askubuntu.com/* |
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
enum SyncOrAsync<'a> { | |
Sync(&'a mut JSRef<'a, XMLHttpRequest>), | |
Async(TrustedXHRAddress) | |
} | |
... | |
impl XMLHttpRequest { | |
... | |
fn progress_syncorasync(sync: SyncOrAsync, msg: XHRProgress, script_chan: &ScriptChan) { | |
match sync { |
OlderNewer