Even though we are now waiting for Java 11, the latest Java certification you can do is Java SE 8 Programmer 1 and 2, also known as OCAJP 8…
Category: dummyCategory
From Java 8 to Java 11
Moving from Java 8 to Java 11 is trickier than most upgrades. Here are a few of my notes on the process. (And here are a couple of other …
Deduplication using a Java Set
I have a collection of objects, let’s call them A, B, C, D,… and some are equal to others. If A and C are equal, then I want to replace every reference to C with a reference to A. This means (a) …
JCrete® by JCrete® on Apple Podcasts
Download past episodes or subscribe to future episodes of JCrete® by JCrete® for free.
Red Hat Application Development I: Programming Java EE (JB183) course now available – RHD Blog
A new video classroom training course, Red Hat Application Development I: Programming Java EE (JB183), is now available. This course covers modern enterprise Java development using easy-to-follow lectures and demonstrations, and it is the preparatory course for the Red Hat Certified Enterprise Application Developer Exam.
Stackwalking in Java with StackWalker and Stream API
One of the coolest (and totally impractical for most developers) features added to Java recently, is the StackWalking API. In this short article, we’ll see…
ArrayList add/replace element at specified index in Java – HowToDoInJava
Java program to add/replace element at specified index of arraylist with ArrayList.add(int index, E element) and set(int index, E element) methods.
Java – number in expanded form
I have given number and want it to return as a String in expanded form. For exampleexpandedForm(12); # Should return “10 + 2″expandedForm(42); # Should return “40 + 2″expandedForm(70304); # Sho…
What’s new in IntelliJ IDEA 2018.3 EAP3? | IntelliJ IDEA Blog
Posted on September 19, 2018 by Zlata Kalyuzhnaya The fresh IntelliJ IDEA 2018.3 EAP build that we have released today comes with ….
NLJUG Masters of Java 2018 (powered by First8)
Masters of Java, welke zichzelf respecterende Nederlandse Javaan kent het officieuze NK programmeren niet? Al enkele jaren strijden de beste Java programmeurs van Nederland om deze prestigieuze titel. Ook zal de Masters of Java weer onderdeel zijn van de pre-conferentie van J-Fall. Opgeven is nu dus helemaal een nobrainer, want wat is nou een betere voorbereiding voor J-Fall 2018 dan het op te nemen tegen mede-NLJUG’ers in een heuse competitie? Bovendien zijn alle deelnemers van de Masters of Java na afloop van harte welkom om aan te schuiven bij de aansluitende borrel. Daarnaast krijg je ook automatisch toegang tot J-Fall zodra je jezelf inschrijft voor de Masters of Java. Wanneer: woensdag 7 november Waar: van der Valk hotel in Veenendaal (vlakbij locatie J-Fall) Kosten: Gratis Organisatie: NLJUG | Hoofdsponsor: First8 Over de competitie: De Masters of Java is een roemruchte “funprogging contest” (gebaseerd op Java SE), die toegankelijk is voor iedere Java ontwikkelaar. In deze wedstrijd wordt niet de API-kennis, maar de echte programmeervaardigheid getest. In voorgaande edities heeft Masters of Java al heel wat verhitte strijd opgeleverd. We hopen ook dit jaar weer veel vuurwerk te zien. In de verschillende rondes die de wedstrijd telt, wordt iedere keer een grappige of interessante programmeeropdracht uitgedeeld, die vervolgens binnen een half uur opgelost moet worden. Voor iedere seconde die je overhoudt, scoor je een punt. Teams bestaan maximaal uit 2 ontwikkelaars en het team dat aan het einde van de dag de meeste punten heeft, mag zich “Master of Java 2018” noemen. Er zal naast eeuwige roem natuurlijk gestreden worden voor mooie en spectaculaire prijzen! Dus schrijf je nu hieronder in voor de Masters of Java 2018 en win de titel Master of Java! Wil je meer weten? Stuur een mail naar Roy Wasse ([email protected]).
Java 8 Convert Instant to ZonedDateTime Example
In this post, we feature a comprehensive Example on Java 8 Convert Instant to ZonedDateTime. We will…
Fine Tuning Payara Server in Production
See a set of optimizations to apply when preparing production environment using Payara Server; and how to fine tune the critical aspects related to these optimizations.
Crafting Java policy files, a practical guide
In one of my previous posts, I described how to create a custom policy file for one’s application. The process was manual and incremental. Because of that, it was painstakingly long, and hence not really useful. Since I wrote the post, I found a way to write the policy file
[8.6 Preview] New Layout Component: Organigram
The ZK Blog provides useful information on ZK and all of ZK products, such as ZK Calendar, ZK Studio and ZK Mobile!
Binary Search in Java without Recursion – Iterative algorithm
This week’s task is to implement binary search in Java, you need to write both iterative and recursive binary search algorithm . In comput…