Skip to content

Instantly share code, notes, and snippets.

@colinvh
colinvh / aws.md
Last active May 8, 2024 15:31
AWS Region Names

Alternative naming schemes for AWS regions

Purpose

The intent is to define terse, standards-supported names for AWS regions.

Schemes

@chrisboulton
chrisboulton / makeitmakeitnow.sh
Created July 9, 2013 04:14
package nodejs using fpm (for debian) i'm lazy, you should be too, so here's a bash script.
#!/bin/bash
set -e
VERSION=0.10.12
BUILD_DIR=`mktemp -d`
trap "rm -rf -- $BUILD_DIR" EXIT
export DESTDIR=$BUILD_DIR/build
ARCHIVE=node-v$VERSION