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
# Install ZeroMQ | |
sudo brew install zmq | |
easy_install pyzmq | |
[0] http://www.zeromq.org/bindings:python | |
# Install OpenCV | |
sudo brew install opencv | |
# Install libusb |
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
//I guess I'd go with straight functions into a module you could mixin or use directly OR objects... | |
//On the first option, something like this: | |
var app = app || {}; | |
app.server = app.server || {}; | |
app.server.http = function() {...}; | |
app.server.get = function() {...}; | |
app.server.post = function() {...}; | |
//And for the second option: |