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
//http://pitchfork.com/festivals/chicago/2012/ | |
$(".appearance a").map(function () { return $(this).html().split("<")[0].trim() }) |
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
$(".binsold").each(function () {$(this).closest("td").css("backgroundColor","red")}); | |
$(".bidsold").each(function () {$(this).closest("td").css("backgroundColor","green")}); |
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
Show hidden characters
{ | |
"terminal": "C:/cygwin/bin/mintty.exe", | |
"parameters": ["/bin/env", "CHERE_INVOKING=1", "/bin/xhere", "/bin/bash", "`%CWD%`"] | |
} |
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
{ | |
"terminal": "C:/Program Files/Console2/Console.exe", | |
// In Console2 "Shell" section, have just "bash" with no args in a profile called "Terminal" | |
"parameters": ["-t", "Terminal", "-r", "/bin/xhere /bin/bash.exe", "`%CWD%`"] | |
} |
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
//concept from http://www.sitepoint.com/multi-threading-javascript/ | |
var $visibleElements = $(":visible"); | |
var random255 = function () { | |
return Math.floor(Math.random()*255); | |
} | |
var randomColor = function () { | |
return "rgb(" + random255() + "," + random255() + "," + random255() + ")"; | |
} |
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
$jq("textarea").live("keyup",function () { $jq("#button1").click() } |
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
Object.prototype.class = function () { | |
var match = this.constructor.toString().match("function " + /([A-Za-z]+)/.source) || this.constructor.toString().match("return new " + /([A-Za-z]+)/.source); | |
return match[1]; | |
} |
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 addCommasToNumber(n) { | |
return n.toString().split('').reverse().join('').match(/(.{1,3})/g).join(',').split('').reverse().join(''); | |
} |
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
#!/bin/bash | |
#put your cookie in here. get it by putting javascript:alert(document.cookie) into the address bar | |
#when you're on turntable.fm and hit ctrl+c to copy it. | |
cookie='PASTE YOUR COOKIES IN HERE' | |
echo "Scraping..." | |
wget -4 -O OUTPUT --user-agent='Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.17) Gecko/20110422 Ubuntu/10.04 (lucid) Firefox/3.6.17' --no-cookies --header "Cookie: $cookie" -r -q http://turntable.fm/zzzapp | |
id=`grep -o block\;cursor\:pointer\;\}#.*\{background\:url\(\'https\:\/\/s3\.amazonaws\.com\/static\.turntable\.fm\/roommanager_assets\/props\/vote_btns\.png OUTPUT | awk -F '#' '{print $2}' | awk -F '{' '{print $1}'` |
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
i = setInterval(function () { | |
jQuery.ajax({ | |
url: 'http://twitter.com/users/show_for_profile.json?screen_name=dkordik', | |
complete: function (data) { | |
if (JSON.parse(data.responseText)["error"]==undefined) { | |
alert("IT'S BACK BABY!"); //brings focus to the twitter tab! | |
clearInterval(i); | |
location.reload(); | |
} else { | |
console.log("TWITTER? ", JSON.parse(data.responseText)["error"], " " + Date().toString()); |