Skip to content

Instantly share code, notes, and snippets.

@quesalltime
quesalltime / mosquitto_websockets.md
Created April 2, 2019 14:10 — forked from smoofit/mosquitto_websockets.md
Howto install mosquitto with websockets
@quesalltime
quesalltime / gen_eth_keys.sh
Created December 17, 2017 09:28 — forked from ignition42/gen_eth_keys.sh
Generate ethereum key pairs and address
#!/bin/bash
# Source: https://kobl.one/blog/create-full-ethereum-keypair-and-address/
# Install dependencies
sudo apt-get install openssl curl
# Download prebuilt sha3 keccak
if [ $(uname -m) == 'x86_64' ]; then
curl -L -O https://github.com/vkobel/ethereum-generate-wallet/raw/master/lib/x86-64/keccak-256sum
else