Advent of Code – Day 19
We solve the day 19 challenges for the Advent of Code.
We solve the day 3 challenges for the Advent of Code.
I’m trying to solve all the Advent of Code puzzles in this video series.
We look into how to create speech from text using Tacotron.
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…
I switched to Linux this year and have been running it for almost a year. In this video we look into DistroSea which is a site for trying out different distros before you take the plunge into the world of Linux. I review the package managers, GUI elements and overall usefulness.
We look into using mdx-deck to create a slide deck with code and react.