22 Jul 2026
Hello, and welcome to Notes
This is where I'll share the odd write-up and the occasional code snippet, mostly things I've found useful while building websites for clients.
Nothing fancy, no comments section, no publishing schedule. Just notes.
Here's a small Laravel snippet to check the formatting works:
function formatPounds(int $pence): string
{
return '£' . number_format($pence / 100, 2);
}
More to come as I run into things worth writing down.