Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am bydavy on github.
  • I am leggieri (https://keybase.io/leggieri) on keybase.
  • I have a public key ASCvU5wMo__9DaqweCj2aLns_F4HCUc-G6QkSvb5BBDlSwo

To claim this, I am signing this object:

@bydavy
bydavy / tmux.cheat
Last active March 18, 2017 21:05 — forked from afair/tmux.cheat
========================================== ==========================================
TMUX COMMAND WINDOW (TAB)
========================================== ==========================================
List tmux ls List ^b w
New -s <session> Create ^b c
Attach att -t <session> Rename ^b , <name>
Rename rename-session -t <old> <new> Last ^b l (lower-L)
Kill kill-session -t <session> Close ^b &
@bydavy
bydavy / gist:20b186bbb1a74d825a82
Last active August 29, 2015 14:08
Generate a random password
# Dead simple
head -c 16 /dev/urandom | shasum | cut -c1-10
# More secure
head -c 16 /dev/urandom | base64 | cut -c1-10