How to change language in an Android application
We look into how to setup an activity that changes language of your android application.
We look into how to set up log4j configuration with XML and properties. XML is pretty simple to configure, and properties are similar in structure but might need a bit more explanation. Configuration in log4j could also be done via code, but I have another video for that.
The next release of OpenJDK is number 15. I will title this release unsafe garbage as it focuses on garbage collection and removing usages of unsafe methods. We also look at string blocks and records.
We solve the day 11 challenges for the Advent of Code.
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 look into how to set up FastCGI Process Manager (FPM). What configuration options and considerations are important.
We talk about the Feistal Cipher and implement a simple proof of concept to test the algorithm out. Computerphile video: https://www.youtube.com/watch?v=FGhj3CGxl8I Source code: package org.ea; import java.security.MessageDigest; import java.util.Arrays; public class FeistelAlg { private final static String plainText = "the brown fox jumped over the lazy dog"; public static void doRound(byte[] left, byte[] right) throws…