Skip to content

Instantly share code, notes, and snippets.

View tqt97's full-sized avatar
:octocat:
Feel happy to code <3

TuanTQ tqt97

:octocat:
Feel happy to code <3
View GitHub Profile
@tqt97
tqt97 / alias.txt
Last active November 4, 2024 04:24
Setup Alias for git bash | Command Prompt
# 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'
@nerandell
nerandell / code-review-checklist.md
Last active October 29, 2025 03:30
PHP Code Review Guidelines

Make sure these boxes are checked before submitting/approving the PR

General

  • 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