Code Snippets
Java
Modern Java, for people whose last Java was several versions ago - streams, records, and what replaced the boilerplate.
Everything in Java

09/02/2026
Grouping and summarizing a list in modern Java
Collectors.groupingBy with a downstream collector replaces most of the loop-and-map code people still write - plus records, which remove the class that loop needed.