Skip to content

Instantly share code, notes, and snippets.

@dccanter
dccanter / 0_reuse_code.js
Created February 3, 2014 07:47
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
@dccanter
dccanter / new.html
Created April 23, 2013 22:46
boiler
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
@dccanter
dccanter / who-stops-at-third.html
Created April 22, 2013 03:58
Who stops at third?
<div class="fb-like" data-href="http://www.kickballcolorado.org" data-send="false" data-width="470" data-show-faces="true" data-font="tahoma" data-colorscheme="dark"></div>
</div><
@dccanter
dccanter / who-stops-at-third.html
Created April 13, 2013 23:28
Who-Stops-At-Third
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>
Kickball Colorado
</title>
<link rel="shortcut icon" href="../favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Colorado Kickball Classic. Join our kickball fundraiser, find out about Colorado Kickball leauges and teams.">
@dccanter
dccanter / Custom.css
Created April 10, 2013 15:45
Chrome Dev Tools Stylesheet (Monokia Based)
/**********************************************/
/*
/* mnml Theme for Chrome DevTools by Michael P. Pfeiffer
/*
/* Based on a Gist by Ben Truyman. Further attr:
/* https://gist.github.com/3040634
/*
/**********************************************/
#-webkit-web-inspector ::selection {
background: #888;
@dccanter
dccanter / Default (Windows).sublime-keymap
Created April 10, 2013 05:59
Sublime User Keybindings
[ { "keys": ["ctrl+k", "ctrl+m"], "command": "toggle_side_bar" },
{ "keys": ["ctrl+shift+m"], "command": "show_overlay", "args": {"overlay": "command_palette"}},
{ "keys": ["ctrl+shift+7"], "command": "reopen_last_file" },
{ "keys": ["ctrl+alt+u"], "command": "soft_undo" },
{ "keys": ["shift+backspace"], "command": "right_delete" },
{ "keys": ["ctrl+alt+shift+w"], "command": "close_all" },
{
"keys": [
"ctrl+alt+o"
Sublime Text
Ctrl+k+m toggle side bar
Ctrl+shift+m command palette
Ctrl+shift+7 reopen last file
Ctrl+alt+u soft undo
Shift+backspace right delete
Ctrl+alt+shift+w close all tabs - working tab
Ctrl+space Show Completions!