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
/** | |
* @fileOverview Generates "Lorem ipsum" style text. | |
* @author rviscomi@gmail.com Rick Viscomi, | |
* tinsley@tinsology.net Mathew Tinsley | |
* @version 1.0 | |
*/ | |
/** | |
* Copyright (c) 2009, Mathew Tinsley (tinsley@tinsology.net) | |
* All rights reserved. |
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
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
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
/*! Copyright 2009 Nicholas C. Zakas. All rights reserved. MIT Licensed */ | |
/** | |
* Processes each item in "items" at most 50ms at a time with a sleep of 25ms. | |
* By limiting the amount of time spent in a loop, there is no lock on the UI thread. | |
* | |
* Calls "process" in "context" for each item in "items". | |
* After each item has been processed, "callback" is called with the original array. | |
* | |
* Some modifications to Zakas's code: | |
* * added delay parameter to control how long to sleep |
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
/* Custom event-tracker wrapper function. */ | |
function trackEvent(category, action) { | |
if (!category || !action) { | |
console.warn('trackEvent takes a category and an action.'); | |
} | |
else { | |
_gaq.push(['_trackEvent'].concat([].slice.call(arguments))); | |
} | |
} |
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 ($) { | |
function getURL(center, zoom) { | |
var lt = Math.round(center.lat() * 1e6), | |
ln = Math.round(center.lng() * 1e6); | |
return '?latE6=' + lt + '&lngE6=' + ln + '&z=' + zoom; | |
} | |
var m = Z.d().h, | |
url = getURL(m.getCenter(), m.getZoom()), |
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
Wy1dPlstXTwNCj4rKysrKysrK1s8KysrKysrKys+LV08KysrLg0KPisrKytbPCsrKys+LV08KysuDQo+KysrK1s8LS0tLT4tXTwrKy4NCj4rK1s8LS0+LV08LS4NCisrKy4NCj4rKysrWzwtLS0tPi1dPCsrKy4NCj4rK1s8LS0+LV08LS0uDQo+KysrKytbPCsrKysrPi1dPCsrLg0K |
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
$('#rsvp-list li').eq(Math.floor(Math.random()*149)+1).find('a').text() |
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
[locations] | |
1=Public_Dulles | |
default=Public_Dulles | |
[Public_Dulles] | |
1=WPT_Dulles_Chrome | |
label=”Dulles, VA” | |
group=Public | |
[WPT_Dulles_Chrome] |
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
{ | |
"data": { | |
"repository": { | |
"owner": { | |
"login": "rviscomi", | |
"avatarURL": "https://avatars3.githubusercontent.com/u/1120896?v=3" | |
}, | |
"name": "red-dwarf", | |
"description": "Google Maps heatmap of GitHub repository stargazers", | |
"stargazers": { |
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
[lib-version] | |
return '2.8.2'; | |
[3pl] | |
var thirdParties = []; | |
function addThirdParty(name, version) { | |
if (!name) { | |
return; | |
} |
OlderNewer