Skip to content

Instantly share code, notes, and snippets.

View jakebresnehan's full-sized avatar
👋

Jake Bresnehan jakebresnehan

👋
View GitHub Profile
/*! ******************************
Handlebars helpers
*******************************/
// debug helper
// usage: {{debug}} or {{debug someValue}}
// from: @commondream (http://thinkvitamin.com/code/handlebars-js-part-3-tips-and-tricks/)
Handlebars.registerHelper("debug", function(optionalValue) {
console.log("Current Context");
console.log("====================");
<?php
/**
* _s Theme Options
*
* @package _s
* @since _s 1.0
*/
/**
* Register the form setting for our _s_options array.
YouTube Video
https://www.youtube.com/watch?v=bP7vggHJLVM
YouTube Playlist
https://www.youtube.com/playlist?list=PL75C7F02E0C4EA3E0
Twitter Tweet
https://twitter.com/google/status/590225864421482498
blip.tv Video
@jakebresnehan
jakebresnehan / rkv-admin-links.php
Last active August 29, 2015 14:27 — forked from norcross/rkv-admin-links.php
create links in the WP admin bar for development
@jakebresnehan
jakebresnehan / .vimrc
Created March 29, 2016 22:39 — forked from mrmrs/.vimrc
My .vimrc file
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
set runtimepath+=~/.vim/bundle/ultisnips
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'sjl/gundo.vim'