Linux by example – Verifying glibc build
After the build in the real system we need to verify that the correct libraries are used and the correct tools will create a viable executable in our new system before building the rest of the packages.
We look into pieces and what features currently are available. Is it a tool for your development workflow or is it to early to use/know.
I talk about my experience of switching over to Linux, the pros and cons. I cover topics like games, speed, stability, simplicity and much much more.
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…
We solve the day 16 challenges for the Advent of Code.
We look at how to use web components in Angular, React or VanillaJS.
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(); }…