Skip to content

Instantly share code, notes, and snippets.

View zachkarst's full-sized avatar

Zach Karst zachkarst

View GitHub Profile
@zachkarst
zachkarst / jquery_example.html
Created April 10, 2014 09:47 — forked from dbc-challenges/jquery_example.html
Intro to jQuery for Phase 0
<!DOCTYPE html>
<html>
<head>
<title>DOM manipulation with jQuery</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery_example.js"></script>
</head>
<body>
@zachkarst
zachkarst / phase0_week4_boggle_class_solo.rb
Created February 23, 2014 21:29 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
Phase 0, Week 4: Boogle Class Solo Challenge boggle class challenge
#STEPS: create BoggleBoard class, move methods from previous challenge
#into class and update arguments to accomplish change from procedural
#to object-oriented design.
class BoggleBoard
def initialize(board)
@board = board
end