Estimating value of pi (π) using Monte Carlo Simulation and Vector API
Java’s vector API takes advantage of certain CPU architectures to parallelize calculations which improves performance...
2026, Mar 07 — 18 minute readJava’s vector API takes advantage of certain CPU architectures to parallelize calculations which improves performance...
2026, Mar 07 — 18 minute readProject Loom is one of the most important projects at OpenJDK. The purpose of this...
2022, Oct 08 — 4 minute readOptional type from Java helps in representing the case of missing value. It also has...
2020, Aug 23 — 6 minute readJava’s Optional is quite a simple type. Most of the API can be easily understood...
2020, Aug 20 — 8 minute readRecursive functions provide elegant implementations. But they often have a risk of stack-overflow error. Tail...
2020, Jun 11 — 11 minute read