Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery.min.js"></script>
<link href="http://getbootstrap.com/dist/css/bootstrap.css" rel="stylesheet" type="text/css" />
<script src="http://getbootstrap.com/dist/js/bootstrap.js"></script>
<meta charset="utf-8">
<title>Good Time Calculator</title>
</head>
<body>
@judsonmitchell
judsonmitchell / 0_reuse_code.js
Created February 16, 2014 15:18
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console

tmux cheatsheet

As configured in my dotfiles.

start new:

tmux

start new with session name:

@judsonmitchell
judsonmitchell / index.js
Created September 2, 2014 13:49
requirebin sketch
// example using the raf module from npm. try changing some values!
var requestAnimationFrame = require("raf")
var canvas = document.createElement("canvas")
canvas.width = 500
canvas.height = 500
document.body.appendChild(canvas)
var context = canvas.getContext("2d")
@judsonmitchell
judsonmitchell / dorenkamp-index.html
Last active August 29, 2015 14:14
Fixes to Donald Dorenkamp's html homework
<html>
<head>
<meta charset="utf-8">
<title>Js Bin</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<h1> Law School Clinic </h1>
<h2> By Donnie Dorenkamp </h2>
<h3> Clinic Assignment </h3>
@judsonmitchell
judsonmitchell / style.css
Last active August 29, 2015 14:14
Dorenkamp's css file as submitted
P {color: red;
font-family:arial;
font-size:18pt;
text-align:justify;
}
textarea {height: 20px; width:40px; border: 5px solid blue}
@judsonmitchell
judsonmitchell / index.html
Last active August 29, 2015 14:14
Ranchaela Ward's HTML homework
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Loyola Law Tech Clinic Assignment</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>Law Tech Assignment</h1>
@judsonmitchell
judsonmitchell / style.css
Last active August 29, 2015 14:14
R. Ward's HTML homework.
body {background-color:white;border-style: double; border-color: brown}
h1 {color:Purple; font-family: baskerville; font-size: 30px;height: 10px;width: 400px}
h2 {color: Gold;font-family: cambria; font-size:27px}
h3{color: green; font-family: lucida calligraphy; font-size:15px}
h4{text-align:center}
p {color:maroon; text-align: justify}
@judsonmitchell
judsonmitchell / index.html
Last active August 29, 2015 14:14
Danilo Bandovic's HTML homework
<!DOCTYPE html>
<!--
Created using JS Bin
http://jsbin.com
Copyright (c) 2015 by anonymous (http://jsbin.com/xidokexuxi/1/edit)
Released under the MIT license: http://jsbin.mit-license.org
-->
<html>
@judsonmitchell
judsonmitchell / index.html
Last active August 29, 2015 14:15
James Folsom's HTML Homework
<!DOCTYPE html>
<html>
<head>
<link rel=”stylesheet” type=”text/css” href=”style.css” />
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<h1>WELCOME Y'ALL!</h1>