Skip to content

Instantly share code, notes, and snippets.

View SoftwareMaven's full-sized avatar

Travis Jensen SoftwareMaven

View GitHub Profile
@SoftwareMaven
SoftwareMaven / autocounter.js
Created November 20, 2012 01:40
jEditable autocounter plugin (combination of autogrow and charcounter plugins)
/*
* A combination of jquery.editable's charcounter and autogrow plugins.
*/
$.editable.addInputType('autocounter', {
element : function(settings, original) {
var textarea = $('<textarea />');
if (settings.rows) {
textarea.attr('rows', settings.rows);
} else {
textarea.height(settings.height);
@SoftwareMaven
SoftwareMaven / HomebrewR15BFailure.txt
Created April 8, 2012 01:45
Homebrew Erlang R15B build fail
==> Downloading https://github.com/erlang/otp/tarball/OTP_R15B
Already downloaded: /Users/travis/Library/Caches/Homebrew/erlang-R15B.tgz
/usr/bin/tar xf /Users/travis/Library/Caches/Homebrew/erlang-R15B.tgz
==> ./otp_build autoconf
./otp_build autoconf
***************************************************
***************************************************
*** WARNING: System might fail to configure or
*** might be erroneously configured
*** since autoconf version 2.68 is used
@SoftwareMaven
SoftwareMaven / hack.sh
Created March 31, 2012 18:05 — forked from erikh/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2267231/hack.sh | sh
#