dart fix --apply
Category: Raindrop
How to create Flutter app in terminal
flutter create your_application_name
How to search directories using find command
find /path/to/search -type d -name '*keyword*'
How to search files using find command
find /path/to/search -type f -name '*keyword*'
How to create a SQLite database in Laravel
touch database/database.sqlite
How to install GitHub CLI on Ubuntu
sudo apt install gh
How to install GitHub CLI on Mac
brew install gh
How to switch the active GitHub account in terminal
gh auth switch --user UserName
How to display GitHub auth status
gh auth status
How to login GitHub in terminal
gh auth login