We decided to mark Atlantbh’s 22nd birthday by funding the reconstruction of the children’s playground in the only public preschool in Vareš. Atlantbh birthday donation – new swings, a slide, seesaws, a sandbox, and a rubber mat have now been installed, to achieve the highest level of safety for children – and lots of fun too!

Atlantbh’s 22nd birthday by funding the reconstruction of the children’s playground

The playground was officially opened on June 1st, symbolically for International Children’s Day. The event was visited by the Mayor of Vareš, Pomozi.ba and Atlantbh representatives, teachers, and children. Atlantbh employee volunteers planted flowers and helped paint and decorate the access road to the playground together with the children.

We are happy to have partnered up with the local non-profit humanitarian Association Pomozi.ba which managed the Atlantbh birthday donation project and construction work at the location. Following their slogan “We only have what we give” the Association provides aid for endangered people throughout Bosnia and Herzegovina. With their help we were able to identify Vareš as a municipality in need of infrastructure projects and investment that can help increase the standards of living.

Atlantbh has been around for more than 22 years, and in this time, we have worked with world class clients, hired top IT experts, and have always remembered to give back and share our success with the local community!

Decorator pattern
Software DevelopmentTech Bites
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…
JPA annotations in Hibernate
Software DevelopmentTech Bites
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…
Dynamic programming
Software DevelopmentTech Bites
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…

Leave a Reply