Skip to content

Instantly share code, notes, and snippets.

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

Nick Fuenmayor InNickF

🏠
Working from home
View GitHub Profile
"""
Django ORM Optimization Tips
Caveats:
* Only use optimizations that obfuscate the code if you need to.
* Not all of these tips are hard and fast rules.
* Use your judgement to determine what improvements are appropriate for your code.
"""
# ---------------------------------------------------------------------------
@InNickF
InNickF / gitignore
Created January 12, 2020 01:34 — forked from gndx/gitignore
# Node template
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Runtime data
@InNickF
InNickF / eslintrc
Created January 12, 2020 01:34 — forked from gndx/eslintrc
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": ["airbnb"],
"globals": {
"document": false,
"escape": false,