Skip to content

Instantly share code, notes, and snippets.

@kristynrb
kristynrb / w02d02_homework_solutions_supply.html
Created November 9, 2016 02:40
w02d02_homework_solutions - Supply - HTML file
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Supply</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<div id="sidebar">
@kristynrb
kristynrb / w02d02_homework_solutions.css
Created November 9, 2016 02:38
w02d02_homework_solutions - Supply - CSS file
/***********************************
For testing only
************************************/
/** {
border: 1px solid gold;
}*/
/***********************************
General
************************************/
@kristynrb
kristynrb / w02d03_morning_exercise_solution.js
Created November 8, 2016 16:52
w02d03_morning_exercise_solution_prime_numbers
////////////////////////////////////////////////
//Part One
///////////////////////////////////////////////
var isPrime = function(num) {
// Prime is any number greater than 1.
if (num < 2) { return false };
//First section, see if the number entered is evenly divisible by any number (other than 1).
//Second section, as per the instructions, you only need to test up to the square root of the number.
//third is just increasing the number that is checked each time.
@kristynrb
kristynrb / w02d03_homework_solutions.js
Last active November 8, 2016 15:31
w02d03_homework_solutions_LOTR
console.log('lotr homework solutions');
//////////////////////////////////////////////
// Let's make the land
//////////////////////////////////////////////
var lands = ["The Shire", "Rivendell", "Mordor"];
var makeMiddleEarth = function(lands) {
//create and append middle earth
var middleEarth = document.createElement("section");
@kristynrb
kristynrb / w01d04_homework.md
Created November 3, 2016 22:32
Homework for w01d04

ga

WDIR-MATRIX


Title: Javascript Practice
Type: Homework
Duration: "3:00 - 4:00"
Creator:
Original creators: WDI-BLT, WDI-Meeskeeks, WDIR-Panthalassa

@kristynrb
kristynrb / wdi-matrix_w01d01_homework.md
Last active October 31, 2016 21:42
wdi-matrix_w01d01_homework

ga

WDIR-MATRIX


Title: These are a Few of my Favorite Things
Type: Homework
Duration: "3:00"
Creator: WDI-Bowie
Adapted by: Kristyn Bryan

@kristynrb
kristynrb / wdi-matrix_w01d01_morning_lab.md
Created October 31, 2016 13:58
wdi-matrix_w01d01_morning_lab

ga

WDIR-MATRIX


Title: Introduction Work
Type: Lab
Duration: "1:30"
Creator:Kristyn Bryan & Matt Huntington
Course: WDIR-Matrix

@kristynrb
kristynrb / w01d04_morning_exercise.md
Last active May 18, 2016 19:59
w01d04 Morning Exercise

Morning Exercise

w01d04

Chrome Developer Tools

  1. Navagate to www.dropbox.com
  2. Open the Chrome developer tools by doing the following commands on your keyboard: Mac: command + option + j Windows: control + shift + j
  3. In the Chrome developer tool window, click on the tab that says Elements.