- Install postgres
- Explain what a Relational Database Management System is and why it is useful
- List, Create and drop databases
- Create database tables
- Explain what Entity Replationship Diagram is, and why it is useful
- Create an ERD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DROP TABLE IF EXISTS employments_resumes; | |
DROP TABLE IF EXISTS employments; | |
DROP TABLE IF EXISTS resumes; | |
DROP TABLE IF EXISTS users; | |
-- create users table | |
CREATE TABLE users ( | |
id serial PRIMARY KEY, | |
first_name varchar(50), |
- Trace the request/response cycle
- Explain how asynchronous behavior occurs in the request/response cycle
- Write ajax requests
- Explain the two promise methods, and how to use them
- Clone the following repo -> https://github.com/rogerwschmidt/ajax-promise
- Create a model that includes properties, and actions that on the properties (get/set)
- Create a simple class with only a constructor
- Explain what a class is and why they are useful
- Add methods to a class
- Explain why getters and setters are useful, and add getters and setters to a class
- Explain what a static method is, and add a static method to a class
- Explain what github Organizations are, and why they are useful
- Create a github organization, and add a repo
- Collaborate using a Github Organization
- Use upstreams to keep your repo up to date with the organization repo