Home / Journal / Categories / Web Development ← All posts
Category

Web Development.

113 posts in this category.

01
Jun 2026
Web Development

Recurring events in PHP, done right with Recurr

If you have ever had to implement recurring events in PHP, you know it is one of those features that sounds simple until you are knee-deep in date math, timezo...

read →
♥ 1 · 0
29
May 2026
Web Development Personnal

Ditching Disqus for an In-House Comment System in Laravel

I've had Disqus on this blog for years. It works, more or less. But every time I open a post I see ads I didn't ask for, a tracker loading that I didn't choose...

read →
♥ 4 · 0
20
May 2026
Web Development

128 languages ready to ship with your Laravel app

If you've ever built a Laravel app that needed to speak more than one language, you know the drill. Laravel ships with English only. So for French, Spanish, Ar...

read →
♥ 1 · 0
12
May 2026
Management Web Development

Ditching PAYG Subscriptions for a Pre-Paid Credit System in Laravel

Pay-As-You-Go billing sounds ideal: users pay only for what they use, the pricing feels fair, and Stripe handles the metering for you. In practice it has a nas...

read →
♥ 1 · 0
30
Jan 2026
Personnal Web Development

Upgrade Clawdbot to Openclaw

Clawdbot is super trending at the moment, and it just changed name two times in a row. Not it's called Openclaw, and with that new name comes a new binary....

read →
♥ 2 · 0
22
Jan 2026
Management Web Development

Auto-Claude is amazing, but unusable due to Claude AI infuriating usage limit

Auto-Claude is amazing, but unusable due to Claude AI infuriating usage limit I really wanted to love Auto-Claude. On paper, it’s exactly the kind of tool...

read →
♥ 1 · 0
25
Aug 2025
Web Development

Running Multiple Laravel Nightwatch Agents on the same server

I've been using Laravel Nightwatch for a few weeks, and it’s already become a must-have for monitoring my apps. Observability? Check. Easy setup? Check. But wh...

read →
♥ 3 · 0
22
Jul 2025
Web Development

How to fix CORS issue with Cloudflare R2 and Laravel Filament / Livewire

Laravel Filament's Media Library plugin use Livewire's upload file javascript to send your file to your cloud disk. When using Cloudflare R2, you will probab...

read →
♥ 4 · 0
29
Apr 2025
Web Development

Introducing Volet: A Laravel Package for User Feedback

Introducing Volet: A Laravel Package for User Feedback In the spirit of building lightweight and efficient solutions, I've developed Volet , a Laravel packa...

read →
♥ 5 · 0
05
Feb 2025
Personnal Web Development

Unlimited Ratio on Torrent website with Ratio Master

Getting a good seed/download ratio on private torrent website can be quite tricky. Especially when some of those website sell you "ratio boost" or...

read →
♥ 8 · 1
02
Sep 2024
Web Development

How To Clone an AWS S3 Bucket

You might have a ton of reason to do this so I'm not going to bore you with an introduction. If you don't have too much objects Then you might be able to d...

read →
♥ 4 · 0
05
Sep 2023
Web Development

DDOS By Web Crawlers

I have this website that crawls reddit posts and put them online. There's hundred of thousands of entries, each one with their own URL. The listing is paginate...

read →
♥ 13 · 0
10
Feb 2023
Web Development

Nuxt - How to set the default locale based on the logged user

Let's combine two Nuxt 2 plugins : nuxt-i18n and @nuxtjs/auth First we need to create a new @nuxtjs/auth plugin. This is fairly easy ! Let's assume tha...

read →
♥ 15 · 0
01
Dec 2022
Web Development

How to fix Expired HTTPS Certificates with Laravel Valet (MacOs)

Laravel Valet is awesome and it automatically set your local domains up with SSL certificates, so that you can use your local domain.test with https Howeve...

read →
♥ 15 · 0
21
Jun 2022
Web Development

Laravel Console Command to Automatically Restore a Backup from Spatie Laravel Backup Package

spatie/laravel-backup is an amazing Laravel Package that allows you to automatically send backups of your laravel application to an AWS S3 Bucket. It's good...

read →
♥ 104 · 0
26
Apr 2022
Web Development

Laravel Valet - Too many parallel requests getting blocked

I have this very specific project running in PHP 7.4 on my machine with Laravel Valet. It's a front end application in vuejs with a separate back end and the...

read →
♥ 8 · 0
30
Mar 2022
Web Development

What is a Mixin in Vuejs ? Here's a simple explanation

TL;DR : A Mixin is a script file containing some logic that you can import into a vuejs component. It is structured exactly like in the script tag of a classic...

read →
♥ 1 · 0
08
Mar 2022
Web Development

Presenters in PHP - How to clean your views

How to use a Presenter class Super simple! class BookPresenter extends Presenter { public function __construct( public Book $book ) {}...

read →
♥ 5 · 0
21
Feb 2022
Web Development

Transformers in PHP

Another Design Pattern to cover in PHP are the Transformers . This one is really simple to understand. It allows you to return an object to another format i...

read →
♥ 16 · 0
16
Jan 2022
Web Development

Repository pattern in PHP and Laravel

TL;DR A repository is an interface-signed class that encapsulate all SQL queries in specific methods. The repository class is then injected into your control...

read →
♥ 147 · 0