Linux by example – Grep and Bash
We are in our new Linux environment and create BASH the Bourne Again SHell that we will use for our command-line environment and grep to find text using regular expressions.
I show off an open-source project I started writing a RabbitMQ executor in Java. This little tool is something you can deploy on a machine in order to execute workloads from a RabbitMQ queue. The executor will run the commands defined by a file and return the result to another queue.
We look into using mdx-deck to create a slide deck with code and react.
We look at creating self signed certificates and get them working with your docker image. We talk about different encryption and authentication algorithms and other configuration options.
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…
I’m trying to solve all the Advent of Code puzzles in this video series.
We look into Kerla a Linux kernel written in the rust language. We talk about the use cases Kerla could be used for and what its future plans might be.