RNEC Quest 1: The realm
The beginning of a travel: why React Native and not something else

Search for a command to run...
The beginning of a travel: why React Native and not something else

A few weeks ago I finally decided to start volunteering and I found a beautiful cat colony in a cemetery. Well, it's not a common cemetery, it's the "Cimitero Monumentale" in Milan, Italy, a beautiful mix of graves and architecture. There was only o...

Laravel Artisan Console is a powerful functionality to write your console commands, also thanks to Symfony Console Component which represents the base engine for them. One feature I always wanted, but found out it exists only recently, is the estimat...

If you ever tested an endpoint returning a collection of data and, for example, by default, you sort them by created_at, you may have been struggling to check the correct order of the result. If you either created multiple data with User::factory()->...

Recently I needed to create a FIFO (First In, First Out) queue in Laravel to run specific actions inside a long-running worker from outside the worker itself. I had two possibilities: Database, creating a table, but I had also to create a Model, Ser...

If you really work on Laravel, you're gonna deal a lot of times with its Container and, probably, you often will need to resolve something from it, with a syntax like this: $service = resolve(MyService::class); // or $service = App::make(MyService:...

If you've ever interacted with Twitch Chat IRC, you probably have used tmi.js or a similar library. Recently, because I mainly use PHP, I discovered the great TMI.php library by Ghostzero and I'm already using it to manage events from my chat, when I...
Valheim may tell nothing to you and you're right, why should it sound familiar when it got in the 1° position of Steam popular games in less than 2 weeks... Sarcasm aside, one of the greatest features of the game is that it allows you to create your ...

One of the greatest features of PHP7.4 is for sure the preload - part of the opcache extension. We recently moved a big part of my company's core APIs from a Node-Frankenstein to a well-tested Laravel 8 project, but of course, the performance - altho...