Thursday, 23 June 2011

Diary 56: Repeated Off Day

Yesterday I slept at around 3:30 am. Today I woke up at around 10:30 am. I went online and checked mails etc. I had my breakfast, and then moved straight to multi tasking between TV episodes and B2B DX training. With all the JAVA training I am doing, the back end of informatica was getting clearer to me. The issue which has been bogging me for quite a while seemed clearer and I can easily relate to that. Meanwhile I realized that the B2B DX lab guide is done with and only the problem persists. I mailed the update to Gil, and explained him whatever I could understand about the problem. After that, I had my lunch. Earlier, I informed Ankit that I was still not well. I did this so that I can get some time for other stuffs like JAVA and FeastHunt. Anyways, after I was done with the B2B DX, I moved on to JAVA. Today the chapter was interesting because everything was very interactive. The Swing platform created user interfaces and hence was one of the important packages. I was keeping up with the TV episodes too. This went on till the evening, when I had to re-visit the problem I faced in the training. After some 11 mail exchanges, Gil reached a conclusion that we may need to re-install the DX plugin on the server, and he asked us to do it. Now, although I may want to learn how to do it, but I don't want to risk losing a more or less working plugin. I went forward with it, but stopped in mid way. Ankit was also in the loop, but as usual, he had no say in it. After that, I reverted back to JAVA. Later, I had my dinner. After the dinner, I realized that it is the deciding day for the first test between India and WI. So, I tuned in to Ten Sports and was happy to know that India needed only 2 wickets to win the test match. It was a very low scoring Test match, and the pitch was tailor made for a result. Anyways, I got the news later that India won by 63 runs. It is good to use "India" instead of some stupid club's name. Then, I moved back to my room. I found out that Alok to coming to Mumbai tomorrow. So, I may meet him tomorrow. Then, I moved to multi tasking between JAVA and TV episodes. I finished the Day 9 chapter today. I just started with the Day 10. Next, I wrote this diary post. Now, I plan to watch the remaining part of the episode and then go to sleep by 4:00 am.

A 'Not-so-good' JAVA Program

import java.lang.someDictionary.*;

public class addWords {

public addWords() {
String[] words = new String[4];
words = {'excited', 'expert', 'exhausted', 'experienced'};

for ( int i = 0; i < words.length; i++){
words[i] = Concatenate( 's', words[i] );
addtoDictionary(words[i]);
}
}

public static void main(String[] args) {
addWords NewWords = new addWords();
System.out.print (" Enjoy ");
}
}