Java 16 – Open with Power
We look into what's new in java 16.
We will look into using API-Platform a turn-key solution to create applications upon a docker swarm using swagger, react, symphony and doctrine.
In this video series, I try to challenge myself with the Advent of Code trials. Each solution will be published to Github, and I hope you will learn something from my coding mistakes and perhaps send some code my way on how you have done these challenges. I know by reading code, so this is…
In this video we look into Java 17, what is new with the 17 release of java that will come to a download site near you on the 14th of september.
We look into how to fetch messages manually so we don’t prefetch any messages and create bottlenecks for longer running processes.
This story tells you how I got my job and what brought me to seek the job at Textalk.
We talk about the different collection structures in Java and how to measure their performance and memory footprint Simple example of performance testing for collection types in java: package org.ea.debugger; import java.lang.management.ManagementFactory; import java.util.*; import java.util.function.IntConsumer; public class CollectionTest { public static void sleep() { try { Thread.sleep(3000); } catch (Exception e) { e.printStackTrace(); }…