Skip to content

Instantly share code, notes, and snippets.

const pressies = [
":bird::pear::deciduous_tree:",
":turtle::bird:",
":fr::chicken:",
":phone::bird:",
":yellow_heart::ring:",
":bird::egg: ",
":bird::swimmer:",
":girl::cow:",
":dancer::notes:",

AngularJS-Learning

A bunch of links to blog posts, articles, videos, etc for learning AngularJS. This list is in its early stages. Feel free to submit a pull request if you have some links/resources to add. Also, I try to verify that the articles below have some real content (i.e. aren't 2 paragraph blog posts with little information) to ensure I'm not listing "fluff" pieces. If you have an idea for a better way to organize these links, please let me know. As I find similar posts in the "General Topics" section, I will break them out into their own categories.

Books

@BrandTurner
BrandTurner / Riot.js
Last active September 18, 2015 23:17
Solution to Problem
process.stdin.resume();
process.stdin.setEncoding('ascii');
var __input_stdin = "";
var __input_stdin_array = "";
var __input_currentline = 0;
process.stdin.on('data', function (data) {
__input_stdin += data;
});
var fs = require('fs');
var lame = require('lame');
var Speaker = require('speaker');
fs.createReadStream(process.argv[2])
.pipe(new lame.Decoder())
.on('format', function (format) {
this.pipe(new Speaker(format));
});
//Notes
//Need to set zIndex of ticket as it tweens.
//At the end, need to set ticket.isMoved to true
//and objref.moveTicketsSP();
//Recursively add event listeners
function Tween(obj, prop, begin, finish, duration)
/*global telemundoBmr, Backbone, JST*/
telemundoBmr.Views = telemundoBmr.Views || {};
(function () {
'use strict';
telemundoBmr.Views.Header = Backbone.View.extend({
template: telemundoBmr.Templates['header']