Skip to content

Instantly share code, notes, and snippets.

@tlicata
tlicata / PreworkQuiz.md
Created September 29, 2014 15:58
Prework Quiz

##Command Line Basics

What are the terminal commands to:

  • Create a new folder called "Blah"
Your answer goes here
  • Move into the newly created "Blah" folder
@tlicata
tlicata / index.js
Created July 28, 2014 20:22
Sequelize In-Class Example
var Sequelize = require("sequelize");
var sequelize = new Sequelize("social_app", null, null, {
dialect: "postgres",
port: 5432
});
var Animal = sequelize.define("animal", {
name: Sequelize.STRING,
location: Sequelize.STRING
@tlicata
tlicata / intro_to_functions_lab.md
Created July 9, 2014 18:55
Lab for Intro to Functions

Functions - Problem Set

Say Hello

Write a function called sayHello. The function should console log

Hello World