Some stuff that makes me happy:
- good decisions
- well written, persuasive prose
- elegant solutions
- evocative experiences
- genuine, honest communication
- afterglow
- summertime
- doodling
Array.prototype.simple_moving_average = function(window_length) { | |
var averaged = new Array(this.length); | |
var chunk = []; | |
for (k = 0; k < this.length; k++) { | |
chunk.push(this[k]); | |
if (chunk.length > window_length) chunk.shift(); | |
averaged[k] = chunk.sum() / chunk.length; // sum() is an exercise left to the reader | |
} | |
return averaged; | |
}; |
Some stuff that makes me happy:
Lumber Labs is a mobile payments start-up located in San Francisco. We create card.io – consumer apps and developer tools that enable simple, low-friction transactions on mobile devices. Company founders were early employees at AdMob. We are venture-funded, growing, and looking for exceptional colleagues.
We are an engineering team working on mobile payments at PayPal in San Jose. Acquired by PayPal in July 2012, card.io's founders were early employees at AdMob, and are now building software to enable simple, low-friction transactions on a mobile device.