Switching from GPT-5.5 to GPT-5.6 Made Me Less Productive
I pay for three Codex subscriptions at $200 each, and for the past week they have mostly bought me waiting. Since I switched from…
Read postBlog
Laravel, AI-assisted development, SaaS, SEO, tooling, and the parts that only show up once software is used by real people. Mostly technical, but not trapped in one narrow lane.
Continue browsing the archive.
Let's dive into the details: 1. Authentication vs. Authorization Authentication is the process of identifying who a user is, while Authorization is the process…
Read postBoth Laravel Breeze and Laravel Jetstream are officially maintained packages by Laravel for scaffolding out authentication systems. While they might seem similar at a…
Read postWhen you start a project with Laravel Breeze you require it as a dev dependency like this: composer require laravel/breeze --dev But when you…
Read postIn new Laravel applications, the $routeMiddleware property of the App\Http\Kernel class has been renamed to $middlewareAliases to better reflect its purpose. Here's how you…
Read postGet Your Environment Ready Open your Windows Terminal. Start a new session with your WSL2 Linux system. Choose an Application Name Select a name…
Read postFeature branches act as a container for new functionality you're adding or changes you're making to a project while keeping your main branch untouched.…
Read postIf you're looking to have the "Remember me" functionality active by default in the login and registration process, in Laravel, this is handled through…
Read postLet's dig into Laravel's dependency injection, the Service Container, and related concepts. Dependency Injection (DI) At its core, dependency injection is a technique whereby…
Read postSOLID is an acronym representing a set of five design principles to make software design more understandable, flexible, and maintainable. These principles were introduced…
Read postConstructor Property Promotion is a feature that was introduced in PHP 8.0 to reduce the amount of boilerplate code needed when defining class properties…
Read postHere's a random list of things I have done to find freelance jobs. The list includes things that I haven't done yet but plan…
Read postIn Laravel applications using the laravel/ui package for authentication, the feature for verifying an email address after registration is built-in but is not enforced…
Read post