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
// Curried Getter property function | |
var get = curry(function(property, object){ return object[property] }) | |
/* Object from server | |
{ | |
"user": "hughfdjackson", | |
"posts": [ | |
{ "title": "why curry?", "contents": "..." }, | |
{ "title": "prototypes: the short(est possible) story", "contents": "..." } | |
] |
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
Good Tools for Apps and Games: https://software.intel.com/en-us/intel-xdk |
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
Lynda Course free with trial account: | |
http://www.lynda.com/CSS-tutorials/CSS-Animations/439683-2.html | |
More Simple than GSAP for tween: https://github.com/jaxgeller/tweezer.js | |
Sprites & Steps Street Fighter: https://davidwalsh.name/street-fighter | |
3D WebGL: http://www.babylonjs.com/ | |
Phaser Video Games Canvas & WebGL: http://phaser.io/ | |
Tutorial Phaser: http://www.belenalbeza.com/talk-at-mediterraneajs-2015/ | |
2D Render in SVG, Canvas or WebGL: https://jonobr1.github.io/two.js/ |
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
<html><body><pre><script> | |
"use strict"; | |
function log(arg) { | |
document.writeln(arg); | |
} | |
function identity(x) { | |
return x; | |
} | |
log(identity(3)); |
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
Extract IMG & CSS from Sketch: https://github.com/tudou527/marketch | |
Extract preview for Brackets: http://www.adobe.com/es/creativecloud/extract.html |
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
Validation: https://github.com/chriso/validator.js | |
Object schema validation: https://github.com/hapijs/joi | |
Object validation: https://github.com/square/lgtm | |
jQuery Form Validation: http://happyjs.com/ |
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
JavaScript in Google: http://searchengineland.com/tested-googlebot-crawls-javascript-heres-learned-220157 | |
Structured Data Markup: https://developers.google.com/structured-data/ |
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
Catberry Isometric Apps: https://github.com/catberry/catberry | |
Express Node Apps: http://expressjs.com/en/ | |
Koa: http://koajs.com/ | |
REST services: http://restify.com/ | |
Hapi: http://hapijs.com/ | |
Deployd: http://deployd.com/ | |
PM2: https://github.com/Unitech/pm2 |
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
Audacity Courses! | |
https://www.udacity.com/me#!/ | |
https://www.udacity.com/course/browser-rendering-optimization--ud860 | |
Cache Google tutorial & resources: https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/http-caching | |
Animation: Video: https://vimeo.com/125121010 | |
Animation: http://www.html5rocks.com/en/tutorials/speed/high-performance-animations/ | |
Blogs: | |
http://jankfree.org/ |
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
window.fetch Polyfill - https://github.com/github/fetch | |
Async & Rx explained: https://github.com/Reactive-Extensions/RxJS/blob/master/doc/mapping/async/comparing.md | |
Rx http://rxmarbles.com/ |