Together, we can achieve more! This is why we have now joined forces with the Philanthropic Forum in Bosnia and Herzegovina and will help support initiatives and promote philanthropy as one the most important social values.
To find out more about what we do for the community, visit the News section of our website.
January 23, 2023
Decorator pattern
Design patterns are typical solutions to common problems in software design. Each pattern is like a blueprint that you can customize to solve a particular design problem in your code. A decorator pattern allows users to add new functionality to an existing object without altering its structure. This design pattern comes under…
January 5, 2023
JPA annotations in Hibernate
Suppose you have wondered how we interact with relational databases without (directly) using SQL queries. In that case, the answer usually lies in Object-Relational Mapping (ORM), which will do the job of converting Java objects and statements to database tables and related queries. Hibernate comes into this story as the…
December 9, 2022
Dynamic Programming
Dynamic programming is both a mathematical optimization method and a computer programming method. By definition, it is a technique in computer programming that helps to efficiently solve a class of problems with overlapping subproblems and optimal substructure properties. It refers to simplifying a complicated problem by breaking it into simpler…