Skip to content

Instantly share code, notes, and snippets.

View dbc-challenges's full-sized avatar

DBC Challenges dbc-challenges

View GitHub Profile
@dbc-challenges
dbc-challenges / 0_reuse_code.js
Created October 30, 2013 17:52
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@dbc-challenges
dbc-challenges / 0.2.1-boggle_class_from_methods.rb
Created October 31, 2013 05:06
phase 0 unit 2 week 1 boggle class challenge
class BoggleBoard
#your code here
end
dice_grid = [["b", "r", "a", "e"],
["i", "o", "d", "t"],
["e", "c", "l", "r"],
@dbc-challenges
dbc-challenges / jquery_example.html
Created December 14, 2013 18:44
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>