Skip to content

Instantly share code, notes, and snippets.

View jamesmaidment's full-sized avatar
🚢
shippin'

James Maidment jamesmaidment

🚢
shippin'
View GitHub Profile
@jamesmaidment
jamesmaidment / service-checklist.md
Created November 28, 2018 21:53 — forked from acolyer/service-checklist.md
Internet Scale Services Checklist

Internet Scale Services Checklist

A checklist for designing and developing internet scale services, inspired by James Hamilton's 2007 paper "On Desgining and Deploying Internet-Scale Services."

Basic tenets

  • Does the design expect failures to happen regularly and handle them gracefully?
  • Have we kept things as simple as possible?
@jamesmaidment
jamesmaidment / tmux.conf
Created November 25, 2016 18:14 — forked from spicycode/tmux.conf
The best and greatest tmux.conf ever
# 0 is too far from ` ;)
set -g base-index 1
# Automatically set window title
set-window-option -g automatic-rename on
set-option -g set-titles on
#set -g default-terminal screen-256color
set -g status-keys vi
set -g history-limit 10000
@jamesmaidment
jamesmaidment / vagrant.py
Created March 28, 2016 22:49 — forked from lorin/vagrant.py
Vagrant dynamic inventory script for Ansible
#!/usr/bin/env python
# Adapted from Mark Mandel's implementation
# https://github.com/ansible/ansible/blob/devel/plugins/inventory/vagrant.py
import argparse
import json
import paramiko
import subprocess
import sys