This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# determines if your repo is grunt or gulp and builds accordingly | |
# (using default target unless you provide one) then | |
# returns to the previous working path. | |
gb () { | |
cd "$(git rev-parse --show-toplevel)"; | |
if [[ -n `find ./ -maxdepth 1 -iname gulpfile.js` ]]; | |
then gulp build; | |
elif [[ -n `find ./ -maxdepth 1 -iname gruntfile.js` ]]; | |
then grunt build; | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require = function a(b, c, d) { | |
function e(g, h) { | |
if (!c[g]) { | |
if (!b[g]) { | |
var i = "function" == typeof require && require; | |
if (!h && i) return i(g, !0); | |
if (f) return f(g, !0); | |
var j = new Error("Cannot find module '" + g + "'"); | |
throw j.code = "MODULE_NOT_FOUND", j | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url("//hello.myfonts.net/count/2dc302"); | |
@import url("//hello.myfonts.net/count/2dc302"); | |
@import url("//hello.myfonts.net/count/2dc302"); | |
@import url("//hello.myfonts.net/count/2dc302"); | |
@font-face{font-family:'schoolbook-web', serif; | |
font-weight:normal; | |
font-style:normal | |
} | |
@font-face{font-family:'FilmotypeGlenlake';src:url("/assets/fonts/filmotype-glenlake.otf");font-weight:normal;font-style:normal}@font-face{font-family:'SouthernAire';src:url("/assets/fonts/2DC302_1_0.eot");src:url("/assets/fonts/2DC302_1_0.eot?#iefix") format("embedded-opentype"), | |
url("/assets/fonts/2DC302_1_0.woff2") format("woff2"), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<header> | |
<h1>Anyone have an invite?</h1> | |
Nathan St. Pierre (<a href="http://dribbble.com/NateDSaint">natedsaint</a>) | |
</header> | |
<section> | |
<article> | |
<p class="line one"> | |
</p> | |
<p class="line two"> | |
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" set title | |
set title | |
" set cgi to read as perl | |
au BufNewFile,BufRead *.cgi setf perl | |
set mouse=a | |
nmap <C-W>e :new \| vimshell bash<CR> | |
nmap <C-W>E :vnew \| vimshell bash<CR> | |
" enable syntax highlighting | |
syntax on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Vim color file | |
" Name: herald.vim | |
" Author: Fabio Cevasco <[email protected]> | |
" Modified: More readable 256-color xterm version by Nathan St. Pierre <[email protected]> | |
" Version: 0.2.0 | |
" Notes: Supports 8, 16, 256 and 16,777,216 (RGB) color modes | |
hi clear | |
if exists("syntax_on") |