My First Week With GPT-6 Astra
GPT-6 Astra was my main Codex driver for the last week, and I am back on GPT-5.5. That sounds harsher than my actual opinion…
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.
Laravel encrypts and signs all cookies automatically, to prevent the client from modifying them. Laravel's encryption is done via the OpenSSL library with AES-256…
Read postLet'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 post