Skip to content

Instantly share code, notes, and snippets.

View DominicTremblay's full-sized avatar

Dominic Tremblay DominicTremblay

View GitHub Profile
1. Reading code
- Instructions
- Inputs
- Variables
- Outputs
2. Scopes
- Global scope
- Local scope
- Chaining scopes
@DominicTremblay
DominicTremblay / heroku_deployment.md
Created February 22, 2017 03:59 — forked from hora/heroku_deployment.md
Lighthouse Labs - Intro to Web Dev - W6D2 - Deploying Finstagram to Heroku

Deploying Finstagram to Heroku

These instructions will help you deploy your Finstagram app to Heroku (a web hosting service), so that the entire internet will be able to see and interact with your application! Before we get to deployment though, we need to make sure a couple of our files are setup properly.

Pre-Deployment: Edit Your Gemfile

Ensure your Gemfile file contains the following code (should match exactly).

source "https://rubygems.org"

gem 'rake'
gem 'activesupport'
@DominicTremblay
DominicTremblay / web_dev_cheatsheet.md
Created November 30, 2016 22:32 — forked from matt297/web_dev_cheatsheet.md
Lighthouse Labs - Intro to Web Dev - Cheat Sheet
@DominicTremblay
DominicTremblay / html
Created May 31, 2016 14:07 — forked from mikeislearning/html
JS Breakout - May.30, 2016
<!doctype HTML>
<html>
<head>
</head>
<body>
<h1>score:<span id="my-score">0</span> </h1>
<button class='score-increaser'>+++++++</button>
<script src='main.js'></script>
</body>