Anthony Goubard9 articles
Let’s see other possibilities than the default ones that can be done with the structured concurrency API.
-
Let’s Replace the synchronized Keyword
Let’s replace the synchronized keyword to be more virtual threads friendly in a code readable way.
-
12 Text Tools For Developers
Text data and text manipulation of it is also part of a developer job. Let’s see a few free text tools to simplify your job.
- Anthony Goubard
-
12 Lessons Learned From Doing The One Billion Row Challenge
How fast can you process a 1 billion rows text file in Java? That’s the challenge that many Java developers tried to solve in January 2024.
- Anthony Goubard
-
Sorting Text in Java, How Complicated Can It Be?
Text is represented by the String class in Java. In this article we’ll explore how to sort String, the advantages and drawbacks of each possibility.
-
Live (re)compile, (re)load, (re)execute Java code in 100 LoC
In this article, we’ll write a program (The Reloader) to easily play with Java code without the need to know how to compile or run the code or print the result.
-
The Files in JDK 21
As Java developers, we all have it installed on our computer: the Java Development Kit, also known as the JDK. In this article, we’ll explore the files of the JDK.
-
Dissection of Joeffice: Open Source Office Suite in Java
Let’s explore libraries and framework used to write an office suite in Java.
- Anthony Goubard
-
Write Once, Run Embedded in any IDE
Having written many Java GUI applications, I thought it would be cool to run them embedded in IntelliJ IDEA, Eclipse and NetBeans. I didn’t want to write 3 plugins per application so I came up with this solution.
- Anthony Goubard