Skip to content

Instantly share code, notes, and snippets.

@delputnam
delputnam / play_sound.sh
Last active December 17, 2015 07:48
Shell script for Mac OS X to raise volume slightly, play an MP3, and lower the volume again. I use it with Alfred's workflows to trigger the sound when I press a certain key combination. It's really just for fun.
osascript -e "set Volume 3.5"
afplay ~/Dropbox/Sounds/itssofluffy.mp3
osascript -e "set Volume 1.25"
@delputnam
delputnam / windowHistorySupported.js
Created May 10, 2013 12:01
Determine if a browser supports window.history.pushState.
function windowHistorySupported() {
// If pushState is supported, return true, else return false.
return !!(window.history && window.history.pushState);
}
@delputnam
delputnam / wp-bootstrap-navbar-searchform.php
Created May 9, 2013 16:10
A Bootstrap navbar-compatible search form for use with Wordpress.
<form class="navbar-search pull-right" id="searchform" action="<?php echo home_url( '/' ); ?>">
<input type="text" class="search-query" placeholder="Search" value="" name="s" id="s">
</form>