RSSAmplifier

Blog

Improve bad code

Personal blog about improving software development skills and becoming a better developer.

improvebadcode.comRSS feed ↗6 posts

Latest posts

How-to setup GDPR cookie consent with Gatsby

General Data Protection Regulation (GDPR) imposes a couple of requirements on websites in regard to collecting and processing user data…

Conditional statement the safe way

This post will be really short. No big story behind it, just a simple habit that you should practice to give the quality of your code a…

Conditional statement the readable way

Conditional statements and conditional expressions are a good way to branch our computational or business logic. Sometimes we as developers…

Untestable code and how-to improve it

Did you find out what was the key culprit of the untestable code segment in my previous post How to recognize bad code? If you don’t have…

Coding style quick improvement tip – IF statements

In my todays quick improvement tip for your coding style we’ll be focusing on the control structures, more accurately the IF statements. BAD…

How to recognize bad code?

What is bad code and how to spot it immediately? A simple description would say bad code equals untested or untestable code. While the…