Arrangement by Henrique Gogó
| Gm7 F#° | A° Gm7 |
| Gm7 A°5+ | Bb46(11) C469 | Gm7 F#° | Bb469 A° (D7) |
| $.fn.extend({ | |
| whenNotEmpty: function (callback) { | |
| var element = $(this); | |
| var loadListen = setInterval(function () { | |
| var conteudoLength = $.trim(element.html()).length; | |
| if (conteudoLength > 0) { | |
| clearInterval(loadListen) | |
| if (callback) { callback(); }; | |
| }; | |
| }, 100); |
| VBoxManage setextradata global GUI/Customizations noMenuBar,noStatusBar |
| sudo apt-get --no-install-recommends PACKAGE |
| var o = { | |
| set item (str) { | |
| return this.log[this.log.length] = str; | |
| }, | |
| get item () { | |
| if (this.log.length > 0) { | |
| return this.log[this.log.length - 1]; | |
| } | |
| else { | |
| return null; |
| [alias] | |
| lg = log --format='%Cred%h %Creset%s (%Cgreen%an%Creset) - %Cblue%cr' --graph |
| gem list | cut -d" " -f1 | xargs gem uninstall -aIx |
| git checkout -b BRANCH_NAME origin/BRANCH_NAME |
| import readline, rlcompleter | |
| readline.parse_and_bind("tab: complete") |
| rvm install ruby-1.9.3 --with-gcc=clang |