- PSR-0 Autoloading
- [PSR-4 Autoloading][2]
- [PSR-1 Basic Coding Standard][3]
- [PSR-2 Coding Style Guide][4]
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
{"lastUpload":"2020-01-25T10:56:33.546Z","extensionVersion":"v3.4.3"} |
By Anup Dhakal
In this guide, LEMP stands for Linux, Nginx (pronounced as Engine-X) , MariaDB (a drop in replacement for MySQL) and PHP (PHP Hypertext Preprocessor).
I have gone through many websites in order to learn even just the basics of setting up a LEMP server. Hence I know the hassle. Here I have created a through guide to help someone relatively new to setup a powerful LEMP machine easily and effortlessly. I hope this guide comes to someone's rescue.
By Anup Dhakal
By Anup Dhakal
alias gitp="git config --global core.sshCommand \"ssh -F ~/.ssh/config-personal\" && \
git config --global user.email [email protected] && \
git config --global user.name \"My Name\" && \
git config --global commit.gpgsign true && \
git config --global user.signingkey XXXXXXXXXXXXXXXX && \
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
# This file is supposed to reside in ~/dotfiles/zshrc | |
# and sourced from ~/.zshrc as `. ~/dotfiles/zshrc` | |
# For Windows WSL 2 | |
cd ~ | |
export GPG_TTY=$(tty) | |
export PIPENV_VENV_IN_PROJECT=1 |