Skip to content

Instantly share code, notes, and snippets.

View maxsummers's full-sized avatar

Mad Max Summers maxsummers

View GitHub Profile
#/usr/bin/env bash
set -o errexit
set -o pipefail
NODE_VERSION="v7"
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash
. $HOME/.nvm/nvm.sh
@maxsummers
maxsummers / ubuntu-install-zeromq.sh
Last active March 29, 2018 05:43
How to install ZeroMQ 4 on Ubuntu 16.10 from source
#!/usr/bin/env bash
# As in: http://stackoverflow.com/a/41289659/7331008
# Exiting on errors
set -e
# Set required version
VERSION="4.2.0"