Skip to content

Instantly share code, notes, and snippets.

View zcaceres's full-sized avatar
👨‍💻
programming

Zach Caceres zcaceres

👨‍💻
programming
View GitHub Profile
@zcaceres
zcaceres / Express.js.md
Last active March 7, 2017 13:57
notes from March 6, 2017 FSA on Express.js
@zcaceres
zcaceres / Intro-To-Schema-Design.md
Created March 8, 2017 23:36
Intro to Schema Design – FSA 1702 – March 8, 2017

Intro to Schema Design

A representation of a plan or theory in the form of an outline or model.

1. Design Process

2. Examples


1. Design

Designing your schemas is perhaps even more important than writing SQL!

@zcaceres
zcaceres / Express-Workshop-Concepts.md
Last active March 9, 2017 00:29
concepts to review from Express workshop

Express Material (high priority)

HTTP communication

Common methods & their standard meanings The req-res cycle Components of a request or response

Installing Express

Instantiating an express app

Registering and using middleware

@zcaceres
zcaceres / Node-Postgres.md
Created March 9, 2017 17:34
Notes from FSA Lecture on Node-Postgres, FSA 1702, March 9, 2017

Node-Postgres

FSA March 9, 2017

RDBMSs, Database Drivers, and Persistent Applications

1. Intro & History

2. Using Postgres


1. Intro & History

@zcaceres
zcaceres / Intro-To-SQL-Databases.md
Last active March 9, 2017 23:01
Intro to SQL Databases – FSA – March 8, 2017

Intro to SQL Databases

Keeping your data persistent over time is a harder problem than it seems!

1. What is a Database?
2. SQL

1. What is a Database?

@zcaceres
zcaceres / Practical-Promises.md
Last active March 10, 2017 20:54
A Pithy Primer, Using Libraries to Make and Manage Promises – FSA 1702, March 10, 2017

Practical Promises

March 10, 2017 A Pithy Primer – Using Libraries to Make and Manage Promises

Your Promise Mantra: Whenever you get a promise and wonder what do with it. I should think .then(function)

1. Blocking, Non-Blocking, Callback Hell

2. Promises To The Rescue

@zcaceres
zcaceres / Databases-and-ORMS.md
Last active March 13, 2017 13:13
Intro to Sequelize – March 10, 2017, FSA 1702

Databases and ORMS

March 10, 2017, FSA 1702

1. Review


1. Review

ACID – Good principles for transactions in a database.

  • Atomicity: All or Nothing
  • Consistency: Valid status before and after (rules)
@zcaceres
zcaceres / Testing-Wikistack.md
Created March 14, 2017 15:50
testing wikistack notes

Testing (Wikistack)

1. Don't become a Horror Story

2. How to Start


A Brief History of Testing:

People (a script) ==> Macros (automated scripts) ==> Unit Testing (starting 1990's)

1. Don't become a horror story

@zcaceres
zcaceres / Mechanics-of-Promises.md
Created March 15, 2017 17:08
understanding the behavior of promises under multiple conditions – FSA 1702 - March 15, 2017

Mechanics of Promises

Understanding Javascript Promise Generation & Behavior

1. Good Old Promises

2. The Magic of Promises


1. Good Old Promises

Explain the behavior of promises under multiple conditions. Build my own promise library

@zcaceres
zcaceres / HTML-CSS-SCSS-Shoestring.md
Last active March 16, 2017 16:37
Layout Laid Out – FSA 1702 – March 16, 2017

HTML/CSS/SCSS Shoestring

Layout Laid Out – FSA 1702 – March 16, 2017

1. Layout

2. SCSS


1. Layout

Layout is where Html (content) and CSS (style) meet.