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
{ | |
"created_at": "Wed May 02 00:07:05 +0000 2012", | |
"id": 197477274109493250, | |
"id_str": "197477274109493248", | |
"text": "@johnnyryall http://t.co/i90NrnGT", | |
"source": "<a href=\"http://itunes.apple.com/us/app/twitter/id409789998?mt=12\" rel=\"nofollow\">Twitter for Mac</a>", | |
"truncated": false, | |
"in_reply_to_status_id": null, | |
"in_reply_to_status_id_str": null, | |
"in_reply_to_user_id": 539267546, |
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
/* prevent top "stalker" bar from following viewport */ | |
#header {opacity: 1 !important;} | |
#stalker { | |
position: static !important; | |
} | |
.stalker-placeholder, #stalker .btm { | |
display: none; | |
} | |
/* don't display useless stuff */ |
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 getExtreme = function(extreme, dimension) { | |
return Math[extreme].apply(undefined, ($.makeArray($(this).map(function() { | |
return $(this)[dimension](); | |
})))); | |
}; | |
$.fn.maxHeight = function() { | |
return getExtreme.apply(this, ['max', 'height']); |
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 n = 'undefined', | |
func = 'function', | |
UploadHandler, methods, MultiLoader = function (b) { | |
var c = 0, | |
list = []; | |
this.complete = function () { | |
c += 1; | |
if (c === list.length + 1) { | |
b(list); |
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 Cat = function (name) { | |
this.name = name; | |
} | |
var myCat = new Cat('fluffy'); | |
console.log(myCat.name); // fluffy |
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 messageStore = ecp.EmailCenter.tabs.findById('inbox').findByType('listinggrid')[0].store, lastAlerted = new Date(), movie; | |
var playerURLParams = { | |
enablejsapi: 1 | |
,playerapiid: 'tadamovie' | |
}; | |
Ext.getBody().createChild({style: 'display: none;', id: playerURLParams.playerapiid + 'c'}); | |
var playerURL = 'http://www.youtube.com/apiplayer?' + Ext.urlEncode(playerURLParams); | |
swfobject.embedSWF(playerURL, playerURLParams.playerapiid + 'c', 1, 1, '8', false, false, {allowScriptAccess: 'always'}, {id: playerURLParams.playerapiid}); |
NewerOlder