Skip to content

Instantly share code, notes, and snippets.

View nickaigi's full-sized avatar
🚀
To the Moon

Nickson Kaigi nickaigi

🚀
To the Moon
View GitHub Profile
@nickaigi
nickaigi / tmux-cheatsheet.markdown
Created March 14, 2023 15:25 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@nickaigi
nickaigi / fabfile.py
Created September 19, 2013 16:24 — forked from gcollazo/fabfile.py
from fabric.api import *
"""
Base configuration
"""
env.project_name = '$(project)'
env.database_password = '$(db_password)'
env.site_media_prefix = "site_media"
env.admin_media_prefix = "admin_media"
env.newsapps_media_prefix = "na_media"