Installing Java and Choosing an IDE

If you’re reading this article, it’s probably your first experience with Java — and perhaps with programming in general. In this article, we’ll go over how to install the Java SDK, choose an IDE, and write a simple program to make sure everything is working correctly. After discussing why Java can be a great choice for both beginners and experienced developers, let’s now see how to install the Java SDK and choose the most suitable IDE. ...

June 22, 2025 · 3 min · 

Spring Framework – Part 2

In the previous articles… As we introduced in the first article, Spring is an excellent tool for Java application development. We also explored how to set up a basic project and create an initial, simple API. In this article, we’ll connect the project to a database, specifically PostgreSQL, and explore how to persist and manipulate saved data. PostgreSQL PostgreSQL, originally known as “post-ingres,” was conceived by Michael Stonebraker in 1985. It serves as a robust alternative to other relational databases like MySQL. The key distinction of PostgreSQL lies in its support for defining custom data types (based on standard SQL types) and data type inheritance. For detailed insights, refer to the official website. ...

November 9, 2024 · 4 min · 

Spring Framework – Part 1

What is a Framework A Framework, in simple terms, is a set of predefined classes, libraries, and tools that provide a basic structure for software development. The use of a framework allows developers to avoid implementing basic features from scratch, enabling them to focus on developing specific, customized functionalities for their projects. Spring Spring is an open-source framework for Java application development. The first version of the framework was released in 2003 by Rod Johnson, and it has been enhanced over the years with a series of extensions. Over time, Spring has earned a leading role in Java application development, thanks to its highly active community and the vast availability of documentation and practical examples. ...

October 6, 2024 · 5 min · 

Python Setup and Choosing an IDE

If you’re reading this article, it’s probably your first experience with Python and, in general, with programming. In this article, we’ll go over how to install Python, choose an IDE, and write a simple program to make sure everything is working correctly. After discussing why Python can be a great choice for both beginners and experienced programmers, let’s now look at how to set up Python and choose the right IDE. ...

September 9, 2024 · 3 min ·