March 2004


Clear your calendars, a date is set for our Wedding, July 3rd, 2004.
We have been happily engaged for over a year, and we felt it was time to tie the knot.
We will be mailing invites once we figure out all the details.

Cheers…

for “mysqldump” ing innodb tables

take the dump as you would normally do using mysqldump

open the dump file put this statement at the beginning

SET FOREIGN_KEY_CHECKS=0;

of the sql dump text file

and import the same file as you would nomally import an sql dump file

I was updating my site, and found I did not have a link to wilwheaton.net. What was I thinking! Great site, and I really enjoy it when he takes the helm on The Screen Savers.

So I went to enter in the URL of his site, and accidentally put in wilwheaton DOT org instead of wilwheaton.net.
Not a very nice picture. I guess someone out there does not like sensible opinions and free speech, and has to resort to crude, uneducated stunts like this.
I was updating my site at the office, and I am lucky no one decided to poke their head in.

Keep up the good work Wil!

Cheers…

I was looking for a way to delete files with the extension LCK from multiple directories. The following command did the trick.

find /home/webs-qa -name *.LCK -exec rm -f {} \;

Plucked this from
http://pro.linuxorbit.com

« Previous Page