Advent of Code 2023 – Day 19
I'm trying to solve all the Advent of Code puzzles in this video series.
We talk about the requirements for home work and what experiances we have gained working from home for a couple of years.
In this enlightening video, we dive into the world of Ceph redundancy and explore the essential requirements for seamless data read and write operations within a cluster. Join us as we uncover the key components needed to ensure optimal data accessibility and examine the crucial role of OSD (Object Storage Daemon) services.
We look into training your model locally on windows and other platforms.
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(); }…
In this video we will check for php compatibility on one of my old project and different versions of WordPress. First we need the CodeSniffer tooling, we will download it will wget. wget https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar Next we make the CodeSniffer checker executable. chmod +x phpcs.phar The plugin is fetched directly from github release page. Currently the…