Tuesday, September 25, 2007

Incredible India Growth Story -RB Roy Choudhury Memorial lecture, Mumbai

Friday, August 3, 2007

Legal Immigrants rally in Washingtron DC on 13 Sept 2007

Legal Immigrant community under the leader ship of Immigration Voice(IV) is planning a major rally on Sep13th. With the success of Flower campaign and San Jose rally on 13 July IV planned for a massive rally with almost 10,000 legal immigrants and their families. The goal of the rally is to get the attention of law makers about the green card backlogs faced by the legal immigrant community.
Some of the interesting things about this rally are
1) People are voluntarily coming from all the states.
2) IV is managing this event with very minimal funds and lot of moral support.
3) Lot of IV people are volunteering for planning and managing the event
4) Date sept 13th was a right choice as the congress comes from the month long recess starting from Monday(Aug 03).

Having seen the success of IV so far, I am confident that this rally will be a major success and brings some relief to the Immigrant community.

Friday, July 6, 2007

Programmatically setting appenders log4j

Here is the code to initialize the appenders programmatically(java)
Logger logger = Logger.getLogger(CURRENT_LOGGER_NAME);
logger.removeAllAppenders();
FileAppender fa = new FileAppender(new SimpleLayout(),filename,true);
fa.activateOptions();
logger.addAppender(fa);