Skip to content

Instantly share code, notes, and snippets.

@Oppenheimer1
Oppenheimer1 / jquery_example.html
Last active August 29, 2015 13:57 — forked from dbc-challenges/jquery_example.html
Intro to jQuery for Phase 0
<!DOCTYPE html>
<html lang="en">
<head>
<title>DOM manipulation with jQuery</title>
</head>
<body>
<h1> Hello. Welcome to the jQuery DOM Manipulation Challenge! </h1>
<h2>Now you see me.</h2>
<div class="mascot">
<h1 class="dfly"> My DBC Mascot </h1>
@Oppenheimer1
Oppenheimer1 / 0.2.1-boggle_class_from_methods.rb
Last active January 4, 2016 21:29 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1boggle class challenge
class BoggleBoard
def initialize (board)
@board=board
end
def create_word(board, *coords)
coords.map { |coord| @board[coord.first][coord.last]}.join("")
end