The other day I opened up Visual Studio solution consisting of a number of projects written in NET Core. To my surprise, none of the projects loaded and I wasn't...
VI. No unit tests Driving without headlights In modern day it's almost unacceptable to deliver code in any form or shape without testing it. A concept called Test-driven development (TDD)...
V. Large method bodies Count the lines, not pounds Programmers love code, you'd think the more code the better, right? Well, far from it. In fact, in modern applications concept...
IV. Over configuration Keep things simple Config is great, it can take shape of an innocent boolean switch value or contain more sensitive information such as access key or password....
III. Sensitive config Don't share it with everyone Modern applications are built on the basis of small (distinct) components (microservices) interconnected with each other either at Networking (REST, RPC) level...
II. One-trick-pony variables Don't ride it just once Programming often requires you to store data in memory during code execution. This programmatic memory storage vehicle is called variable which also...
I. Magic strings Don't lose it, re-use it There'll be a point in your programming life where you'll come across string data types. These are normally defined as double quoted...
Introduction In the current age code is written everywhere, quite literally everywhere, right? Financials, Automobile, Agriculture, Manufacturing and pretty much all other Industries big or small are to larger or...