Posts

Showing posts from 2007

My first Movie in London Movie Hall

The game never stops !!! That was the theme of the movie.... US the #1 Oil consumer and the Saudi Arabia #1 Oil producer combine as a team, and any one can guess from the context, what for. Terriost groups dont like that... and the Game starts .... One of these terriost group plan and execute a major explosion in a US citizens colony in Saudi Arabia. And that is what I call the first strike.. Later in the end the US agents eliminate the master mind behind the attacks.. the counter strike ... To keep the game alive, the master mind before dying whispers to his grandsons , 'Dont worry they all are gona die!!! '.... I think its the movie directors way to question every one who were part of this game, whether what they were doing, is to stop this never ending voilence or to take their revenge, which starts the game again,

Its London Baby... :)

This is my first week at London. I am enjoying it. It has been 7 days till now and there is not one drop of rain. Can you believe that, for a city which was flooding till last week. Its my first trip to London and I like this city for more that one reason :) .... I stay in a place which is almost completly filled with Indians some times I feel I am in a film set, beautiful houses, clean roads and Indian faces every where. And the number of Indian shops amaze me. There is very much to explore. I have been to hydes park. My god its a very very huge one. I was waliking for almost 2 hrs and I have not even seen 1/5 of the park. And one can expect what the park is packed with specially in a city like London with clear sky, sun shine and hot day. The tube is awesome, technology used by these ppl long time ag0 to dig those underground stations and those long elevators. I have been to the science museum also. I have not spent much time there but I could see those old age steam powered engin...

Java - What happens in the background

I always use to ponder how is it possible that we can convert the logic we think into some lines of code, which the hardware understands and uses... Java Every program that we write is converted into a .class file, machine code of what we have written. This process is called Compiling the java programm and 'Javac ' is the command used for this purpose. This convertion is for the JVM (Java virtual machine) to understand. JVM is a virtual environment created by Java to execute its programms. JVM takes care of the start/end of the program and all the resources required for the progrram to execute. This process is called the execution of java proggram. For this purpose 'Java' is the command used.