Technical Leader Worries: I Have Too Many Things to Do

Table of Contents

Technical Leader Worries: I Have Too Many Things to Do

Those wonderful days when the only thing you did was writing code are gone. Now you are a leader. You are doing everything: attending or conducting meetings, removing impediments, mediating between team members and the rest of the organization, reading or writing some kind of reports (and you deceive yourself that spending two hours in Excel counts as programming because of some smartly used formulas) and so on. You are in a hurry all the time, and it never ends.

Today, I would like you to get familiar with one useful technique. Before you put a task on your TODO list, ask three questions.

Treat these questions as something to elaborate about. These are just reminders. I will explain in short what is going on.

Is Me the Best Person to Do the Task?

The business world is busy, fast, and many things are not well analyzed. I remember that many times I assigned a task to somebody without much thought, and that person wasn’t the best one to address the subject. Especially if you are a leader, ask yourself:

  • Does this task need to be done by my team?
  • Should I personally do this task?

Many times people in the team are able to do the task, allowing you to focus on your leader activities (where you are not easily replaceable). If you use a pull model (like Kanban), place this task on a team board.

Does It Have to Be Done Now?

How many times have you experienced a situation where something had to be done by a specific date, and then a few days later, after asking, “How about that report?” you get in response: “Oh, I didn’t have time to look at this.”

“Ughhhhhh… So why did I work overtime?” - you think and feel disappointed.

I can tell you why. Because you didn’t ensure that it really had to be done by that date. (Of course, even doing so, you will not eliminate such situations entirely.)

You may ask (suppose today is Wednesday):

  • “I am doing X, Y, Z and I would like to have them done because …. Would it be a problem if I completed this task on Monday?”

Or very similarly (if a task or feature is addressed to the whole team):

  • “We are doing X, Y, Z now, and we would like to get them done because … (explain). Would it be a problem if we started to work on the feature on Monday?”

Does It Have to Be Done in the Particular Way?

If a task definition specifies how the task should be done, ensure that this is the best way (especially if there is not much time). Make sure that you know the goal (why this task should be done at all and why it should be done this way). If you know the goal, you may suggest easier or simpler alternatives.

Encourage Your Teammates to Do the Same

This is such a good tool that it is worth spreading. Many leaders are a little afraid that team members will start to negotiate the tasks, and it will be the beginning of a rebellion. But you should welcome this with understanding (and I know it is not easy). By practicing this technique, people learn to look critically at what happens in the project, and you shorten the feedback loop. This is a great way to increase the probability of eliminating work that shouldn’t be done or simplifying solutions. This is also a good exercise to strengthen trust in your team. Only people who feel safe (and this is the base for trust) are eager to ask questions like these.

(Text translated and moved from original old blog automatically by AI. May contain inaccuracies.)

Related Posts

Technical Leader Worries: I Want to Build Trust in My Team but I Don't Want Them to Do What They Want

Understanding Trust in Leadership

Trust is a very big word and very often misused. Many leaders, in an attempt to build trust, feel obliged to allow people to do anything they want. However, they also wish to have some impact on how a task is completed.

Read More

Where Is It Worth Getting Employed?

The Idea Behind

For quite some time now, I have been my own employer, so I am not actively looking for traditional employment. However, people I meet during various projects and trainings often ask where it is worth getting employed.

Read More

The Natural Order of Refactoring Under the Microscope Part 3: Extract Method

Analyzing Class and Method Responsibilities

In the next step, we examine the responsibilities of individual classes and methods, checking if they align with the intended responsibility of the class. It is best to analyze all methods and group them based on performing similar operations. We look for a place for these in other classes or a new class. Remember: if there is a significant private method in a class (longer than 3-4 lines), it should be moved to another class.

Read More