- Add the following CSS into
/usr/share/coderesources/app/out/vs/workbench/workbench.main.css
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
| # reference1: https://by-example.org/ubuntu-16-04-xenial-downgrade-php-7-to-php-5-6/ | |
| # reference2: https://askubuntu.com/questions/761713/how-can-i-downgrade-from-php-7-to-php-5-6-on-ubuntu-16-04/761735 | |
| # reference2 (recommended) | |
| sudo add-apt-repository ppa:ondrej/php | |
| sudo apt-get update | |
| sudo apt-get install php7.0 php5.6 |
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
| # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| #set -g default-terminal screen-256color | |
| set -g status-keys vi | |
| set -g history-limit 10000 |
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
| <?php | |
| // Snippet for Symfony 2 application that uses Doctrine 2 to handle transactions | |
| // It uses the names of the objects/doctrine repositories from the Beta 4 Manual of Symfony 2. | |
| // Get the entity manager | |
| $em = $this->getDoctrine()->getEntityManager(); | |
| // suspend auto-commit | |
| $em->getConnection()->beginTransaction(); |