I hereby claim:
- I am ethan605 on github.
- I am ethan605 (https://keybase.io/ethan605) on keybase.
- I have a public key whose fingerprint is 4B32 8F02 F02A 0D5C 2312 7E7E C086 CD9B 4DBC BBC0
To claim this, I am signing this object:
| AÀÁẢÃẠ | |
| ĂẰẮẲẴẶ | |
| ÂẦẤẨẪẬ | |
| BC | |
| DĐ | |
| EÈÉẺẼẸ | |
| ÊỀẾỂỄỆ | |
| GH | |
| IÌÍỈĨỊ | |
| KLMN |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| set -Eeuo pipefail | |
| RED=$(tput setaf 1) | |
| GREEN=$(tput setaf 2) | |
| # YELLOW=$(tput setaf 3) | |
| NORMAL=$(tput sgr0) | |
| readonly RED GREEN NORMAL COMMAND="qrgpg" | |
| SUB_COMMAND="" |
| #!/bin/bash | |
| # Tom Hale, 2016. MIT Licence. | |
| # Print out 256 colours, with each number printed in its corresponding colour | |
| # See http://askubuntu.com/questions/821157/print-a-256-color-test-pattern-in-the-terminal/821163#821163 | |
| set -eu # Fail on errors or undeclared variables | |
| printable_colours=256 |
| export type SystemTypes = 'os' | 'browser'; | |
| export type SystemAttribute = { | |
| codeName: string; | |
| name: string; | |
| versionPrefix: string; | |
| }; | |
| export type SystemInfo = { | |
| name: string; |
| const docVideoFlow = Machine({ | |
| id: 'docVideo', | |
| type: 'parallel', | |
| states: { | |
| recordState: { | |
| initial: 'hideButton', | |
| states: { | |
| hideButton: { | |
| on: { | |
| NEXT_RECORD_STATE: 'showButton' |
| const trafficLight = Machine({ | |
| id: 'trafficLight', | |
| initial: 'red', | |
| states: { | |
| red: { | |
| on: { | |
| TIMER: 'amber' | |
| } | |
| }, | |
| amber: { |