-
Adding Laravel Jetstream to a fresh Laravel project
I only have this post here as there was a couple of extra steps I made after regular installation, which I wanted to keep a…
-
How I organize my Neovim configuration
The entry point for my Neovim Configuration is the init.lua file. Init.lua My entrypoint file simply requires three other files: The user.plugins file is where…
-
Starting a new Laravel 9 project
Whenever I start a new Laravel project, whether that’s a little side-project idea or just having a play, I try to follow the same process.…
-
Given, When, Then — how I approach Test-driven development in Laravel
Laravel is an incredible PHP framework and the best starting point for pretty much any web-based application (if writing it in PHP, that is). Along…
-
The Internet Archive / Wayback Machine (http://web.archive.org/) is absolutely incredible. It has saved most of my old posts and pages. Been spending a week or…
-
Was nice to finally meet most of the jump24 crew in the flesh last night. Even if I did come second to last in bowling.…
-
Bowling with work mates.
-
What happened to the old library in Birmingham?
-
PHP Psalm warning for RouteServiceProvider configureRateLimiting method
When running psalm in a Laravel project, I get the following error by default: This is the default implementation for configureRateLimiting in the RouteServiceProvider class…
-
Been taking a few shots in Red Dead Redemption 2 recently. Will share them out very soon.
-
The Arch Wiki really is an incredible resource, regardless of what distro you’re running. Just got my video drivers setup correctly (I think) by just…
-
New Thinkpad T470 installed with base Arch Linux and ready to rice it up.
-
Website under construction
I’ve always believed that people should own and control their own place on the web. That is, if they want to. I have actively kept…
-
Sprinklings of Docker for local development
When I search for docker-related topics online, it almost seems to me that there are two trains of thought for the most part: I believe…
-
PHP’s __call magic method and named arguments
Whilst working on a little library recently, I discovered some interesting behavior with PHP’s __call magic method. Specifically around using named arguments in methods that…
-
What is the PHP __call magic method?
Consider this PHP class: We could call the bar method as follows: However, in PHP, we have the ability to call methods that don’t actually…