I hereby claim:
- I am jthub on github.
- I am jtonline (https://keybase.io/jtonline) on keybase.
- I have a public key whose fingerprint is 5285 D8BF FD41 933A D303 999A F51C 90AC 900E A68D
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| /* | |
| * Basic mash up of Andrew de Quincey's Joggler light sensor code | |
| * and sample MQTT client code to publish light sensor reading | |
| * messages. | |
| * For more info. see: | |
| * http://code.google.com/p/adqmisc/source/browse/trunk/joggler/readlightsensor.c | |
| * http://www.eclipse.org/paho/files/mqttdoc/Cclient/ | |
| * http://jtlog.wordpress.com/2013/02/07/mqtt-joggler/ | |
| */ | |
| #include "stdio.h" |
| <# | |
| .SYNOPSIS | |
| Keybase experiment. | |
| .DESCRIPTION | |
| Beginnings of a PowerShell script to post a Keybase signature announcement. Still not finished but the following commands do work, which is nice. | |
| .PARAMETER SignedJsonPath | |
| A file containing the signed JSON Object, e.g. created using the following command, | |
| gpg2 -u "..." -a --sign keybase-json.txt | |
| .PARAMETER Session | |
| .PARAMETER CsrfToken |
| Verifying that +jtonline is my blockchain ID. https://onename.com/jtonline |
| 'use strict'; | |
| var gulp = require('gulp'), | |
| del = require('del'); | |
| var distFolder = './dist'; | |
| gulp.task('clean', function () { | |
| return del([distFolder]); | |
| }); |
Just a few notes in my quest to build a bot. It's worth reading Calling all Makers: Meet TJBot! if you've not already met TJ Bot!
I currently have a 3D print of the robot thanks to a friendly master inventor with a new toy. It needs a brain though!
Parts from The Pi Hut (other stores are available!)
| /** | |
| * Defines a data model for a multi-player game | |
| */ | |
| namespace org.example.game | |
| enum ItemType { | |
| o POTION | |
| o WEAPON | |
| } |
| /** | |
| * Evil model file | |
| */ | |
| namespace org.hyperledger.composer.system | |
| abstract participant $Asset identified by sku { | |
| o String sku | |
| } |