Skip to content

Instantly share code, notes, and snippets.

View reboryan's full-sized avatar
🏠
Working from home

Ryan Rebo reboryan

🏠
Working from home
View GitHub Profile
@reboryan
reboryan / 0_reuse_code.js
Created May 15, 2014 15:19
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
@reboryan
reboryan / jquery_example.md
Last active August 29, 2015 13:57 — forked from dbc-challenges/jquery_example.html
Jquery Manipulation

##Link to the page

<!DOCTYPE html>
<html>

<head>
   
    <title>DOM manipulation with jQuery</title>
@reboryan
reboryan / 0.2.1-boggle_class_from_methods.rb
Created February 1, 2014 20:59 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1boggle class challenge
@dice_grid = [["b", "r", "a", "e"],
["i", "o", "d", "t"],
["e", "c", "l", "r"],
["t", "a", "k", "e"]]
class BoggleBoard
def initialize(dice_grid)
@dice_grid = dice_grid