-
Coding with AI
AI is not leaving us anytime soon. Learning how to use it properly is a must-have skill for software developers. I do not consider myself an expert, but I have experimented with this tool long enough so I could share some insights into how to make the best of them, and when it’s best to…
-
Work/Life Balance
What is really Work/Life balance? When I started my career, I thought it was very simple: respect working hours, don’t answer calls or messages outside of these hours, don’t think about work, and don’t do anything work-related during my personal time. It took me many years to realise that not everything was truly black and…
-
New Year Goals
This article will be published either on New Year’s Eve or on the New Year, depending on where you are in the world. For reasons I can only guess, this seems to be a time when people spend more time reflecting on their achievements, and setting goals for the new year. As long as you…
-
Finding Bugs With Git
Throughout my career, I’ve occasionally been tasked with identifying and fixing bizarre production bugs. I talk about those issues where logs provide little insight, and debugging is neither straightforward, practical, nor efficient. The first few times I encountered such problems, I spent many hours reading code and trying to debug, only to get closer, but…
-
Divide and conquer
Divide and conquer is a very useful strategy that you can use in a range of problems. The first time I heard of it was in reference to the algorithm to break down problems recursively. The idea is to break down a big problem into smaller problems that are easier to solve, and then solve…
-
The recipe for success
Last week, CultureAmp hosted a panel to answer questions from students in the Startmate Student Fellowship, and I was very lucky and honoured to have been invited to the panel to answer these questions. At this session, I encountered some bright students that asked very interesting questions. Today, I want to talk about one of…
-
Clean Commits With Git
If you have ever inspected the Git history of some of your projects (doing git log) I am sure that you may have encountered something like this in your main branch: This looks really unprofessional, but the problem goes beyond aesthetics. Having poor descriptions like this is a problem that is more common than it…
-
The Secret of Good Demos
Before the rise of the agile framework, software development was primarily done using traditional project management methodologies, such as Waterfall. Once the product was ready, the product demonstration, or demo, would be the meeting that determined whether the customer was happy with the final product or if the team had wasted months, if not years,…
-
To Meet or Not to Meet: Navigating Team Collaboration
If you’re a Software Developer, I’d bet you like coding and that you’d rather ship that feature you’re working on than attend yet another meeting. Even worse if you have no clue why you were invited to that meeting in the first place. There are too many things to say about meetings, and sadly I…
-
Effective Pull Requests for Better Code Reviews
Nowadays it’s almost unthinkable to work in a Software Development team and not use Pull Requests to do Code Reviews. Pull Requests have become an essential part to our day-to-day work, but there are cases where we’re still not making the best use of them. In this article, I will explain why it’s important to…