Skip to content

Instantly share code, notes, and snippets.

View ronelliott's full-sized avatar

Ron Elliott ronelliott

  • One of the FAANG's
  • San Diego, CA
View GitHub Profile
@ronelliott
ronelliott / Preferences.sublime-settings.js
Last active October 15, 2019 03:04
My Sublime Text settings
{
"always_show_minimap_viewport": true,
"auto_complete_triggers":
[
{
"characters": ".",
"selector": "source.js"
}
],
"color_scheme": "Packages/Colorsublime - Themes/1337.tmTheme",
@ronelliott
ronelliott / bash_aliases_pip.sh
Last active August 3, 2019 13:17
Helpful Bash Aliases for Pip
alias pir="pip install -r requirements.txt"
alias pip-upgrade-all="pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs pip install -U"
pip_freeze() {
echo "Freezing to 'requirements.txt'"
pip freeze > requirements.txt
}
pip_install() {
pip install $@
@ronelliott
ronelliott / bash_aliases_django.sh
Last active October 3, 2022 11:56
Helpful Bash Aliases for Django
alias dj="python manage.py"
alias djdd="python manage.py dumpdata"
alias djld="python manage.py loaddata"
alias djm="python manage.py migrate"
alias djsh="python manage.py shell"
alias djsm="python manage.py schemamigration"
alias djs="python manage.py syncdb --noinput"
alias djt="python manage.py test"
alias djrs="python manage.py runserver"