Friday, February 12, 2010

Japan Electronics College

I decided to go to Japan Electronics College and take electronics engineering course.
http://www.jec.ac.jp/course/eo/

It seems this is the only college we can learn FPGA in Japan.

Sunday, December 13, 2009

How to donate your XO laptop.

I donated my XO laptop today.
Here is the list where we can donate our XO laptop.
http://wiki.laptop.org/go/Donate_Your_Get_One

I hope somebody will use my laptop.

Session Manage of Firefox doesn't work on my Mac.

The session manager of Firefox on my mac doesn't work,
so I installed another session manager addon.

Saturday, December 12, 2009

I bought a MacBook!

I bought a MacBook.
I added 2GB memories, so it's 4GB now.
The display is smaller than my Dell vostro 1400, but I enjoy Mac!

Monday, August 07, 2006

CSS Browser Selector

This is post at Ajaxian.

It seems useful for me.

In case my web application has to support Opera, I'll use this.


tags:
javascript

Tuesday, August 01, 2006

Internet Explore can not add 'name' attribute to radio button dynamically.

When I added radio button element by using DOM method, 'name' attribute did't apper correctly in Internet Explore.

Please reffer this web site.

I changed my code like this.

// for DOM compatible.
if (navigator.appName.indexOf("Microsoft Internet Explorer") == -1) {
  obj = document.createElement( "input" );
  obj.name = "group1";
}
// for IE.
else
  obj = document.createElement( "<input name='group1'>" );


tags:
javascript