Backend programming

  • April 15, 2024
  • Less than a minute

Ktor Plugin Registry

Since Ktor is an excellent framework that allows for the creation of asynchronous client and server applications—from microservices to multiplatform HTTP client

Read More
  • April 11, 2024
  • 2mins read

Intellij Idea version 2024.1 Beta is now avilable

You can read the full article about the IntelliJ IDEA 2024.1 Beta on the JetBrains blog using this link. Here’s a summarized

Read More
  • March 27, 2024
  • Less than a minute

Migration from Feign client to Spring Interface Clients

The Spring Cloud OpenFeign project has been marked as feature-complete, emphasizing that future updates will primarily consist of bug fixes and potentially

Read More
  • February 24, 2024
  • Less than a minute

Spring Boot Framework release 3.2.3

Here’s an overview of several new features that Spring bood added in this version: For dependency upgrades: Explore the official release notes

Read More
  • February 18, 2024
  • 3mins read

Kotlin Extension Functions further uses

1. Extension for List<T>: List<T>.secondOrNull() Implementation Usage 2. Extension for Int: Int.isEven Implementation Usage 3. Extension for Customer.isEmailValid Implementation Usage description: 4.

Read More
  • February 16, 2024
  • Less than a minute

Spring framework new release 6.1.4

The Spring Framework 6.1.4 introduces new features enhancing its reactive and coroutine support. Here’s an overview of several new features that Spring

Read More
  • February 13, 2024
  • 5mins read

When (Not) to Choose Sequences over Lists in Kotlin

In my previous post, I hinted that using sequences over lists can provide substantial performance benefits. Today, I’d like to delve deeper

Read More
  • January 31, 2024
  • 6mins read

Efficient Synchronization of Shared State with Coroutines

Synchronizing a complex state in Kotlin can be achieved using a combination of coroutines and shared flow properties. This approach leverages the

Read More
  • January 25, 2024
  • 1min read

Effective Transformations of Immutable Lists in Kotlin

In Kotlin, filtering an immutable list (read-only list) does not require creating additional copies. The filter function in Kotlin already creates a

Read More
×