I finally decided to drop Windows from all of my home computers (currently three systems) and move them all over to Linux. I had already moved two of them, one that I use for a home theater, and one I use for general work. The third was being used for general work and for controlling my old home automation system.
Continúa leyendo "Moving from Windows to Linux"New websites
I recently helped some friends develop their websites. Both are wordpress sites, one was a redesign of a very old hand coded site with a custom coded CMS, the other a new site from scratch.
Continúa leyendo "New websites"Río John Day desde White Elephant Run
Grillos, pájaros cantando y viento. Me encanta estar fuera de la ciudad.
Viernes por la mañana, White Elephant Ranch
Más de Condon, Oregon
Hay algo especial en la vida en un pequeño (muy, muy pequeño) pueblo rural de Estados Unidos. Ver a los niños jugar al béisbol en un parque con dos diamantes, detrás de uno de ellos elevadores de granos y del otro solo campo abierto hasta donde alcanza la vista. O despertar y solo oír el canto de los pájaros. Ni sirenas, ni coches, ni aviones. El ruido más estridente es el de un ternero hambriento.
Condón 2019
Fortunes
Early in my career, when I was working on Unix systems I started collecting fortunes, quotations, etc and put them into a “fortune” program. Click the button below to see a new fortune.
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
Setting up WordPress on AWS
I just setup WordPress on Amazons EC2 service. I didn’t find a good set of instructions on how to do it, but pieced together the following from various sources. Note that my PC is Linux based.
Continúa leyendo "Setting up WordPress on AWS"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






























