π Replacing Strings in Java Using Regex: Back Reference vs. Lookaround 
https://www.baeldung.com/java-regex-replace-strings-back-reference-vs-lookaround
  
  https://www.baeldung.com/java-regex-replace-strings-back-reference-vs-lookaround
Baeldung
  
  Replacing Strings in Java Using Regex: Back Reference vs. Lookaround | Baeldung
  In this tutorial, we'll explore how to use the replaceAll() method in the String class to replace text using regular expressions. We'll compare the back reference and lookaround methods for this operation and evaluate their performance.
  π Declare an Enum in an Inner Class in Java 
https://www.baeldung.com/java-declare-enum-inner-class
  
  https://www.baeldung.com/java-declare-enum-inner-class
Baeldung
  
  Declare an Enum in an Inner Class in Java | Baeldung
  Explore the historical constraints on static types within inner classes before Java 16 and learn about the significant relaxation of these rules in Java 16 and later versions.
  π Extract the Common Name (CN) from an X509 Certificate in Java 
https://www.javacodegeeks.com/extract-the-common-name-cn-from-an-x509-certificate-in-java.html
  
  https://www.javacodegeeks.com/extract-the-common-name-cn-from-an-x509-certificate-in-java.html
Java Code Geeks
  
  Extract the Common Name (CN) from an X509 Certificate in Java - Java Code Geeks
  Learn how to extract the Common Name (CN) from an X509 certificate in Java using regex, Bouncy Castle, and more.
  π Guide to ExecutorService vs. CompletableFuture 
https://www.javacodegeeks.com/guide-to-executorservice-vs-completablefuture.html
  
  https://www.javacodegeeks.com/guide-to-executorservice-vs-completablefuture.html
Java Code Geeks
  
  Guide to ExecutorService vs. CompletableFuture - Java Code Geeks
  Java ExecutorService vs CompletableFuture: Understand the differences and uses of Java ExecutorService and CompletableFuture for concurrency.
  π Conquering Errors in Java Lambdas 
https://www.javacodegeeks.com/2024/05/conquering-errors-in-java-lambdas.html
  
  https://www.javacodegeeks.com/2024/05/conquering-errors-in-java-lambdas.html
Java Code Geeks
  
  Conquering Errors in Java Lambdas - Java Code Geeks
  Untangle errors in your Java Lambdas! This guide explores exception handling techniques - try-catch blocks, functional interfaces...
  π Reactive APIs Offered by Apache HttpClient 
https://reflectoring.io/apache-http-client-reactive-apis/
  
  https://reflectoring.io/apache-http-client-reactive-apis/
reflectoring.io
  
  Reactive APIs Offered by Apache HttpClient
  In this article, we are going to learn about reactive APIs offered by Apache HttpClient APIs. We are going to explore how to use reactive, full-duplex HTTP/1.
  π Create a HTTP Client with Apache HttpClient 
https://reflectoring.io/create-a-http-client-with-apache-http-client/
  
  https://reflectoring.io/create-a-http-client-with-apache-http-client/
reflectoring.io
  
  Create a HTTP Client with Apache HttpClient
  In this article series, weβre going to explore Apache HTTPClient APIs. Weβll get familiar with the different ways Apache HttpClient enables developers to send and receive data over the internet.
  π Classic APIs Offered by Apache HttpClient 
https://reflectoring.io/apache-http-client-classic-apis/
  
  https://reflectoring.io/apache-http-client-classic-apis/
reflectoring.io
  
  Classic APIs Offered by Apache HttpClient
  In this article, we are going to learn about the classic APIs offered by Apache HttpClient. We are going to explore the different ways Apache HttpClient helps us to send and receive data over the internet in classic (synchronous) mode.
  π Fixing Ambiguous Method Call Errors in Mockito 
https://www.javacodegeeks.com/fixing-ambiguous-method-call-errors-in-mockito.html
  
  https://www.javacodegeeks.com/fixing-ambiguous-method-call-errors-in-mockito.html
Java Code Geeks
  
  Fixing Ambiguous Method Call Errors in Mockito - Java Code Geeks
  Learn how to fix ambiguous method call error in Mockito using any(), and isNull() for precise matching with this guide.
  π Ktor: Unleash the Power of Asynchronous Web Development in Java 
https://www.javacodegeeks.com/2024/05/ktor-unleash-the-power-of-asynchronous-web-development-in-java.html
  
  https://www.javacodegeeks.com/2024/05/ktor-unleash-the-power-of-asynchronous-web-development-in-java.html
Java Code Geeks
  
  Ktor: Unleash the Power of Asynchronous Web Development in Java - Java Code Geeks
  Unleash the power of asynchronous web development in Java with Ktor! This lightweight framework offers blazing-fast performance and more!
  π Building Secure REST APIs with Javalin and JWT 
https://www.javacodegeeks.com/2024/05/building-secure-rest-apis-with-javalin-and-jwt.html
  
  https://www.javacodegeeks.com/2024/05/building-secure-rest-apis-with-javalin-and-jwt.html
Java Code Geeks
  
  Building Secure REST APIs with Javalin and JWT - Java Code Geeks
  Don't let Javalin's simplicity fool you! This guide unlocks the power of Javalin for building secure REST APIs.
  π Gson Support for Java 8 Date-Time Types 
https://www.javacodegeeks.com/gson-support-for-java-8-date-time-types.html
  
  https://www.javacodegeeks.com/gson-support-for-java-8-date-time-types.html
Java Code Geeks
  
  Gson Support for Java 8 Date-Time Types
  Learn how Gson supports Java 8 date-time types with custom serializers and deserializers for LocalDate, LocalDateTime, and ZonedDateTime.