<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Geertjan Wielenga on foojay.io - Friends of OpenJDK</title><link>https://foojayio.github.io/website/today/author/geertjan-wielenga/</link><description>Articles written by Geertjan Wielenga on foojay.io - Friends of OpenJDK</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Fri, 31 Jul 2026 08:45:43 +0000</lastBuildDate><atom:link href="https://foojayio.github.io/website/today/author/geertjan-wielenga/index.xml" rel="self" type="application/rss+xml"/><item><title>How to Create a Spring Boot Fraud Scoring Service</title><link>https://foojayio.github.io/website/today/how-to-create-a-spring-boot-fraud-scoring-service/</link><pubDate>Fri, 31 Jul 2026 08:45:43 +0000</pubDate><guid>https://foojayio.github.io/website/today/how-to-create-a-spring-boot-fraud-scoring-service/</guid><description>&lt;p&gt;Most Java teams who want a machine learning model in production end up standing up a Python service and calling it over HTTP. That works, but it buys you, as a Java developer, a second runtime, a second deployment pipeline, a network hop on every prediction, and a team boundary that turns retraining into someone else&amp;rsquo;s ticket.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href="https://www.deepnetts.com/" target="_blank" rel="noopener noreferrer"&gt;Deep Netts&lt;/a&gt;
 removes that split: it&amp;rsquo;s a pure-Java deep learning library, so the model trains in Java, serializes to a file, and loads back into your Spring Boot application as an ordinary bean. Predictions become in-process method calls measured in microseconds, with nothing extra to deploy, secure, or monitor.&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>Toward a Durable Spring PetClinic</title><link>https://foojayio.github.io/website/today/toward-a-durable-spring-petclinic/</link><pubDate>Sun, 19 Jul 2026 18:06:06 +0000</pubDate><guid>https://foojayio.github.io/website/today/toward-a-durable-spring-petclinic/</guid><description>&lt;h2 id="h2-0-overview"&gt;Overview&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Durable Execution&lt;/strong&gt; is a way of running code so that its progress survives failure. A normal program keeps its state in memory: if the process crashes, the machine reboots, or a network call times out halfway through a multi-step operation, that state is gone and the work is left half-done.&lt;/p&gt;
&lt;p&gt;Temporal, the Durable Execution platform, persists every step of a process to its &lt;strong&gt;Event History&lt;/strong&gt; &amp;mdash; a durable, append-only log of Events &amp;mdash; so that after any failure the work resumes exactly where it left off, as if the crash never happened.&lt;/p&gt;</description></item><item><title>Temporal Is to Your Code What a Database Is to Your Data</title><link>https://foojayio.github.io/website/today/temporal-is-to-your-code-what-a-database-is-to-your-data/</link><pubDate>Sat, 11 Jul 2026 10:31:54 +0000</pubDate><guid>https://foojayio.github.io/website/today/temporal-is-to-your-code-what-a-database-is-to-your-data/</guid><description>&lt;p&gt;&lt;strong&gt;Once upon a time, applications managed their own data files. Every program hand-rolled its own locking, its own crash recovery, its own consistency guarantees. Every program did it badly, in its own unique way.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Then the relational database arrived and made a deal with application developers: &lt;em&gt;&lt;strong&gt;you declare what you want, and I guarantee it survives&lt;/strong&gt;.&lt;/em&gt; Atomicity, durability, crash recovery: all of it moved out of application code and into a dedicated platform. Nobody writes their own file-based transaction log anymore.&lt;/p&gt;</description></item><item><title>"This Can't Possibly Work": What I Learned at a Temporal.io Workshop</title><link>https://foojayio.github.io/website/today/this-cant-possibly-work-what-i-learned-at-a-temporal-io-workshop-on-durable-execution/</link><pubDate>Fri, 10 Jul 2026 08:41:22 +0000</pubDate><guid>https://foojayio.github.io/website/today/this-cant-possibly-work-what-i-learned-at-a-temporal-io-workshop-on-durable-execution/</guid><description>&lt;p&gt;&lt;strong&gt;When developers first hear about &lt;a href="https://temporal.io/" target="_blank" rel="noopener noreferrer"&gt;Temporal&lt;/a&gt;
, they tend to move through a predictable sequence of emotions. First comes disbelief &amp;mdash; the claim that your application can crash mid-execution and simply pick up where it left off, variables intact, sounds like nonsense. Then comes irritation that anyone would even say such a thing is possible. Then they try it, discover it actually works, and get very excited. And finally they ask the only question that matters: &lt;em&gt;how?&lt;/em&gt;&lt;/strong&gt;
&lt;img src="https://foojayio.github.io/website/today/this-cant-possibly-work-what-i-learned-at-a-temporal-io-workshop-on-durable-execution/IMG_2977-1024x768.jpeg" alt="" loading="lazy"&gt;
&lt;/p&gt;</description></item><item><title>Observing Apache NetBeans with OpenTelemetry and Dash0</title><link>https://foojayio.github.io/website/today/observing-apache-netbeans-with-opentelemetry-and-dash0/</link><pubDate>Sun, 14 Jun 2026 22:03:09 +0000</pubDate><guid>https://foojayio.github.io/website/today/observing-apache-netbeans-with-opentelemetry-and-dash0/</guid><description>&lt;p&gt;&lt;em&gt;What happens when you point an observability agent at your IDE rather than your application?&lt;/em&gt;&lt;/p&gt;
&lt;h2 id="h2-0-the-question-nobody-thinks-to-ask"&gt;The question nobody thinks to ask&lt;/h2&gt;
&lt;p&gt;Observability is something we do to our applications. We instrument services, add trace context to HTTP requests, collect JVM heap metrics, ship logs to a backend. The IDE we use to write that instrumentation is &amp;mdash; by convention &amp;mdash; invisible. It just runs. When it is slow, we assume it is busy. When it crashes, we restart it. We have no data.&lt;/p&gt;</description></item><item><title>"Agentic" Was Everywhere at Money20/20 Amsterdam</title><link>https://foojayio.github.io/website/today/agentic-was-everywhere-at-money20-20-amsterdam-once-i-started-looking/</link><pubDate>Fri, 05 Jun 2026 08:55:48 +0000</pubDate><guid>https://foojayio.github.io/website/today/agentic-was-everywhere-at-money20-20-amsterdam-once-i-started-looking/</guid><description>&lt;p&gt;&lt;strong&gt;I walked the floor at &lt;a href="https://www.money2020.com/" target="_blank" rel="noopener noreferrer"&gt;Money20/20&lt;/a&gt;
 in Amsterdam with a simple little mission: count the first ten vendor booths using &amp;ldquo;AI,&amp;rdquo; &amp;ldquo;agent,&amp;rdquo; or &amp;ldquo;agentic&amp;rdquo; in their pitch.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;My first impression was that this would be hard. Hundreds of organizations, and the buzzwords felt oddly absent &amp;mdash; payments, core banking, compliance, the usual fintech furniture, but not the wall-to-wall &amp;ldquo;agentic everything&amp;rdquo; I&amp;rsquo;d braced for. I jotted down my first ten and thought: &lt;em&gt;&lt;strong&gt;huh, AI is barely here&lt;/strong&gt;.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>From Zero (Really Zero) to OpenTelemetry</title><link>https://foojayio.github.io/website/today/from-zero-really-zero-to-opentelemetry/</link><pubDate>Tue, 19 May 2026 13:36:11 +0000</pubDate><guid>https://foojayio.github.io/website/today/from-zero-really-zero-to-opentelemetry/</guid><description>&lt;p&gt;Here&amp;rsquo;s a super awesome prompt (e.g., for Claude Code) that you can use with &lt;a href="https://github.com/dash0hq/agent-skills" target="_blank" rel="noopener noreferrer"&gt;https://github.com/dash0hq/agent-skills&lt;/a&gt;
, the free collection of skills for AI coding agents to make applications observable with OpenTelemetry, such as with &lt;a href="https://www.dash0.com/" target="_blank" rel="noopener noreferrer"&gt;Dash0&lt;/a&gt;
.&lt;/p&gt;
&lt;p&gt;And the end result is this, a view into the traces of your application (without anything at all at the start of the process).
&lt;img src="https://foojayio.github.io/website/today/from-zero-really-zero-to-opentelemetry/dash0-foojay-2-1024x545.png" alt="" loading="lazy"&gt;
&lt;/p&gt;
&lt;h2 id="h2-0-the-super-awesome-prompt"&gt;&lt;strong&gt;The Super Awesome Prompt&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Take a careful look below: before doing this prompt, not only do we not have an application that is instrumented with OpenTelemetry yet. Not only do we not have the agent we need to do the instrumentation yet.&lt;/p&gt;</description></item><item><title>Foojay Podcast #94: More Than a Blog: How Foojay Connects, Sustains, and Evolves the Java Community</title><link>https://foojayio.github.io/website/today/foojay-podcast-94/</link><pubDate>Mon, 04 May 2026 06:26:00 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-podcast-94/</guid><description>&lt;p&gt;Foojay.io, the website for the Friends of OpenJDK, is turning six years old. To celebrate, Frank Delporte headed to JCON in Cologne, Germany, and sat down with twelve members of the Java community to talk about what Foojay means to them, what they learn from each other, and how the community is evolving.&lt;/p&gt;
&lt;p&gt;This episode covers a lot of ground. Sharat Chandar reflects on 25 years in the Java community and why the people are what keep the language alive. Markus Westergren and Iryna Dohndorf both focus on a theme that comes up again and again: developer sustainability. Not just green software, but how you stay healthy, grounded, and relevant when AI is changing everything around you. Markus and his wife researched how developers are reacting to AI, from ignoring it completely to transforming everything they do. Iryna talks about building resilience and robustness as skills, not afterthoughts.&lt;/p&gt;</description></item><item><title>From Zero to Full Observability with Dash0</title><link>https://foojayio.github.io/website/today/from-zero-to-full-observability-with-dash0/</link><pubDate>Sat, 04 Apr 2026 06:35:47 +0000</pubDate><guid>https://foojayio.github.io/website/today/from-zero-to-full-observability-with-dash0/</guid><description>&lt;p&gt;This guide walks through the complete process of deploying a minimal Spring Boot service to Kubernetes and adding full observability using the &lt;a href="https://www.dash0.com/docs/dash0/monitoring/kubernetes/about-kubernetes" target="_blank" rel="noopener noreferrer"&gt;Dash0 Kubernetes Operator&lt;/a&gt;
 &amp;mdash; without making any changes to the application code.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.dash0.com/docs/dash0" target="_blank" rel="noopener noreferrer"&gt;Dash0&lt;/a&gt;
 is an OpenTelemetry-native observability platform that collects and correlates traces, metrics, and logs, and provides infrastructure monitoring across Kubernetes resources &amp;mdash; pods, nodes, namespaces, deployments, daemonsets, statefulsets, jobs, and cronjobs &amp;mdash; as well as cloud infrastructure such as AWS. Its Kubernetes operator can automatically instrument workloads at the pod level, with no changes required to application code or container images.
&lt;img src="https://foojayio.github.io/website/today/from-zero-to-full-observability-with-dash0/kubernetes-dash0-1024x581.png" alt="" loading="lazy"&gt;
&lt;/p&gt;</description></item><item><title>Announcing: Sustainability for Java Developers</title><link>https://foojayio.github.io/website/today/announcing-sustainability-for-java-developers-a-new-collaborative-guide-from-the-foojay-io-community/</link><pubDate>Mon, 02 Feb 2026 11:04:54 +0000</pubDate><guid>https://foojayio.github.io/website/today/announcing-sustainability-for-java-developers-a-new-collaborative-guide-from-the-foojay-io-community/</guid><description>&lt;p&gt;Java developers from around the world are writing a book about a question that&amp;rsquo;s becoming impossible to ignore: how do we write software that&amp;rsquo;s good for both our projects and the planet?&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Sustainability for Java Developers: Towards an Understanding of Sustainable Java Software Development&lt;/em&gt; is now freely available on Leanpub, bringing together Java Champions, architects, and technical writers to look at sustainability from every angle.&lt;/p&gt;
&lt;figure class="wp-block-image size-large is-resized"&gt;
 &lt;img fetchpriority="high" decoding="async" width="793" height="1024" src="sustainabilitybook-793x1024.png" alt="" class="wp-image-122569" style="width:277px;height:auto"&gt;
&lt;/figure&gt;
&lt;p&gt;The book covers everything from the environmental footprint of our data centers to the ethics of open source supply chains, from efficient data formats to the often-overlooked topic of career longevity.&lt;/p&gt;</description></item><item><title>Webinar: "Moving Applications From JDK 21 to JDK 25: What You Need to Know"</title><link>https://foojayio.github.io/website/today/webinar-moving-applications-from-jdk-21-to-jdk-25-what-you-need-to-know/</link><pubDate>Mon, 26 Jan 2026 14:14:32 +0000</pubDate><guid>https://foojayio.github.io/website/today/webinar-moving-applications-from-jdk-21-to-jdk-25-what-you-need-to-know/</guid><description>&lt;p&gt;JDK 25 has arrived as the latest long-term support (LTS) release for Java, bringing performance improvements and enhanced stability for modern applications. If your organization is running JDK 21, now is the time to start planning your migration path.&lt;/p&gt;
&lt;h2 id="h2-0-why-upgrade"&gt;Why Upgrade?&lt;/h2&gt;
&lt;p&gt;Each new LTS release represents years of refinements, optimizations, and new capabilities. JDK 25 builds on the foundation of JDK 21 while delivering the reliability that enterprise applications demand. But understanding what&amp;rsquo;s changed&amp;mdash;and what might break&amp;mdash;is essential for a smooth transition.&lt;/p&gt;</description></item><item><title>Super Early Bird Tickets: Voxxed Days Amsterdam</title><link>https://foojayio.github.io/website/today/super-early-bird-tickets-voxxed-days-amsterdam/</link><pubDate>Mon, 06 Oct 2025 12:37:44 +0000</pubDate><guid>https://foojayio.github.io/website/today/super-early-bird-tickets-voxxed-days-amsterdam/</guid><description>&lt;p&gt;After this year&amp;rsquo;s success, the Voxxed Amsterdam team is proud to announce that next year will be even bigger, with more speakers, breakouts, sponsors, and attendees. We warmly invite you to join and meet us at the &lt;strong&gt;JUG Square&lt;/strong&gt; on &lt;strong&gt;April 1&amp;ndash;2, 2026&lt;/strong&gt; in Amsterdam.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Date:&lt;/strong&gt; April 1&amp;ndash;2, 2026&lt;br&gt;
&lt;strong&gt;Location:&lt;/strong&gt; Pathé Amsterdam (North)&lt;br&gt;
&lt;strong&gt;Details &amp;amp; tickets:&lt;/strong&gt; &lt;a href="http://amsterdam.voxxeddays.com" target="_blank" rel="noopener noreferrer"&gt;amsterdam.voxxeddays.com&lt;/a&gt;
&lt;/p&gt;
&lt;h3 id="h3-0-speaker-line-up"&gt;Speaker Line-up&lt;/h3&gt;
&lt;p&gt;These industry leaders will be sharing their unique insights at the conference:&lt;/p&gt;</description></item><item><title>Take the State of Java 2025 Survey</title><link>https://foojayio.github.io/website/today/take-the-state-of-java-2025-survey/</link><pubDate>Mon, 06 Oct 2025 12:23:17 +0000</pubDate><guid>https://foojayio.github.io/website/today/take-the-state-of-java-2025-survey/</guid><description>&lt;p&gt;Do you want to know which Java JDK distribution is used where for what and when? The time has come again to take the State of Java Survey and share insights while gaining Java ecosystem knowledge.&lt;/p&gt;
&lt;p&gt;All those participating will get the complete research, which can be of great benefit in your technology choices in the Java ecosystem.&lt;/p&gt;
&lt;p&gt;Click the image below to get started:
&lt;a href="https://survey.alchemer.com/s3/8466906/Azul-State-of-Java-Survey" target="_blank" rel="noopener noreferrer"&gt;&lt;img src="https://foojayio.github.io/website/today/take-the-state-of-java-2025-survey/which-1024x387.png" alt="" loading="lazy"&gt;
&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;Or simply click this link:&lt;/p&gt;</description></item><item><title>Ai4Devs Amsterdam: Successful Inaugural Developer-Focused AI Conference</title><link>https://foojayio.github.io/website/today/ai4devs-amsterdam-successful-inaugural-developer-focused-ai-conference/</link><pubDate>Fri, 03 Oct 2025 09:37:43 +0000</pubDate><guid>https://foojayio.github.io/website/today/ai4devs-amsterdam-successful-inaugural-developer-focused-ai-conference/</guid><description>&lt;p&gt;&lt;strong&gt;The &lt;a href="https://amsterdam.ai4devs.io/" target="_blank" rel="noopener noreferrer"&gt;inaugural AI4Devs conference in Amsterdam&lt;/a&gt;
, held recently Friday 19 September, a collaboration between Java Champion Jonathan Vila, &lt;a href="https://www.iodigital.com/en" target="_blank" rel="noopener noreferrer"&gt;local developer agency IO Digital&lt;/a&gt;
 (in particular Joost Kaan, Arno Koehler, and Michel Blankenstein), and the Friends of OpenJDK (Foojay.io), proved to be a resounding success, bringing together approximately 200 developers at Amsterdam&amp;rsquo;s iO Digital Campus.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;ING, Azul, Qodo, and ContentStack&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Co-sponsored and co-organized with ING and Azul, together with Qodo and ContentStack, the event featured standout keynote sessions from Josh Long, of SpringBoot fame, and Pratik Patel, from Azul, who delivered insights on AI in the context of Spring and on increasing the speed of Java-based applications, especially in the context of AI-oriented applications.
&lt;img src="https://foojayio.github.io/website/today/ai4devs-amsterdam-successful-inaugural-developer-focused-ai-conference/IMG_6230-1024x683.jpg" alt="" loading="lazy"&gt;
&lt;/p&gt;</description></item><item><title>CodeRabbit Tutorial for Java Developers</title><link>https://foojayio.github.io/website/today/coderabbit-tutorial-for-java-developers/</link><pubDate>Mon, 28 Jul 2025 12:43:19 +0000</pubDate><guid>https://foojayio.github.io/website/today/coderabbit-tutorial-for-java-developers/</guid><description>&lt;p&gt;&lt;a href="https://www.coderabbit.ai/" title="CodeRabbit" target="_blank" rel="noopener noreferrer"&gt;CodeRabbit&lt;/a&gt;
 is an AI-powered code review tool that integrates seamlessly with your Git workflow to provide intelligent, automated code reviews.&lt;/p&gt;
&lt;p&gt;For Java developers, CodeRabbit offers specialized analysis that understands Java syntax, best practices, and common patterns.&lt;/p&gt;
&lt;h2 id="h2-0-getting-started"&gt;&lt;strong&gt;Getting Started&lt;/strong&gt;&lt;/h2&gt;
&lt;h3 id="h3-1-prerequisites"&gt;&lt;strong&gt;Prerequisites&lt;/strong&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;A GitHub, GitLab, Azure DevOps, or Bitbucket repository.&lt;/li&gt;
&lt;li&gt;Java project with standard structure (Maven or Gradle).&lt;/li&gt;
&lt;li&gt;Admin access to your repository.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="h3-2-setup-process"&gt;&lt;strong&gt;Setup Process&lt;/strong&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Install CodeRabbit&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;Visit &lt;a href="https://coderabbit.ai/" target="_blank" rel="noopener noreferrer"&gt;CodeRabbit.ai&lt;/a&gt;
.&lt;/li&gt;
&lt;li&gt;Sign up using your credentials, while noting that CodeRabbit is free for OSS, supports GitHub, GitLab, Azure DevOps, and Bitbucket.&lt;/li&gt;
&lt;li&gt;Grant necessary permissions to your repositories.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Repository Configuration&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;Select the Java repositories you want CodeRabbit to review.&lt;/li&gt;
&lt;li&gt;CodeRabbit automatically detects Java projects and configures appropriate rules.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Initial Setup Verification&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;Create a test pull request with a simple Java change.&lt;/li&gt;
&lt;li&gt;Verify CodeRabbit comments appear within minutes.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="h2-3-core-features-for-java-development"&gt;&lt;strong&gt;Core Features for Java Development&lt;/strong&gt;&lt;/h2&gt;
&lt;h3 id="h3-4-1-code-quality-analysis"&gt;&lt;strong&gt;1. Code Quality Analysis&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;CodeRabbit analyzes your Java code for:&lt;/p&gt;</description></item><item><title>Foojay Podcast #76: DevBcn Report, Part 1 – Learn from the Community</title><link>https://foojayio.github.io/website/today/foojay-podcast-76/</link><pubDate>Mon, 21 Jul 2025 06:41:00 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-podcast-76/</guid><description>&lt;p&gt;In early July, the DevBcn conference in Barcelona featured a diverse lineup of speakers, covering topics across multiple technology domains. Geertjan Wielenga took the camera and microphone with him to Spain. Together with Nacho Cougil and Jonathan Vila, two of the organizers, he spoke with many visitors about what they like most in Java, how AI influences their work, and what is important to them in the work they do.&lt;/p&gt;</description></item><item><title>Prime Time: The High Performance Java Event</title><link>https://foojayio.github.io/website/today/prime-time-the-high-performance-java-event/</link><pubDate>Tue, 08 Jul 2025 07:05:00 +0000</pubDate><guid>https://foojayio.github.io/website/today/prime-time-the-high-performance-java-event/</guid><description>&lt;p&gt;&lt;strong&gt;Java is the engine behind mission-critical applications and end user experiences. From faster response times to consistent performance, Java can have a significant impact on business results and cloud costs.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Join Azul and leading voices from the Java community for Prime Time, a dynamic virtual event dedicated to innovations, strategies, and real-world insights that power high-performance Java estates. No matter where you&amp;rsquo;re running your apps &amp;ndash; on-prem or in the cloud, or if you&amp;rsquo;re looking to modernize legacy Java workloads &amp;ndash; when performance, elasticity, scale and cloud cost matter, &lt;strong&gt;Make It Prime&lt;/strong&gt;.&lt;/p&gt;</description></item><item><title>New AI Conference For And By Developers</title><link>https://foojayio.github.io/website/today/new-ai-conference-for-and-by-developers/</link><pubDate>Mon, 07 Jul 2025 11:50:54 +0000</pubDate><guid>https://foojayio.github.io/website/today/new-ai-conference-for-and-by-developers/</guid><description>&lt;p&gt;AI4DEVS, &lt;strong&gt;September 19, 2025&lt;/strong&gt; in Amsterdam, is created &lt;strong&gt;for and by developers working with AI technologies&lt;/strong&gt; . Our mission is simple: share practical, usable knowledge with real use cases and code. Whether you&amp;rsquo;re an experienced AI engineer or just starting to explore machine learning in your applications, AI4DEVS offers &lt;strong&gt;valuable knowledge for every level&lt;/strong&gt; . All the details are here: &lt;a href="https://amsterdam.ai4devs.io/" target="_blank" rel="noopener noreferrer"&gt;https://amsterdam.ai4devs.io/&lt;/a&gt;

&lt;a href="https://amsterdam.ai4devs.io/" target="_blank" rel="noopener noreferrer"&gt;&lt;img src="https://foojayio.github.io/website/today/new-ai-conference-for-and-by-developers/ai4devs0-1024x616.png" alt="" loading="lazy"&gt;
&lt;/a&gt;
 &lt;a href="https://amsterdam.ai4devs.io/" target="_blank" rel="noopener noreferrer"&gt;&lt;img src="https://foojayio.github.io/website/today/new-ai-conference-for-and-by-developers/ai4devs-730x1024.png" alt="" loading="lazy"&gt;
&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;All the details are here: &lt;a href="https://amsterdam.ai4devs.io/" target="_blank" rel="noopener noreferrer"&gt;https://amsterdam.ai4devs.io/&lt;/a&gt;
&lt;/p&gt;</description></item><item><title>Azul and JetBrains Collaborate to Enhance Runtime Performance for Kotlin Workloads</title><link>https://foojayio.github.io/website/today/azul-and-jetbrains-collaborate-to-enhance-runtime-performance-for-kotlin-workloads/</link><pubDate>Mon, 26 May 2025 08:23:56 +0000</pubDate><guid>https://foojayio.github.io/website/today/azul-and-jetbrains-collaborate-to-enhance-runtime-performance-for-kotlin-workloads/</guid><description>&lt;p&gt;&lt;strong&gt;SUNNYVALE, Calif., &amp;mdash; May 20, 2025 &amp;mdash; &lt;a href="https://www.azul.com/" target="_blank" rel="noopener noreferrer"&gt;Azul&lt;/a&gt;
, the only company 100% focused on Java, and &lt;a href="https://www.jetbrains.com/" target="_blank" rel="noopener noreferrer"&gt;JetBrains&lt;/a&gt;
, the leading provider of professional software development tools and creator of the Kotlin programming language, today announced a strategic technical collaboration to enhance the runtime performance and scalability of web and server-side Kotlin applications. This strategic collaboration empowers Kotlin teams to accelerate development cycles and optimize application performance, helping them support their business priorities while driving greater operational efficiency.&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>Book Review: Raising Young Coders</title><link>https://foojayio.github.io/website/today/book-review-raising-young-coders/</link><pubDate>Wed, 07 May 2025 07:04:09 +0000</pubDate><guid>https://foojayio.github.io/website/today/book-review-raising-young-coders/</guid><description>&lt;p&gt;&amp;ldquo;&lt;a href="https://www.amazon.com/Raising-Young-Coders-Teaching-Programming/dp/B0DVBQZ483/" target="_blank" rel="noopener noreferrer"&gt;Raising Young Coders&lt;/a&gt;
&amp;rdquo; by Cassandra Chin: A Parent&amp;rsquo;s Guide to Inspiring the Next Generation of Technologists&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;An Author Who Understands Both Sides&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&amp;ldquo;Raising Young Coders: A Parent&amp;rsquo;s Guide to Teaching Programming at Home&amp;rdquo; by Cassandra Chin is an invaluable resource for parents seeking to introduce their children to the world of technology in a fun, accessible way.&lt;/p&gt;
&lt;p&gt;As a young computer science student who has been teaching kids&amp;rsquo; programming workshops since age 14, Chin brings both technical expertise and genuine understanding of children&amp;rsquo;s learning styles to this comprehensive guide.&lt;/p&gt;</description></item><item><title>Foojay Podcast #70: Celebrating 5 Years of Foojay</title><link>https://foojayio.github.io/website/today/foojay-podcast-70/</link><pubDate>Fri, 25 Apr 2025 08:00:00 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-podcast-70/</guid><description>&lt;p&gt;On April 25, 2020, &lt;a href="https://foojayio.github.io/website/today/foojay-a-place-for-friends-of-openjdk/"&gt;Geertjan Wielenga published the first Foojay post&lt;/a&gt;
. Yes, we are celebrating 5 years since the Friends Of OpenJDK website launch! Today, more than 1,600 posts are on the site, written by over 250 authors. And there is much more to discover within the Foojay world&amp;hellip;&lt;/p&gt;
&lt;p&gt;In this podcast, we look at how Foojay started with founder Geertjan Wielenga. We&amp;rsquo;ll also hear from Gerrit Grunwald about how Foojay&amp;rsquo;s Disco API has become part of your daily work without you realizing it. We also have several of our regular authors and podcast guests who share how Foojay has influenced them (and vice versa).&lt;/p&gt;</description></item><item><title>Foojay Podcast #69: All Things Java at VoxxedDays Amsterdam</title><link>https://foojayio.github.io/website/today/foojay-podcast-69/</link><pubDate>Mon, 14 Apr 2025 11:23:24 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-podcast-69/</guid><description>&lt;p&gt;On April 3rd, the first &lt;a href="https://amsterdam.voxxeddays.com/" target="_blank" rel="noopener noreferrer"&gt;VoxxedDays event in Amsterdam&lt;/a&gt;
 took place. VoxxedDays are tech events organized by local community groups, with support from the Devoxx team. Geertjan Wielenga brought along a camera and microphone and spoke with many of the attendees.&lt;/p&gt;
&lt;p&gt;This is the first Foojay podcast ever to feature more than 20 guests! Geertjan asked the same two questions to many of conference visitors: &amp;ldquo;Tell us who you are and what excites you about the technology landscape?&amp;rdquo; and &amp;ldquo;What are two tips or insights you&amp;rsquo;d like to share?&amp;rdquo;&lt;/p&gt;</description></item><item><title>Join the Celebration of 30 Years of Java</title><link>https://foojayio.github.io/website/today/join-the-celebration-of-30-years-of-java/</link><pubDate>Mon, 03 Feb 2025 08:03:07 +0000</pubDate><guid>https://foojayio.github.io/website/today/join-the-celebration-of-30-years-of-java/</guid><description>&lt;p&gt;&lt;strong&gt;On Thursday, March 13, Azul is hosting a virtual celebration of 30 years of Java, starting at 09:00 PST / 17:00 GMT / 18:00 CET.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;In addition to discussion panels, including a Friends of OpenJDK Panel with Marit Van Dijk, Ondro Mihályi, and Simon Martinelli, the highlighted speakers and topics of the program are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&amp;ldquo;30 Years of Java&amp;rdquo; by Simon Ritter&lt;/li&gt;
&lt;li&gt;&amp;ldquo;AI for Busy Java Developers&amp;rdquo; by Frank Greco&lt;/li&gt;
&lt;li&gt;&amp;ldquo;Behind-the-Scenes Innovations in Java&amp;rdquo; by Venkat Subramaniam&lt;/li&gt;
&lt;li&gt;&amp;ldquo;Reading Code&amp;rdquo; by Marit van Dijk&lt;/li&gt;
&lt;li&gt;&amp;ldquo;We Hate Code - The Joy of Maintaining Dead and Unused Code&amp;rdquo; by Gerrit Grunwald&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="https://www.azul.com/duke-turns-30-celebrating-java/#agenda" target="_blank" rel="noopener noreferrer"&gt;The whole program is here.&lt;/a&gt;
&lt;/p&gt;</description></item><item><title>Encryption and Data Security Market Analysis: Market Analysis 2025</title><link>https://foojayio.github.io/website/today/encryption-and-data-security-market-analysis-market-analysis-2025/</link><pubDate>Tue, 07 Jan 2025 09:01:13 +0000</pubDate><guid>https://foojayio.github.io/website/today/encryption-and-data-security-market-analysis-market-analysis-2025/</guid><description>&lt;p&gt;The data encryption and security market continues to evolve as organizations face increasing demands for data protection while maintaining operational efficiency.&lt;/p&gt;
&lt;p&gt;The market includes established solutions and innovative approaches to encrypted data processing and security.&lt;/p&gt;
&lt;h2 id="h2-0-market-overview"&gt;Market Overview&lt;/h2&gt;
&lt;p&gt;The global encryption software market is driven by data protection regulations, Cloud adoption, and the need for secure data processing. Organizations seek solutions that balance robust security with practical operational capabilities.&lt;/p&gt;
&lt;h2 id="h2-1-competitive-landscape"&gt;Competitive Landscape&lt;/h2&gt;
&lt;h3 id="h3-2-anjuna"&gt;Anjuna&lt;/h3&gt;
&lt;p&gt;&lt;a href="https://anjuna.io" target="_blank" rel="noopener noreferrer"&gt;Anjuna&lt;/a&gt;
 delivers baseline confidential computing capabilities focused on hardware-based security measures. Their platform implements routine encryption management through standard TEE integrations and common key management approaches. The solution provides fundamental confidential computing features while following accepted enterprise security patterns.&lt;/p&gt;</description></item><item><title>Incident Response Platform Comparison: Market Analysis 2025</title><link>https://foojayio.github.io/website/today/incident-response-platform-comparison-market-analysis-2025/</link><pubDate>Thu, 02 Jan 2025 08:38:07 +0000</pubDate><guid>https://foojayio.github.io/website/today/incident-response-platform-comparison-market-analysis-2025/</guid><description>&lt;p&gt;The incident response platform market continues to expand as organizations prioritize effective incident management in their Cloud-native environments and beyond.&lt;/p&gt;
&lt;p&gt;The market features a range of solutions offering incident management capabilities, with varying approaches to enterprise and team needs.&lt;/p&gt;
&lt;h2 id="h2-0-market-overview"&gt;Market Overview&lt;/h2&gt;
&lt;p&gt;The incident management market is driven by increasing Cloud complexity, rising downtime costs, and growing DevOps adoption.&lt;/p&gt;
&lt;p&gt;Organizations are seeking solutions that can effectively integrate with their existing tools while providing streamlined incident response workflows.&lt;/p&gt;</description></item><item><title>Java Conferences in 2025</title><link>https://foojayio.github.io/website/today/java-conferences-2025/</link><pubDate>Wed, 01 Jan 2025 16:12:00 +0000</pubDate><guid>https://foojayio.github.io/website/today/java-conferences-2025/</guid><description>&lt;p&gt;Also see &lt;a href="https://javaconferences.org/" target="_blank" rel="noopener noreferrer"&gt;javaconferences.org&lt;/a&gt;
, a subset of which is below.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;January&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;15: &lt;a href="https://cern.voxxeddays.com/" target="_blank" rel="noopener noreferrer"&gt;Voxxed Days CERN, Switzerland&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;17: &lt;a href="https://ticino.voxxeddays.com/" target="_blank" rel="noopener noreferrer"&gt;Voxxed Days Ticino, Switzerland&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;23, 24, 27, 28: &lt;a href="https://jchampionsconf.com/" target="_blank" rel="noopener noreferrer"&gt;Virtual JChampions Conference&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;February&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;3 - 5: &lt;a href="https://www.jfokus.se/" target="_blank" rel="noopener noreferrer"&gt;Jfokus, Stockholm, Sweden&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;26 - 28: &lt;a href="https://confoo.ca/en/2025" target="_blank" rel="noopener noreferrer"&gt;ConFoo, Montreal, Canada&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;27, 28: &lt;a href="https://devworldconference.com/" target="_blank" rel="noopener noreferrer"&gt;DevWorld, Amsterdam, Netherlands&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;March&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;4 - 6: &lt;a href="https://devnexus.com/" target="_blank" rel="noopener noreferrer"&gt;Devnexus, Atlanta, Georgia&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;11: &lt;a href="https://blipz.io/" target="_blank" rel="noopener noreferrer"&gt;Blipz on the Radar, Utrecht&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;13: &lt;a href="https://www.azul.com/duke-turns-30-celebrating-java" target="_blank" rel="noopener noreferrer"&gt;Duke Turns 30 Java Celebrations&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;18 - 20: &lt;a href="https://www.oracle.com/javaone/" target="_blank" rel="noopener noreferrer"&gt;Oracle&amp;rsquo;s JavaOne&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;25: &lt;a href="https://zurich.voxxeddays.com" target="_blank" rel="noopener noreferrer"&gt;Voxxed Days Zurich, Switzerland&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;26 - 27: &lt;a href="https://romania.voxxeddays.com/voxxed-days-bucharest-2025/" target="_blank" rel="noopener noreferrer"&gt;Voxxed Days Bucharest, Romania&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;April&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>Foojay Podcast #64: Interviews at JFall about opensource, OpenJDK evolutions, Project Loom, JVM,...</title><link>https://foojayio.github.io/website/today/foojay-podcast-64/</link><pubDate>Mon, 23 Dec 2024 10:51:20 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-podcast-64/</guid><description>&lt;p&gt;Let&amp;rsquo;s wrap up this year with more interviews from the JFall conference.&lt;/p&gt;
&lt;p&gt;In this episode you&amp;rsquo;ll learn more about Foojay, JVM internals and writing your own programming language, Project Loom and structured concurrency, learning at conferences, code reviews, creating desktop applications with Java, infrastructure as code, JUG Noord, and much more!&lt;/p&gt;
&lt;h2 id="h2-0-video"&gt;Video&lt;/h2&gt;
&lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;"&gt;
			&lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share; fullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/kx6DfVE-I0o?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video"&gt;&lt;/iframe&gt;
		&lt;/div&gt;

&lt;h2 id="h2-1-podcast-apps"&gt;Podcast Apps&lt;/h2&gt;
&lt;p&gt;You can listen and subscribe to the Foojay Podcast on:&lt;/p&gt;</description></item><item><title>Foojay.io At JFall 2024 (And The Winner Is...)</title><link>https://foojayio.github.io/website/today/foojay-io-at-jfall-2024-and-the-winner-is/</link><pubDate>Tue, 12 Nov 2024 08:47:26 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-io-at-jfall-2024-and-the-winner-is/</guid><description>&lt;p&gt;Last week &lt;a href="https://jfall.nl/" target="_blank" rel="noopener noreferrer"&gt;JFall&lt;/a&gt;
&amp;mdash;the &amp;ldquo;Biggest Java Conference of the Netherlands&amp;rdquo;&amp;mdash;took place. Foojay.io, the Friends of OpenJDK, were there in full force, including a booth with stickers and other swag, as well as Frank Delporte with his popular Foojay.io Podcast, doing live interviews with attendees.
&lt;img src="https://foojayio.github.io/website/today/foojay-io-at-jfall-2024-and-the-winner-is/IMG_8957-1024x768.png" alt="" loading="lazy"&gt;
&lt;/p&gt;
&lt;p&gt;Not only Frank was present throughout the day, doing interviews for upcoming podcast episodes, but so was his 14-year-old son Vik (in yellow sweater in the pic above), handling the technical side and directing the interviews like a true and enthusiastic professional.&lt;/p&gt;</description></item><item><title>Learn About How Your Peers Use Java!</title><link>https://foojayio.github.io/website/today/learn-about-how-your-peers-use-java/</link><pubDate>Thu, 24 Oct 2024 12:44:16 +0000</pubDate><guid>https://foojayio.github.io/website/today/learn-about-how-your-peers-use-java/</guid><description>&lt;p&gt;&lt;strong&gt;Do you ever wonder what OpenJDK distributions and what Java versions your peers are using? Java-based infrastructures and languages? How many are using Java to code AI functionality? How Java workloads are affecting cloud compute costs?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.azul.com/" target="_blank" rel="noopener noreferrer"&gt;Azul&lt;/a&gt;
 has been gathering all that data from a survey of Java users, running until 6:30pm CT on October 31, 2024. If you want to participate, the survey is short, and we&amp;rsquo;ll hook you up with the report after the survey is complete in January 2025.
&lt;a href="https://survey.alchemer.com/s3/8032225/Foo" target="_blank" rel="noopener noreferrer"&gt;&lt;img src="https://foojayio.github.io/website/today/learn-about-how-your-peers-use-java/dimresearch-1024x557.png" alt="" loading="lazy"&gt;
&lt;/a&gt;
&lt;/p&gt;</description></item><item><title>Unsupported OpenJDK Distributions are at Risk of Non-Compliance with DORA</title><link>https://foojayio.github.io/website/today/unsupported-openjdk-distributions-are-at-risk-of-non-compliance-with-dora/</link><pubDate>Mon, 26 Aug 2024 12:24:05 +0000</pubDate><guid>https://foojayio.github.io/website/today/unsupported-openjdk-distributions-are-at-risk-of-non-compliance-with-dora/</guid><description>&lt;p&gt;&lt;strong&gt;For the EU Digital Operations Resilience Act (DORA) to have any meaning at all in the context of OpenJDK (and surely it must have application there since it is explicitly focused on &amp;ldquo;ICT Assets&amp;rdquo;, which it defines as broadly as possible as &amp;ldquo;a software or hardware asset in the network and information systems used by a financial entity&amp;rdquo;), it can only be interpreted to, at the very least, very strongly encourage the usage of supported OpenJDK distributions.&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>Connecting Resilience to Performance in Relation to OpenJDK</title><link>https://foojayio.github.io/website/today/connecting-resilience-to-performance-in-relation-to-openjdk/</link><pubDate>Thu, 22 Aug 2024 08:22:37 +0000</pubDate><guid>https://foojayio.github.io/website/today/connecting-resilience-to-performance-in-relation-to-openjdk/</guid><description>&lt;p&gt;&lt;strong&gt;When considering the connection between performance and resilience in Java, especially in the context of OpenJDK distributions, specific distributions&amp;mdash;like &lt;a href="https://www.azul.com/products/prime/" target="_blank" rel="noopener noreferrer"&gt;Azul Platform Prime&lt;/a&gt;
, which includes Azul Zing, an enhanced build of OpenJDK for superior performance, consistency, and efficiency&amp;mdash;offer unique features that can significantly influence how these two aspects are managed.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The &lt;a href="https://foojayio.github.io/website/today/the-impact-of-the-digital-operational-resilience-act-dora-on-java-investment-with-azul/"&gt;Digital Operational Resilience Act (DORA) by the European Union&lt;/a&gt;
 adds another layer of importance to these considerations, particularly for financial institutions operating within the EU, &lt;a href="https://foojayio.github.io/website/today/the-impact-of-the-eu-dora-act-on-non-eu-financial-organizations/"&gt;regardless of whether they are themselves EU-based institutions&lt;/a&gt;
.&lt;/p&gt;</description></item><item><title>DevIgnition with Foojay.io at Washington DC JUG</title><link>https://foojayio.github.io/website/today/devignition-with-foojay-io-at-washington-dc-jug/</link><pubDate>Wed, 14 Aug 2024 13:06:50 +0000</pubDate><guid>https://foojayio.github.io/website/today/devignition-with-foojay-io-at-washington-dc-jug/</guid><description>&lt;p&gt;&lt;strong&gt;&lt;a href="https://devignition.com/" target="_blank" rel="noopener noreferrer"&gt;DevIgnition&lt;/a&gt;
 is a fun and informal community event run for and by the Washington DC software development community. One &lt;a href="https://devignition.com/" target="_blank" rel="noopener noreferrer"&gt;November 7, a full day of interesting presentations&lt;/a&gt;
 will be featured from excellent speakers from around the world on a wide variety of technical topics.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Come discover how the best minds use the latest technologies to build solutions. Network with other DC area software developers, and discuss the newest emerging trends and techniques.&lt;/p&gt;</description></item><item><title>The Impact of the EU DORA Act on Non-EU Financial Organizations</title><link>https://foojayio.github.io/website/today/the-impact-of-the-eu-dora-act-on-non-eu-financial-organizations/</link><pubDate>Wed, 14 Aug 2024 05:33:09 +0000</pubDate><guid>https://foojayio.github.io/website/today/the-impact-of-the-eu-dora-act-on-non-eu-financial-organizations/</guid><description>&lt;p&gt;&lt;strong&gt;The &lt;a href="https://foojayio.github.io/website/today/the-impact-of-the-digital-operational-resilience-act-dora-on-java-investment-with-azul/"&gt;EU Digital Operational Resilience Act (DORA)&lt;/a&gt;
 is a significant regulatory framework designed to strengthen the digital resilience of financial institutions within the European Union.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;While the primary focus of DORA is on EU-based entities, its impact extends beyond the EU&amp;rsquo;s borders, particularly to financial organizations outside the EU that have business ties with the region.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Here&amp;rsquo;s how DORA impacts financial organizations outside the EU.&lt;/p&gt;
&lt;h3 id="h3-0-1-third-party-service-providers"&gt;1. &lt;strong&gt;Third-Party Service Providers&lt;/strong&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Scope of Regulation&lt;/strong&gt;. DORA covers not just financial entities within the EU but also third-party service providers, including Cloud services, software providers, and IT services. If these providers serve EU financial institutions, they must comply with DORA&amp;rsquo;s requirements, even if they are based outside the EU.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Increased Compliance Costs&lt;/strong&gt;. Non-EU service providers might need to invest in compliance infrastructure to meet DORA standards, which include stringent cybersecurity measures, operational resilience requirements, and incident reporting protocols.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Operational Changes&lt;/strong&gt;. These providers may need to adapt their operations to comply with DORA&amp;rsquo;s requirements, potentially impacting service delivery, pricing, and contractual arrangements with their EU clients.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="h3-1-2-cross-border-operations"&gt;2. &lt;strong&gt;Cross-Border Operations&lt;/strong&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;EU Subsidiaries&lt;/strong&gt;. Non-EU financial organizations with subsidiaries or branches in the EU must ensure that these entities comply with DORA. This might require significant changes in internal processes, governance structures, and IT systems.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Data Protection and Transfer&lt;/strong&gt;. DORA&amp;rsquo;s focus on operational resilience and cybersecurity intersects with data protection regulations. Non-EU organizations must ensure that data transfers and processing are compliant with EU standards, which could involve changes in data management practices.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="h3-2-3-competitive-pressure"&gt;3. &lt;strong&gt;Competitive Pressure&lt;/strong&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Market Access&lt;/strong&gt;. To maintain or gain access to the EU market, non-EU financial organizations must align with DORA&amp;rsquo;s requirements. Failure to comply might restrict their ability to operate within the EU or provide services to EU-based clients.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Reputation and Trust&lt;/strong&gt;. Organizations that proactively comply with DORA may gain a competitive edge by being seen as trustworthy and secure partners. Conversely, those that lag may face reputational risks, especially in a market increasingly focused on cybersecurity and operational resilience.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="h3-3-4-indirect-impact-through-business-relationships"&gt;4. &lt;strong&gt;Indirect Impact Through Business Relationships&lt;/strong&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Supply Chain Scrutiny&lt;/strong&gt;. DORA requires EU financial entities to ensure that their supply chain, including non-EU entities, adheres to operational resilience standards. Non-EU organizations in these supply chains may face increased scrutiny and pressure to comply with DORA, indirectly impacting their operations and costs.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Contractual Obligations&lt;/strong&gt;. Financial institutions in the EU may impose new contractual obligations on non-EU partners to ensure DORA compliance. This could lead to renegotiation of contracts and increased legal and operational overheads for non-EU entities.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="h3-4-5-global-regulatory-influence"&gt;5. &lt;strong&gt;Global Regulatory Influence&lt;/strong&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Precedent for Other Jurisdictions&lt;/strong&gt;. DORA could set a precedent, encouraging other jurisdictions to adopt similar regulatory frameworks. Non-EU financial organizations may find themselves needing to adapt to a broader wave of operational resilience regulations globally, beyond just the EU.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="h3-5-6-impact-on-financial-services-market"&gt;6. &lt;strong&gt;Impact on Financial Services Market&lt;/strong&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Barrier to Entry&lt;/strong&gt;. DORA&amp;rsquo;s stringent requirements might act as a barrier to entry for smaller or less-resourced non-EU financial firms seeking to enter the EU market, potentially limiting competition.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Innovation and Fintech&lt;/strong&gt;. While aiming to enhance security, DORA may also slow down innovation, as non-EU fintech firms might find the compliance burden heavy, possibly leading to a more cautious approach in launching new products or services in the EU.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="h3-6-summary"&gt;Summary&lt;/h3&gt;
&lt;p&gt;The EU DORA Act significantly impacts financial organizations outside the EU, especially those providing services to or operating within the EU.&lt;/p&gt;</description></item><item><title>Consequences of DORA on Java and OpenJDK with Azul</title><link>https://foojayio.github.io/website/today/consequences-of-dora-on-java-and-openjdk-with-azul/</link><pubDate>Fri, 02 Aug 2024 13:49:44 +0000</pubDate><guid>https://foojayio.github.io/website/today/consequences-of-dora-on-java-and-openjdk-with-azul/</guid><description>&lt;p&gt;&lt;strong&gt;The EU&amp;rsquo;s &lt;a href="https://foojayio.github.io/website/today/the-impact-of-the-digital-operational-resilience-act-dora-on-java-investment-with-azul/"&gt;Digital Operational Resilience Act (DORA)&lt;/a&gt;
 is a regulatory framework aimed at enhancing the digital operational resilience of financial institutions within the European Union.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Its primary goal is to ensure that financial entities can withstand, respond to, and recover from all types of ICT-related disruptions and threats, such as cyberattacks.&lt;/p&gt;
&lt;p&gt;DORA establishes a uniform set of requirements for managing ICT risks across the financial sector, promoting a harmonized approach to digital resilience.&lt;/p&gt;</description></item><item><title>The Impact of the Digital Operational Resilience Act (DORA) on Java Investment with Azul</title><link>https://foojayio.github.io/website/today/the-impact-of-the-digital-operational-resilience-act-dora-on-java-investment-with-azul/</link><pubDate>Sun, 14 Jul 2024 13:26:13 +0000</pubDate><guid>https://foojayio.github.io/website/today/the-impact-of-the-digital-operational-resilience-act-dora-on-java-investment-with-azul/</guid><description>&lt;p&gt;&lt;strong&gt;The &lt;a href="https://eur-lex.europa.eu/eli/reg/2022/2554/oj" target="_blank" rel="noopener noreferrer"&gt;Digital Operational Resilience Act (DORA)&lt;/a&gt;
, Regulation (EU) 2022/2554&lt;/strong&gt; ,&lt;strong&gt;is a key piece of European Union legislation focused on strengthening the resilience of the financial sector against digital operational risks, such as cyber attacks and other ICT-related disruptions.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;DORA is part of the broader &lt;a href="https://finance.ec.europa.eu/publications/digital-finance-package_en" target="_blank" rel="noopener noreferrer"&gt;Digital Finance Package&lt;/a&gt;
 introduced by the European Commission to enable innovation and competition in the financial sector while ensuring its security and resilience.&lt;/p&gt;
&lt;p&gt;It is focused on enhancing ICT risk management, strengthening cybersecurity, ensuring continuity and recovery, managing risks arising from dependencies on third-party ICT service providers, and incident reporting.&lt;/p&gt;</description></item><item><title>Foojay Podcast #49: JCON Report, Part 1 - JUGs, Communities, Generative AI, and more!</title><link>https://foojayio.github.io/website/today/foojay-podcast-49/</link><pubDate>Tue, 21 May 2024 06:05:39 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-podcast-49/</guid><description>&lt;p&gt;On Tuesday, May 14th, the Foojay Podcast went live at the JCON conference in Cologne, Germany, to talk with speakers and visitors about all things Java.&lt;/p&gt;
&lt;p&gt;We had so many amazing talks that we will combine them into several podcast episodes in the next weeks.&lt;/p&gt;
&lt;p&gt;This is part 1 about JUGs, Communities, Open Source, Generative AI, LangChain4j, Machine Learning!&lt;/p&gt;
&lt;h2 id="h2-0-video"&gt;Video&lt;/h2&gt;
&lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;"&gt;
			&lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share; fullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/-wVCYj8oQUY?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video"&gt;&lt;/iframe&gt;
		&lt;/div&gt;

&lt;h2 id="h2-1-podcast-apps"&gt;Podcast Apps&lt;/h2&gt;
&lt;p&gt;You can listen and subscribe to the Foojay Podcast on:&lt;/p&gt;</description></item><item><title>Oracle Alternatives Survey &amp; Report</title><link>https://foojayio.github.io/website/today/oracle-alternatives-survey-report/</link><pubDate>Mon, 13 May 2024 19:27:51 +0000</pubDate><guid>https://foojayio.github.io/website/today/oracle-alternatives-survey-report/</guid><description>&lt;p&gt;&lt;a href="https://azul.com/" target="_blank" rel="noopener noreferrer"&gt;Azul&lt;/a&gt;
 is planning to issue an Oracle Java &amp;ldquo;alternatives&amp;rdquo; Report in late July, and would like your help to complete the survey.&lt;/p&gt;
&lt;p&gt;The focus of this report is to explore the following themes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;highlight the frictions created by Oracle with their pricing policies and tactics&lt;/li&gt;
&lt;li&gt;show whether customers are in fact moving off of Oracle Java to OpenJDK alternatives&lt;/li&gt;
&lt;li&gt;prove the extent to which customers are willing to pay for commercial support and application migration expertise&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Below is the link to the survey.&lt;/p&gt;</description></item><item><title>Foojay.io Mini Conference at Uber, Amsterdam</title><link>https://foojayio.github.io/website/today/foojay-io-mini-conference-at-uber-amsterdam/</link><pubDate>Mon, 11 Mar 2024 16:59:56 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-io-mini-conference-at-uber-amsterdam/</guid><description>&lt;p&gt;Uber Tech is partnering with Java User Group Amsterdam to host &lt;a href="https://www.meetup.com/amsterdam-java-user-group/events/299589593/" target="_blank" rel="noopener noreferrer"&gt;their first mini conference with Foojay.io&lt;/a&gt;
. Come and join in at the Uber Amsterdam HQ and learn from experts in their fields.&lt;/p&gt;
&lt;p&gt;This meetup will be hosted by Uber Tech, in their office at Uber, Burgerweeshuispad 301, Amsterdam.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Note: To get the bar code and details for entering the event, you need to register on this meetup page &lt;a href="https://pages.beamery.com/uber/page/uber-x-jug-amsterdam-meetup" target="_blank" rel="noopener noreferrer"&gt;as well as here at Uber Tech&lt;/a&gt;
.&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>Friends of OpenJDK Hangout at FOSDEM 2024</title><link>https://foojayio.github.io/website/today/friends-of-openjdk-hangout-at-fosdem-2024/</link><pubDate>Mon, 29 Jan 2024 10:20:42 +0000</pubDate><guid>https://foojayio.github.io/website/today/friends-of-openjdk-hangout-at-fosdem-2024/</guid><description>&lt;p&gt;&lt;a href="https://fosdem.org/2024/" target="_blank" rel="noopener noreferrer"&gt;FOSDEM is here again&lt;/a&gt;
, this coming weekend. Many will remember &lt;a href="https://foojayio.github.io/website/today/foojay-io-at-fosdem-2023-trip-report/"&gt;the great hangout friends of OpenJDK had at Bier Centraal in Brussels&lt;/a&gt;
 last year.
&lt;img src="https://foojayio.github.io/website/today/friends-of-openjdk-hangout-at-fosdem-2024/image-7-1024x768.png" alt="" loading="lazy"&gt;
&lt;/p&gt;
&lt;p&gt;Well, that was a great experience and all those connected in any way to OpenJDK, whether speaking or not at FOSDEM, are extremely welcome to spend time with the friends of OpenJDK community on Saturday evening at the same location, &lt;a href="https://maps.app.goo.gl/7w4NY2QLCSVMdoDz5" target="_blank" rel="noopener noreferrer"&gt;Bier Centraal&lt;/a&gt;
 (Anspachlaan 37).&lt;/p&gt;
&lt;p&gt;&lt;a href="https://maps.app.goo.gl/7w4NY2QLCSVMdoDz5" target="_blank" rel="noopener noreferrer"&gt;https://maps.app.goo.gl/7w4NY2QLCSVMdoDz5&lt;/a&gt;
&lt;/p&gt;</description></item><item><title>Digma, Apache APISIX, and OpenValue: Foojay.io at JFall 2023</title><link>https://foojayio.github.io/website/today/digma-apache-apisix-and-openvalue-sponsor-foojay-io-at-jfall-2023/</link><pubDate>Mon, 13 Nov 2023 22:19:48 +0000</pubDate><guid>https://foojayio.github.io/website/today/digma-apache-apisix-and-openvalue-sponsor-foojay-io-at-jfall-2023/</guid><description>&lt;p&gt;&lt;strong&gt;Last week&amp;rsquo;s JFall 2023 was a high point in the evolution of Foojay.io, the place for friends of OpenJDK.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;We had a very big booth right by the entrance to the venue, consisting of a large rollout banner featuring all the organizations involved in Foojay.io, a table totally covered in stickers (hundreds, maybe thousands, of Foojay.io stickers, as well as sponsor stickers, such as Digma), and a podcast zone, where Frank spent most of the day recording short podcast interviews with a very wide range of Java enthusiasts attending the event.&lt;/p&gt;</description></item><item><title>Book Review: "Java Basics", by Shai Almog</title><link>https://foojayio.github.io/website/today/book-review-java-basics-a-practical-introduction-to-full-stack-java/</link><pubDate>Sat, 16 Sep 2023 08:43:09 +0000</pubDate><guid>https://foojayio.github.io/website/today/book-review-java-basics-a-practical-introduction-to-full-stack-java/</guid><description>&lt;p&gt;Shai Almog&amp;rsquo;s &amp;ldquo;&lt;a href="https://www.amazon.com/Java-Basics-Practical-Introduction-Full-Stack/dp/B0CCCJ38WH" target="_blank" rel="noopener noreferrer"&gt;Java Basics: A Practical Introduction to Full Stack Java&lt;/a&gt;
&amp;rdquo; more than lives up to its title. And how could it be otherwise, with its highly Java driven and opinionated author having a track record going back to leading Java mobile efforts all the way back to Sun Microsystems.&lt;/p&gt;
&lt;figure class="wp-block-image size-full is-resized"&gt;
 &lt;img fetchpriority="high" decoding="async" src="B0CCCJ38WH.01._SCLZZZZZZZ_SX500_.jpg" alt="" class="wp-image-102286" style="width:290px;height:362px" width="290" height="362"&gt;
&lt;/figure&gt;
&lt;p&gt;&lt;strong&gt;Thoroughness and Ambition&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The thoroughness and ambition of the book is clear from its table of contents, each chapter well laid out, in short very readable chapters, each ending with a summary and a quiz.&lt;/p&gt;</description></item><item><title>Book Announcement: "OpenJDK Migration Guide for Dummies"</title><link>https://foojayio.github.io/website/today/book-announcement-openjdk-migration-guide-for-dummies/</link><pubDate>Tue, 01 Aug 2023 16:15:47 +0000</pubDate><guid>https://foojayio.github.io/website/today/book-announcement-openjdk-migration-guide-for-dummies/</guid><description>&lt;p&gt;For the fourth time in four years, Oracle has changed how it prices and licenses Java.&lt;/p&gt;
&lt;p&gt;Many organizations that rely on Java are switching from the Oracle JDK to OpenJDK and taking advantage of significant cost savings in the process.&lt;/p&gt;
&lt;p&gt;But if you have a variety of specialized Java applications, created at different times and running on different JDK versions, you may have some anxiety about making the switch.&lt;/p&gt;
&lt;p&gt;But, worry no more, Java Champion Simon Ritter has you covered in a new (free) book.&lt;/p&gt;</description></item><item><title>Foojay Status Report: July 2023</title><link>https://foojayio.github.io/website/today/foojay-status-report-july-2023/</link><pubDate>Mon, 03 Jul 2023 05:20:56 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-status-report-july-2023/</guid><description>&lt;p&gt;Since the start of the Friends of OpenJDK community in April 2020, we&amp;rsquo;ve had half yearly status reports, providing the highlights of the past half year, together with some stats and analysis, ending with roadmaps for the next upcoming periods.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; Here are the earlier reports, from &lt;a href="https://foojayio.github.io/website/today/foojay-status-report-january-june-2021/"&gt;January - June 2021&lt;/a&gt;
, &lt;a href="https://foojayio.github.io/website/today/foojay-status-report-july-december-2021/"&gt;July - December 2021&lt;/a&gt;
, and &lt;a href="https://foojayio.github.io/website/today/foojay-status-report-january-june-2022/"&gt;January - June 2022&lt;/a&gt;
. At that stage, a much stricter cookie policy was implemented, for reasons of the EU&amp;rsquo;s GDPR and similar, so that the Google Analytics trends which had been very nice until that stage (we had as much traffic in the first half of 2022 as we had for the whole of 2021) were destroyed. Attempts were made to recover or reinstate similar methods for analyzing usage, hence the delay in reports coming out since midway through last year, though these attempts have failed. And if the method for counting usage changes as dramatically as it now has, then it becomes impossible to discuss trend comparisons from before that change and after it. In terms of trends, we now need to start from scratch. Since that is not something that can be repaired, making comparisons between different periods in the past and the current period, as in previous reports, doesn&amp;rsquo;t make sense anymore.&lt;/p&gt;</description></item><item><title>State of Java Survey</title><link>https://foojayio.github.io/website/today/state-of-java-survey/</link><pubDate>Tue, 23 May 2023 05:47:41 +0000</pubDate><guid>https://foojayio.github.io/website/today/state-of-java-survey/</guid><description>&lt;p&gt;Do you ever wonder what OpenJDK distributions and what Java versions your peers are using? Java-based infrastructures and languages? How many are running Java applications in public clouds?&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;THE SURVEY DESCRIBED BELOW IS NOW COMPLETE, NO MORE RESPONSES CAN BE ACCEPTED.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Azul has been gathering all that data from a survey of Java users, running until 6:30pm CT on June 15, 2023. If you want to participate, the survey takes about 10 minutes, and we&amp;rsquo;ll hook you up with the report after the survey is complete. Plus you&amp;rsquo;ll be helping to add to our collective knowledge. Plus you&amp;rsquo;ll be entered into a drawing to win prizes like an Apple MacBook Pro laptop or a set of AirPods.
&lt;img src="https://foojayio.github.io/website/today/state-of-java-survey/image-6-1024x272.png" alt="" loading="lazy"&gt;
&lt;/p&gt;</description></item><item><title>FinOps: Tim O'Brien at Walmart</title><link>https://foojayio.github.io/website/today/finops-tim-obrien-at-walmart/</link><pubDate>Mon, 22 May 2023 06:01:54 +0000</pubDate><guid>https://foojayio.github.io/website/today/finops-tim-obrien-at-walmart/</guid><description>&lt;h2 id="h2-0-finops-and-cloud-cost-management-what-s-it-all-about-and-how-does-it-impact-us-as-developers-and-others-who-are-close-to-the-code-in-this-series-on-foojay-io-you-re-introduced-to-finops-practitioners-around-the-world-focused-on-how-they-have-gradually-found-themselves-their-technology-and-their-organization-in-the-finops-space"&gt;FinOps and Cloud Cost Management, what&amp;rsquo;s it all about and how does it impact us as developers and others who are close to the code? In this series on Foojay.io, you&amp;rsquo;re introduced to FinOps practitioners around the world, focused on how they have gradually found themselves, their technology, and their organization in the FinOps space.&lt;/h2&gt;
&lt;hr&gt;
&lt;figure class="alignleft size-medium is-resized"&gt;
 &lt;img fetchpriority="high" decoding="async" src="1683981616677-510x510.jpeg" alt="" class="wp-image-98408" width="271" height="271"&gt;
&lt;/figure&gt;
&lt;p&gt;&lt;a href="https://www.linkedin.com/in/timobrien/" target="_blank" rel="noopener noreferrer"&gt;Tim O&amp;rsquo;Brien&lt;/a&gt;
 is Senior Director of Engineering, Cloud Cost Management at Walmart, with experience in all aspects of software development from project inception to developing scaleable production architectures for large-scale systems during critical, high-risk events such as Black Friday. He has helped many organizations ranging from small startups to Fortune 100 companies take a more strategic approach to adopting and evaluating technology and managing the risks associated with change.&lt;/p&gt;</description></item><item><title>FinOps: John Stuart at Azul</title><link>https://foojayio.github.io/website/today/finops-john-stuart-at-azul/</link><pubDate>Mon, 15 May 2023 06:11:11 +0000</pubDate><guid>https://foojayio.github.io/website/today/finops-john-stuart-at-azul/</guid><description>&lt;h2 id="h2-0-finops-and-cloud-cost-management-what-s-it-all-about-and-how-does-it-impact-us-as-developers-and-others-who-are-close-to-the-code-in-this-series-on-foojay-io-you-re-introduced-to-finops-practitioners-around-the-world-focused-on-how-they-have-gradually-found-themselves-their-technology-and-their-organization-in-the-finops-space"&gt;FinOps and Cloud Cost Management, what&amp;rsquo;s it all about and how does it impact us as developers and others who are close to the code? In this series on Foojay.io, you&amp;rsquo;re introduced to FinOps practitioners around the world, focused on how they have gradually found themselves, their technology and their organization in the FinOps space.&lt;/h2&gt;
&lt;hr&gt;
&lt;p&gt;&lt;a href="https://www.linkedin.com/in/johndstu/" target="_blank" rel="noopener noreferrer"&gt;John Stuart&lt;/a&gt;
 is an executive and leader in DevOps, FinOps, Infrastructure and Security at Azul.&lt;/p&gt;</description></item><item><title>Foojay.io at FOSDEM 2023 Trip Report</title><link>https://foojayio.github.io/website/today/foojay-io-at-fosdem-2023-trip-report/</link><pubDate>Mon, 06 Feb 2023 20:58:47 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-io-at-fosdem-2023-trip-report/</guid><description>&lt;h3 id="h3-0-what-if-simon-ritter-s-friends-of-openjdk-keynote-session-at-fosdem-entitled-after-nearly-30-years-how-is-java-so-popular-ends-up-being-held-in-an-empty-room"&gt;&amp;ldquo;What if Simon Ritter&amp;rsquo;s Friends of OpenJDK keynote session at FOSDEM entitled &amp;lsquo;&lt;a href="https://fosdem.org/2023/schedule/event/javapopularity/" target="_blank" rel="noopener noreferrer"&gt;After Nearly 30 Years, How Is Java So Popular?&lt;/a&gt;
&amp;rsquo; ends up being held&amp;hellip; in an empty room?&amp;rdquo;&lt;/h3&gt;
&lt;p&gt;In a nutshell, this was my worst case scenario slash biggest &amp;lsquo;concern&amp;rsquo; over the past weeks, narrowly followed by the image of someone taking a pic of Simon in an empty room talking about Java&amp;rsquo;s popularity.&lt;/p&gt;
&lt;p&gt;After all, it&amp;rsquo;s been several years since the last in-person &lt;a href="https://fosdem.org/" target="_blank" rel="noopener noreferrer"&gt;FOSDEM&lt;/a&gt;
 was held in Brussels, Belgium, so maybe there wouldn&amp;rsquo;t be that many people. Secondly, the abovementioned keynote session was scheduled at 09:00 AM on a Sunday morning. Also, thirdly, is Java at all still a hot enough topic to attract people at FOSDEM, where there are multiple rooms and tracks competing for attention and attendance, with lots of young fresh faced developers who might prefer spending time in any of the other many rooms.&lt;/p&gt;</description></item><item><title>More Foojay.io FOSDEM Speaker Predictions for 2023</title><link>https://foojayio.github.io/website/today/more-foojay-io-fosdem-speaker-predictions-for-2023/</link><pubDate>Tue, 31 Jan 2023 08:28:10 +0000</pubDate><guid>https://foojayio.github.io/website/today/more-foojay-io-fosdem-speaker-predictions-for-2023/</guid><description>&lt;p&gt;Following on &lt;a href="https://foojayio.github.io/website/today/foojay-io-fosdem-speaker-predictions-for-2023/"&gt;from the first part in this series&lt;/a&gt;
, covering Simon Ritter and several more, here is the next set of reflections on 2022 and expectations for this year, from speakers who will be in the Foojay.io developer room at FOSDEM on Sunday, 5 February.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;What&amp;rsquo;s going to happen this year? In the software supply chain arena, it&amp;rsquo;s pretty clear that 2023 will be the year of SBOMs, Government legislation and (of course) a continued exponential increase in supply chain attacks.&lt;/p&gt;</description></item><item><title>Foojay Podcast #12: State and Future of the IDEs</title><link>https://foojayio.github.io/website/today/foojay-podcast-12/</link><pubDate>Mon, 23 Jan 2023 10:14:45 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-podcast-12/</guid><description>&lt;p&gt;In this podcast, we are talking to some of the key people working on different IDEs, Integrated Development Environments.&lt;/p&gt;
&lt;p&gt;Those are applications that provide tools to computer programmers for software development.&lt;/p&gt;
&lt;p&gt;An IDE typically consists of at least a source code editor, build automation tools, and a debugger.&lt;/p&gt;
&lt;p&gt;Let&amp;rsquo;s learn how these tools evolved, and the challenges they face to stay up-to-date with the many evolutions in Java and all other programming languages.&lt;/p&gt;</description></item><item><title>Foojay.io FOSDEM Speaker Predictions for 2023</title><link>https://foojayio.github.io/website/today/foojay-io-fosdem-speaker-predictions-for-2023/</link><pubDate>Fri, 20 Jan 2023 13:40:25 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-io-fosdem-speaker-predictions-for-2023/</guid><description>&lt;p&gt;&lt;a href="https://fosdem.org/" target="_blank" rel="noopener noreferrer"&gt;FOSDEM&lt;/a&gt;
 is around the corner and &lt;a href="https://fosdem.org/2023/schedule/track/friends_of_openjdk/" target="_blank" rel="noopener noreferrer"&gt;a group of great speakers is lined up to talk about the OpenJDK&lt;/a&gt;
 and the many different ways in which to make use of it.&lt;/p&gt;
&lt;p&gt;Each comes from a different part of the OpenJDK ecosystem, with different perspectives, and therefore unique insights into what to expect for this year.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Tip&lt;/strong&gt;&amp;mdash;in each expectation/prediction for 2023 below, click the author&amp;rsquo;s name and you&amp;rsquo;ll be brought to information about their session that you can attend, all for free, at FOSDEM on Sunday, 5 February, in the Foojay.io room.&lt;/p&gt;</description></item><item><title>Friends of OpenJDK Schedule at FOSDEM 2023</title><link>https://foojayio.github.io/website/today/friends-of-openjdk-schedule-at-fosdem-2023/</link><pubDate>Thu, 19 Jan 2023 14:42:49 +0000</pubDate><guid>https://foojayio.github.io/website/today/friends-of-openjdk-schedule-at-fosdem-2023/</guid><description>&lt;p&gt;Again, i.e., following on from good times in &lt;a href="https://foojayio.github.io/website/today/friends-of-openjdk-schedule-at-fosdem-2022/"&gt;2022&lt;/a&gt;
 and &lt;a href="https://foojayio.github.io/website/today/friends-of-openjdk-schedule-at-fosdem-2021/"&gt;2021&lt;/a&gt;
, we have a really great schedule with inspiring speakers for FOSDEM in Brussels, on Sunday, February 5, providing a place for friends of OpenJDK in the Foojay.io Developer Room.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s all free and fun and we&amp;rsquo;re also organizing a get together with drinks and food the evening before, on Saturday, February 4.
&lt;a href="https://fosdem.org/2023/schedule/track/friends_of_openjdk/" target="_blank" rel="noopener noreferrer"&gt;&lt;img src="https://foojayio.github.io/website/today/friends-of-openjdk-schedule-at-fosdem-2023/image-1024x621.png" alt="" loading="lazy"&gt;
&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;Click the pic above or here to get to the place on the FOSDEM site, check out the sessions, speakers, and be there, it will be educational and fun, as always. 🙂&lt;/p&gt;</description></item><item><title>Friends of OpenJDK at FOSDEM 2023</title><link>https://foojayio.github.io/website/today/friends-of-openjdk-at-fosdem-2023/</link><pubDate>Tue, 22 Nov 2022 08:30:07 +0000</pubDate><guid>https://foojayio.github.io/website/today/friends-of-openjdk-at-fosdem-2023/</guid><description>&lt;p&gt;We&amp;rsquo;re excited to announce that friends of OpenJDK (foojay.io), that is, developers who use OpenJDK on a day to day basis developing tools and technologies in languages such as Java and Kotlin, will be represented at &lt;a href="https://fosdem.org/" target="_blank" rel="noopener noreferrer"&gt;FOSDEM 2023&lt;/a&gt;
 again at the live Foojay DevRoom on Sunday, 5 February 2023!&lt;/p&gt;
&lt;p&gt;Here you can find the CFP (Call For Papers) for submitting your talks, giving you the opportunity to deliver a talk during the Foojay DevRoom.&lt;/p&gt;</description></item><item><title>Foojay Podcast #6: Welcome to Foojay!</title><link>https://foojayio.github.io/website/today/foojay-podcast-6/</link><pubDate>Mon, 24 Oct 2022 15:50:35 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-podcast-6/</guid><description>&lt;p&gt;In this episode of the Foojay Podcast, we want to give you a look behind the &lt;strong&gt;curtains of Foojay.io&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;The very first post on the website dates from &lt;strong&gt;April 25th in 2020,&lt;/strong&gt; and it was by Geertjan Wielenga.&lt;/p&gt;
&lt;p&gt;Let&amp;rsquo;s look back and what has happened on Foojay during the &lt;strong&gt;2,5 years&lt;/strong&gt; since that first post, and talk to some of the &lt;strong&gt;people&lt;/strong&gt; behind the project.&lt;/p&gt;
&lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;"&gt;
			&lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share; fullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/cwJXTTYzsGU?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video"&gt;&lt;/iframe&gt;
		&lt;/div&gt;

&lt;h2 id="h2-1--odcast-pps"&gt;Podcast Apps&lt;/h2&gt;
&lt;p&gt;You can listen and subscribe to the Foojay Podcast on:&lt;/p&gt;</description></item><item><title>OpenJDK 19 Released!</title><link>https://foojayio.github.io/website/today/openjdk-19-released/</link><pubDate>Tue, 20 Sep 2022 16:00:40 +0000</pubDate><guid>https://foojayio.github.io/website/today/openjdk-19-released/</guid><description>&lt;p&gt;OpenJDK 19 has been released today! Get it from your favorite vendor&amp;hellip; whether it is BellSoft, Amazon, Red Hat, Azul, Oracle, Microsoft &lt;a href="https://foojayio.github.io/website/almanac/jdk-19/"&gt;or any other of a large number of Java providers&lt;/a&gt;
.&lt;/p&gt;
&lt;p&gt;The friends of OpenJDK community has put together a number of resources, and more coming in the coming weeks, about the new features and all the enhancements and fixes that have gone into the release, accompanied by a brand new podcast released today, featuring key Java community leaders from around the world.&lt;/p&gt;</description></item><item><title>join.slack.com/t/foojay/signup</title><link>https://foojayio.github.io/website/today/join-slack-com-t-foojay-signup/</link><pubDate>Thu, 04 Aug 2022 14:14:09 +0000</pubDate><guid>https://foojayio.github.io/website/today/join-slack-com-t-foojay-signup/</guid><description>&lt;p&gt;Join the Foojay.io community on Slack, here:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://bit.ly/join-foojay-slack" target="_blank" rel="noopener noreferrer"&gt;bit.ly/join-foojay-slack&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;Encountering any kind of problem while signing up to Foojay Slack? Send a quick e-mail off to hello AT foojay DOT io for help!&lt;/p&gt;
&lt;p&gt;On Slack, the Foojay.io community discusses articles, insights, tips, tricks, events, and more, all related to users of the OpenJDK, such as Java and Kotlin developers.
&lt;a href="https://foojayio.github.io/website/join.slack.com/t/foojay/signup"&gt;&lt;img src="https://foojayio.github.io/website/today/join-slack-com-t-foojay-signup/image-1024x825.png" alt="" loading="lazy"&gt;
&lt;/a&gt;
&lt;/p&gt;</description></item><item><title>Released: OpenJDK 18.0.2, 17.0.4, 15.0.8, 13.0.12, 11.0.16, 8u342</title><link>https://foojayio.github.io/website/today/openjdk-release-july2022/</link><pubDate>Wed, 20 Jul 2022 12:32:00 +0000</pubDate><guid>https://foojayio.github.io/website/today/openjdk-release-july2022/</guid><description>&lt;p&gt;&lt;strong&gt;Java has regular patch and security updates that are co-ordinated across the community, they happen once per quarter. When these updates happen, there are fixes that include security issues, all of which are displayed on Foojay.io.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The next quarterly release of the OpenJDK has been made available, as scheduled, for July 2022, impacting a number of OpenJDK releases.&lt;/p&gt;
&lt;p&gt;All the fixes provided for each updated OpenJDK release are found here:&lt;/p&gt;</description></item><item><title>Foojay Status Report: January – June 2022</title><link>https://foojayio.github.io/website/today/foojay-status-report-january-june-2022/</link><pubDate>Mon, 04 Jul 2022 07:01:20 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-status-report-january-june-2022/</guid><description>&lt;p&gt;It&amp;rsquo;s been another half year of content and activities in and around the place for friends of OpenJDK&amp;hellip; let&amp;rsquo;s look at some statistics, trends, comparisons, highlights, and plans for the future!&lt;/p&gt;
&lt;h2 id="h2-0-trends-and-comparisons"&gt;Trends and Comparisons&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s start by looking at Google Analytics, what&amp;rsquo;s the curve look like for the past half year? Here it is:&lt;/p&gt;
&lt;figure class="wp-block-image size-large is-resized"&gt;
 &lt;img fetchpriority="high" decoding="async" src="image-1024x843.png" alt="" class="wp-image-56455" width="427" height="351"&gt;
&lt;/figure&gt;
&lt;p&gt;Over the past 6 months, from the first day of January to the last day of June, there were &lt;strong&gt;90K unique visitors and 127K sessions on Foojay.io&lt;/strong&gt;. That is meaningless in the absence of something to compare it to. Let&amp;rsquo;s compare the above to the same analysis for the entirety of last year, from the first day of last year to the last day of last year:&lt;/p&gt;</description></item><item><title>How To Submit Your Next Article On Foojay.io</title><link>https://foojayio.github.io/website/today/how-to-submit-your-next-article-on-foojay-io/</link><pubDate>Tue, 03 May 2022 18:32:09 +0000</pubDate><guid>https://foojayio.github.io/website/today/how-to-submit-your-next-article-on-foojay-io/</guid><description>&lt;p&gt;Foojay, the place for friends of OpenJDK, is a friendly community of Java and Kotlin developers who share tips and insights every day on &lt;a href="https://foojayio.github.io/website/today/"&gt;Foojay Today&lt;/a&gt;
. We would love to publish your article too!&lt;/p&gt;
&lt;p&gt;Since September 2026, Foojay.io moved from a WordPress system to a static site built with &lt;a href="https://gohugo.io/" target="_blank" rel="noopener noreferrer"&gt;Hugo&lt;/a&gt;
 and published from a public GitHub repository, &lt;a href="https://github.com/foojayio/website" target="_blank" rel="noopener noreferrer"&gt;github.com/foojayio/website&lt;/a&gt;
. Contributing an article means adding a small folder of files (your text and images) to that repository. You don&amp;rsquo;t need to know Hugo — everything you need is in a ready-made template.&lt;/p&gt;</description></item><item><title>"Contrast Security Joins Foojay Advisory Board to Accelerate Java Developer Community Growth, Raise Security Perspective" — PR News</title><link>https://foojayio.github.io/website/today/contrast-security-joins-foojay-advisory-board-to-accelerate-java-developer-community-growth-raise-security-perspective-pr-news/</link><pubDate>Tue, 12 Apr 2022 11:52:00 +0000</pubDate><guid>https://foojayio.github.io/website/today/contrast-security-joins-foojay-advisory-board-to-accelerate-java-developer-community-growth-raise-security-perspective-pr-news/</guid><description>&lt;p&gt;LOS ALTOS, Calif., April 12, 2022 /PRNewswire/ &amp;ndash; &lt;a href="https://c212.net/c/link/?t=0&amp;amp;l=en&amp;amp;o=3501861-1&amp;amp;h=2716114597&amp;amp;u=https%3A%2F%2Fwww.contrastsecurity.com%2F&amp;amp;a=Contrast&amp;#43;Security" target="_blank" rel="noopener noreferrer"&gt;Contrast Security&lt;/a&gt;
 (Contrast), the leader in code security that empowers developers to secure-as-they code, today announces its commitment to helping Java developers build code securely by joining the Foojay Advisory Board.&lt;/p&gt;
&lt;p&gt;&amp;ldquo;Prior to the creation of Foojay, the ecosystem of OpenJDK users lacked a vendor-neutral community platform for many years. It is wonderful to see more and more individuals and organizations, such as Contrast Security, getting involved since the foundation&amp;rsquo;s inception in April 2020. Contrast Security not only shares their insights about the OpenJDK, but also provides valuable security tips and tricks as well as helps collaborate around Foojay, the place for friends of OpenJDK,&amp;rdquo; said Geertjan Wielenga, Senior Director of Open Source Projects at Azul, the initiator of Foojay.&lt;/p&gt;</description></item><item><title>Foojay at FOSDEM 2022 on YouTube And Prize Winners</title><link>https://foojayio.github.io/website/today/foojay-at-fosdem-2022-on-youtube/</link><pubDate>Thu, 17 Feb 2022 09:52:49 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-at-fosdem-2022-on-youtube/</guid><description>&lt;p&gt;Last weekend, FOSDEM 2022 was held virtually, with the friends of OpenJDK putting together an awesome program around the tools and editors that support the OpenJDK, from overviews of new OpenJDK features, to cutting edge development with new languages on the OpenJDK, sessions on the ever important topic of security, as well as new developments in JavaFX, Jakarta EE, Raspberry Pi, and beyond:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://fosdem.org/2022/schedule/track/friends_of_openjdk/" target="_blank" rel="noopener noreferrer"&gt;https://fosdem.org/2022/schedule/track/friends_of_openjdk/&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;Around 200 attended the program across two days, which was pretty good compared to the other rooms and the interaction was good in the chat, with the speakers being present during and after the recordings were played for discussion and more.&lt;/p&gt;</description></item><item><title>Video: SDKMAN Explained</title><link>https://foojayio.github.io/website/today/video-sdkman-explained/</link><pubDate>Fri, 04 Feb 2022 08:30:04 +0000</pubDate><guid>https://foojayio.github.io/website/today/video-sdkman-explained/</guid><description>&lt;p&gt;One of the highlights of the &lt;a href="https://archive.fosdem.org/2021/schedule/track/friends_of_openjdk/" target="_blank" rel="noopener noreferrer"&gt;Friends of OpenJDK room at FOSDEM 2021&lt;/a&gt;
 was Marco Vermeulen, the creator of SDKMAN, talking about SDKMAN.&lt;/p&gt;
&lt;p&gt;Check it out here, in the Foojay YouTube channel:&lt;/p&gt;
&lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;"&gt;
			&lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share; fullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/cvdXCs7mbHY?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video"&gt;&lt;/iframe&gt;
		&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Tip:&lt;/strong&gt; More content from the &lt;a href="https://www.youtube.com/playlist?list=PL9sWkBuMiXne6b9ju2djnadlH0-XXQMw6" target="_blank" rel="noopener noreferrer"&gt;Foojay room at FOSDEM 2021 is here&lt;/a&gt;
.&lt;/p&gt;
&lt;p&gt;Even more, including cool techy prizes, in this year&amp;rsquo;s edition of the event, &lt;a href="https://foojayio.github.io/website/today/friends-of-openjdk-at-fosdem-2022/"&gt;as described here&lt;/a&gt;
.&lt;/p&gt;</description></item><item><title>Friends of OpenJDK at FOSDEM with Prizes</title><link>https://foojayio.github.io/website/today/friends-of-openjdk-schedule-at-fosdem-2022/</link><pubDate>Thu, 03 Feb 2022 10:42:04 +0000</pubDate><guid>https://foojayio.github.io/website/today/friends-of-openjdk-schedule-at-fosdem-2022/</guid><description>&lt;p&gt;A great line up of known and less known OpenJDK users will be presenting new and unique content in the Friends of OpenJDK room at FOSDEM this weekend.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://fosdem.org/2022/schedule/track/friends_of_openjdk/" target="_blank" rel="noopener noreferrer"&gt;Check out the great program&lt;/a&gt;
, there&amp;rsquo;s likely something for everyone, starting with new features in Java, including the hot topic of Java security, expanding out from Java to Kotlin and beyond, as well as several sessions around JavaFX and Java on the Web and beyond.&lt;/p&gt;</description></item><item><title>Foojay Status Report: July – December 2021</title><link>https://foojayio.github.io/website/today/foojay-status-report-july-december-2021/</link><pubDate>Thu, 13 Jan 2022 14:21:20 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-status-report-july-december-2021/</guid><description>&lt;p&gt;Another 6 months are behind us&amp;hellip; and let&amp;rsquo;s take a look at some stats on Foojay, a central resource and community platform for friends of OpenJDK. (&lt;a href="https://foojayio.github.io/website/today/foojay-status-report-january-june-2021/"&gt;The previous report is here.&lt;/a&gt;
)&lt;/p&gt;
&lt;p&gt;In the back of my mind, in the first full year of Foojay, &lt;strong&gt;it would have been great to have had 50K unique visitors and 100K sessions&lt;/strong&gt; , in terms of Google Analytics. Below is the actual result over the whole of last year, i.e., significantly more unique visitors and sessions than anticipated: &lt;strong&gt;84K unique visitors and 131K sessions&lt;/strong&gt;.&lt;/p&gt;</description></item><item><title>Friends of OpenJDK at FOSDEM 2022</title><link>https://foojayio.github.io/website/today/friends-of-openjdk-at-fosdem-2022/</link><pubDate>Sun, 05 Dec 2021 12:00:03 +0000</pubDate><guid>https://foojayio.github.io/website/today/friends-of-openjdk-at-fosdem-2022/</guid><description>&lt;p&gt;Over the last few years at &lt;a href="https://fosdem.org/2022/" target="_blank" rel="noopener noreferrer"&gt;FOSDEM&lt;/a&gt;
&amp;mdash;the free event for software developers, many of them in the open source ecosystem, for meeting, sharing ideas and collaborating&amp;mdash;one of the developer rooms has been focused on short presentations dealing with demos and overviews of free tools and editors.&lt;/p&gt;
&lt;p&gt;The programs for 2020 and 2019 are listed below:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://archive.fosdem.org/2020/schedule/track/free_tools_and_editors/" target="_blank" rel="noopener noreferrer"&gt;https://archive.fosdem.org/2020/schedule/track/free_tools_and_editors&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;&lt;a href="https://archive.fosdem.org/2019/schedule/track/free_tools_and_editors/" target="_blank" rel="noopener noreferrer"&gt;https://archive.fosdem.org/2019/schedule/track/free_tools_and_editors&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;You can see in the above that the room was organized by developers connected to, in particular, Eclipse, IntelliJ IDEA, and NetBeans.&lt;/p&gt;</description></item><item><title>Book Review: "Effortless Cloud-Native App Development Using Skaffold"</title><link>https://foojayio.github.io/website/today/book-review-effortless-cloud-native-app-development-using-skaffold/</link><pubDate>Fri, 15 Oct 2021 08:19:17 +0000</pubDate><guid>https://foojayio.github.io/website/today/book-review-effortless-cloud-native-app-development-using-skaffold/</guid><description>&lt;figure class="wp-block-image size-large is-resized"&gt;
 &lt;a target="_blank" href="https://www.packtpub.com/product/effortless-cloud-native-app-development-using-skaffold/9781801077118"&gt;&lt;img fetchpriority="high" decoding="async" src="effortless-cloud-skaffold-835x1024.png" alt="" class="wp-image-49805" width="299" height="367"&gt;&lt;/a&gt;
&lt;/figure&gt;
&lt;p&gt;In &amp;ldquo;&lt;a href="https://www.packtpub.com/product/effortless-cloud-native-app-development-using-skaffold/9781801077118" target="_blank" rel="noopener noreferrer"&gt;Effortless Cloud-Native App Development Using Skaffold&lt;/a&gt;
&amp;rdquo;, Ashish Choudhary provides a thorough overview of &lt;a href="https://skaffold.dev/" target="_blank" rel="noopener noreferrer"&gt;Skaffold&lt;/a&gt;
, with the book&amp;rsquo;s subtitle clearly defining its agenda: &amp;ldquo;Simplify the development and deployment of Cloud-native SpringBoot applications on Kubernetes with Skaffold&amp;rdquo;.&lt;/p&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Section 1, &amp;ldquo;The Kubernetes Nightmare &amp;ndash; Skaffold to the Rescue&amp;rdquo;, promises to describe &amp;ldquo;the pain and suffering of developing an application with Kubernetes&amp;rdquo;, with Skaffold as the solution to help in automating the building, pushing, and deployment of applications running on Kubernetes.&lt;/p&gt;</description></item><item><title>JReleaser: Looking for Translation Contributions</title><link>https://foojayio.github.io/website/today/jreleaser-looking-for-translation-contributions/</link><pubDate>Fri, 08 Oct 2021 20:45:46 +0000</pubDate><guid>https://foojayio.github.io/website/today/jreleaser-looking-for-translation-contributions/</guid><description>&lt;p&gt;The &lt;a href="https://jreleaser.org/" target="_blank" rel="noopener noreferrer"&gt;JReleaser project&lt;/a&gt;
 has recently added internationalization support to its CLI tool, with complete translations for English, German, French, and Brazilian Portuguese. A translation to Italian is currently in the works.&lt;/p&gt;
&lt;p&gt;The project is looking for people who would like to contribute translations to their native language, allowing JReleaser to reach and help an even wider audience.&lt;/p&gt;
&lt;p&gt;If you&amp;rsquo;re interested in joining these efforts, please open a ticket at &lt;a href="https://github.com/jreleaser/jreleaser/issues" target="_blank" rel="noopener noreferrer"&gt;https://github.com/jreleaser/jreleaser/issues&lt;/a&gt;
, letting the project maintainers know which language you&amp;rsquo;d like to tackle.&lt;/p&gt;</description></item><item><title>Book Review: "Help Your Boss Help You"</title><link>https://foojayio.github.io/website/today/book-review-help-your-boss-help-you/</link><pubDate>Fri, 13 Aug 2021 12:19:00 +0000</pubDate><guid>https://foojayio.github.io/website/today/book-review-help-your-boss-help-you/</guid><description>&lt;figure class="wp-block-image size-medium"&gt;
 &lt;a target="_blank" href="https://pragprog.com/titles/kkmanage/help-your-boss-help-you/"&gt;&lt;img fetchpriority="high" decoding="async" width="415" height="510" src="book-help-your-boss-help-you-415x510.png" alt="" class="wp-image-46413"&gt;&lt;/a&gt;
&lt;/figure&gt;
&lt;p&gt;Some books were written to be read once and put aside, others to be read thoroughly several times over and then to be placed behind glass to be broken in case of emergency. This book is of the latter kind&amp;mdash;once you&amp;rsquo;ve read through it a few times, and dipped into the areas that speak to you most, you want to have it nearby both as a PDF and in hard copy format
&amp;mdash;as a backup just in case you can&amp;rsquo;t find that PDF at the crucial moment when you really need to have a response at hand in times of crisis. You&amp;rsquo;ll also gradually find your hard copy filled with yellow sticky notes at the points in the book that speak to you most, with underlinings of the crucial passages that resonate back to battles long gone but frequently relived in anguish.&lt;/p&gt;</description></item><item><title>Schedule for Foojay Virtual OpenJDK 17+ JUG Tour</title><link>https://foojayio.github.io/website/today/schedule-for-foojay-virtual-openjdk-17-jug-tour/</link><pubDate>Tue, 10 Aug 2021 12:04:52 +0000</pubDate><guid>https://foojayio.github.io/website/today/schedule-for-foojay-virtual-openjdk-17-jug-tour/</guid><description>&lt;p&gt;As announced &lt;a href="https://foojayio.github.io/website/today/virtual-foojay-openjdk-17-jug-tour/"&gt;last month&lt;/a&gt;
, to celebrate the OpenJDK 17 and Foojay.io as &lt;a href="https://adtmag.com/blogs/watersworks/2021/02/foojay-for-openjdk.aspx" target="_blank" rel="noopener noreferrer"&gt;a vendor-neutral community platform for its users&lt;/a&gt;
, we&amp;rsquo;re kicking off the Virtual Foojay JUG Tour to be held during and around its release month of September.&lt;/p&gt;
&lt;p&gt;And here&amp;rsquo;s the schedule, note that it will change as more meetups are confirmed, and if your JUG is missing, i.e., you&amp;rsquo;d like to still be included in the tour, no worries, let&amp;rsquo;s see what can be done, simply contact JFrog&amp;rsquo;s Ari Waller (ariw at jfrog dot com) and Payara&amp;rsquo;s Jadon Ortlepp (jadon.ortlepp at payara.fish), Foojay&amp;rsquo;s Event Managers, and specify a date and time (&lt;a href="https://foojayio.github.io/website/today/virtual-foojay-openjdk-17-jug-tour/"&gt;and preferred topics&lt;/a&gt;
) together with some dates and times that would work for your JUG.&lt;/p&gt;</description></item><item><title>Announcement: Virtual Foojay OpenJDK 17+ JUG Tour</title><link>https://foojayio.github.io/website/today/virtual-foojay-openjdk-17-jug-tour/</link><pubDate>Wed, 21 Jul 2021 16:07:16 +0000</pubDate><guid>https://foojayio.github.io/website/today/virtual-foojay-openjdk-17-jug-tour/</guid><description>&lt;p&gt;To celebrate OpenJDK 17 and Foojay as a community platform for its users, we&amp;rsquo;re kicking off the Virtual Foojay OpenJDK 17+ JUG Tour, focused on OpenJDK 17, plus more!&lt;/p&gt;
&lt;p&gt;Ari Waller, JFrog&amp;rsquo;s Event Manager, well known to many JUGs, will continue to wear a second hat, as he did on the previous tour&amp;mdash;that of Foojay Event Manager, together with Jadon Ortlepp from Payara, newly added to the Foojay Event Team!&lt;/p&gt;</description></item><item><title>Foojay Status Report: January - June 2021</title><link>https://foojayio.github.io/website/today/foojay-status-report-january-june-2021/</link><pubDate>Wed, 09 Jun 2021 09:16:00 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-status-report-january-june-2021/</guid><description>&lt;p&gt;The 1/2 year mark of 2021 is a good moment to reflect on the current status of Foojay.io (a central resource for the Java community&amp;rsquo;s daily ​information needs, a place for friends of OpenJDK, ​and a community platform for the Java ecosystem​ &amp;mdash; bringing together and helping Java professionals everywhere), and to look at where we are and where to go next!&lt;/p&gt;
&lt;p&gt;First, some data! Here&amp;rsquo;s the Google Analytics graph showing total unique visitors to Foojay.io over the past half year, with several interesting spikes, explained in detail below.&lt;/p&gt;</description></item><item><title>Participate in the Java Ecosystem Survey 2021</title><link>https://foojayio.github.io/website/today/java-ecosystem-survey-2021/</link><pubDate>Thu, 01 Apr 2021 16:03:13 +0000</pubDate><guid>https://foojayio.github.io/website/today/java-ecosystem-survey-2021/</guid><description>&lt;p&gt;Just like in 2020, &lt;a href="https://snyk.io" target="_blank" rel="noopener noreferrer"&gt;Snyk&lt;/a&gt;
 is creating a comprehensive Java 2021 report that reflects the state of the JVM ecosystem.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; Friday, 2 April, the survey will come to an end, after running since the middle of February, spread the word! 🙂&lt;br&gt;
&lt;a href="https://snykteam.typeform.com/to/ZHuh7NzJ" target="_blank" rel="noopener noreferrer"&gt;Go to the Java 2021 survey&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;Here&amp;rsquo;s the summary of the &lt;a href="https://snyk.io/blog/jvm-ecosystem-report-2020" target="_blank" rel="noopener noreferrer"&gt;JVM Ecosystem 2020&lt;/a&gt;
 report:&lt;/p&gt;
&lt;figure class="aligncenter is-resized"&gt;
 &lt;img fetchpriority="high" decoding="async" src="https://lh6.googleusercontent.com/pE3ECVjEXTzDVr3fus4nGAzSoY7288RU21Vb-KQ5Xmu7FJpi8zEvjWQeSCb9gQAdHn4EqApLc0CncLDS0JkxDNi0XRHqqRsxjyqkYhfK69jrSkHOTMNflNrrAdY1KkywbfdAo-02" alt="" width="800" height="435"&gt;
&lt;/figure&gt;
&lt;p&gt;As always, we couldn&amp;rsquo;t have done this without you! So, once again, we ask for your help with the 2021 edition of the JVM Ecosystem Report.&lt;br&gt;
&lt;a href="https://snykteam.typeform.com/to/ZHuh7NzJ" target="_blank" rel="noopener noreferrer"&gt;Go to the Java 2021 survey&lt;/a&gt;
&lt;/p&gt;</description></item><item><title>Highlights of the Newest and Latest JEPs in Java 16</title><link>https://foojayio.github.io/website/today/highlights-of-new-jeps-in-java-16/</link><pubDate>Tue, 16 Mar 2021 18:02:43 +0000</pubDate><guid>https://foojayio.github.io/website/today/highlights-of-new-jeps-in-java-16/</guid><description>&lt;p&gt;The JDK Enhancement Proposal (or JEP) is a community process for collecting proposals for enhancements to the OpenJDK.&lt;/p&gt;
&lt;p&gt;Java 16, released today, incorporates the JEPs below:&lt;/p&gt;
&lt;p&gt;|&amp;mdash;&amp;mdash;&amp;mdash;|&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;-|&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;-|
| &lt;strong&gt;JEP&lt;/strong&gt; | &lt;strong&gt;Name&lt;/strong&gt; | &lt;strong&gt;Summary&lt;/strong&gt; |
| 338 | &lt;a href="https://openjdk.java.net/jeps/338" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;Vector API (Incubator)&lt;/strong&gt;&lt;/a&gt;
 | Provide an initial iteration of an &lt;a href="https://openjdk.java.net/jeps/11" target="_blank" rel="noopener noreferrer"&gt;incubator module&lt;/a&gt;
, &lt;code&gt;jdk.incubator.vector&lt;/code&gt;, to express vector computations that reliably compile at runtime to optimal vector hardware instructions on supported CPU architectures and thus achieve superior performance to equivalent scalar computations. |
| 347 | &lt;a href="https://openjdk.java.net/jeps/347" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;Enable C++14 Language Features&lt;/strong&gt;&lt;/a&gt;
 | Allow the use of C++14 language features in JDK C++ source code, and give specific guidance about which of those features may be used in HotSpot code. |
| 357 | &lt;a href="https://openjdk.java.net/jeps/357" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;Migrate from Mercurial to Git&lt;/strong&gt;&lt;/a&gt;
 | Migrate the OpenJDK Community&amp;rsquo;s source code repositories from Mercurial (hg) to Git. |
| 369 | &lt;a href="https://openjdk.java.net/jeps/369" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;Migrate to GitHub&lt;/strong&gt;&lt;/a&gt;
 | Host the OpenJDK Community&amp;rsquo;s Git repositories on &lt;a href="https://www.github.com/" target="_blank" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;
. In concert with &lt;a href="https://openjdk.java.net/jeps/357" target="_blank" rel="noopener noreferrer"&gt;JEP 357 (Migrate from Mercurial to Git)&lt;/a&gt;
, this would migrate all single-repository OpenJDK Projects to GitHub, including both &lt;a href="https://openjdk.java.net/projects/jdk/" target="_blank" rel="noopener noreferrer"&gt;JDK feature releases&lt;/a&gt;
 and &lt;a href="https://openjdk.java.net/projects/jdk-updates/" target="_blank" rel="noopener noreferrer"&gt;JDK update releases&lt;/a&gt;
 for versions 11 and later. |
| 376 | &lt;a href="https://openjdk.java.net/jeps/376" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;Concurrent Thread-Stack Processing&lt;/strong&gt;&lt;/a&gt;
 | Move ZGC thread-stack processing from safepoints to a concurrent phase. |
| 380 | &lt;a href="https://openjdk.java.net/jeps/380" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;Unix-Domain Socket Channels&lt;/strong&gt;&lt;/a&gt;
 | Add Unix-domain (&lt;code&gt;AF_UNIX&lt;/code&gt;) socket support to the &lt;a href="https://docs.oracle.com/en/java/javase/15/docs/api/java.base/java/nio/channels/SocketChannel.html" target="_blank" rel="noopener noreferrer"&gt;socket channel&lt;/a&gt;
 and &lt;a href="https://docs.oracle.com/en/java/javase/15/docs/api/java.base/java/nio/channels/ServerSocketChannel.html" target="_blank" rel="noopener noreferrer"&gt;server-socket channel&lt;/a&gt;
 APIs in the &lt;code&gt;java.nio.channels&lt;/code&gt; package. Extend the &lt;a href="https://docs.oracle.com/en/java/javase/15/docs/api/java.base/java/nio/channels/spi/SelectorProvider.html#inheritedChannel%28%29" target="_blank" rel="noopener noreferrer"&gt;inherited channel mechanism&lt;/a&gt;
 to support Unix-domain socket channels and server socket channels. |
| 386 | &lt;a href="https://openjdk.java.net/jeps/386" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;Alpine Linux Port&lt;/strong&gt;&lt;/a&gt;
 | Port the JDK to Alpine Linux, and to other Linux distributions that use musl as their primary C library, on both the x64 and AArch64 architectures, |
| 387 | &lt;a href="https://openjdk.java.net/jeps/387" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;Elastic Metaspace&lt;/strong&gt;&lt;/a&gt;
 | Return unused HotSpot class-metadata (i.e., &lt;em&gt;metaspace&lt;/em&gt;) memory to the operating system more promptly, reduce metaspace footprint, and simplify the metaspace code in order to reduce maintenance costs. |
| 388 | &lt;a href="https://openjdk.java.net/jeps/388" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;Windows/AArch64 Port&lt;/strong&gt;&lt;/a&gt;
 | Port the JDK to Windows/AArch64. |
| 389 | &lt;a href="https://openjdk.java.net/jeps/389" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;Foreign Linker API (Incubator)&lt;/strong&gt;&lt;/a&gt;
 | Introduce an API that offers statically-typed, pure-Java access to native code. This API, together with the Foreign-Memory API (&lt;a href="https://openjdk.java.net/jeps/393" target="_blank" rel="noopener noreferrer"&gt;JEP 393&lt;/a&gt;
), will considerably simplify the otherwise error-prone process of binding to a native library. |
| 390 | &lt;a href="https://openjdk.java.net/jeps/390" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;Warnings for Value-Based Classes&lt;/strong&gt;&lt;/a&gt;
 | Designate the primitive wrapper classes as &lt;em&gt;value-based&lt;/em&gt; and deprecate their constructors for removal, prompting new deprecation warnings. Provide warnings about improper attempts to synchronize on instances of any value-based classes in the Java Platform. |
| 392 | &lt;a href="https://openjdk.java.net/jeps/392" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;Packaging Tool&lt;/strong&gt;&lt;/a&gt;
 | Provide the &lt;code&gt;jpackage&lt;/code&gt; tool, for packaging self-contained Java applications. |
| 393 | &lt;a href="https://openjdk.java.net/jeps/393" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;Foreign-Memory Access API (Third Incubator)&lt;/strong&gt;&lt;/a&gt;
 | Introduce an API to allow Java programs to safely and efficiently access foreign memory outside of the Java heap. |
| 394 | &lt;a href="https://openjdk.java.net/jeps/394" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;Pattern Matching for instanceof&lt;/strong&gt;&lt;/a&gt;
 | Enhance the Java programming language with &lt;em&gt;pattern matching&lt;/em&gt; for the&lt;code&gt;instanceof&lt;/code&gt; operator. &lt;a href="https://cr.openjdk.java.net/~briangoetz/amber/pattern-match.html" target="_blank" rel="noopener noreferrer"&gt;Pattern matching&lt;/a&gt;
 allows common logic in a program, namely the conditional extraction of components from objects, to be expressed more concisely and safely. |
| 395 | &lt;a href="https://openjdk.java.net/jeps/395" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;Records&lt;/strong&gt;&lt;/a&gt;
 | Enhance the Java programming language with &lt;a href="https://cr.openjdk.java.net/~briangoetz/amber/datum.html" target="_blank" rel="noopener noreferrer"&gt;records&lt;/a&gt;
, which are classes that act as transparent carriers for immutable data. Records can be thought of as &lt;em&gt;nominal tuples&lt;/em&gt;. |
| 396 | &lt;a href="https://openjdk.java.net/jeps/396" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;Strongly Encapsulate JDK Internals by Default&lt;/strong&gt;&lt;/a&gt;
 | Strongly encapsulate all internal elements of the JDK by default, except for &lt;a href="https://openjdk.java.net/jeps/260#Description" target="_blank" rel="noopener noreferrer"&gt;critical internal APIs&lt;/a&gt;
 such as &lt;code&gt;sun.misc.Unsafe&lt;/code&gt;. Allow end users to choose the relaxed strong encapsulation that has been the default since JDK 9. |
| 397 | &lt;a href="https://openjdk.java.net/jeps/397" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;Sealed Classes (Second Preview)&lt;/strong&gt;&lt;/a&gt;
 | Enhance the Java programming language with &lt;a href="https://cr.openjdk.java.net/~briangoetz/amber/datum.html" target="_blank" rel="noopener noreferrer"&gt;sealed classes and interfaces&lt;/a&gt;
. Sealed classes and interfaces restrict which other classes or interfaces may extend or implement them. |&lt;/p&gt;</description></item><item><title>Download OpenJDK Today!</title><link>https://foojayio.github.io/website/today/download-openjdk-today/</link><pubDate>Tue, 09 Mar 2021 10:35:00 +0000</pubDate><guid>https://foojayio.github.io/website/today/download-openjdk-today/</guid><description>&lt;p&gt;Multiple different vendors provide the OpenJDK and Foojay.io gives you access to them all.&lt;/p&gt;
&lt;p&gt;Simply go here: &lt;a href="https://foojayio.github.io/website/download/"&gt;&lt;strong&gt;foojay.io/download&lt;/strong&gt;&lt;/a&gt;

&lt;img src="https://foojayio.github.io/website/today/download-openjdk-today/image-1-1024x748.png" alt="" loading="lazy"&gt;
&lt;/p&gt;
&lt;p&gt;Note: in the lower part of the navigation bar on the left, you can finetune your selection so that you can download exactly the OpenJDK distribution that you need:
&lt;img src="https://foojayio.github.io/website/today/download-openjdk-today/image-2-441x1024.png" alt="" loading="lazy"&gt;
&lt;/p&gt;</description></item><item><title>Foojay Announces Initial Companies Making Up Its Advisory Board</title><link>https://foojayio.github.io/website/today/foojay-announces-initial-companies-making-up-its-advisory-board-sd-times/</link><pubDate>Mon, 08 Mar 2021 14:21:00 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-announces-initial-companies-making-up-its-advisory-board-sd-times/</guid><description>&lt;p&gt;Today, published &lt;a href="https://sdtimes.com/java/whats-coming-in-java-16/" target="_blank" rel="noopener noreferrer"&gt;by Jenna Sargent in SD Times&lt;/a&gt;
:
&lt;img src="https://foojayio.github.io/website/today/foojay-announces-initial-companies-making-up-its-advisory-board-sd-times/image-3-1024x385.png" alt="" loading="lazy"&gt;
&lt;/p&gt;</description></item><item><title>Virtual Tour Is Biggest Project Yet For Java Community Platform Foojay</title><link>https://foojayio.github.io/website/today/virtual-tour-is-biggest-project-yet-for-new-java-community-platform-foojay/</link><pubDate>Wed, 03 Mar 2021 18:27:05 +0000</pubDate><guid>https://foojayio.github.io/website/today/virtual-tour-is-biggest-project-yet-for-new-java-community-platform-foojay/</guid><description>&lt;p&gt;&lt;a href="https://foojayio.github.io/website/today/schedule-for-foojay-virtual-jug-tour/"&gt;Fifteen events are already confirmed&lt;/a&gt;
 in an ambitious virtual tour of Java User Groups across the globe, marking a strong start for new Java community platform Foojay. Foojay.io was founded last year as a vendor-neutral platform for developers who create and run applications on top of Java and OpenJDK. It is designed to provide free information on all things Java, with updated analysis, highlights, OpenJDK update release details, and command line arguments hosted on its website.&lt;/p&gt;</description></item><item><title>Here's The Schedule for Foojay Virtual JUG Tour!</title><link>https://foojayio.github.io/website/today/schedule-for-foojay-virtual-jug-tour/</link><pubDate>Mon, 22 Feb 2021 11:08:17 +0000</pubDate><guid>https://foojayio.github.io/website/today/schedule-for-foojay-virtual-jug-tour/</guid><description>&lt;p&gt;As announced &lt;a href="https://foojayio.github.io/website/today/virtual-foojay-jug-tour/"&gt;last month&lt;/a&gt;
, to celebrate the OpenJDK and Foojay.io as &lt;a href="https://adtmag.com/blogs/watersworks/2021/02/foojay-for-openjdk.aspx" target="_blank" rel="noopener noreferrer"&gt;a vendor-neutral community platform for its users&lt;/a&gt;
, we&amp;rsquo;re kicking off the Virtual Foojay JUG Tour to be held throughout March and April.&lt;/p&gt;
&lt;p&gt;And here&amp;rsquo;s the schedule, note that it will change as more meetups are confirmed, and if your JUG is missing, i.e., you&amp;rsquo;d like to still be included in the tour, no worries, let&amp;rsquo;s see what can be done, simply contact JFrog&amp;rsquo;s Ari Waller (ariw at jfrog dot com), Foojay&amp;rsquo;s Event Manager, and specify a date and time (&lt;a href="https://foojayio.github.io/website/today/virtual-foojay-jug-tour/"&gt;and preferred topics&lt;/a&gt;
) for March or April.&lt;/p&gt;</description></item><item><title>"Foojay: A Place for Friends of OpenJDK" - ADT Magazine</title><link>https://foojayio.github.io/website/today/foojay-a-place-for-friends-of-openjdk-adt-magazine/</link><pubDate>Thu, 04 Feb 2021 13:56:00 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-a-place-for-friends-of-openjdk-adt-magazine/</guid><description>&lt;p&gt;Today, published &lt;a href="https://adtmag.com/blogs/watersworks/2021/02/foojay-for-openjdk.aspx" target="_blank" rel="noopener noreferrer"&gt;by John K. Waters in ADT Magazine&lt;/a&gt;
:
&lt;img src="https://foojayio.github.io/website/today/foojay-a-place-for-friends-of-openjdk-adt-magazine/image-641x1024.png" alt="" loading="lazy"&gt;
&lt;/p&gt;</description></item><item><title>Azul, Datadog, DataStax, JFrog, Payara, Snyk on Foojay Advisory Board</title><link>https://foojayio.github.io/website/today/azul-datadog-datastax-jfrog-payara-and-snyk-form-inaugural-foojay-advisory-board/</link><pubDate>Thu, 28 Jan 2021 13:56:10 +0000</pubDate><guid>https://foojayio.github.io/website/today/azul-datadog-datastax-jfrog-payara-and-snyk-form-inaugural-foojay-advisory-board/</guid><description>&lt;p&gt;&lt;strong&gt;SUNNYVALE, Calif., January 28, 2021&lt;/strong&gt; &amp;ndash; Foojay.io, the community site for developers who use, target, and run their applications on top of Java and OpenJDK, today named the companies who will make up its advisory board&amp;mdash;Azul, Datadog, DataStax, JFrog, Payara, and Snyk. The board will guide the direction, content and oversight of Foojay.io with the goal to grow the community and meet its mission to provide free information for everyday Java developers.&lt;/p&gt;</description></item><item><title>Announcing the Upcoming Virtual Foojay JUG Tour!</title><link>https://foojayio.github.io/website/today/virtual-foojay-jug-tour/</link><pubDate>Tue, 26 Jan 2021 08:03:51 +0000</pubDate><guid>https://foojayio.github.io/website/today/virtual-foojay-jug-tour/</guid><description>&lt;p&gt;To celebrate the OpenJDK and Foojay.io as a community platform for its users, we&amp;rsquo;re kicking off the Virtual Foojay JUG Tour. Ari Waller, JFrog&amp;rsquo;s Event Manager, well known to many JUGs, now wears a second hat&amp;mdash;that of Foojay Event Manager. During March and April, contributors to Foojay will be making a whistle stop tour through as many JUGs as possible, via their virtual meetups! (And if you&amp;rsquo;re not holding virtual events or don&amp;rsquo;t have the facilities for this, we can support by making these available as needed.)&lt;/p&gt;</description></item><item><title>Preview of January 2021 OpenJDK Update Release</title><link>https://foojayio.github.io/website/today/preview-of-january-2021-openjdk-update-release/</link><pubDate>Wed, 13 Jan 2021 09:12:00 +0000</pubDate><guid>https://foojayio.github.io/website/today/preview-of-january-2021-openjdk-update-release/</guid><description>&lt;p&gt;On the Tuesday closest to the 17th day of January, April, July, and October under the normal Oracle Critical Patch Update schedule, a new quarterly OpenJDK update is made available.&lt;/p&gt;
&lt;p&gt;For the January 2021 update, set to be released next week, a preview list of the fixes that will be in that update is available from today &lt;a href="https://foojayio.github.io/website/"&gt;on foojay.io, on the frontpage,&lt;/a&gt;
 you&amp;rsquo;ll see a new button providing you access to the preview list:&lt;/p&gt;</description></item><item><title>Friends of OpenJDK Schedule at FOSDEM 2021</title><link>https://foojayio.github.io/website/today/friends-of-openjdk-schedule-at-fosdem-2021/</link><pubDate>Thu, 07 Jan 2021 16:49:23 +0000</pubDate><guid>https://foojayio.github.io/website/today/friends-of-openjdk-schedule-at-fosdem-2021/</guid><description>&lt;p&gt;Subject to change, here&amp;rsquo;s the schedule for FOSDEM 2021, which will be a virtual event this year on 6 and 7 February, for the Friends of OpenJDK devroom, featuring a range of great speakers on a variety of interesting topics related to the usage of Java in the real world.&lt;/p&gt;
&lt;figure class="wp-block-image size-large is-resized"&gt;
 &lt;img fetchpriority="high" decoding="async" src="image-3-1024x813.png" alt="" class="wp-image-36752" width="914" height="725"&gt;
&lt;/figure&gt;
&lt;p&gt;Link to the program is here:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://fosdem.org/2021/schedule/track/friends_of_openjdk/" target="_blank" rel="noopener noreferrer"&gt;https://fosdem.org/2021/schedule/track/friends_of_openjdk&lt;/a&gt;
&lt;/p&gt;</description></item><item><title>What Are Your Java Predictions, Hopes, and Dreams For 2021?</title><link>https://foojayio.github.io/website/today/java-predictions-for-2021/</link><pubDate>Wed, 30 Dec 2020 09:03:00 +0000</pubDate><guid>https://foojayio.github.io/website/today/java-predictions-for-2021/</guid><description>&lt;p&gt;&lt;strong&gt;To celebrate the world of Java and predict our highlights for 2021, several key Foojay participants have been sharing their thoughts and hopes over the past days on Foojay, &lt;a href="https://foojayio.github.io/website/today/java-predictions-for-2021-raspberry-pi/"&gt;starting with Frank Delporte, Foojay Community Manager for the Raspberry Pi&lt;/a&gt;
, &lt;a href="https://foojayio.github.io/website/today/java-predictions-for-2021-jakarta-ee/"&gt;continuing with Jadon Ortlepp, Foojay Community Manager for Microservices&lt;/a&gt;
, and now wrapping up with a list of brief predictions from a wide variety of other leading members of the Java community&lt;/strong&gt;.&lt;/p&gt;</description></item><item><title>Join Friends of OpenJDK at FOSDEM 2021</title><link>https://foojayio.github.io/website/today/friends-of-openjdk-at-fosdem-2021/</link><pubDate>Thu, 17 Dec 2020 15:31:43 +0000</pubDate><guid>https://foojayio.github.io/website/today/friends-of-openjdk-at-fosdem-2021/</guid><description>&lt;p&gt;Over the last two years at &lt;a href="https://fosdem.org/2021/" target="_blank" rel="noopener noreferrer"&gt;FOSDEM&lt;/a&gt;
&amp;mdash;the free event for software developers, many of them in the open source ecosystem, for meeting, sharing ideas and collaborating&amp;mdash;one of the developer rooms has been focused on short presentations dealing with demos and overviews of free tools and editors.&lt;/p&gt;
&lt;p&gt;The programs for 2020 and 2019 are listed below:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://archive.fosdem.org/2020/schedule/track/free_tools_and_editors/" target="_blank" rel="noopener noreferrer"&gt;https://archive.fosdem.org/2020/schedule/track/free_tools_and_editors&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;&lt;a href="https://archive.fosdem.org/2019/schedule/track/free_tools_and_editors/" target="_blank" rel="noopener noreferrer"&gt;https://archive.fosdem.org/2019/schedule/track/free_tools_and_editors&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;You can see in the above that the room was organized by developers connected to, in particular, Eclipse, IntelliJ IDEA, and NetBeans.&lt;/p&gt;</description></item><item><title>Apple Silicon with Zulu OpenJDK and IntelliJ IDEA</title><link>https://foojayio.github.io/website/today/apple-silicon-with-zulu-openjdk-and-intellij-idea/</link><pubDate>Thu, 26 Nov 2020 09:01:34 +0000</pubDate><guid>https://foojayio.github.io/website/today/apple-silicon-with-zulu-openjdk-and-intellij-idea/</guid><description>&lt;p&gt;Azul has been leading the OpenJDK community effort (&lt;a href="http://openjdk.java.net/jeps/391" target="_blank" rel="noopener noreferrer"&gt;JEP 391&lt;/a&gt;
) initiated in August 2020 to add support for Apple Silicon, Arm-based Macs, in future versions of OpenJDK.&lt;/p&gt;
&lt;p&gt;In addition to targeting future Java versions, Azul has made OpenJDK builds of currently popular Java versions, including Zulu builds of OpenJDK 8, 11, and 13, as well as 16-ea, widely available for use on Apple Silicon, Arm-based Macs.
&lt;a href="https://www.azul.com/downloads/zulu-community/?os=macos&amp;amp;architecture=arm-64-bit&amp;amp;package=jdk" target="_blank" rel="noopener noreferrer"&gt;&lt;img src="https://foojayio.github.io/website/today/apple-silicon-with-zulu-openjdk-and-intellij-idea/image-1024x761.png" alt="" loading="lazy"&gt;
&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;In June 2020, Apple announced a two-year plan to transition the CPUs in its Macintosh line of computers from Intel&amp;rsquo;s x86-64 processors to Apple-designed chips that use the ARM64 architecture. At its &amp;ldquo;One More Thing&amp;rdquo; event on November 10 2020, Apple followed through on its promise and debuted new MacBook Air, MacBook Pro and Mac Mini Arm-based models powered by Apple Silicon.&lt;/p&gt;</description></item><item><title>"Foojay - All About Java and the OpenJDK" -- I Programmer</title><link>https://foojayio.github.io/website/today/foojay-all-about-java-and-the-openjdk-i-programmer/</link><pubDate>Mon, 02 Nov 2020 14:07:00 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-all-about-java-and-the-openjdk-i-programmer/</guid><description>&lt;p&gt;Today, published &lt;a href="https://www.i-programmer.info/news/80-java/14116-foojay-all-about-java-and-the-openjdk.html" target="_blank" rel="noopener noreferrer"&gt;by Nikos Vaggalis on I Programmer&lt;/a&gt;
:
&lt;img src="https://foojayio.github.io/website/today/foojay-all-about-java-and-the-openjdk-i-programmer/image-2-628x1024.png" alt="" loading="lazy"&gt;
&lt;/p&gt;</description></item><item><title>What's New, Noteworthy, and Enhanced in Java 15?</title><link>https://foojayio.github.io/website/today/whats-new-in-java-15/</link><pubDate>Thu, 17 Sep 2020 19:35:08 +0000</pubDate><guid>https://foojayio.github.io/website/today/whats-new-in-java-15/</guid><description>&lt;p&gt;Now that Java 15 has been released, let&amp;rsquo;s take a look at what&amp;rsquo;s new!&lt;/p&gt;
&lt;p&gt;&lt;a href="https://foojayio.github.io/website/java-15/?quarter=072020"&gt;Here on foojay&lt;/a&gt;
, the fixes that went into the release are listed, giving you a unique and readable changelog in helpful categories, with the invitation for you to vote on those that are most relevant to you:
&lt;a href="https://foojayio.github.io/website/java-15/?quarter=072020"&gt;&lt;img src="https://foojayio.github.io/website/today/whats-new-in-java-15/new-java-15-foojay-1024x617.png" alt="" loading="lazy"&gt;
&lt;/a&gt;
&lt;/p&gt;
&lt;h3 id="h3-0-new-features"&gt;New Features&lt;/h3&gt;
&lt;h4 id="jvm"&gt;JVM&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Disable and Deprecate Biased Locking ( &lt;a href="https://openjdk.java.net/jeps/374" target="_blank" rel="noopener noreferrer"&gt;JEP 374&lt;/a&gt;
 )&lt;/li&gt;
&lt;li&gt;ZGC ( &lt;a href="https://openjdk.java.net/jeps/377" target="_blank" rel="noopener noreferrer"&gt;JEP 377&lt;/a&gt;
 )&lt;/li&gt;
&lt;li&gt;Shenandoah GC ( &lt;a href="https://openjdk.java.net/jeps/379" target="_blank" rel="noopener noreferrer"&gt;JEP 379&lt;/a&gt;
 )&lt;/li&gt;
&lt;li&gt;Remove the Solaris and SPARC Ports ( &lt;a href="https://openjdk.java.net/jeps/381" target="_blank" rel="noopener noreferrer"&gt;JEP 381&lt;/a&gt;
 )&lt;/li&gt;
&lt;/ul&gt;
&lt;h4 id="language"&gt;Language&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Pattern Matching for instanceof Preview ( &lt;a href="https://openjdk.java.net/jeps/375" target="_blank" rel="noopener noreferrer"&gt;JEP 375&lt;/a&gt;
 )&lt;/li&gt;
&lt;li&gt;Text Blocks ( &lt;a href="https://openjdk.java.net/jeps/378" target="_blank" rel="noopener noreferrer"&gt;JEP 378&lt;/a&gt;
 )&lt;/li&gt;
&lt;li&gt;Records Preview ( &lt;a href="https://openjdk.java.net/jeps/384" target="_blank" rel="noopener noreferrer"&gt;JEP 384&lt;/a&gt;
 )&lt;/li&gt;
&lt;/ul&gt;
&lt;h4 id="api"&gt;API&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Edwards-Curve Digital Signature Algorithm (EdDSA) ( &lt;a href="https://openjdk.java.net/jeps/339" target="_blank" rel="noopener noreferrer"&gt;JEP 339&lt;/a&gt;
 )&lt;/li&gt;
&lt;li&gt;Sealed Classes Preview ( &lt;a href="https://openjdk.java.net/jeps/360" target="_blank" rel="noopener noreferrer"&gt;JEP 360&lt;/a&gt;
 )&lt;/li&gt;
&lt;li&gt;Hidden Classes ( &lt;a href="https://openjdk.java.net/jeps/371" target="_blank" rel="noopener noreferrer"&gt;JEP 371&lt;/a&gt;
 )&lt;/li&gt;
&lt;li&gt;Remove the Nashorn JavaScript Engine ( &lt;a href="https://openjdk.java.net/jeps/372" target="_blank" rel="noopener noreferrer"&gt;JEP 372&lt;/a&gt;
 )&lt;/li&gt;
&lt;li&gt;Reimplement the Legacy DatagramSocket API ( &lt;a href="https://openjdk.java.net/jeps/373" target="_blank" rel="noopener noreferrer"&gt;JEP 373&lt;/a&gt;
 )&lt;/li&gt;
&lt;li&gt;Foreign-Memory Access API (Second Incubator) ( &lt;a href="https://openjdk.java.net/jeps/383" target="_blank" rel="noopener noreferrer"&gt;JEP 383&lt;/a&gt;
 )&lt;/li&gt;
&lt;li&gt;Deprecate RMI Activation for Removal ( &lt;a href="https://openjdk.java.net/jeps/385" target="_blank" rel="noopener noreferrer"&gt;JEP 385&lt;/a&gt;
 )&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Go here for foojay&amp;rsquo;s almanac of all the info about where to go to download Java 15, including a comparison of Java 15 APIs versus those from previous releases: &lt;a href="https://foojayio.github.io/website/almanac/jdk-15"&gt;foojay.io/almanac/jdk-15&lt;/a&gt;
&lt;/p&gt;</description></item><item><title>Facelift and Redesign for Foojay Homepage | foojat</title><link>https://foojayio.github.io/website/today/redesigned-foojay-home/</link><pubDate>Fri, 11 Sep 2020 18:20:40 +0000</pubDate><guid>https://foojayio.github.io/website/today/redesigned-foojay-home/</guid><description>&lt;p&gt;The site you&amp;rsquo;re on, foojay.io, has had a bit of a facelift over the past week.&lt;/p&gt;
&lt;p&gt;Now you can see directly on the homepage all the key pieces that make up foojay, a place for friends of OpenJDK&amp;hellip; especially its focus on the integrated services provided by &lt;a href="https://foojayio.github.io/website/almanac/jdk-8/"&gt;Marc Hoffmann&amp;rsquo;s Java Version Almanac&lt;/a&gt;
 and&lt;a href="https://foojayio.github.io/website/command-line-arguments/openjdk-11/"&gt;Chris Newland&amp;rsquo;s JVM Options Explorer&lt;/a&gt;
, supported by the &lt;a href="https://foojayio.github.io/website/java-8/?tab=highlights"&gt;OpenJDK Update Release Details&lt;/a&gt;
, together with &lt;a href="https://foojayio.github.io/website/blog/"&gt;Foojay Today&lt;/a&gt;
 and the start of &lt;a href="https://foojayio.github.io/website/pedia/"&gt;Foojay Pedia&lt;/a&gt;
.&lt;/p&gt;</description></item><item><title>Interview: Frank Delporte, Foojay Raspberry Pi Community Manager</title><link>https://foojayio.github.io/website/today/interview-frank-delporte-foojay-raspberry-pi-community-manager/</link><pubDate>Mon, 07 Sep 2020 13:20:38 +0000</pubDate><guid>https://foojayio.github.io/website/today/interview-frank-delporte-foojay-raspberry-pi-community-manager/</guid><description>&lt;p&gt;&lt;em&gt;Today we&amp;rsquo;d like to introduce a new community manager for all things Raspberry Pi on foojay: Frank Delporte!&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Welcome, Frank!&lt;/strong&gt; &lt;strong&gt;Tell us about yourself. 🙂&lt;/strong&gt;&lt;/p&gt;
&lt;figure class="alignleft size-large is-resized"&gt;
 &lt;img decoding="async" src="pasfoto-2.jpg" alt="" class="wp-image-32891" width="173" height="208"&gt;
&lt;/figure&gt;
&lt;p&gt;Hi, I&amp;rsquo;m Frank Delporte, living in Belgium. I started programming when I was 10 on my Commodore 64.&lt;/p&gt;
&lt;p&gt;I started my professional career as a video editor for television, 25 years ago. I went through all stages from video, multimedia, websites to back-end development using different technologies.&lt;/p&gt;</description></item><item><title>Interview: Chris Newland &amp; Java Command Line Switches</title><link>https://foojayio.github.io/website/today/interview-java-command-line-switches/</link><pubDate>Mon, 31 Aug 2020 07:12:40 +0000</pubDate><guid>https://foojayio.github.io/website/today/interview-java-command-line-switches/</guid><description>&lt;p&gt;We&amp;rsquo;re happy to announce that we&amp;rsquo;re hosting Chris Newland&amp;rsquo;s &lt;a href="http://javaalmanac.io" target="_blank" rel="noopener noreferrer"&gt;VMOptionsExplorer&lt;/a&gt;
 &lt;a href="https://foojayio.github.io/website/almanac/jdk-8/"&gt;right here on foojay&lt;/a&gt;
, providing all details per release on Java command line switches.
&lt;img src="https://foojayio.github.io/website/today/interview-java-command-line-switches/Screenshot-2020-08-29-at-23.09.05-1024x514.png" alt="" loading="lazy"&gt;
&lt;/p&gt;
&lt;p&gt;It also shows a diff between the currently selected release and the previous release, showing a tab for the switches that have been added and those that have been removed.
&lt;img src="https://foojayio.github.io/website/today/interview-java-command-line-switches/Screenshot-2020-08-29-at-23.09.57-1024x485.png" alt="" loading="lazy"&gt;
&lt;/p&gt;
&lt;p&gt;Go here to take a look, yourself: &lt;a href="https://foojayio.github.io/website/command-line-arguments/openjdk-11"&gt;https://foojay.io/command-line-arguments/openjdk-11&lt;/a&gt;
.&lt;/p&gt;
&lt;p&gt;Let&amp;rsquo;s meet Chris, here&amp;rsquo;s a quick interview with him about his Java command line switches integrated into foojay!&lt;/p&gt;</description></item><item><title>Interview: Marc Hoffmann and Java Version Almanac</title><link>https://foojayio.github.io/website/today/interview-java-version-almanac/</link><pubDate>Tue, 25 Aug 2020 06:39:44 +0000</pubDate><guid>https://foojayio.github.io/website/today/interview-java-version-almanac/</guid><description>&lt;p&gt;From this week, we&amp;rsquo;re happy to announce that we&amp;rsquo;re hosting Marc Hoffmann&amp;rsquo;s &lt;a href="http://javaalmanac.io" target="_blank" rel="noopener noreferrer"&gt;Java Version Almanac&lt;/a&gt;
 &lt;a href="https://foojayio.github.io/website/almanac/jdk-8/"&gt;right here on foojay&lt;/a&gt;
, providing details per release on OpenJDK distributions, new features, and differences between APIs across releases.
&lt;img src="https://foojayio.github.io/website/today/interview-java-version-almanac/Screenshot-2020-08-25-at-08.35.09-1024x559.png" alt="" loading="lazy"&gt;
&lt;/p&gt;
&lt;p&gt;It also shows differences between the APIs of the currently selected Java release and all previous releases, handy when you&amp;rsquo;re upgrading!
&lt;img src="https://foojayio.github.io/website/today/interview-java-version-almanac/Screenshot-2020-08-25-at-08.55.35-1024x435.png" alt="" loading="lazy"&gt;
&lt;/p&gt;
&lt;p&gt;Go here to take a look, yourself: &lt;a href="https://foojayio.github.io/website/almanac/jdk-8"&gt;http://foojay.io/almanac/jdk-8&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;And, let&amp;rsquo;s meet Marc, here&amp;rsquo;s a quick interview with him about the Java Version Almanac**!**&lt;/p&gt;</description></item><item><title>OpenJDK Update Release Details Dashboard</title><link>https://foojayio.github.io/website/today/dashboard-for-openjdk-update-release-details/</link><pubDate>Fri, 01 May 2020 14:59:00 +0000</pubDate><guid>https://foojayio.github.io/website/today/dashboard-for-openjdk-update-release-details/</guid><description>&lt;p&gt;Java is a well-maintained development and deployment platform. Through the &lt;a href="https://openjdk.java.net/" target="_blank" rel="noopener noreferrer"&gt;OpenJDK project&lt;/a&gt;
, regular updates to production releases follow a traditionally established schedule. On a specific Tuesday in January, April, July and October, a set of updates are published covering security-related issues as well as bug fixes and even minor enhancements. Regular updates have been a long-standing tradition for Java. The update cadence has been a long-standing tradition for Java and is relied on by those responsible for ensuring Java-based systems are kept up to date and secure.&lt;/p&gt;</description></item><item><title>foojay: A Place for Friends of OpenJDK</title><link>https://foojayio.github.io/website/today/foojay-a-place-for-friends-of-openjdk/</link><pubDate>Sat, 25 Apr 2020 15:09:00 +0000</pubDate><guid>https://foojayio.github.io/website/today/foojay-a-place-for-friends-of-openjdk/</guid><description>&lt;p&gt;Welcome to foojay, a place for &lt;strong&gt;f&lt;/strong&gt; riends &lt;strong&gt;o&lt;/strong&gt; f &lt;strong&gt;O&lt;/strong&gt; pen&lt;strong&gt;J&lt;/strong&gt; DK, sponsored by &lt;a href="http://azul.com" target="_blank" rel="noopener noreferrer"&gt;Azul&lt;/a&gt;
. Foojay&amp;rsquo;s user-focused Java and OpenJDK technical dashboards provide free data for everyday Java developers. Right away you have access to updated analysis, selected highlights, and categorized lists arranged for easy consumption.&lt;/p&gt;
&lt;h4 id="java-technologist-dashboards"&gt;Java Technologist Dashboards&lt;/h4&gt;
&lt;p&gt;Together with Java enthusiasts around the world, the foojay team works to identify critical aspects of each new OpenJDK release and update &amp;ndash; with related information such as OpenJDK distributions, download locations, and JVM command line arguments &amp;ndash; and brings to the fore precisely the content and services that have value and relevance to those that use Java on a daily basis throughout the industry.
&lt;img src="https://foojayio.github.io/website/today/foojay-a-place-for-friends-of-openjdk/Screenshot-2020-08-20-at-17.19.43-1024x647.png" alt="" loading="lazy"&gt;
 OpenJDK Update Release Details&lt;/p&gt;</description></item></channel></rss>