How learning about Cloud infrastructures can benefit all developers
Cloud development and deployment are becoming a new norm, and several studies already showed that there is a dramatic shortage…
A software engineer's journey
Cloud development and deployment are becoming a new norm, and several studies already showed that there is a dramatic shortage…
This post covers Java security related topics as presented at Oracle University Online (Java SE 11 training) and as required…
For my graduation work in Business Informatics, I chose to focus on on UX/UI, because it used to be something…
Java provides built-in ready-to-use annotations as well as the possibility to create one’s own annotations. Annotations allow to add metadata…
Every Java program running has at least one thread, “main”, automatically created by the JVM. Each thread is represented by…
JDBC is a database neutral Java API in the java.sql package that allows connectivity and operations on databases. JDBC drivers…
Possibility to organize a projects in modules appeared in Java 9. In this post, we’ll have a look at differences…
Functional Programming (FP) is a programming paradigm, as OOP is. Java can make use of both. FP relies on Functions.…