Last Thursday, November 9th, during the 20th edition of Europe’s largest Java conference, J-Fall 2023, …
Read More »TriOpSys wins the NLJUG INNOVATION AWARD 2023
Last Thursday, November 9th, during the 20th edition of Europe’s largest Java conference, J-Fa…
Call to all Developers who love frontend technologies
Join the Frontmania Conference on Oct 12th at Jaarbeurs Utrecht, the ultimate tech gathering for fro…
J-Fall 2023: registratie geopend en programma online
Het is tijd voor een mijlpaal! In 2023 vieren we het 20-jarig jubileum van NLJUG en J-Fall, de groot…
LET OP ! Vandaag om exact 12:00 uur gaat de ticketing Jfall 2023 open
LET OP ! Vandaag om exact 12:00 uur gaat de ticketing Jfall 2023 open. Zie www.jfall.nl Vorig jaar…
NLJUG Business partner meeting in het teken van remote werken
“Last night, we had a fantastic Business Partner meeting! We kicked off the evening with an in…
-
Java Magazine #2 2023: NLJUG 20 YEAR ANNIVERSARY!
This year, it’s our 20th anniversary. And when it’s your birthday, you celebrate it with …
Read More » -
Java Magazine #1 2023: Java is future proof
-
Java Magazine #4 2022: J-Fall is here
-
Golo, the little language that gives you superpowers
-
Toggle-systeem: Van ergernis tot feature
Java Articles by Foojay.io
November, 2023
-
27 November
Foojay Podcast #34: J-Fall Report, Part 2
On November 9th, we had several interviews with the speakers and guests at the J-Fall conference in the Netherlands. Last week, in episode 33 of the Foojay Podcast, you could hear discussions about the evolution of Java towards the Cloud and sustainability. In this part, we will touch on various topics related to the developers’ lives. Video Report Podcast (audio …
Read More » -
26 November
Custom JFR Events: A Short Introduction
JDK Flight Recorder (JFR) is one of the two prominent open-source profilers for the OpenJDK (besides async-profiler). It offers many features (see Profiling Talks) and the ability to observe lots of information by recording over one hundred different events. If you want to know more about the existing events, visit my JFR Event Collection website (related blog post): Besides these …
Read More » -
24 November
Java for desktop applications: Tips and Tricks (Part 1)
As desktop applications have kind of become a niche topic, it’s getting harder to find information about up-to-date best practices for desktop development. Since I have been doing this for many years now, I hope that I can share some of the lessons learned with other fellow desktop developers. Most items that are discussed here are taken straight from XPipe, …
Read More » -
23 November
Video: “If I decide to stay with Oracle Java what issues will I face?”
Simon Ritter and Gerrit Grunwald answer a question that they hear repeatedly: “If I decide to stay with Oracle Java (rather than migrate to an OpenJDK distribution) what issues will I face?” https://youtu.be/rGiIm2xdp7w Sponsored Content State of Java Survey The Authoritative Java Study Conducted by the Only Vendor 100% Focused on Java Download (For Free) Here! The post Video: “If …
Read More » -
22 November
Feedback from calling Rust from Python
I got plenty of feedback on my post about Calling Rust from Python: Hacker News /r/python /r/rust Many comments mentioned pyo3, and I should use it instead of cooking my own. Thanks to the authors, I checked: in this post, I explain what it is and how I migrated my code. What is pyo3? Rust bindings for Python, including tools …
Read More » -
21 November
Announcing the Build Server for Gradle Open-Source Repository
Build Server for Gradle In September, we shared that Microsoft and Gradle have joined forces to explore a novel approach to Gradle project import and building, based on the Build Server Protocol (BSP). The objective is address the existing Gradle issues on Visual Studio Code and improve support for Gradle projects. The Build Server for Gradle, developed in collaboration with Gradle, will delegate …
Read More » -
20 November
Foojay Podcast #33: J-Fall Report, Part 1
A few months ago, we asked the J-Fall team if a Foojay Broadcast Room would be a good idea. And they said yes, so suddenly we found ourselves in the middle of the entrance of the Pathé cinema in Ede in the Netherlands, with a camera and microphones. During the day, we had a lot of exciting talks. There are …
Read More » -
20 November
Explore project structure with IntelliJ IDEA’s Dependency Matrix
In this tutorial, we’ll look at exploring project structure with IntelliJ IDEA‘s Dependency Matrix. When working with large, complex software projects, we need to understand the dependencies between components in your projects. IntelliJ IDEA has a feature called Dependency Structure Matrix (DSM), or Dependency Matrix, that can help us with this. When you are new to a project, the Dependency …
Read More » -
19 November
Patterns For The Design Of Microservices – Part 3
In part1, part2, discussed, several design patterns were explored that aided in the development of microservices. This blog post will cover the subsequent design patterns. Observability Patterns Cross-cutting Concern Patterns Microservice Architecture Patterns Observability Patterns Undoubtedly, the logging mechanism benefits troubleshooting issues that arise when executing operations or transactions on multiple deployed microservices. We can further categorize the observability patterns …
Read More » -
19 November
[Unit] Testing Supabase in Kotlin using Test Containers
In this article, I’ll dive into several methods I’ve been looking into to unit test a Kotlin application using Supabase and why I finally decided to go for a Docker Compose / Test Containers solution. TL;DR : The easiest way I found to test my database service is to mimick Supabase using Docker Compose and Test Containers. Here’s the code …
Read More »