Linux by example – Make it bootable
After configuring the system we will install a boot manager, build the kernel and finally boot into our newly built system.
I challenge you to create a function to convert decimal to roman numeral in java. We are a long way from advent of code but I thought a coding challenge could be fun trying to create a good function to convert decimal numbers to roman.
We will look into how to use test-driven development in order to write code. I go through the process I use in order to create self-documenting code. The code should be able to validate itself and ensure that the thing you want it to handle it should handle.
I’m trying to solve all the Advent of Code puzzles in this video series.
I looked into LastPass Vaults, what is stored and how secure are we using LastPass after their breach were all vaults with password where stolen.
We talk about how I write my Java code and why I have chosen to write my code in a specific way. This is my opinion. I’m interested in yours if you have differing opinions.
After my kid asked me to download and install an auto-clicker, I saw this as a teachable moment to build one in Java. I could talk about the different concepts Java offers and also explore a new API in the Java API. Source code: package org.ea; import javax.swing.*; import java.awt.*; import java.awt.event.InputEvent; import java.awt.event.KeyEvent; import…