Skip to content

Instantly share code, notes, and snippets.

View ichaida's full-sized avatar

Ismail Chaida ichaida

View GitHub Profile

Keybase proof

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:

@ichaida
ichaida / install_etcd.sh
Created December 8, 2016 11:19
Linux install ETCD Distributed Key-Value Store
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/
@ichaida
ichaida / MacOS_defaults.sh
Created February 14, 2017 10:05
MacOS defaults setup
# 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