Skip to content

Instantly share code, notes, and snippets.

View dominic248's full-sized avatar
💻
Focusing

Dominic Silveira dominic248

💻
Focusing
  • Senior Software Engineer
View GitHub Profile
@dominic248
dominic248 / webdev_online_resources.md
Created July 16, 2018 14:15 — forked from bradtraversy/webdev_online_resources.md
Online Resources For Web Developers (No Downloading)

How to create an HTTPS certificate for localhost domains

This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.

Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).

@dominic248
dominic248 / flutter_setup.md
Created April 24, 2020 12:37 — forked from bradtraversy/flutter_setup.md
Flutter dev setup & notes
/*
Copyright 2011 Martin Hawksey
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
@dominic248
dominic248 / python_heroku.MD
Created May 6, 2020 17:37 — 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

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

MySQL Cheat Sheet

Help with SQL commands to interact with a MySQL database

MySQL Locations

  • Mac /usr/local/mysql/bin
  • Windows /Program Files/MySQL/MySQL version/bin
  • Xampp /xampp/mysql/bin

Add mysql to your PATH

@dominic248
dominic248 / vscode_shortcuts.md
Created May 6, 2020 17:38 — forked from bradtraversy/vscode_shortcuts.md
Helpful shortcuts for VSCode

VSCode Shortcuts

List of helpful shortcuts for faster coding

If you have any other helpful shortcuts, feel free to add in the comments of this gist :)

Official List of all commands

@dominic248
dominic248 / pipenv_cheat_sheet.md
Created May 6, 2020 17:38 — forked from bradtraversy/pipenv_cheat_sheet.md
Pipenv cheat sheet for common commands

Pipenv Cheat Sheet

Install pipenv

pip3 install pipenv

Activate

pipenv shell