See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| <?php | |
| # Fill our vars and run on cli | |
| # $ php -f db-connect-test.php | |
| $dbname = 'name'; | |
| $dbuser = 'user'; | |
| $dbpass = 'pass'; | |
| $dbhost = 'host'; | |
| $link = mysqli_connect($dbhost, $dbuser, $dbpass) or die("Unable to Connect to '$dbhost'"); |
| sudo apt-get purge php5-common -y | |
| #sudo apt-get install php7.0 php7.0-fpm php7.0-mysql -y | |
| sudo apt-get install -y \ | |
| php \ | |
| libapache2-mod-php \ | |
| php-fpm \ | |
| php-mysql \ | |
| php-memcached \ | |
| php-pear \ |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
| # UPDATE: Ruby 2.0.0 https://docs.ruby-lang.org/en/2.0.0/Kernel.html#method-i-__dir__ | |
| # $ ruby -v | |
| # ruby 2.6.3p62 (2019-04-16 revision 67580) [x86_64-darwin18] | |
| # $ pwd | |
| # /Users/dev/Documents/Github/Gists/awesome/ | |
| # $ echo "puts __dir__" > how-to-get-the-directory-of-the-current-file-using-ruby-2-0-0.rb | |
| # $ cat how-to-get-the-directory-of-the-current-file-using-ruby-2-0-0.rb | |
| # puts __dir__ | |
| # $ ruby how-to-get-the-directory-of-the-current-file-using-ruby-2-0-0.rb |
Press minus + shift + s and return to chop/fold long lines!
| /* Flatten das boostrap */ | |
| .well, .navbar-inner, .popover, .btn, .tooltip, input, select, textarea, pre, .progress, .modal, .add-on, .alert, .table-bordered, .nav>.active>a, .dropdown-menu, .tooltip-inner, .badge, .label, .img-polaroid { | |
| -moz-box-shadow: none !important; | |
| -webkit-box-shadow: none !important; | |
| box-shadow: none !important; | |
| -webkit-border-radius: 0px !important; | |
| -moz-border-radius: 0px !important; | |
| border-radius: 0px !important; | |
| border-collapse: collapse !important; | |
| background-image: none !important; |