Blog
This is where I post about software development topics.
-
Laravel: Testing
Laravel is built supporting testing with Pest and PHPUnit out of the box, including a phpunit.xm...
2024-05-23 4 min read -
Laravel: Cache
Some requests in an application can imply the execution of tasks that are CPU intensive or takes...
2024-04-23 2 min read -
E2E Testing in the Continuous Integration Workflow
The Continuous Integration is the practice of merging all developer's working copies to a shared...
2024-04-09 4 min read -
Global gitignore. Cleaning gitignore in repositories
We use to find cases where the .gitignore file of a project has a lot of stuff which is not dire...
2024-04-08 2 min read -
Vue: Pinia vs. Vuex
On the one hand, Pinia, the current official state management library for Vue, was developed for...
2024-03-20 13 min read -
Vue: From Options API to Composition API
Composition API arises as an alternative when writing our components in Vue. It differs from the...
2024-03-19 4 min read -
Laravel: Eloquent ORM
Eloquent, the ORM used by Laravel, has some features that can facilitate access to data under sp...
2024-03-07 4 min read -
Laravel: Queues and Jobs
In Laravel we can delegate the execution of heavy tasks in time or resources to the background, ...
2024-02-29 2 min read -
Laravel: Middleware
In Laravel, a middleware allows us to inspect and filter an incoming HTTP request in our applica...
2024-02-23 3 min read