Skip to content

Instantly share code, notes, and snippets.

JavaScript Functions

I can explain the difference between function declarations and function expressions.

Yes

I can explain what the value of this is in a normal function.

Yes

Array Prototype Methods

I understand that functions in JavaScript can take any number of arguments.

Yes

I can describe the similarity between blocks in Ruby and anonymous functions in JavaScript.

Yes

Where are the methods available to all arrays (e.g. forEach, map, etc.) defined?

Getting Started With Phoenix

Intro (~10min)

  • What is Phoenix?
  • Why use it?

Set Up (~5min)

  • Install Elixir & Phoenix
@patwey
patwey / dbs_models_and_relationships_in_rails.md
Created October 28, 2015 00:11
Migrations, Databases, Models, and Relationships in Rails

Migrations, Databases, Models, and Relationships in Rails

Types of Relationships

  • One-to-One: One brain belongs to one person
  • One-to-Many: One cow has many stomachs
  • Many-to-Many: Many ideas belong to many people

Databases in Rails Apps

@patwey
patwey / concurrent_computing_outline.md
Last active October 27, 2015 04:03
Concurrent Computing Lightning Talk Outline

Concurrent Computing

What is it?

  • Computations executing during overlapping time periods
  • A computation can make progress without waiting for the other computations to complete

Parallel vs. Concurrent

  • Parallel: multiple components executing at exactly the same time