Three years after Microsoft acquired jClarity, Martjin Verburg presented at Devoxx UK on how reliant Microsoft is on Java. If the two didn’t seem to fit on the same page, the reality is different: Microsoft runs 2 M JVMs in production for internal purpose… Read more
Similar
Project Loom has three main goals: introducing continuations, fibers, and tail-call elimination. (more…)
Read more »
Regression analysis is a statistical technique used to fit a model expressed in
terms of one or more variables to some data. In particular, it allows one to analyze the relationship of a dependent variable (also
referred to as the regressand) on one or ... (more…)
Read more »
A very interesting, useful and popular design pattern that I like. Here a video with explanation and code example: (more…)
Read more »
Java SE 14 (March 2020) introduces records (jep359) as a preview feature. Records aim to enhance the language's ability to model "plain data" aggregates with less ceremony. In this article Java Language Architect Brian Goetz takes a deep dive into the f... (more…)
Read more »
The challenge For a given string s find the character c (or C) with longest consecutive repetition and return: where l (or L) is the length of the repetition. If there are two or more characters with the same l return the first in order of appearance. For... (more…)
Read more »