Web pages never die

In 2013, when I was working with HB Design, I had my personal website hosted on a company web server. That server that was used for hosting employee websites has long since been decommission, and between that and my retirement the HTML table generator web tool that I wrote disappeared.

Now with my new site up I found that the link to the table generator was broken. After looking through all of my backups and archive files, and not finding the code, I decided to try the Way Back Machine and I found the code. Which illustrates how hard it is to lose a web page on the internet.

I was able to copy the source code off the Way Back Machine and, with some simple edits to remove code that the Way Back Machine inserted into the archived page, was able to recreate the tool on this web site.

You can play with the table generator at https://robertjwallace.com///tablegen

Resetting mariadb root password in aws

In a linux terminal on the awm ec2 VM, enter the following commands:

sudo /etc/init.d/mysql stop
sudo mysqld_safe --skip-grant-tables &
mysql -uroot
use mysql;

update user set authentication_string=PASSWORD("mynewpassword") where User='root';

flush privileges;

quit

The longest flight

Old age sucks. Memories fade. So I thought I would write this story down before more of my memories of it fade away. This is about my longest flight.

I was working for Metheus Corporation at the time. Metheus was building computer workstations used for designing VLSI chips. I was a marketing engineer at the time. Dec 7th, 1983 my boss asked me if I would go to Israel to demo our systems at a trade show. That was the same day that a Palestinian terrorist bombed a Jerusalem bus killing four people. Since I didn’t believe in omens I said sure.

Read More

Aha moments

Have you ever had one of those moments where you have had some nagging thought, which suddenly gains clarity with an aha moment. Here are two that I have had.

My best friend was living just 20 miles north of Yellowstone. I was visiting him and decided to drive down to the park and do some hiking and photography. I had come to a large meadow that had a herd of bison grazing. The path cut across the center of the meadow to a small rise. None of the bison were near the path so I quietly and slowly crossed, without incident, to the rise on the far side.

Read More