This file contains hidden or 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
/* | |
* 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); |
This file contains hidden or 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
==> 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 |
This file contains hidden or 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
#!/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 | |
# |