See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| # Backup | |
| docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
| # Restore | |
| cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
| <?php | |
| namespace App\Filament\Resources\Trip; | |
| //... | |
| class PlaceResource extends Resource | |
| { | |
| public static function table(Table $table): Table | |
| { | |
| return $table |
| FROM laravelphp/vapor:php83 | |
| ARG IMAGICK_VERSION=3.7.0 | |
| RUN apk --update add \ | |
| ghostscript && \ | |
| rm /var/cache/apk/* | |
| RUN curl -L -o /tmp/imagick.tar.gz https://github.com/Imagick/imagick/archive/refs/tags/${IMAGICK_VERSION}.tar.gz \ | |
| && tar --strip-components=1 -xf /tmp/imagick.tar.gz \ |
| FROM laravelphp/vapor:php83 | |
| ARG IMAGICK_VERSION=3.7.0 | |
| RUN apk --update add \ | |
| ghostscript && \ | |
| rm /var/cache/apk/* | |
| RUN curl -L -o /tmp/imagick.tar.gz https://github.com/Imagick/imagick/archive/refs/tags/${IMAGICK_VERSION}.tar.gz \ | |
| && tar --strip-components=1 -xf /tmp/imagick.tar.gz \ |
| <?php | |
| namespace App\Providers; | |
| use Filament\Actions; | |
| use Filament\Forms; | |
| use Filament\Infolists; | |
| use Filament\Notifications\Notification; | |
| use Filament\Pages; | |
| use Filament\Support\Enums\MaxWidth; |
Audit this entire codebase for materially useful simplifications in its data structures, state representation, control flow, algorithms, and ownership.
This is an audit-only exercise. Do not edit files, run tests, implement recommendations, commit, or push. Read-only inspection commands are allowed.
You are the coordinator. Continue until the complete codebase has been reviewed and the final audit is validated.
Inspect the repository and inventory every identifiable subsystem.