Permutations of an Array in Java 1. Introduction In this article, we’ll look at how to create permutations of an array. First, we’ll define what a permutation is. Second, we’ll look at some constraints. And third, we’ll look at three ways to calculate them: recursively, iteratively, and randomly. We’ll focus on… Continue Reading java-array-permutations

Introduction to Java Microservices with MSF4J 1. Overview In this tutorial, we’ll showcase microservices development using the MSF4J framework. This is a lightweight tool which provides an easy way to build a wide variety of services focused on high performance. 2. Maven Dependencies We’ll need a bit more Maven configuration than usual… Continue Reading msf4j

Convert Latitude and Longitude to a 2D Point in Java   1. Overview When implementing applications that use maps, we will typically run into the problem of coordinate conversion. Most of the time, we need to convert latitude and longitude to a 2D point to display. Fortunately, to solve this problem,… Continue Reading java-convert-latitude-longitude

Java System.getProperty vs System.getenv DevOps Java 1. Introduction The package java.lang is automatically imported when in a Java application. This package contains many commonly used classes from NullPointerException to Object, Math, and String. The java.lang.System class is a final class, meaning that we cannot subclass it, therefore all methods are… Continue Reading java-system-get-property-vs-system-getenv