Skip to content

Instantly share code, notes, and snippets.

View moosh3's full-sized avatar
๐Ÿ
doing devop things

Alec Cunningham moosh3

๐Ÿ
doing devop things
View GitHub Profile
@moosh3
moosh3 / .tmuxinator.conf
Created May 18, 2016 18:58
Example tmuxinator config
# ~/.tmuxinator/[project_name].yml
project_name: [project_name]
project_root: ~/Sites/[project_name]
pre: sudo /usr/local/mysql/support-files/mysql.server start
tabs:
- editor:
layout: 2545,364x87,0,0{242x87,0,0,121x87,243,0[121x43,243,0,121x43,243,44]}
panes:
- workon [project_name] && vim .
@moosh3
moosh3 / python_idioms.py
Last active September 29, 2015 04:21
Pythonic idioms, and conventions for reference
# Python Code Style
# Code like a Pythonista; Idioms
# http://python.net/~goodger/projects/pycon/2007/idiomatic/handout.html
my_dict = {
"Name": "Alec",
"Age": 19,
"killa": True
}