How to write an auto clicker in Java

2021-04-25 23:04:03 - No Comments

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 […]

Read more →

Looking into a manual upgrade of Ceph to Pacific

2021-04-18 23:04:04 - No Comments

Doing a manual upgrade of my Ceph cluster. In the same process, I get the Debian operating system upgraded that my Ceph cluster is running on. The new version of Ceph called Pacific requires some extra measures and when you’ve updated you can’t go back.

Read more →

Doing an automatic upgrade of ceph cluster using cephadm

2021-04-11 23:04:03 - No Comments

In this video, I look into installing and enabling orchestration using cephadm. Then I will perform an automatic upgrade with cephadm. I talk about my findings and go through all the steps.

Read more →

Talking about lambda functions in java using example

2021-04-10 13:04:15 - No Comments

We look into lambda functions in java using example code and understand what functions could help you with. Java has many new concepts that could help you, and lambda is just one of them. For example, you could create Suppliers that give you a value, Consumers that use a value, and then functional interfaces.

Read more →