A Full Stack Developer who loves to learn and share his knowledge
-
How to find missing translations on Laravel
Have you ever been on the situation where you are working on a multi-locale application and maybe missed a translation for a given locale, or maybe you spend too much time on code reviews making sure that no translation key is missing. I’ve been working with multi language apps for several years, in all sort…
-
My journye to PHP[Tek] 2023 ~ Chicago
It all started in…. 2019, when I visited my first conference https://cdc.dev/, it was mainly focused on .NET, but, it was a blast! I met so many developers, nice people, topics were incredible, and, for me, I had the opportunity to chat with people from around the world, working for big companies, doing amazing projects.…
-
Adding colors to PEST on Github actions
After a few months of writing tests using PEST I always wondered why I was seeing tests output with colors on my local but plain white on Github Actions, it felt so bland. Even having colors=”true” on phpunit.xml didn’t do the trick, every test would return the following: Luckily, the solution is simple! You just…
-
Rebasing like a ninja
Even wondered what is rebase and when to use it. On today’s topic we will cover it and give you a few use cases. Git is a powerful version control system that allows developers to collaborate on code and keep track of changes. One of the most useful features of Git is the ability to…