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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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 š
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.