Interfaces are one of the most lightweight components in Object Oriented Programming. Defining a new interface is quite a simple process without as many rules and restrictions as in the case of class...
Posts by Kristijan Kralj
What's the worst thing you've ever done in software development? I once created a class with many similar methods returning instances of different objects. It was a pretty bad decision, and now...
The try-catch statement can be a useful tool that prevents errors from becoming bugs. Programming languages generally provide try-catch blocks to handle exceptions. Sometimes, you cannot avoid...
The art of programming is filled with many different types of activities, but the most fundamental one is, of course, the act of coding. Another vital part of programming is testing the written code,...
Suppose you are working on a project that involves communication or interaction between different cross-platform applications. They are working with numerous API providers of a specific type and...
Software development is not an easy task. There are many problems a developer faces while creating solutions to real-world problems. Some of these problems repeatedly occur, so GoF design patterns...