Skip to content

Instantly share code, notes, and snippets.

# Build an Electronic Grocery List!
#Objectives
# 1. With your partner, talk about what you would like to do with your grocery list. Start each statement with "
# As a user, I want to ..." These are what we call "user stories."
# 2. Pseudocode with your partner. What objects, classes, and methods will you need to do each of the things you
# identified in your user stories?
# 3. Build the outline for your code and then write driver code at the bottom (to call the method on the object)
# 4. Fill in your outline to make your grocery list!
# 5. Submit your challenge!
@buck3000
buck3000 / 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>
<head>
<title>DOM manipulation with jQuery</title>
<!-- Add a link to jQuery CDN here script here -->
<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>
370 git clone https://github.com/buck3000/CLI-Obstacle-Course.git
371 cd CLI-Obstacle-Course/
372 ls
373 ls
374 mv images app/assets
375 ls
376 cd app
377 ls
378 cd assets/
379 ls
@buck3000
buck3000 / 0.2.1-boggle_class_from_methods.rb
Last active August 29, 2015 13:55 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1boggle class challenge
class BoggleBoard
attr_accessor :dice_grid
def initialize(dice_grid)
@dice_grid = dice_grid
end
def create_word(coords)
array =[]
coords.each_index do |c|