Skip to content

Instantly share code, notes, and snippets.

# This is my title
here is a paragraph talking about my project
- feature 1
- feature 2
Here is a link to my erd: link
here is my trello board
@Shurlow
Shurlow / development-environment.md
Last active February 7, 2018 17:27
Development Environment Instructor Notes

Development Environment Instructor Notes

Objectives.

  • Describe what Homebrew is
  • Use Homebrew to install command-line tools
  • Install development tools including Node, Atom and Git

What is Homebrew?

Turn to your neightbor and discuss what Homebrew is in your own words.

@Shurlow
Shurlow / environment-variables.md
Last active February 7, 2018 16:45
Environment Variables Instructor Notes

Environment Variables Instructor Notes

Objectives

  • Descibe what an evironment variable is
  • Read environment variables
  • Create environment variables
  • Create environment variables that persist accross terminal session

What is an environment variable?

@Shurlow
Shurlow / javascript-workflow.md
Last active February 7, 2018 18:49
JavaScript Workflow Instructor Notes
@Shurlow
Shurlow / accumulator-pattern.md
Last active September 22, 2022 11:52
Accumulator Pattern Instructor Notes

Accumulator Pattern Instructor Notes

Objectives

  • Identify the parts of the Accumulator Pattern
  • Use the Accumulator Pattern to solve common problems

What is the Accumulator Pattern

Here is an example of the Accumulator Pattern in action:

@Shurlow
Shurlow / this.md
Last active September 22, 2022 11:52

this keyword

Objectives

  • Explain the difference between a function and a method
  • Create basic objects with methods
  • Explain what the this keyword is
  • Use call/bind to mantain this context
  • Use es6 arrow functions to preserve this context

Guiding Questions

@Shurlow
Shurlow / 01_layout.md
Last active October 2, 2018 04:28
Layout Lesson Notes

CSS Layout Notes

Objectives

  • Use display properties to create dynamic layouts
  • Use flebox properties to create dynamic layouts

The display property

Most commmon values include:

  • block
@Shurlow
Shurlow / custom-data-structures.md
Last active December 13, 2018 17:30
Lesson on creating custom data structures

Custom Data Structures

Objectives

  • Explain what a data structure is
  • Use JavaScripts Map data structure
  • Use JavaScripts Set data structure
  • Build a custom data structure

Explain what a data structure is

@Shurlow
Shurlow / stacks-queues.md
Last active March 6, 2018 17:39
Lesson notes on stacks and queues

Stacks and Queues Instructor Notes

Objectives

  • Describe what a stack is
  • Define methods on a stack
  • Implement push method on a stack
  • Describe what a queue is
  • Define methods on a queue
  • Implement enqueue method on a queue
@Shurlow
Shurlow / react-components.md
Last active March 14, 2018 10:04
Lesson Notes on React Components

React Components

  • Describe what a component is
  • Identify componets of a website
  • Functional vs Class Components
  • Component composition
  • Props
  • JSX mapping over collection

Describe & Identify Components