Ramblings of a Coder's Mind

Engineering × AI × Scale

K

Tag: code-quality

Posts tagged with code-quality

Level Up Code Quality with an AI Assistant

Using AI coding assistants to introduce, automate, and evolve quality checks in your project. I have talked about teams needing to have a world class developer experience as a pre-requisite for a well functioning team. When teams lack such a setup, the most common response is a lack of time...

Read on →

Lombok usage in large enterprises

Verbosity of Java Java is a verbose language. No one disputes it. Despite the clunky nature of the language syntax, it still is the language of choice in most enterprises. If you work in the services industry or are a technology consultant, chances are that you have to work with...

Read on →

Commonly made mistakes in Unit Testing

What is Unit Testing? Unit testing is all about focusing on one element of the software at a time. This unit is called the often called the ‘System Under Test’ (refer Mocks Aren’t Stubbs). In order to test only one unit at a time, all other units need to not...

Read on →