Skip to content

Instantly share code, notes, and snippets.

@csbuja
csbuja / tmux-cheatsheet.markdown
Created April 7, 2016 17:05 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@csbuja
csbuja / argh_examples.py
Created March 30, 2021 18:32 — forked from safijari/argh_examples.py
Python Libraries Video 1
import argh
def do_the_thing(required_arg, optional_arg=1, other_optional_arg=False):
"""
I am a docstring
"""
print((required_arg, type(required_arg)))
print((optional_arg, type(optional_arg)))
print((other_optional_arg, type(other_optional_arg)))