Skip to content

Instantly share code, notes, and snippets.

View anthedung's full-sized avatar

Elon Corleone anthedung

  • Sydney, Australia
View GitHub Profile
@anthedung
anthedung / .bash_aliases
Created January 10, 2018 06:40 — forked from vratiu/.bash_aliases
Git shell coloring
# Customize BASH PS1 prompt to show current GIT repository and branch.
# by Mike Stewart - http://MediaDoneRight.com
# SETUP CONSTANTS
# Bunch-o-predefined colors. Makes reading code easier than escape sequences.
# I don't remember where I found this. o_O
# Reset
Color_Off="\[\033[0m\]" # Text Reset
@anthedung
anthedung / python-formatter.sh
Created August 19, 2019 04:19
Python-Formatter
SRC_DIR=src/main/python
isort -rc $SRC_DIR
black $SRC_DIR
mypy --ignore-missing-imports $SRC_DIR
flake8 $SRC_DIR