Archive for November, 2008

lamp

The nation salutes the Indian military, commando force and Mumbai police for their successful rescue operations. If the terrorism is a shame, attacking innocent people is inhuman. This is not the first attack in this year. It is very sad to have a government which is unable to avoid these circumstances. Shame on them.

Many innocent people, jawans and employees lost their lives. Let their soul rest in peace.

yureka

This another day to get into struts. See, I have an input type as image and onclick function.

<input type=”image” name=”" src=”/teller/images/close.gif” onclick=”del(200);”>

The 200 given as parameter should be passed from struts form bean. Different type of combinations lead to error. finally defining a variable helped as follows.

<bean:define id=”myID” name=”resultI” property=”id”></bean:define>

<html:image src=”/teller/images/close.gif”  onclick=”<%=”del(“+myID+”);” %>”></html:image>

veena

I found an interesting library today. Java ID3, http://www.dusbabek.org/~garyd/id3/ a useful library to read the tags of mp3 files. I was doing some experiment with music folder today. It helped me a lot. very simple api and fast rendering of tags. Good one! It has some problems while reading UTF based tags. I have written a mail to the enthusiastic developer. Hope he will get back to me!