-
Core Java
List to Long Array
Converting a list to a long[] array is a common task in Java programming. There are multiple ways to achieve…
Read More » -
Core Java
Java Sorted Lists
Sorting in Java is the process of arranging elements in a specific order, typically ascending or descending. Java provides several…
Read More » -
Enterprise Java
Eclipse JKube
JKube is a versatile Kubernetes-native Java development tool, that streamlines containerization and deployment processes. With JKube, developers can seamlessly build,…
Read More » -
Core Java
Java yield switch
In Java 14, the yield keyword is introduced to enhance switch expressions. It allows a value to be returned from…
Read More » -
Software Development
Kubernetes Pod Continuous Logging
In the dynamic landscape of Kubernetes, efficient management of containerized applications is paramount. One critical aspect of this management is…
Read More » -
spring
Understanding Kafka Topics and Partitions
Apache Kafka is an open-source stream-processing platform designed for handling real-time data feeds. It operates on a publish-subscribe model, allowing…
Read More » -
Core Java
Get First Set Item
A Java Set is a collection that stores unique elements, ensuring that no duplicates are allowed, and maintains (or not)…
Read More » -
Core Java
Java Holder Class
In Java, the Holder class is not part of the standard language itself. What we are referring to here is…
Read More » -
Core Java
JSON array to List
JSON, or JavaScript Object Notation, is a lightweight data-interchange format. It’s easy for humans to read and write, and simple…
Read More » -
Core Java
Java Iterator vs. ListIterator
In Java, an Iterator is an interface that is part of the Java Collections Framework, which provides a way to…
Read More »