- 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
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
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
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 io = require('socket.io-client'); | |
function createPad (c, cb) { | |
var c = io.connect("http://localhost:9001") | |
c.on('error', function (e) {console.error(e)}) | |
c.json.send( | |
{ "component": "pad" | |
, "type": "CLIENT_READY" |
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 client = http.createClient(u.port || (u.protocol === "https:" ? 443 : 80), u.hostname); | |
var request = client.request("PUT", u.pathname, headers); | |
request.write(what, "utf8"); | |
request.addListener("response", function (response) { | |
if (response.statusCode !== 200) return cb(new Error( | |
"Status code " + response.statusCode + " from PUT "+where)); | |
var data = ""; | |
response | |
.setBodyEncoding("utf8") | |
.addListener("data", function (chunk) { data += chunk }) |
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
from couchquery import Database | |
from testbot import create_job | |
from testbot.client import Client | |
class TestAgent(Client): | |
jobtypes = ['xpcshell'] | |
def do_job(self, job): | |
print job |
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
try: | |
import json | |
except: | |
import simplejson as json | |
import urllib | |
import types | |
tbox_url = 'http://tinderbox.mozilla.org/showbuilds.cgi?tree=Mobile&json=1&noignore=1' | |
logroot = "http://tinderbox.mozilla.org/showlog.cgi?log=Mobile/" |