I hereby claim:
- I am ichaida on github.
- I am ichaida (https://keybase.io/ichaida) on keybase.
- I have a public key ASAxQmGepGoYXAnX6LhvK3WWiysVupx1LQFHPEdRgctU_wo
To claim this, I am signing this object:
| # install homebrew | |
| ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)" | |
| brew install git | |
| brew install node | |
| brew install wget | |
| brew install z | |
| brew install ag | |
| brew install ack | |
| brew install ffind |
| echo "Downloading ETCD Distributed Key-Value Store..." | |
| # Grab binary release of etcd | |
| ETCD_VER=v3.0.15 | |
| DOWNLOAD_URL=https://github.com/coreos/etcd/releases/download | |
| curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz | |
| # Extract in temp | |
| mkdir -p /tmp/etcd && tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd --strip-components=1 | |
| # Install etcd and etcdctl | |
| cp /tmp/etcd/etcd /usr/local/bin/ | |
| cp /tmp/etcd/etcdctl /usr/local/bin/ |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # Visit Github: | |
| # https://github.com/variadico/noti | |
| # Install latest: | |
| # go get -u github.com/variadico/noti/cmd/noti | |
| # On macOS: | |
| # brew install noti |
| echo `dd if=/dev/urandom bs=128 count=1 2>/dev/null | base64 | tr -d "=+/" | dd bs=32 count=1 2>/dev/null` |
| #!/bin/bash | |
| sudo kextunload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport | |
| sudo kextload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport |
| function update(){ | |
| git checkout master && git pull && git checkout - && git rebase master | |
| } |
| #!/usr/bin/env bash | |
| # Connect to shell to the default machine | |
| eval "$(docker-machine env default)" | |
| # ------------------------------------------------- | |
| # Variables | |
| # ------------------------------------------------- | |
| # Names to identify images and containers of this app | |
| IMAGE_NAME='NAME' | |
| CONTAINER_NAME="NAME" | |
| PORT=5000 |