A Boolean value is used to determine a program's execution behavior. However, using a Boolean as a parameter in a function is a sign of a code smell. Therefore, you should avoid preserving the...
Posts by Kristijan Kralj
Have you ever been in a situation where an application's state changes unexpectedly? Do you get stuck in a loop of trying to solve the errors and issues in the programs without knowing exactly what...
How to Create a Sub Directory in a Blob Container in Microsoft Azure
Storing files in a container is essential for production applications that need to persist data. But storing large files or images in a database is not ideal. Luckily, Azure Blob storage offers an...
Keeping your code organized is one of the most essential aspects of writing good software. This is especially true for any company that wants to keep its coding standards clean, elegant and...
Object-relational mapping (ORM) revolutionized object-oriented programming by streamlining the storage and retrieval of data. However, most ORM solutions presume that data is mostly static and...
In programming, we encounter objects of different types frequently. For example, some objects are mutable, and some are immutable. These concepts describe two very different types of objects in...