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
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
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
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
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.
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
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
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
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

