Skip to content

Instantly share code, notes, and snippets.

View Bigspencey's full-sized avatar

Spencer Smitherman Bigspencey

View GitHub Profile

Include an inline screenshot of your codeschool's points from the profile page:

QUIZ

Explain which tabs support the following actions and how.

Realtime editing of HTML and CSS Javascript Debugging Performance Optimization What's the quick key for your OS to spawn the Dev Tools inspector?

Include an inline screenshot of your codeschool's points from the profile page:

QUIZ

Explain which tabs support the following actions and how.

Realtime editing of HTML and CSS Javascript Debugging Performance Optimization What's the quick key for your OS to spawn the Dev Tools inspector?

@Bigspencey
Bigspencey / file.js
Last active December 31, 2015 07:08
/*
In this challenge you will be creating a series of variables.
The values of the variables will be different types of JavaScript
objects.
Below you will find driver code. Run the code in this file either
from the command line using Node.js or by pasting the code of this
entire file into your browser console. All tests will log 'true'
in the console when they pass--false, otherwise.
@Bigspencey
Bigspencey / 0.2.1-boggle_class_from_methods.rb
Last active December 30, 2015 04:59 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1 boggle class challenge
class BoggleBoard
def initialize(dice_grid)
@dice_grid = dice_grid
end
def create_word(board, *coords)
coords.map { |coord| board[coord.first][coord.last] }.join("")
end