Skip to content

Instantly share code, notes, and snippets.

View Jonovono's full-sized avatar
😈

Jordan Howlett Jonovono

😈
View GitHub Profile
@Jonovono
Jonovono / gist:9372050
Created March 5, 2014 17:30
keybase.md
### Keybase proof
I hereby claim:
* I am Jonovono on github.
* I am Jordan (https://keybase.io/Jordan) on keybase.
* I have a public key whose fingerprint is 97DC 9F0E 114D 83B6 5744 3A5C 9EFD 7F67 51B7 EA67
To claim this, I am signing this object:
@Jonovono
Jonovono / gist:7796174
Created December 4, 2013 21:46
piface
from multiprocessing import Process, Queue
import time
import cv2
# Upper limit
_Servo1UL = 250
_Servo0UL = 230
# Lower Limit
_Servo1LL = 75
@Jonovono
Jonovono / githubdyna.js
Last active December 17, 2015 16:19
Create Github.com API response to use for dynatree.
var und = require("underscore");
var parsedFile = require("./file.json");
var tree = parsedFile.tree
files = [];
function parseFolder(name, path, type) {
var paths = und.map(tree, function(item) {return {path: item.path,
type: item.type}});
setupRoot(paths);