[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 the 'Web/Print Design and Dev' Category

SND Boston 2007

Sunday, October 14th, 2007

Just back from Society of News Design conference in Boston. Pretty amazing and inspiring stuff. I am real fired up about my job now. It is a good feeling. I am adding Archie Tse to my Asian heroes I aspire to be list, joining people like John Maeda and Clement Mok.
Adrian Holovaty’s “making data […]

Playing around with DOM script

Saturday, June 16th, 2007

I had an opportunity to create something like AJAX (but really isn’t) for work. I’ve been doing a lot of Flash/Action Script but this one project was more of text driven thing and we decided to do it with Javascript.
Here is just a note so that I won’t forget how I did it.

Select radio […]

Action Script Memo

Saturday, April 28th, 2007

Just a memo to myself..
Taget movie clip
some_mc.gotoAndPlay(”framelabel”);
some_mc.gotoAndStop(”framelabel”);

Function
function showsome() {
some_mc._alpha = 100;
}
function hidesome() {
some_mc._alpha = 0;
}
Popup an external URL
this.some_btn.onRelease = function() {
getURL(”http://www.go-redsox.com/index.php”, “_blank”);
};
(Has to end with file extension such as .html or .php… other wise, http://www.go-redsox.com/ will NOT work)
Tween class
import mx.transitions.Tween;
import mx.transitions.easing.*;
var ShowSome:Tween =
new Tween(some_mc, “_alpha”, Regular.easeOut,
some_mc._alpha, 100, 5, true);

Click […]

Redesign of BostonWorks.com

Friday, July 28th, 2006

It is here. The New and Improved BostonWorks.com. This is what I was working on the last 4 month or so, I am very relieved, and excited, to have finished it. Here, you can see the old BostonWorks screen shot.
It was such an unique and great learning experience, I wanted to write it done […]

No more cursing IE?

Tuesday, July 11th, 2006

Am I the only one who didn’t know this?
  <style type=”text/css” media=”all”>
    @import “/css/main.css”;
  </style>
<!–[if IE]>
  <style type=”text/css” media=”all”>
    @import “/css/main_ie.css”;
  </style>
<![endif]–>
<!–[if IE 7]>
  <style type=”text/css” media=”all”>
    @import “/css/main_ie7.css”;
  </style>
<![endif]–>

That is pretty awesome. Also helpful was: Taming Your Multiple IE Standalones
Also, I’ve found this spellchecker plug in for WordPress, and so far […]

Wordpress 2.0 Upgrade

Sunday, February 26th, 2006

Hey, the WordPress released its 2.0 version. And redesigned their website. Very nice. Here is How to Upgrade in Five Steps from their doc section. I’ve also discovered somehow when trying to back up database from phpMyAdmin using firefox, sometimes it fails, and it is better to use Safari… Don’t know why, and it makes […]

Webhosting problem

Saturday, February 25th, 2006

I really liked my web hosting company, till about two weeks ago. Then they messed it up. They messed it up bad… I was (am) very angry. My Database is screwed up, php was upgratded to 5 from 4 without notice so some of the scripts stopped functioning, worst of all, my e-mail domain was […]

JavaScript links and Fink, Ruby on Rails etc…

Monday, December 12th, 2005

I bought DOM Scripting book by Jeremy Keith at the Web Design World Boston… Hee are some links: Getting Focused - and a Quick JavaScript Lesson @ CFDJ
w3schools’ Javascript DOM example
I have just started to play with fink. Installation looks fairly simple. Download the .dmg disk image (0.8.0 is for tiger, for Panther, use […]

Closing <img />

Tuesday, October 25th, 2005

In BB Edit, use this regex to find image tags (<img >) and close it. (<img />)
Serch for: <img ([^>]*)> and replace it with <img \1/>
Reference: BBEdit Grep Tutorial

JEdit and Konqueror

Saturday, April 2nd, 2005

I’ve always used Mac to do web design. True there is no PhotoShop, Fireworks or Flash for linux, but I am talking about even the coding part of it. At work, I am using BBEdit 8 and Transmit 3, and very happy with it. So naturally, I was thinking my next laptop that I will […]