Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| // Put Courses JSON here |
| { | |
| description = "JustSteveKing Nix MacOS Setup"; | |
| inputs = { | |
| nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; | |
| nix-darwin.url = "github:LnL7/nix-darwin"; | |
| nix-darwin.inputs.nixpkgs.follows = "nixpkgs"; | |
| nix-homebrew.url = "github:zhaofengli-wip/nix-homebrew"; | |
| }; |
| <?php | |
| declare(strict_types=1); | |
| namespace App\Exceptions\Rendering; | |
| use Illuminate\Contracts\Support\Responsable; | |
| use Illuminate\Http\Request; | |
| use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; | |
| use Throwable; |
| <?php | |
| declare(strict_types=1); | |
| use Rector\CodeQuality\Rector\Class_\InlineConstructorDefaultToPropertyRector; | |
| use Rector\Config\RectorConfig; | |
| use Rector\Set\ValueObject\LevelSetList; | |
| use Rector\Set\ValueObject\SetList; | |
| return static function (RectorConfig $rectorConfig): void { |
| <?php | |
| declare(strict_types=1); | |
| use Rector\CodeQuality\Rector\Class_\InlineConstructorDefaultToPropertyRector; | |
| use Rector\Config\RectorConfig; | |
| use Rector\Set\ValueObject\LevelSetList; | |
| use Rector\Set\ValueObject\SetList; | |
| return static function (RectorConfig $rectorConfig): void { |
| [PHP] | |
| ;;;;;;;;;;;;;;;;;;; | |
| ; About php.ini ; | |
| ;;;;;;;;;;;;;;;;;;; | |
| ; PHP's initialization file, generally called php.ini, is responsible for | |
| ; configuring many of the aspects of PHP's behavior. | |
| ; PHP attempts to find and load this configuration from a number of locations. | |
| ; The following is a summary of its search order: |
| { | |
| "preset": "psr12", | |
| "rules": { | |
| "align_multiline_comment": true, | |
| "array_indentation": true, | |
| "array_syntax": true, | |
| "blank_line_after_namespace": true, | |
| "blank_line_after_opening_tag": true, | |
| "combine_consecutive_issets": true, | |
| "combine_consecutive_unsets": true, |
| <?php | |
| php artisan tinker | |
| $controller = app()->make('App\Http\Controllers\MyController'); | |
| app()->call([$controller, 'myMethodName'], []); | |
| //the last [] in the app()->call() can hold arguments such as [user_id] => 10 etc' |