[Skip to the main content] Welcome to Daigo’s Daily Digital Diorama. I blog about Baseball, Judo, Jazz, Linux, Design and on being a dad.

  • Get Firefox!

Archive for March, 2006

Oh boy! Here we go, Game 3.

Friday, March 17th, 2006

Muchos gracious, Mexico, I love you! I think Jorge Cantu is my new hero. It is time for the round three. I can’t believe US didn’t do it. Yes, I watched the whole game hoping that Mexico will win, but didn’t think US would let it happen… Like I said, healthy competition is good. Yes, […]

A classic game in World Baseball Classics

Thursday, March 16th, 2006

Still in shock after the second consecutive defeat against Korea. It was a good World Baseball Classic game, well it was a great game. I couldn’t leave in front of my computer monitor. Every at-bat, every pitch was so important, gut wrenching. It’s like Sox-Yanks Game 7 - only in March. My wife told me […]

Roundcube Webmail?

Wednesday, March 15th, 2006

I’ve moved to the new host, and start using their default webmail, which is Squirrel Mail, and it works well, but I can not read or write in Japanese. I’ve searched some online and found this: Round Cube Web Mail.
The application looks slick, and have reviewd highly, has howto and step-by-step on my server, […]

SQL problem solved and I need to remember what I did…

Tuesday, March 7th, 2006

As I ‘ve stated before, I’m switching from MySQL 4.1 to MySQL 5.0. I had a sql statement what used to work on 4.1 but stopped working and here is how I (and a little help from co-worker) fixed it:

Awesome Ukulele concert

Sunday, March 5th, 2006

Saw Jake Shimabukuro at The Center for Arts in Natick last night (event page, link may break). It was as good as I’d expected and more. He played his standard like While my Guitar Gently Weeps and Creazy G, to bunch from his new CD (which I bought at the concert). He did a version […]

I solved the turncated Japanese problem!

Thursday, March 2nd, 2006

It was frustrating as heck, I tell you, this MySQL thing. I have since learned that I can use iconv utility to convert the file like:
iconv -f utf-8 -t windows-1252 foo.sql > bar.sql
But that was not the problem. I’ve also learned that I can use mysqldump with option –default-character-set= to dump data in different encoding. […]

php redirect

Wednesday, March 1st, 2006

Create a php file, then put folowing inside the php tag:
header(”Location: newlocation.html”); /* Redirect browser */
/* Make sure that code below does not get executed when we redirect. */
exit;