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

El vuelo más largo

La vejez es un rollo. Los recuerdos se desvanecen. Así que pensé en escribir esta historia antes de que se desvanezcan más. Se trata de mi vuelo más largo.

En aquel entonces trabajaba para Metheus Corporation. Metheus fabricaba estaciones de trabajo informáticas para el diseño de chips VLSI. Yo era ingeniero de marketing. 7 de diciembreelEn 1983, mi jefe me preguntó si iría a Israel a hacer una demostración de nuestros sistemas en una feria comercial. Ese mismo día, un terrorista palestino... bombardearon un autobús de Jerusalén Matando a cuatro personas. Como no creía en presagios, dije que sí.

Leer más

Momentos ajá

¿Alguna vez has tenido uno de esos momentos en los que te ronda una idea, que de repente cobra claridad con un momento de revelación? Aquí tienes dos que he tenido.

Mi mejor amigo vivía a solo 32 kilómetros al norte de Yellowstone. Estaba de visita y decidí ir en coche al parque para hacer senderismo y tomar fotos. Había llegado a una gran pradera donde pastaba una manada de bisontes. El sendero cruzaba por el centro de la pradera hasta una pequeña elevación. No había bisontes cerca, así que crucé silenciosa y lentamente, sin incidentes, hasta la elevación del otro lado.

Leer más