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
| [alias] | |
| ll = "log -10 --oneline" | |
| nicelog = "log -10 --format='%C(yellow)%h%Creset %C(magenta)%an%Creset %C(blue)%ad%Creset %s' --date=short" |
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
| [xdebug] | |
| xdebug.file_link_format="phpstorm://%l&&%f" |
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
| (function() { | |
| var timerId = null, | |
| waitingTime = 2000, | |
| selector = 'input[type="text"],textarea', | |
| isValid = function(keycode) { | |
| return (keycode > 47 && keycode < 58) || // number keys | |
| keycode == 32 || keycode == 13 || // spacebar & return key(s) (if you want to allow carriage returns) | |
| (keycode > 64 && keycode < 91) || // letter keys | |
| (keycode > 95 && keycode < 112) || // numpad keys | |
| (keycode > 185 && keycode < 193) || // ;=,-./` (in order) |
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
| #!/bin/sh | |
| GIT_BARE_DIR="/var/repo/tccapp.git" | |
| GIT_WORK_TREE="/var/www/tcc.dbiagi.com.br" | |
| echo "Ok, lets build the app ...." | |
| echo "" | |
| if [ ! -d $GIT_WORK_TREE ]; then | |
| echo "Creating working dir" |