Skip to content

Instantly share code, notes, and snippets.

@bitdivine
bitdivine / keybase.md
Created March 21, 2019 00:20
keybase.md

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@bitdivine
bitdivine / .bashrc
Created January 24, 2019 16:39
Generate and export an AWS_SESSION_TOKEN
# Add this to your ~/.bashrc
alias aws_session_token_generate='export AWS_SESSION_TOKEN=$(aws sts get-session-token --serial-number "$(aws sts get-caller-identity --query Arn --output text | sed 's/user/mfa/g')" --token-code "$(read line ; echo $line)" --query Credentials.SessionToken --output text)'
@bitdivine
bitdivine / json-comment-stripper
Created August 10, 2018 12:17
Strip comments from JSON
#!/usr/bin/env node
const RECIPE = process.argv[2] || process.env.RECIPE || '/dev/stdin'
const doubleslash=/^(("([^"\\]|\\.)*"|([^\/]|\/[^\/]))*).*/gm
const multiline=/(("([^"\\]|\\.)*"|[^\/"]|\/[^*])*)\/[*]([^*]|[*][^\/])*[*]\//g
var x,y;
for ([x,y]=[require("fs").readFileSync(RECIPE,{encoding:"utf8"}).replace(doubleslash,"$1"), ""]; x.length != y.length; [x,y]=[x.replace(multiline,"$1"),x] );
# Prompt: Exit code red/green && runtime
PROMPT_COMMAND=__prompt_command # Func to gen PS1 after CMDs
__prompt_command() {
local EXIT="$?" # This needs to be first
timer_stop
PS1=""
local RCol='\[\e[0m\]'
local Red='\[\e[0;31m\]'
local Gre='\[\e[0;32m\]'
local BYel='\[\e[1;33m\]'
@bitdivine
bitdivine / install-terraform.sh
Last active September 10, 2017 10:05
Install the latest version of terraform
#!/bin/sh
set -eux
set -o pipefail
INSTALL_DIR="${INSTALL_DIR:-/opt/terraform/bin}"
# Get the version to install, degrading gracefully depending on which tools are installed:
test -n "${VERSION:-}" \
|| VERSION="$(curl https://releases.hashicorp.com/index.json | jmespath "terraform.versions.*.version" --output text | sort --version-sort | tail -n1)" \
|| VERSION="$(curl https://releases.hashicorp.com/terraform/ | grep terraform_ | sed 's/.*href.*>terraform_//g;s/<.*//g' | sort --version-sort | tail -n1)"
@bitdivine
bitdivine / jmespath
Last active November 28, 2018 00:18
A command line jmespath filter
#!/usr/bin/env python3
import sys
import json
import jmespath
import argparse
parser = argparse.ArgumentParser(description='Apply a jmespath filter to stdin')
parser.add_argument('jmespath', metavar='JMESPATH', type=str, nargs=1,
help='jmespath expression')
@bitdivine
bitdivine / get-aws-region.sh
Created September 6, 2017 18:21
Get the AWS region - either from the profile or, if running on an AWS instance, by looking up the instance metadata.
echo If the region is given in the environment:
echo $AWS_DEFAULT_REGION
echo If aws has been configured:
aws configure get region
echo If running on an aws instance, the availability zone is in the metadata and hence we have the region:
ec2metadata --availability-zone | sed -r 's/.$//g'
echo Equivalently:
curl -s http://169.254.169.254/latest/meta-data/placement/availability-zone | sed -r 's/.$//g'
@bitdivine
bitdivine / secure-docker-registry.md
Created July 18, 2017 10:44
Secure Docker Registry

Create a secure docker registry

Note: You will almost certainly want to add some storage options: Note: This is correct as of July 2017. The official Docker docs give the wrong port number but are otherwise correct. https://docs.docker.com/registry/deploying/

  • Create a cert with whatever tools you normally use:

    (.ve) maxim@space:~/pumpernikel-pristine/tools/ansible$ ./bin/ssl-client-gencert docker.pumpernikel.com

  • Run: