Edition 16

The 5 Biggest Programming Mistakes to Avoid in 2025

Today Iā€™m going to share with you some of the biggest mistakes to avoid whilst programming in 2025.

As software engineers code is like an extension of our mind. We need to treat it well and avoid producing code thatā€™s going to cause us pain further down the line.

Most people fail to see these big mistakes because they simply havenā€™t experienced the consequences these mistakes can cause over time.

Thereā€™s no definitive right or wrong way in programming. But some ways will leave you with unmanageable, painful to work with and simply ugly looking code. Quality exists in any creative medium.

Weā€™re going to cover:

If you want to save time, heartache and your blood pressure level then keep reading.

Blindly Accepting AI Code

Probably the single biggest mistake most engineers are going to make in 2025 is this one.

With the rise of AI coding tools itā€™s now even easier to copy and paste blindly then it was before. Sure we still did it with StackOverflow but now itā€™s even worse because it will simply go straight into the editor!

If youā€™re using LLMs and code editors like GitHub Copilot, Cursor or Bolt etc you should be very careful with the code you accept from them.

There are a number of problems that arise from this including:

But the biggest problem is that if you donā€™t understand what the code is doing youā€™re robbing yourself of understanding and domain knowledge for that code.

When thereā€™s a problem or a bug youā€™re going to have a hard time locating, identifying and knowing what the issue is or might be.

Because very little cognitive effort or thought went into the generation of that code itā€™s not likely to stick in your long term memory.

How to avoid it?

The way to avoid this is simple.

Read the code, understand it and if you canā€™t do either then itā€™s definitely going to be a bad idea to accept it.

The code might work and technically be correct but youā€™re shooting yourself in the foot by removing your understanding.

These tools are great for productivity but donā€™t use it as a means to outsource building something you donā€™t understand.

Large Commits and Large Pull Requests

This is a classic one people make. I used to do it all the time when I was first starting out.

Thereā€™s no malice to it but growing up people are taught in education to take things to completion and then submit the work.

The problem is that doesnā€™t work well for programming large applications.

Especially if youā€™re doing something like trunk based development or short lived feature branches.

We use git for a reason. Itā€™s simple and easy to incrementally commit work in progress and easy to step back through commits if something stops working or if we realise thereā€™s a problem with how we approached the problem.

Small and frequent commits are best to avoid the mountain of code you need to review to step back through a branch.

The same goes for pull requests.

This mostly happens when new features are being implemented. If it can be thereā€™s no reason why new features canā€™t be implemented through smaller incremental pull requests.

Especially if the feature is large or complex itā€™s almost always good to break it down in smaller releasable pull requests.

It makes reviewing the code easier, it reducing the size and impact of releasing the change and much simpler to undo or rollback if something goes wrong.

How to avoid it?

I donā€™t know if there are any tools out there that can help with this in an automated fashion. The simplest way to avoid these is just to be more conscious whilst you work.

When you start to see more than half a dozen files have changed in your git difference then itā€™s probably time to look at committing whatā€™s in progress.

Try and make sure the commit is complete though. Donā€™t leave the commit in a broken state as it defeats the point of being able to go back through the codeā€™s history in an incremental way.

Planning and scoping out the tasks that need to be done in order to deliver the feature will give you a rough feel as to how you can manage pull requests by grouping changes related to each other.

Other than that itā€™s just a case of being mindful of when the PR is starting to snowball and encapsulate more and more.

Ignoring or Guessing What the Error Message Is

I used to do this a lot. Iā€™d get an some error, glance at it for like three-five seconds, then start to rummage around with the code trying to ā€œget it workingā€.

This was normally made worse if the error came from some dependency and the error messaging was more verbose, harder to understand or simply sucked (thereā€™s plenty of libraries out there with horrendous stack traces).

Itā€™s a common problem a lot of people face. We see an error and immediately want to fix the issue because large red lettering scares us and gives us anxiety.

Iā€™ve seen people also completely ignore the error message assuming they know what the issue is or guessing what the error message actually means.

Most of the time everything you need to know is there in the error message. We just need to get better at reading and understanding them.

How to avoid it?

Avoiding this one is simple but not easy.

Read the error message, fully, then try and understand where the message is pointing to and what the actual problem.

Itā€™s not easy, especially with external libraries because there will be cognitive and knowledge gaps. You wonā€™t fully understand what is happening and where but itā€™s still best to read the message fully and try to understand it.

Never assume you know what the problem is unless youā€™ve experienced the same problem before.

Itā€™s the difference between spending a load of time debugging the wrong thing versus putting that missing comma or semi-colon back in.

Ignoring the Simple Solution

We love to abstract things.

We love to make things reusable.

We love to make micro services.

And scalability, and packages, and use the latest frameworks, etc etc.

The problem is, most of these things introduce more complexity. That added complexity is only a hinderance.

We make the mistake of building with the end in mind but thereā€™s only so far ahead you can plan with reasonable certainty.

Thatā€™s why I believe refactoring is one of the best skills you can have as an developer.

Being able to refactor quickly and accurately means you can scale solutions when they need scaling. Not before.

The simpler solution is almost always better. In almost every single way.

Now, simple is not the same as easy.

Simple is being able to achieve and build what you want with the most minimal amount of cognitive friction, thatā€™s easy to understand, thatā€™s malleable, that allows you to keep moving fast with quality.

It is an art.

How to avoid it?

Ask yourself this one question.

ā€œIf I had to get this working in the next 4-5 days, how would I do it?ā€

If you canā€™t build the thing out within this time period with your current plan youā€™re either:

If something doesnā€™t work out you want to know sooner rather than later.

You donā€™t want to tie yourself into a unfamiliar tech stack or system design thatā€™s going to take you a lot of effort to get off the ground.

Start small and when you feel the pains of scaling then look to refine and refactor.

Coding Before Planning

Itā€™s a classic trap almost everyone falls into.

I have to catch myself sometimes with this one.

Thereā€™s an old saying ā€œmeasure twice, cut onceā€.

Coding is a time intensive task. If youā€™re using AI to build things out then this time is shrunk somewhat but Iā€™d say it applies to using AI as well.

Before you spend a bunch of time building something itā€™s always best to take a step back and look at the problem youā€™re trying to solve or the feature youā€™re trying to build.

If you think through the task the at hand and use things like diagrams, pseudo code, sketching etc. These tools and techniques that are both fast and effective to understanding what it is youā€™re trying to achieve.

You can think through multiple solutions and multiple approaches without wasting a lot of time in granular, high fidelity tasks like coding and designing.

It might even turn out that the solution doesnā€™t need to be code!

If you have a plan you can avoid potential pitfalls before you reach them. You can break down that plan into manageable tasks that makes the implementation much easier and creates focus.

How to avoid it?

One solution to this is simple but requires building a habit in the way that you work.

Before you set off to code anything make sure youā€™ve at the very least written a task list.

A task list is simply a set of steps or to-dos that you need to take in order to complete the whole task list.

Creating an end-to-end task list forces you to clarify what it is you need and are going to do.

If you reach a point where youā€™re not sure what the next task is then thereā€™s an unknown there you should probably look at.

When you create the full task list youā€™ll get a better idea of how big this thing is and whether thereā€™s a way to break it down further.

There are a lot of benefits to using this technique but use any that suits you.

Just make sure to go through some planning process before you set off.

Hereā€™s How to Spot a Potential Pitfall

Best practices change over time.

Nothing is ever full proof and what works for one person doesnā€™t necessarily work for someone else.

So how do we know if weā€™re what weā€™re doing is going to leave us worse off in the future?

Thereā€™s no single answer for that but hereā€™s three questions I ask myself whenever Iā€™m making decisions during programming.

Does this give me agency or rob me of it?

If this allows me to be more efficient without outsourcing my understanding and ability then itā€™s good.

If it robs me of either it could be a problem down the road.

Does this hide complexity or solve it?

Simple is very difficult to achieve.

Some tools will help you solve complex problems other will simply hide it. Make sure youā€™re not simply hiding the complexity.

In doing this thing am I avoiding something I shouldnā€™t?

Doing one thing to avoid something else is usually a good sign of a potential pitfall.

I might be avoiding something because itā€™s difficult, unfamiliar, boring and/or hard to understand.

Taking the easy path is rarely a good idea in the long term.

Endure the short term pain for long term success.

Thanks for reading

Iā€™ve made some of these mistakes before and theyā€™ve hurt for a while afterwards. Itā€™s a good idea to look back once in a while at projects weā€™ve made to see how we can improve things for the next time.

There is no right or wrong in programming but some ways are just going to cause pain in the long run.

Thanks again šŸ™

Knowledge for the healthier, wealthier, long term developers

Sign up to my weekly newsletter for software engineers/developers that want to grow. I share my past successes and failures so you can get a head of the rest.