Sapper – Bootstrap your Svelte project
We will look into using Sapper with Webpack and build a small notes application and talk about the different features available in the Sapper framework.
I try to solve Advent of code puzzles during the 2024 event. Please share your solutions and be a part of this great community.
We look into how to use Java to create an image classification model using TFRecords and train it with python. Then we will read that model in TensorflowJS in order to predict images.
I try to solve Advent of code puzzles during the 2024 event. Please share your solutions and be a part of this great community.
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…
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…
I’m trying to solve all the Advent of Code puzzles in this video series.