Skip to content

Instantly share code, notes, and snippets.

View cdelauder's full-sized avatar

Chris DeLauder cdelauder

View GitHub Profile
@cdelauder
cdelauder / index.html
Created October 7, 2014 02:29
fixed header width problem
<html>
<head>
<title>some name</title>
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab:300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="public/css/normalize.css">
<link rel="stylesheet" media='(max-width : 800px)'href="public/css/stylesheet-sm.css">
<link rel="stylesheet" media='(min-width : 1100px)'href="public/css/stylesheet.css">
<link rel="stylesheet" media='(max-width : 1100px)'href="public/css/stylesheet-mid.css">
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src='public/javascripts/jquery-1.11.1.min.js'></script>
@cdelauder
cdelauder / jquery_example.html
Last active August 29, 2015 13:58 — 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>
@cdelauder
cdelauder / 0.2.1-boggle_class_from_methods.rb
Last active August 29, 2015 13:56 — 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(*coords)
coords.collect { |coord| @board[coord.first][coord.last]}.join("")
end