Skip to content

Instantly share code, notes, and snippets.

View coopers's full-sized avatar

Chris Cooper coopers

View GitHub Profile
@coopers
coopers / SASS
Last active August 29, 2015 14:02
SASS Introduction
SASS makes writing CSS beautiful.
# here's a simple example of driving your design using tests.
# by running this code and solving the failing tests one by one
# you should be able to finish this challenge easily.
# ask for help if you get stuck.
# consider all the questions (Q:) as you encounter them
# in this universe ...
# - people own pets
# - pets eat and walk
@coopers
coopers / jquery_example.html
Created February 21, 2014 20:46 — forked from dbc-challenges/jquery_example.html
Intro to jQuery for Phase 0
<!DOCTYPE html>
<html>
<head>
<title>DOM manipulation with jQuery</title>
<!-- Add a link to jQuery CDN here script here -->
<script type="text/javascript" src="jquery_example.js"></script>
</head>
<body>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="robots" content="no index" />
<title>Chris Cooper</title>
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/normalize.css" type="text/css" media="screen">
</head>
<body>
@coopers
coopers / simple_form.html
Created February 10, 2014 05:38
Simple Form, Dev Bootcamp Medical Form
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Dev Bootcamp Medical Form</title>
</head>
<body>
<form action="#" method="POST" name="dev_bootcamp_medical_form">
<fieldset>
<legend>Required Information</legend>
@coopers
coopers / simple_form.html
Created February 10, 2014 05:38
Simple Form, Dev Bootcamp Medical Form
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Dev Bootcamp Medical Form</title>
</head>
<body>
<form action="#" method="POST" name="dev_bootcamp_medical_form">
<fieldset>
<legend>Required Information</legend>
@coopers
coopers / 0.2.1-boggle_class_from_methods.rb
Last active January 3, 2016 02:19 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1 boggle class challenge
=begin
Overview
Create a class BoggleBoard that includes the functionality of your methods from the previous challenge.
To do this, take a look at the methods you've created. How can they be integrated into your BoggleBoard class? What needs to change?
Remember to Enter the collaboration hangout. Please turn off your video and sound. Use the chat function.
1) Instantiate a new board object