Skip to content

Instantly share code, notes, and snippets.

{
"openrpc": "1.2.4",
"info": {
"title": "WalletConnect API",
"description": "A specification of the P2P communication interface for WalletConnect clients.",
"license": {
"name": "",
"url": ""
},
"version": "2.0.0"
@sbc64
sbc64 / docker-compose.yml
Created May 20, 2021 12:29 — forked from shanewholloway/docker-stackfile.yml
Example Docker Stack Deploy with Node/Service/Task values
version: "3.1"
networks:
public:
example_net:
internal: true
driver_opts:
encrypted: ""
ipam:
config:

Connecting to Justin:

gaiad start --p2p.seeds=20d682e14b3bb1f8dbdb0492ea5f401c0c088163@kilpatrickjustin.me:26656
I[2019-07-22|18:06:43.611] Starting ABCI with Tendermint                module=main
E[2019-07-22|18:06:44.667] Error dialing seed                           module=p2p err="dial tcp 165.227.208.173:26656: i/o timeout" seed=20d682e14b3bb1f8dbdb0492ea5f401c0c088163@165.227.208.173:26656
E[2019-07-22|18:06:44.668] Couldn't connect to any seeds                module=p2p

Connecting to Jehan + Justin:

Keybase proof

I hereby claim:

  • I am sebohe on github.
  • I am sebasheston (https://keybase.io/sebasheston) on keybase.
  • I have a public key whose fingerprint is 8972 AB16 0AB3 1CC7 59C3 20D4 CDEB E856 1620 CCD3

To claim this, I am signing this object:

@sbc64
sbc64 / bash.generate.random.alphanumeric.string.sh
Created January 25, 2018 21:26 — forked from earthgecko/bash.generate.random.alphanumeric.string.sh
shell/bash generate random alphanumeric string
#!/bin/bash
# bash generate random alphanumeric string
#
# bash generate random 32 character alphanumeric string (upper and lowercase) and
NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
# bash generate random 32 character alphanumeric string (lowercase only)
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1