DEV Community

Cover image for Become A Better Developer Today: Quick Wins
Simon Barker
Simon Barker

Posted on • Originally published at careerswitchtocoding.com

Become A Better Developer Today: Quick Wins

Here are some common mistakes you might be making daily that are slowing you down, holding you back and building tech debt.

๐Ÿงช Not writing tests. Get used to writing these sooner rather than later. You donโ€™t need to go full Test Driven Development (TDD) but at least be comfortable. I should have started earlier!

๐Ÿ“„ Not documenting code. Coming back to old code is a nightmare without good docs, I canโ€™t remember how code I wrote last week works so after 1 year I have no chance.

๐Ÿงฐ Not breaking out common code into a reusable library. Reusable code is your toolbox, it saves you time, effort and complexity. Start building your personal toolbox or your teams toolbox now.

๐Ÿฑ Forgetting to split projects into smaller modules. Good organisation is the best way to keep a codebase sensible and manageable, it doesnโ€™t come for free though so you have to work at it.

๐Ÿ› Not using external libraries. Build on other peoples code and donโ€™t write everything from scratch, this lets you move faster, benefit from others work and you can focus on your core business logic.

๐Ÿ’… Not using an auto code formatter. Worrying about how to format and layout your code should be the last thing on your mind, get used to auto format on save and you will love it!

๐Ÿค– Not automating. There is a knack in knowing when to automate, too early in a process and you risk automating the wrong thing and having to change it, too late and you'll have an overly complex process to automate that will take weeks to sort out. If you've done the same thing 3 times in a short period of time (measured in weeks) then it's time to automate it.

Summary

None of these on their own will derail a software project but all of them can add friction to the development process and slow you down. Pick one and implement it in your current project today.

One more win

Head over to Career Switch To Coding and join my mailing list for regular tips and a free chapter of my book ๐Ÿ˜€

Oldest comments (1)

Collapse
 
solomonakinbiyi profile image
Solomon Akinbiyi

Great tip