Skip to content

Instantly share code, notes, and snippets.

View iammelea's full-sized avatar
🎯
Focusing

iammelea iammelea

🎯
Focusing
View GitHub Profile
@iammelea
iammelea / script getsubstrate.io error
Created August 10, 2019 11:55
Error script build substrate
```
curl https://getsubstrate.io -sSf | bash
Compiling hex-literal-impl v0.2.0
Compiling structopt v0.2.18
Compiling parking_lot v0.7.1
Compiling vergen v3.0.4
Compiling futures-timer v0.2.1
error[E0277]: the trait bound `ext::TimeoutStream<S>: futures_core::stream::Stream` is not satisfied
$ sudo apt-get install wireguard
#if fail → via ppa
$ sudo add-apt-repository ppa:wireguard/wireguard
$ sudo apt-get update
$ sudo apt-get install wireguard
$ sudo systemctl stop wg-quick@wg0
$ sudo vi /etc/wireguard/wg0.conf
@iammelea
iammelea / proof
Created September 13, 2019 04:04
Edgeware Identity Attestation
Attesting to my edgeware account: II 0xacc273ad4c2c746e26a9bb681de4ffc4b194462bc8a6e264d437552e8c0fed7b II
@iammelea
iammelea / helpful-docker-commands.sh
Created March 3, 2020 15:25 — forked from garystafford/helpful-docker-commands.sh
My list of helpful docker commands
###############################################################################
# Helpful Docker commands and code snippets
###############################################################################
### CONTAINERS ###
docker stop $(docker ps -a -q) #stop ALL containers
docker rm -f $(docker ps -a -q) # remove ALL containers
docker rm -f $(sudo docker ps --before="container_id_here" -q) # can also filter
# exec into container