Skip to content

Instantly share code, notes, and snippets.

View deploytoprod's full-sized avatar
🏠
Working from home

Rafael Lopes deploytoprod

🏠
Working from home
View GitHub Profile
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active May 3, 2024 19:09
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
def meu_decorator(f):
def novo_f():
print 'iniciando f'
print 'finalizando f'
return novo_f
@meu_decorator
def minhafuncao():
print 'dentro da funcao'