This file contains 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
<< homebrew apache http >> | |
DocumentRoot is /usr/local/var/www. | |
The default ports have been set in /usr/local/etc/httpd/httpd.conf to 8080 and in | |
/usr/local/etc/httpd/extra/httpd-ssl.conf to 8443 so that httpd can run without sudo. | |
To restart httpd after an upgrade: | |
brew services restart httpd |
This file contains 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
In /etc/lightdm/lightdm.conf, | |
Set as follows: | |
xserver-command=X -dpi 96 | |
Reboot and you're ready to go. |
This file contains 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
edit in settings.json (vscode) | |
"php.validate.executablePath": "/opt/lampp/bin/php" | |
{ | |
"editor.fontLigatures": false, | |
"editor.fontFamily": "Menlo for powerline", | |
"php.validate.executablePath": "/opt/lampp/bin/php" | |
} |
This file contains 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
download https://nodejs.org/dist/v12.16.2/node-v12.16.2-linux-x64.tar.xz | |
$ cd Downloads/ | |
$ tar -xJvf node-v12.16.2-linux-x64.tar.xz | |
$ sudo mkdir /usr/local/lib/nodejs | |
$ mv node-v12.16.2-linux-x64 node-v12.16.2 | |
$ sudo mv node-v12.16.2 /usr/local/lib/nodejs | |
$ sudo nano ~/.profile | |
copy this on end of text ~/.profile: |