Core Java
-

The Java Memory Model Explained: Happens-Before and Concurrency Semantics
There is a quiet assumption embedded in almost every line of Java ever written: that when one thread writes a…
Read More » -

Stop Using Virtual Threads for Everything: Performance Lessons Learned
When JEP 444 landed in Java 21 in September 2023, the reaction across the Java community was unusually enthusiastic. Virtual threads promised…
Read More » -

Project Panama FFM API: Calling C Code Without JNI Hell
Java has always needed a way to call native code. Scientific computing, image processing, hardware drivers, cryptography libraries — the…
Read More » -

Stop Blindly Trusting AI: Java Pitfalls I Discovered in 2026
By 2026, AI coding assistants have become as routine in a Java developer’s workflow as Stack Overflow once was. Stack Overflow’s…
Read More » -

Structured Concurrency in JDK 27: How StructuredTaskScope Prevents Thread Leaks
Virtual threads solved the scalability problem — but not the correctness problem. You can now spin up a million threads…
Read More » -

GIS Map Service Introduction in Java
1. Introduction You can see various map services like google maps, bing map and more in your ordinary life. This…
Read More » -

OpenCV Android Object Detector
This post will be the final chapter of my series on object detection since we have explored the possibility of…
Read More » -

ZGC vs G1GC in Java 26: Which GC Should You Actually Use?
Every time a new Java release drops, the question surfaces again in Slack channels and pull-request threads alike: “Are we still…
Read More » -

Understanding the Key Derivation Function API in Java 25
Java 25 introduces a standardized Key Derivation Function (KDF) API that simplifies the process of deriving cryptographic keys from passwords,…
Read More »

