2024

Kotlin – How to Read a CSV File

Introduction Reading CSV files in Kotlin is a common requirement for various data processing tasks. A CSV (Comma Separated Values) file is simple, text-based, and widely used to represent tabular…

Spring Boot Starter Actuator

Introduction Spring Boot Starter Actuator is a module within the Spring Boot ecosystem that provides essential production-ready features for monitoring and managing a Spring Boot application. This includes functionality to…

Kotlin: How to Call Suspend Function

Introduction A common question for Kotlin developers is how to call a suspend function. Suspend functions are a key feature of Kotlin coroutines, enabling asynchronous programming by allowing functions to…