I hereby claim:
- I am eelcocramer on github.
- I am cojack (https://keybase.io/cojack) on keybase.
- I have a public key ASC9uwJH0HWm_riVSxRp6yX0PwymvOqt_ktIlHE8AjqHSQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# PlantUML Launcher | |
# | |
# This script is free software; you can redistribute it and/or modify it | |
# under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This script distributed in the hope that it will be useful, but | |
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
// This code uses the SoftwareSerial library. | |
// It can be obtained here: http://arduino.cc/en/Reference/SoftwareSerial | |
unsigned int timeout=0; | |
unsigned char state=0; | |
char val; // variable to receive data from the serial port | |
int ledpin = 13; // LED connected to pin 13 | |
// Timer2 service |
#!/usr/bin/env node | |
/** | |
* Echo Bot - the XMPP Hello World | |
* | |
* Copied from the echo_bot.js example from node-xmpp. | |
**/ | |
var xmpp = require('../lib/node-xmpp'); | |
var argv = require('optimist').argv; | |
var fs = require('fs'); |