Linux by example – Creating partitions
We talk about the partition types and create the most essential partitions. Root and swap partition.
We look into how to create an application parsing different documents with embedded content in order to extract text and images.
We explore how to package your Java code using jlink and maven in order to get all your dependencies in order.
We solve the day 7 challenges for the Advent of Code.
We solve the day 14 challenges for the Advent of Code.
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…
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.