- https://github.com/felixge/node-ar-drone
- https://github.com/bkw/nodecopter-stream
- https://github.com/nesQuick/nodecopter-hacks
- https://github.com/substack/matador-copter
- https://github.com/brianleroux/phonegap-android-speech-to-ardrone
- https://github.com/maxogden/nodecopter-hacks
- https://github.com/notmatt/gruntcopter
- https://github.com/voodootikigod/wii-drone
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
http://fluentconf.com/fluent2014 | |
http://2013.jsconf.us/ | |
http://cssconf.com/ | |
http://events.jquery.org/2013/austin/ | |
http://backboneconf.com/ | |
http://www.ng-conf.org/ | |
http://aneventapart.com/ | |
http://2013.cascadiajs.com/ | |
http://2013.texasjavascript.com/ | |
http://edgeconf.com/2013-nyc/live.html |
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
var template = "<div><h3><a>{{Title}}</a></h3><div id='{{Title}}'><ul>{{#items}}<li><a href='{{href]}}'>{{title}}</a><li>{{/items}}</ul></div>"; | |
//.href doesn't work, not sure how to access the members of {{.}} in the enumerable section. | |
var tutorials = { Title: "Tutorials", items: [ {href: "http://foo", title: "foo"},{href:"http://bar", title: "bar"}]; | |
Mustache.to_html(template, tutorials); | |
/* | |
should output | |
<div><h3><a>Tutorials</a></h3><div id='Tutorials'><ul><li><a href='http://foo'>foo</a><li><li><a href='http://bar'>bar</a><li></ul></div> |
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
(define (print x) | |
(cond ((= (remainder x 15) 0) 'fizzbuzz) | |
((= (remainder x 3) 0) 'fizz) | |
((= (remainder x 5) 0) 'buzz) | |
(else x))) | |
(define (makelist n) | |
(if (= n 101) | |
'() | |
(cons (print n) | |
(makelist (+ n 1))))) |
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
%% ``The contents of this file are subject to the Erlang Public License, | |
%% Version 1.1, (the "License"); you may not use this file except in | |
%% compliance with the License. You should have received a copy of the | |
%% Erlang Public License along with this software. If not, it can be | |
%% retrieved via the world wide web at http://www.erlang.org/. | |
%% | |
%% Software distributed under the License is distributed on an "AS IS" | |
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See | |
%% the License for the specific language governing rights and limitations | |
%% under the License. |