Skip to content

Instantly share code, notes, and snippets.

@ericelliott
ericelliott / essential-javascript-links.md
Last active July 18, 2024 15:03
Essential JavaScript Links
@pke
pke / analytics.coffee
Created May 23, 2013 11:59
Windows Modern UI Google Analytics helpers
ApplicationView = Windows.UI.ViewManagement.ApplicationView
ApplicationViewState = Windows.UI.ViewManagement.ApplicationViewState
ApplicationLanguages = Windows.Globalization.ApplicationLanguages
CURRENT_RATE_LIMIT = MAX_RATE_LIMIT = 60
RATE_LIMIT_TICK = 2000
RATE_LIMITED_MESSAGE_QUEUE = new Queue()
logger = window.console
@roblg
roblg / gist:2400902
Created April 16, 2012 19:25
retrieving a basic auth-protected CSV with Google Spreadsheets and Google App Scripting
// this function assumes the CSV has no fields with commas,
// and strips out all the double quotes
function parseCsvResponse(csvString) {
var retArray = [];
var strLines = csvString.split(/\n/g);
var strLineLen = strLines.length;
for (var i = 0; i < strLineLen; i++) {
var line = strLines[i];
if (line != '') {