Mastering Git workflow – Part 1/2
git-stash for when you get interrupted
Last Updated on May 26, 2023 Hi guys. In today’s post, will talk about git. At this point, you probably already know that all the …
Adding a new technology or concept in your team (the correct way)
Last Updated on April 11, 2024 Sometimes when we are developing some chunks of code, we start to question why I am doing it this …
Serialization and Deserialization in Java using Jackson
A practical guide on how to serialize and deserialize objects to JSON in Java using Jackson.
Last Updated on May 29, 2023 Before we start working with serialization and deserialization in Java we need to understand what these terms actually mean. …
Redux Basics
For some time, Redux is a thing that has bugged me because I know it, but I felt it was not sufficient. Because of this, …
Miner’s Advice #1: Effective technical writing
Tips and techniques to write technical texts effectively and accurately
Last Updated on June 26, 2024 Communication. Although a difficult concept to define, it’s easy to recognize its relevance and impact on the success of …
Creating a preview mode in a Vuex app with dependency injection
How I implemented a preview mode in a VueJS application
Last Updated on July 4, 2023 In this article, I will talk about how to use dependency injection (DI) in a Typescript Vue app with …
Integers overflow and underflow
What happens if we go off the limits of a predetermined space?
Last Updated on April 11, 2024 As we all should know already, memory is not an infinite resource despite looking like it. Given our current …
Creating a development environment with docker and docker compose
Last Updated on May 29, 2023 Did you ever try to run code on your local machine, but it simply didn’t work? And when you …
Do you know the CI/CD initiative?
Applying these concepts using GitLab CI/CD tool
Last Updated on October 18, 2023 Nowadays, the DevOps culture is present in many projects and companies of all sizes. The main concepts of this …
How to use dynamic Components in Vue
Understanding dynamic and async components by example
Last Updated on July 4, 2023 Hi guys, in today’s post I want to share an interesting scenario about using dynamic components with you. Imagine …