JSFiddle - React, Tailwind, and code Playground
by spham
HTML
➜ ~ vi .bash_profile
export PATH="$PATH:$HOME/.composer/vendor/bin"
alias serve='artisan serve'
alias tinker='artisan tinker'
# Misc PHP
t() {
if [ -f vendor/bin/phpunit ]; then
vendor/bin/phpunit "$@"
else
phpunit "$@"
fi
}
alias gl="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
alias wip="git add . && git commit -m 'wip'"
alias nah="git reset --hard && git clean -df"
alias pf="vendor/bin/phpunit --filter "