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
| # File operations | |
| alias edit-aliases="code ~/.bash_aliases" | |
| alias edit-zshrc="code ~/.zshrc" | |
| # Laravel Artisan commands | |
| alias a="php artisan" | |
| alias art="php artisan" | |
| alias serve="a serve" | |
| alias mfs="a migrate:fresh --seed" | |
| alias install-app="a project:install" |
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
| import 'dart:developer'; | |
| import 'dart:io'; | |
| import 'package:args/args.dart'; | |
| void main(List<String> args) { | |
| if (_isHelpCommand(args)) { | |
| _printHelpMessage(); | |
| } else { | |
| generateAssetClasses(_parseGenerateOptions(args)); |
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
| <?php | |
| function getFormattedNumber( | |
| $value, | |
| $locale = 'en_US', | |
| $style = NumberFormatter::DECIMAL, | |
| $precision = 2, | |
| $groupingUsed = true, | |
| $currencyCode = 'USD', | |
| ) { |