JVM Languages
-
Kotlin dependency injection with Koin
Dependency injection is a common technique in today’s software design. With dependency injection we pass dependencies to a component instead…
Read More » -
Jackson Kotlin extension and reified types
Jackson Kotlin module library is a pleasure to use. It greatly simplifies gnarly code, specifically one’s involvingTypeReference. Consider a sample…
Read More » -
Top “n” using a Priority Queue
If you ever need to capture the smallest or largest “n” from a stream of data, the approach more often…
Read More » -
Kotlin – Convert List to Map Examples
1. Overview In this tutorial, We’ll learn how to convert the List to Map in Kotlin programming. Let us explore…
Read More » -
How To Convert String to Float in Kotlin?
1. Overview In this tutorial, We will learn how to convert the String value to Float in Kotlin. This conversion…
Read More » -
Kotlin Variables and Basic Types With Examples – Kotlin Tutorial
1. Overview In this tutorial, We will learn how to create the variables in Koltin for basic types using var.…
Read More » -
Kotlin – Convert Map to List Examples
1. Overview In this tutorial, We will learn how to convert the Map to List in kotlin programming. Map implementations…
Read More » -
Groovy Script 101 – Commonly Used Syntax Reference Guide
Groovy has been around on the Java scene since 2003. With over a decade’s worth of history, development and experience,…
Read More » -
Kotlin: Multi variable null check
Although not-null, immutable variables with sensible defaults are often desired, it is not always the case. It is sometimes required…
Read More »