I’ve recently used a nice feature in Gitlab to automatically post my articles scheduled in the future in Hugo and I share how I did it in this article.
Why I keep a personal log of bugs
When creating software, you’ll make mistakes. Sometimes they’ll be huge, sometimes they’ll be small but you can always learn from them if you spend some extra time documenting them. In order to learn from those mistakes and try to avoid them in the future you can develop a bug log. We’ll see here what that is and how it works but I promise it helps.
How to render a React component in Hugo
In order to render a React component in the static generator framework Hugo, we need to do some adjustments to our theme. In this guide we’ll see all the steps to use JSX too.
How to be a better remote worker
The current scene, with so many companies working remotely, leaves the employees with some changes in how things work in a company when there’s no office that are not obvious. Dynamics, habits and workflows change to some extent in a remote organization. Here I share some of the things I’ve learnt in the last few years that helped me from the perspective of a regular employee in a fully remote company.
Introduction to bitwise operations
Bitwise operations are really useful and fast for storing and operate on certain values. In this first article about bitwise operations, we get a quick introduction to them.
Remove empty elements in an array in PHP
How to remove empty elements in an array in PHP without having trouble with the indexes. This happens because the result of array_map or array_filter can leave some indexes out of the array.