Skip to content

Instantly share code, notes, and snippets.

View tianchu's full-sized avatar

Tian Chu tianchu

  • Datadog Inc.
  • New York
View GitHub Profile
@tianchu
tianchu / delete_snapshots.py
Created July 14, 2017 03:59 — forked from kjoconnor/delete_snapshots.py
boto script to delete snapshots matching a filter and older than X days
import sys
from boto.ec2 import connect_to_region
from datetime import datetime, timedelta
try:
days = int(sys.argv[1])
except IndexError:
days = 7
@tianchu
tianchu / tmux-cheatsheet.markdown
Created November 29, 2015 16:26 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname