Skip to content

Instantly share code, notes, and snippets.

View thedvlprs's full-sized avatar
⌨️
One mistake—and you’re wrong.

Sophie thedvlprs

⌨️
One mistake—and you’re wrong.
View GitHub Profile
@thedvlprs
thedvlprs / nginx.conf
Created October 7, 2019 17:22 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048

Django Polling App Commands

# Install pipenv
pip install pipenv
# Create Venv
pipenv shell
@thedvlprs
thedvlprs / eslint_prettier_airbnb.md
Created September 5, 2019 05:46 — forked from bradtraversy/eslint_prettier_airbnb.md
ESLint, Prettier & Airbnb Setup

VSCode - ESLint, Prettier & Airbnb Setup

1. Install ESLint & Prettier extensions for VSCode

Optional - Set format on save and any global prettier options

2. Install Packages

npm i -D eslint prettier eslint-plugin-prettier eslint-config-prettier eslint-plugin-node eslint-config-node
@thedvlprs
thedvlprs / mongodb_cheat_sheet.md
Created September 5, 2019 05:46 — forked from bradtraversy/mongodb_cheat_sheet.md
MongoDB Cheat Sheet

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

@thedvlprs
thedvlprs / python_heroku.MD
Created September 5, 2019 05:45 — forked from bradtraversy/python_heroku.MD
Python & Postgres Heroku Deployment

Python Heroku Deployment

Steps to create a postgres database and deply a Python app to Heroku

Install guinicorn locally

pipenv install gunicorn
or
pip install gunicorn
@thedvlprs
thedvlprs / django_crash_course.MD
Created September 5, 2019 05:43 — forked from bradtraversy/django_crash_course.MD
Commands for Django 2.x Crash Course

Django Crash Course Commands

# Install pipenv
pip install pipenv
# Create Venv
pipenv shell
@thedvlprs
thedvlprs / npmcrashcourse.txt
Created September 5, 2019 05:41 — forked from bradtraversy/npmcrashcourse.txt
NPM Crash Course Commands
# GET VERSION
npm -v (or --version)
# GET HELP
npm help
npm
# CREATE PACKAGE.JSON
npm init
npm init -y (or --yes)
# GET VERSION
yarn -v (or --version)
# GET HELP
yarn help
# CREATE PACKAGE.JSON
yarn init
yarn init -y // Use defaults
@thedvlprs
thedvlprs / django_cheat_sheet.md
Created September 5, 2019 05:38 — forked from bradtraversy/django_cheat_sheet.md
Django command cheat sheet

Django 2.x Cheat Sheet

Creating a virtual environment

We need to create a virtual env for our app to run in: More Here Run this command in whatever folder you want to create your venv folder

python -m venv ./venv
@thedvlprs
thedvlprs / css_reset.css
Created July 17, 2019 14:30 — forked from freetonik/css_reset.css
Eric Meyer’s CSS Reset 2.0
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,