Skip to content

Instantly share code, notes, and snippets.

@vickash
vickash / README.md
Last active December 21, 2015 13:30
Simple message queue setup with dino.

Install rabbitmq first: http://www.rabbitmq.com/download.html Or brew install rabbitmq on Mac

Start it up with rabbitmq-server

Install gems to talk to the message queue:

gem install bunny
gem install amqp
@vickash
vickash / dino_build.sh
Last active December 17, 2015 23:29
A quick and dirty build script for doing development work on dino (http://www.github.com/austinbv/dino).
#
# Development build script for work on dino (http://www.github.com/austinbv/dino).
# Requires Arduino IDE 1.5 (beta) or greater which includes command line support.
#
#!/bin/bash
#
# Remove any old tmp files.
if [ -d "tmp" ]; then
rm -r tmp