Over the years, I have become very interested in clean code, calisthenics objects, etc. And over...
Always with the goal of improving my way of writing code, I discovered a few years ago Adam Wathan...
Like many developers, I like learning new things. And one thing that interests me a lot is code...
I see this kind of code quite regularly: $items = [ 'one' => 'John', 'two' =>...
Could you find the difference in results between these two codes? function...
The simplest way to create dates in PHP is to instantiate an object of the DateTime class. $date =...
There are several ways to test that an array is empty in PHP, and the one I see most often...
Vous connaissez surement le callback hell en JS ? Mais connaissez-vous le array_ hell en PHP ? Voici...
Hey.com is a new email service created by Basecamp. It’s a redo, a rethink, a simplified, potent r...
If you use Git on a daily basis, you know that this tool is full of commands and different configurat...
I do a lot of code review and I often see the same mistakes. Here's how to correct them. ...
Si vous utilisez Git au quotidien, vous savez que cet outil regorge de commandes et de différentes options de configuration. Je vous propose ici de lister quelques astuces que j'utilise.
Notre écriture du code évolue au fil des années. Je partage avec vous ce qui a changé chez moi.
l'utilisation de l'autoincrement d'une entité peut-être problèmatique si on veut la référencer dans une autre base de données
array_merge in loop is a performance killer.