Deep dive into web assembly
We look into web assembly and compare it to x86 assembly code.
We will look at JBang which is a tool that could simplify your workflow with java applications. For instance you could run java programs directly from maven or github, you can create new programs in java with JBang.
We look at how to use a Biometric fingerprint to decrypt some encrypted data.
We look into how to setup webpack to package our Polymer 3 application.
In this video I talk about the different iterations I went through the last weeks in order to shut down a docker image in Kubernetes with workloads without missing any jobs.
I’m trying to solve all the Advent of Code puzzles in this video series.
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…