Articles

Kotlin Playground shortcode for Hugo
Kotlin Playground is HTML component which creates Kotlin-aware editors capable of running code from HTML block elements. Here I explain how to embed runnable …

Spring Boot configuration best practices
Spring Boot comes with very neat configuration mechanism. Default application configuration is defined in one configuration file and environment specific …

What happens when you split systems into many microservices
Moving from monolithic applications into microservices is current trend in software design. Let’s identify some pros and cons of both architectures and …

Building data pipeline with Kotlin coroutines actors
This blog post demonstrates how to build a data processing pipeline using Kotlin coroutines and actors, showing both single-threaded and parallel …

Applying courage in software development
Job is not a place for feats. But sometimes you have to be brave to overcome and complete that others considered impossible.

How does new Oracle JVM licensing encourage agility
Oracle’s revised JDK policy requires companies to update Java every 6 months to maintain free security patches, since only short-term OpenJDK builds …

Common Java application anti-patterns and their solutions
Software projects often run into trouble when developers mix different code layers together. The article explains how this leads to rigid, brittle code …
Customizing REST API Error Response in Spring Boot / Spring-Security-OAuth2
Defining error format is important part of REST API design. Spring-Boot and Spring Security provide pretty nice error handling for RESTful APIs out of the box. …
The Programmers Oath
A must-see speech by Robert “Uncle Bob” Martin on programmers responsibilities in digital world and 9 principles every programmer should follow …

Logging policy
There are different points of view on how logging levels should be used in code. I will share mine. My assumption is: “There should be no errors in logs …