Skip to content

Instantly share code, notes, and snippets.

1) Create Heroku Account
- https://signup.heroku.com/dc
2) Install Heroku CLI
- https://devcenter.heroku.com/articles/heroku-cli#download-and-install
3) Create Heroku App
- heroku create «your app name»
- check `heroku -v`
@tphdev
tphdev / gist:3b2308da3ba14f8aa4706c2ff2b95e80
Created September 25, 2018 02:10
codigos-postales--object.json
{
"10000": true,
"10010": true,
"10020": true,
"10100": true,
"10130": true,
"10200": true,
"10300": true,
"10309": true,
"10320": true,
@tphdev
tphdev / codigos-postales--array.json
Created September 25, 2018 02:07
mx codigos postales array
[
"01000",
"01010",
"01020",
"01030",
"01040",
"01048",
"01049",
"01050",
"01060",
@tphdev
tphdev / README.md
Last active September 1, 2018 19:56
example-project-pitch

Project Pitch - BookBookGradebook

Travis Hubbard : js-dipl-1803_ce

Summary

The gradebook app lets an instructor grade student repositories submitted to github. It pulls a student's code from github and allows for code comments on lines.

Audience/User Profile

@tphdev
tphdev / representing-data.md
Created July 10, 2018 02:08
representing data in schemas and records examples

Representing Data

Schemas + Records Examples

Schema

Tuples + Tables + Relations

LEAGUE
--------------
@tphdev
tphdev / representing-data.md
Created July 10, 2018 02:08
representing data in schemas and records examples

Representing Data

Schemas + Records Examples

Schema

Tuples + Tables + Relations

LEAGUE
--------------
@tphdev
tphdev / critical-terms.md
Created July 10, 2018 01:52
relational model v sql v mysql

Relational Model A framework for describing data. Data is organized into tables and relations.

SQL stands for Structured Query Language. It’s a standard language for implementing a Relational Model accessing and manipulating Relational databases.

MySQL is a RDMS (Relational Database Management System) that implements SQL .

  • like SQL Server, Oracle, Postgres, etc.
CREATE DATABASE HOSPITAL
  
@tphdev
tphdev / relational-mode.md
Last active July 10, 2018 01:53
relational model

Relational Model :

A framework for managing data. Data is organized into tables and relations.

Tables

============
TABLES (representation of data)
============
@tphdev
tphdev / app-architecture.md
Last active July 16, 2018 22:33
application architecture

The big picture

@tphdev
tphdev / notes-intro-mysql.md
Created July 10, 2018 01:02
Intro to MySQL