Skip to content

Instantly share code, notes, and snippets.

View crissupb's full-sized avatar

Brian Crissup crissupb

  • AWS
  • SE Pennsylvania
View GitHub Profile
@crissupb
crissupb / .zshrc
Created April 28, 2020 19:24
Enable AWS CLI autocompletion on Mac and zsh
# the script aws_completer needs to be in your path
# this works with v2 of the aws cli installed via brew
autoload compinit && compinit
autoload bashcompinit && bashcompinit
complete -C '/usr/local/bin/aws_completer' aws
@crissupb
crissupb / build.sh
Created March 12, 2018 22:03
Script to rebuild Git2S3 Lambda zip file
yum update
yum upgrade
yum install -y gcc make cmake git zip
yum install -y python27-devel python27-pip make cmake
yum install -y libcurl-devel wget zlib-devel openssl-static libffi-devel
wget https://www.libssh2.org/download/libssh2-1.8.0.tar.gz
tar xvf libssh2-1.8.0.tar.gz
cd libssh2-1.8.0