Minecraft Tiny Takeover Java Version Change
Posted in Computing Notes, Gaming Note on Mar 25th, 2026 Comments Off
The 2026-03-24 Tiny Takeover Java Edition, 26.1, requires an upgrade to Java 25. The previous release, 1.21.11, used version 21.
Posted in Computing Notes, Gaming Note on Mar 25th, 2026 Comments Off
The 2026-03-24 Tiny Takeover Java Edition, 26.1, requires an upgrade to Java 25. The previous release, 1.21.11, used version 21.
Posted in Computing Notes on Feb 8th, 2026 Comments Off
This article details how to customize the user interface on Debian using IceWM and picom, and includes a useful font. This applies to Debian 12 at present and applies to any installation of IceWM and Picom as of this date. The version of IceWM used is 3.31, which is copyright 1992-2012 Markko Macke, and 2001 [...]
Posted in Computing Notes on Jan 10th, 2026 Comments Off
What is the reason for a document on backing up one’s data? The reason is that this is a critical thing that one must get handled, out of the way, and automated in order to possess peace of mind while undertaking a comprehensive work involving data. For years I have searched for a great piece [...]
Posted in Computing Notes on Dec 28th, 2025 Comments Off
This is my first attempt at weekly posts. I created an organizational schema and setup the files to begin the work. One of the things this week that I accomplished was the use of Aider to create a rapid prototype of a paired comparison analysis tool that works on the console in any operating system [...]
Posted in Computing Notes on Dec 26th, 2025 Comments Off
This is a simple paired comparison analysis to compare a list of items amongst themselves to find a ranking for decision making. #!/usr/bin/env python3 ####################################################### # Paired Comparison Analysis # webmaster@memorymatrix.cloud # 25.26.12.2053 ####################################################### import sys import logging def create_lists(list_a=None, list_b=None): “”" Create two lists of items from user input Args: list_a (list): Initial [...]
Posted in Computing Notes on Dec 26th, 2025 Comments Off
Well it has taken a little bit, but thanks to Getting Things Gnome! (GTG!), I installed Aider and Ollama and began some vibe coding. Prior to this, I have written data science code in Python and R and produced some GUI applications for Linux. I also developed some software that is in the Windows store, [...]
Posted in Computing Notes on Dec 17th, 2025 Comments Off
I love Joplin, but Joplin seems more like an incredible file cabinet and set of bookshelves. It is possible to link from one note to another, but a Joplin icon appears by that link in the text. It can also be cumbersome to navigate between multiple documents while working on one. Joplin recently added the [...]
Posted in Computing Notes on Dec 15th, 2025 Comments Off
It is a very challenging thing to pick a tool to invest time into building a personal knowledgebase. I have used numerous tools over the years and collected a huge number of documents and notes. Logseq integrates with Zotero which might prove useful due the gigabytes of material that I have stored there. My plan [...]
Posted in Computing Notes on Dec 14th, 2025 Comments Off
I discovered Trilium. The license is great. The software is mind-blowing. I found it as part of my desire to migrate away from Obsidian. They have a repository at https://github.com/TriliumNext/Trilium. Via an advertisement there, I discovered https://www.warp.dev/code which looks like an most incredible resource. That may be how applications like Trillium have such incredible documentation and [...]
Posted in Computing Notes on Dec 7th, 2025 Comments Off
Joplin is the beautiful open source replacement for Evernote. Once upon a time, Evernote was a dream app, but then they sent out an atrocious terms of service change after turning their user interface into drab garbage compared to the old colorful beauty that existed in version 4 and before. Joplin is fully functional and [...]
Posted in Computing Notes on Nov 23rd, 2025 Comments Off
LibreWolf is a fork of Firefox that removes many of Mozilla’s bad decisions.1 A mirror of LibreWolf 145.0.1-2.x86_64 appimage is available here. Debian stable requires one to use a format other than the LibreWolf repo because as of 23 November, 2025 their site says the following: sudo apt update && sudo apt install extrepo -y [...]
Posted in Computing Notes on Nov 2nd, 2025 Comments Off
My refined direction is digital sovereignty via the old paths with a goal of writing at least one article per week. The complexity of the articles will change because many projects are planned for the long term, but getting started on them takes a very long time.. I setup a RAID 5 in my old [...]
Posted in Computing Notes on Oct 22nd, 2025 Comments Off
One source for the Java 8 (1.8) runtime is the Oracle Archives page. Another helpful one is the standard Java download page for the desktop Java Runtime Environment, JRE. I downloaded the Linux x86 (32-bit) version even though the host is a 64bit Linux. The reason for that is that at some point in the [...]
Posted in Computing Notes on Oct 18th, 2025 Comments Off
The ~/.ssh/config file works for OpenSSH on Windows and for SSH on Linux. To prevent disconnects, add the keepalive messages for all hosts. For specific hosts that use a specific key type, such as RSA on CentOS 6, add the specific algorithm via the HostkeyAlgorithms + functionality. To add a private key for SSH key [...]
Posted in Computing Notes on Oct 17th, 2025 Comments Off
How to move /var/www/html/mydata/ to a new disk: 1. fdisk /dev/nvme4n1 1.i. create a new DOS partition and write it to disk 2. mkfs -t ext4 /dev/nvme4n1p1 3. lsblk -f (and copy the UUID for use in FSTAB) 3.i. a0e2e1e7-4034-4876-a005-ae5fcca39751 4. mount /dev/nvme4n1p1 /mnt 5. shopt -s dotglob 6. rsync -aulvXpogtr /var/www/html/mydata/* /mnt 7. edit [...]
Posted in Computing Notes on Sep 6th, 2025 Comments Off
This is a listing of Debian sources for future reference. Debian maintains an archive of older versions on the Distribution Archives website. It may be necessary at some point in the future to change the bullseye information below so that it points to the distribution archives. /etc/apt/sources.list.d/vivaldi.list ### THIS FILE IS AUTOMATICALLY CONFIGURED ### # [...]
Posted in Computing Notes on May 25th, 2025 Comments Off
WinRAR offers great feature. It will create a zip file using a name mask. That allows one to create a file with an excellent name via the right click menu. Buying many WinRAR licenses becomes cost prohibitive. This batch file will do the same thing using 7Zip on Windows. The batch file must be saved [...]
Posted in Computing Notes on Feb 23rd, 2025 Comments Off
Fedora 38 freezes up and crashes sometimes when using Gnome on bare metal. This may be the result of Gnome reliability issues. In a previous article I detailed creating a massive repo of Fedora 38, and I still have it. I will not delete the 238GB repo because Fedora 40 is the last one with [...]
Posted in Computing Notes on Feb 22nd, 2025 Comments Off
Today’s site updates including removing the RSS feed links. Kinsta provided source code.1 The code for functions.php to remove it is: remove_action( ‘wp_head’, ‘feed_links_extra’, 3 ); remove_action( ‘wp_head’, ‘feed_links’, 2 ); remove_action(‘wp_head’, ‘wlwmanifest_link’); Kinsta also provided another very useful function2 and that was one that removed the various update notifications in the dashboard. function kinsta_hide_update_nag() [...]
Posted in Computing Notes on Nov 25th, 2024 Comments Off
Here is a great TCP/UDP Port finder tool. This was useful for finding out which port “cbt” was in my Iftop listing. It was 7777, which was in use for the Unreal Engine on an Ark: Survival Evolved game server. Iftop is the best real time network monitoring tool for Linux that has graced my [...]