More from Condon, Or

There is something special about life in rural small (really, really small) town America. Watching kids play baseball, in a park with two diamonds, behind one grain elevators and the other nothing but open land as far as the eye can see. Or waking up and the only thing you hear is bird songs. No sirens, or cars, or planes. The most jarring noise is a hungry calf.

Condon 2019

Some Condon Oregon junkyard photos from the White Elephant ranch. Also cousin Andrew hand feeding a calf born during the harsh winter.

Oil and Water

Effect:

This is a classic oil and water effect, where four red cards and four black cards are interlaced, then shaken and shown to show that they have separated back to four red and four black. This is repeated three or four times. The for a climax, the shuffled deck is picked up and shaken. Then it is spread to show that all of the cards have separated into red and black. There are many methods published, I don’t remember where I found these, but you can find a list at the conjuring archive1.

Continue reading “Oil and Water”

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

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