Skip to content

Instantly share code, notes, and snippets.

View travm's full-sized avatar
😱

Travis Maynard travm

😱
View GitHub Profile
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}
@travm
travm / html.sublime-snippet
Last active December 20, 2015 02:39
HTML Snippet for Sublime Text 2
<snippet>
<content><![CDATA[
<!doctype html>
<html lang="en">
<head>
<title>${1}</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="description" content="${2}" />
@travm
travm / wvu-colors-sass
Last active December 20, 2015 15:39
WVU Official Web Color Palette (SASS)
/* WVU Official Color Palette */
$gold: #eeb111;
$blue: #00447c;
$alt-blue: #005daa;
$sec-yellow: #ffe894;
$sec-lightblue: #a0c4da;
$sec-blue: #0079c1;
$sec-darkblue: #27318b;
$sec-orange: #d9531e;
@travm
travm / Fetch.sublime-settings
Last active December 21, 2015 00:59
NetTuts+ Fetch Package Settings for Sublime Text
{
"files":
{
"blueprint-ie": "https://raw.github.com/joshuaclayton/blueprint-css/master/blueprint/ie.css",
"blueprint-screen": "https://raw.github.com/joshuaclayton/blueprint-css/master/blueprint/screen.css",
"hotkeys": "https://raw.github.com/tzuryby/jquery.hotkeys/master/jquery.hotkeys.js",
"jquery": "http://code.jquery.com/jquery.min.js",
"jquery-placeholder": "https://raw.github.com/mathiasbynens/jquery-placeholder/master/jquery.placeholder.min.js",
"markdown": "https://raw.github.com/michelf/php-markdown/master/markdown.php",
"money.js": "http://josscrowcroft.github.com/money.js/money.min.js",
@travm
travm / wvu-colors-myth
Created January 29, 2014 14:45
WVU Official Web Color Palette (Myth)
/* WVU Official Color Palette */
:root {
var-gold: #eeb111;
var-blue: #00447c;
var-alt-blue: #005daa;
var-sec-yellow: #ffe894;
var-sec-lightblue: #a0c4da;
var-sec-blue: #0079c1;
var-sec-darkblue: #27318b;
@travm
travm / vagrantfile-kirby
Last active February 19, 2016 21:12
Vagrantfile for Kirby (http://getkirby.com)
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
# Box
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
# Forwarded Ports
@travm
travm / DB16.gpl
Created August 19, 2015 13:39
DB16 Color Palette for GIMP (.gpl)
GIMP Palette
Name: DB16
Columns: 16
#
208 70 72 Color 1
68 36 52 Color 2
199 194 202 Color 3
78 74 78 Color 4
20 12 28 Color 5
48 52 109 Color 6
@travm
travm / DB16.pal
Created August 19, 2015 13:40
DB16 Color Palette for JASC (.pal)
JASC-PAL
0100
16
208 70 72
68 36 52
199 194 202
78 74 78
20 12 28
48 52 109
89 125 206
@travm
travm / boi-easter-egg-seeds
Last active November 3, 2015 18:32
The Binding of Isaac: Rebirth/Afterbirth Easter Egg Seeds
# The Binding of Isaac: Rebirth/Afterbirth Easter Egg Seeds
30M1
N1TS
ALLE
GR0
ANDA
NTE
@travm
travm / writing-gulpfiles-with-es6-and-babel-6.md
Last active January 7, 2016 16:16
Writing Gulpfiles with ES6/2015 & Babel 6.0

Here's a quick tip to start writing your gulpfiles in ES2015 with Babel 6.0.

1. Rename Your Gulpfile

mv gulpfile.js gulpfile.babel.js

2. Install Babel Core & ES2015 Preset

npm install --save-dev babel-core babel-preset-es2015