Make sure these boxes are checked before submitting/approving the PR
- The code works
- The code is easy to understand
- Follows coding conventions
- Names are simple and if possible short
- Names are spelt correctly
- Names contain units where applicable
- There are no usages of magic numbers
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
| # update | |
| sudo apt update && sudo apt upgrade -y | |
| # các package cơ bản | |
| sudo apt install -y \ | |
| build-essential \ | |
| software-properties-common \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| curl \ |
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
| # For git bash in window | |
| Find C:\Program Files\Git\etc\profile.d\aliases.sh and edit it | |
| ... | |
| # Alias for git | |
| alias gs='git status' | |
| alias gaa='git add .' | |
| alias gcm='git commit -m $1' | |
| alias gpom='git push origin master' | |
| alias gpo='git push origin $1' |
type below:
brew update
brew install redis
To have launchd start redis now and restart at login:
brew services start redis