Skip to content

Instantly share code, notes, and snippets.

View nickwhitt's full-sized avatar

Nick Whitt nickwhitt

  • Columbus, Ohio, USA
  • 20:31 (UTC -04:00)
View GitHub Profile
@nickwhitt
nickwhitt / locate.updatedb
Created June 7, 2012 02:48
Refresh Mac OS X locate database
sudo /usr/libexec/locate.updatedb
@nickwhitt
nickwhitt / export.js
Created June 6, 2012 22:29
Export form results by overriding default action
$('.export').click(function() {
var action = $('form').attr('action');
$('form').attr('action', '/path/to/export').submit().attr('action', action);
});