Skip to content

Instantly share code, notes, and snippets.

View papapoison's full-sized avatar

Stephen M. Buchanan papapoison

View GitHub Profile
@papapoison
papapoison / jquery_example.html
Created January 7, 2014 23:23 — 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 type="text/javascript" src="jquery_example.js"></script>
</head>
<body>
@papapoison
papapoison / jquery_example.html
Created January 7, 2014 22:07 — 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 type="text/javascript" src="jquery_example.js"></script>
</head>
<body>
@papapoison
papapoison / jquery_example.html
Created January 7, 2014 22:07 — 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 type="text/javascript" src="jquery_example.js"></script>
</head>
<body>
@papapoison
papapoison / gist:7967570
Created December 15, 2013 01:32
Solution for Command Line Obstacle Course
529 cd CLI-Obstacle-Course/
530 ls
531 mv images
532 mv images app
533 ls
534 cd app
535 ls
536 cd ..
537 cd app
538 ls
@papapoison
papapoison / 0.2.1-boggle_class_from_methods.rb
Last active December 29, 2015 11:59 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1 boggle class challenge
#Boggle Board class
class BoggleBoard
def initialize(board)
@board = board
end
def access(point1, point2)
puts @board[point1][point2]
@papapoison
papapoison / 0.2.1-boggle_class_from_methods.rb
Created November 26, 2013 23:03 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1 boggle class challenge
class BoggleBoard
#your code here
end
dice_grid = [["b", "r", "a", "e"],
["i", "o", "d", "t"],
["e", "c", "l", "r"],
@papapoison
papapoison / 0.2.1-boggle_class_from_methods.rb
Last active December 29, 2015 11:59 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1 boggle class challenge
#Boggle Board class
class BoggleBoard
def initialize(board)
@board = board
end
def access(point1, point2)
puts @board[point1][point2]