-
We use [Ed25519] for creating digital signatures. Public keys are 32 bytes in length, and signatures are 64 bytes.
-
We will start out with support for BLE (Bluetooth Low Energy) and add support for older versions later.
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
const fetchMachine = Machine({ | |
"id": "root", | |
"states": { | |
"Propit Platform": { | |
"id": "Propit Platform", | |
"states": { | |
"Authenticated?": { | |
"id": "Authenticated?", | |
"states": {}, | |
"on": { |
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
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
Egg Timer* | |
Stopped* | |
wind forward -> Ticking | |
Ticking | |
time elapsed -> Stopped |
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
x = 2 |
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
My Awesome Sketch | |
First State | |
some event -> Second State | |
Second State |
Dearest Saul,
As I write this, you are a cute little bundle of joy that needs his parents to take care of his every needs. As you read this, I hope you are a dashing young man ready to take on the world on his own.
Now life as a young man has never been easy. I apologise for my generation's role in making it particularly hard for yours. But I hope these words will help make up for it in some small way.
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
Todos = xi.State | |
currentEntry: '' | |
items: [] | |
getData: -> | |
currentEntry: @currentEntry | |
items: @items | |
TODO_NEW: -> | |
if @currentEntry != '' | |
@items.push {text: @currentEntry} | |
@currentEntry = '' |
I hereby claim:
- I am tav on github.
- I am tav (https://keybase.io/tav) on keybase.
- I have a public key whose fingerprint is 1936 2788 9E01 5456 F6D5 AEEE 0194 A434 A104 F167
To claim this, I am signing this object:
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
#! /bin/sh | |
# Public Domain (-) 2014 The Wikifactory Authors. | |
# See the Wikifactory UNLICENSE file for details. | |
TODO_FILE=$0 | |
echo | |
echo "✓ Done: " `grep "^✓" $TODO_FILE | wc -l` | |
echo "✗ Todo: " `grep "^✗" $TODO_FILE | wc -l` |
NewerOlder