Articles, Home

Teaching Java with Jupyter notebooks

Whatever the side of the fence you’ve been on in trainings – teacher or student, I believe we all share the same experience: it’s very hard to stay focused during a couple of hours. This has only become worse in recent years, with mobile phones being a huge source of distraction. The consequence is that the most important part is the practice.

Articles, dummyCategory

API Design of Eclipse Collections – JVM Advent 2018

Eclipse Collections is an open source Java Collections Framework which enables writing functional, fluent code in Java. History Eclipse Collections started off as a collections framework named Caramel at Goldman Sachs in 2004. Since then the framework has evolved, and in 2012, it was open sourced to GitHub as a project called GS Collections. Over …

Articles, dummyCategory

Java Interfaces

Java interfaces specify what methods a class implementing that interface should have, but the interface does not specify the exact implementation of the methods. This Java interface tutorial explains how Java interfaces work, and how to use them.