Blog

[EN] Semantic Git Commits: Your key to cleaner code and better collaboration
[EN] Semantic Git …

Hello everyone,

do you know that? You browse through your project’s Git history and come across commit messages like “Fix” or “Changes”. In the worst case, you will only see “asdfasdf”. This might be funny at the moment, but when you start chasing a bug or trying to …

[EN] Java 8: revolution in code writing – 50 essential lambda and stream snippets
[EN] Java 8: revolution …

Hello everyone,

Java 8 fundamentally changed the way we write code. The introduction of Lambda expressions and the Stream API brought a much more functional programming style to Java, allowing us developers to write cleaner, more concise and much more readable code.

[EN] Strings in Java: Why `==` sometimes works and sometimes doesn't
[EN] Strings in Java: Why …

Hello everyone,

Today we’re diving into a Java topic that causes headaches for many developers, especially at the beginning: The Comparing strings using the == operator. You’ve probably heard that strings are always with you .equals() should compare. But then why do the following tests …