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
/* | |
* Base58 encoded 32 byte public key | |
* includes 7 parity characters (can correct 3 mistyped characters) | |
* includes 4 prefix characters (Hkey) | |
* is 63 characters long, so can be a dns segment | |
* | |
* To run this, put it in a directory, and: | |
* npm install base-x | |
* npm install @holochain/n-bch-rs | |
* |
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
extern crate tungstenite; | |
extern crate url; | |
extern crate native_tls; | |
use url::Url; | |
fn main() { | |
let host = "127.0.0.1:2794"; | |
let url = format!("wss://{}/", host); |
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/bash | |
# -- sane bash errors -- # | |
set -Eeuo pipefail | |
# -- download and build openssl -- # | |
curl -L -O https://github.com/openssl/openssl/archive/OpenSSL_1_1_1b.tar.gz | |
tar xf OpenSSL_1_1_1b.tar.gz | |
__ssl_dir="$(pwd)/openssl-OpenSSL_1_1_1b" | |
(cd "${__ssl_dir}" && ./config && make -j8) |
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/bash | |
# -- sane bash errors -- # | |
set -Eeuo pipefail | |
# -- docker exec -- # | |
cat > Dockerfile <<EOF | |
FROM nixos/nix | |
RUN nix-channel --add https://github.com/Holo-Host/nixpkgs-channels/archive/680f9d7ea90dd0b48b51f29899c3110196b0e913.tar.gz |
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
/* FROM CAPNP SCHEMA: | |
struct Message { | |
union { | |
msgError @0 :MsgError; | |
} | |
struct MsgError { | |
errorCode @0 :ErrorCode; | |
errorText @1 :Text; |
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
Machine({ | |
id: 'network', | |
type: 'parallel', | |
on: { | |
BIND: { | |
target: 'transport.bind.wait', | |
in: 'transport.bind.ready' | |
}, | |
CONNECT: { | |
target: 'transport.connect.wait', |
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
<html> | |
<head> | |
<style> | |
#cdown .cdown { | |
display: inline-block; | |
margin: 2px; | |
padding: 2px; | |
border: solid 1px #888; | |
border-radius: 2px; | |
text-align: center; |
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/bash | |
# This script depends upon the following packages: | |
# - some standard utilities | |
# - docker | |
# - binfmt_support | |
# - qemu-user-static | |
# Run like `TGT_ARCH=x64 ./build-hc.bash` |
OlderNewer