Skip to content

Instantly share code, notes, and snippets.

View devilshaircut's full-sized avatar

Jason B. devilshaircut

View GitHub Profile
<!-- <input id="new-to-do" type="test" />
<button onclick="myFunction()">Click Me!</button>
<ul id="to-do">
</ul>
<script src="test.js"></script>-->
var tasks = [ "Drink Coffee", "Eat Donuts", "Go to Gym" ];
var loadTasks = function(myTasks) {
for (var i=0; i < myTasks.length; i++) {
$("#to-do").append("<li>" + myTasks[i] + "</li>");
}
@devilshaircut
devilshaircut / gist:dc132d270cd103aa3b5d
Last active August 29, 2015 14:20
Two letter words?
var alphabet = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"];
var vowels = ["a", "e", "i", "o", "u", "y", "h"];
var numberOfWords = 0;
var words = [];
var populatePossibilities = function(base) {
var newPossibilities = [];
var baseLength = base.length;
csemjacobs
7:26 Okay, I'm going to head out in a few mins but since I got this topic started. Time to end it with some quick questions.
7:26 1 question per person please.
grimlock
7:26 42
jaironkalach
7:26 pulls up his list and looks for a quick one.
indy
7:26 yellow
7:26 no, blue!
@devilshaircut
devilshaircut / Hamburger Menu Touch Device Settings
Last active December 28, 2015 07:09
Hamburger Menu Touch Device Settings
<meta name=”viewport” content=”width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no” />
@import "compass/reset"; // As with all projects, override ludicrous browser default styles.
@import "compass/css3"; // We will use some CSS3 transitions (among other things) to make the interface more usable.
body.nav-expanded {
#page-content {
left: 75%;
}
#hamburger-icon {
left: 75%;
}
}
<div id="page-content">
<h3>A Header</h3>
<p>A Paragraph</p>
</div>
<!-- #page-content -->
<div id="hamburger-icon">
Hamburger.
</div>
<!-- #hamburger-icon -->
nav {
display: block;
width: 100%;
height: 50px;
padding: 0 100px;
margin: 0 0 20px 0;
line-height: 50px;
background: #cccccc;
position: fixed;
z-index: 7;
#hamburger-icon {
display: none;
float: left;
width: 100%;
height: 50px;
margin: 0 0 20px 0;
padding: 0 20px;
line-height: 50px;
background: #cccccc;
cursor: pointer;