The beach
Elk fern?
HPIM0905.JPG
00094.jpg
00107.jpg
HPIM1024.JPG
HPIM0656.JPG
Vanuatu cows

 

October 2008
M T W T F S S
« Sep   Nov »
 12345
6789101112
13141516171819
20212223242526
27282930  

mysqldump case insensitivity

When trying to import a database that was created using mysqldump, I kept finding an error popping up:
mysqlserver:~# mysql -u root -p < fullbackup.sql.orig Enter password: ERROR 1054 (42S22) at line 3693: Unknown column ‘table.FieldName’ in ‘field list’
After digging around a little while, I found that the mysqldump was creating a table with uppercase names [...]

Popularity: 12% [?]

Everybody's a critic WTF?? Nothing about this made senseas useful as a blindfolded monkey throwing dartsmediocre ... at bestsolved my problem but needed modificationspectacular.  \'Nuff said (3 votes, average: 5.00 out of 5)
Loading ... Loading ...

sending mail like the spammers

Now that I have your attention … what I meant to call this article was “how to send an email from the command line that contains a html page and has embedded images”, but I realised that this is exactly what the spam that I receive looks like! Please don’t use this method to [...]

Popularity: 7% [?]

Everybody's a critic WTF?? Nothing about this made senseas useful as a blindfolded monkey throwing dartsmediocre ... at bestsolved my problem but needed modificationspectacular.  \'Nuff said (Be the first to rate this post)
Loading ... Loading ...

simple mysql backup with rotation

This is a really quick post for a script that I wrote which backs up a mysql database and then removes old backups based on find. This should be scheduled through something like cron.
#!/bin/bashBACKUPDIR="/opt/backup/files"DATE="$(date +"%Y%m%d")"SQLBACKUPFILENAME="wernstrom-${DATE}.sql"
# do some maintenance, remove any files that are older than # 30 days (assuming this is only run once [...]

Popularity: 13% [?]

Everybody's a critic WTF?? Nothing about this made senseas useful as a blindfolded monkey throwing dartsmediocre ... at bestsolved my problem but needed modificationspectacular.  \'Nuff said (1 votes, average: 3.00 out of 5)
Loading ... Loading ...