This is what i feel sometimes — 3

•September 12, 2008 • Leave a Comment

Writing is nothing but our expression that we put in black and white. Means we document our thoughts. It is just similar to speaking out and this makes us feel better, much better. This is something like talking or lecturing. Wherein we share our thoughts but in this we don’t put it in Black and White, we don’t put it on a paper.
Writing is an act of TALKING OUT with a pen and a piece of paper. We need to be cautious in both Writing and also in Talking because once written or said we need to abide by that.
 
Reading is an act or absorbing/understanding what ever is written. As writing is to talking so reading is to listening. The better we can listen to different people the better we can read what is written. I mean if I can listen to all the sort of people then I can read all kinds of books and literature too.
 
Leader are orators but followers are listeners and Visionaries are a good or infact a perfect blend of Orators and Listeners with a topping of being able to act on what they have understood from the listening and talking they have done.
 
A visionary writes from what he has seen around and felt around and talks about what he has written. But generally we come across people who talk and write about what they have read.
 
I feel the most distinguishing feature of a visionary is his analysis and his learning while doing those analysis. We talk and write about the analysis we read or hear about but visionary talks on the basis of analysis that he has done.
 
So here lies the major difference the approach that we take is a shortcut to the momentary success feeling that we want and hence we use the analysis of other but visionary first thinks out of the box, get a point , analyses about and over that and then talk and write and this distinguishes him from us.
 
Since he can think out of the box and do a good analysis he is an inventor and we remain the user. And as always user will shell out our resources and put it in the pockets of the inventor.
 
So we need to dare about thinking out of the box, analyze our thought and then make a point that others borrow.

This is what i feel sometimes — 2

•September 12, 2008 • Leave a Comment

I feel there are certain different breeds of people. One who WORK only for result like me and many others like me and the Second who work with a subsided feeling of enjoying the work they are doing. It’s just like going to a place. Some people have the complete list of the attractions they need to cover (downloaded just a day ahead and printed out with a paper in hand), others with the information of the ALL the attractions (whether they have interest in all of those or not) with all the details (history, importance etc) and thirdly people with all the information with all the details (history, importance etc) complimented with a classification of where they want to be and where they don’t want to be. The third genre of people are clear in there minds and have no confusions, no regrets of what they missed.
 
I feel, though I myself maybe not from this tribe specifically (although not sure if I am or not) might be enjoying without regrets because enjoyment is the way the lead there lives, enjoyment is the way their brain perceives about all that is going around them.
 
They enjoy just because they want to.
 
Now what I can’t still understand is that how could a person keep on enjoying the entire thing all the times. Because in our world there are many a things that keep you affected. For a child what mom dad says, for a un married man what others says along with the cream of what is expected out of him, for a married person what his/her husband/wife says and all the other things that goes on in the background. Does all the things around and does all the things in the background do affect us or is it something within us that affect us.
 
Now what if we are not enjoying what we are doing. Means what is that we are doing when we are in process of doing something. Since we enjoy when we get a result what are we doing at that time.
 
Now again, one more confusion in all this confusions above. This world is an electronic computing world which works completely on 1′s and 0′s so if we are working only for results then it is also not wrong because the result is something we work for. But electronics and computing these are just physical but enjoyment is abstract.
 
If the tribe of people who enjoy everything all the things all the times then what is the need of them to watch movies go to places and all.
 
Its not only confided to the work we do in office/education but also every other part of the lives too.
 
I don’t understand the clear part of the other group of people but I do definitely about my group, who work and wok exhaustively for the result. “Jubilated” if the result is achieved and feel “loser” if fail to get the result.
 
So at the end I feel that the third tribe of people who are clear in their minds and do what they want after their planning and don’t regret for what they haven’t is the best tribe of people.
 
Just give a minute. Think which category you come into and decide what is good and what is not and adhere to that.

What is CLASSPATH

•July 11, 2008 • Leave a Comment

In Java programs we use many classes and packages. After all the the flexibilty provided byjava to define there own classes and packages has made life of Java programmers easily. Using these self or better say user-defined classes and packages programmers generally write there code which is used by JVM for execution.

Now the question comes that how does JVM knows where to lookout for these classes and packages that are needed for the execution. This is facilitated by CLASSPATH  variable. CLASSPATH tells the JVM where to look for these defined classes and packages while the execution of the  programs.

What’s this JDK, JVM, JRE

•July 11, 2008 • 1 Comment

Heard a lot about JDK . But what exactly is JDK? Java Development Kit is a collection of tools that can be used to develop Java applications. A very simple definition for JDK is the one offered hereA software package that can be used to write, compile, debug, and run Java applets and applications.

———- Contents from wikipedia ———-

Lets start with wikipedia on what JDK is? As per wikipedia Java Development Kit is having the following contents ..

The primary components of the JDK are a selection of programming tools, including:

  • java – The loader for Java applications. This tool is an interpreter and can interpret the class files generated by the javac compiler. Now a single launcher is used for both development and deployment. The old deployment launcher, jre, is no longer provided with Sun JDK.
  • javac – The compiler, which converts source code into Java bytecode
  • jar – The archiver, which packages related class libraries into a single JAR file. This tool also helps manage JAR files.
  • javadoc – The documentation generator, which automatically generates documentation from source code comments
  • jdb – The debugger
  • javap – The class file disassembler
  • appletviewer – This tool can be used to run and debug Java applets without a web browser.
  • javah – The C header and stub generator, used to write native methods
  • extcheck – This utility can detect JAR-file conflicts.
  • apt – The annotation processing tool
  • jhat – (Experimental) Java heap analysis tool
  • jstack – (Experimental) This utility prints Java stack traces of Java threads.
  • jstat – (Experimental) Java Virtual Machine statistics monitoring tool
  • jstatd – (Experimental) jstat daemon
  • jinfo – (Experimental) This utility gets configuration information from a running Java process or crash dump.
  • jmap – (Experimental) This utility outputs the memory map for Java and can print shared object memory maps or heap memory details of a given process or core dump.
  • idlj – The IDL-to-Java compiler. This utility generates Java bindings from a given IDL file.
  • policytool – The policy creation and management tool, which can determine policy for a Java runtime, specifying which permissions are available for code from various sources
  • VisualVM – visual tool integrating several commandline JDK tools and lightweight performance and memory profiling capabilities

The JDK also comes with a complete Java Runtime Environment, usually called a private runtime. It consists of a Java Virtual Machine and all of the class libraries that will be present in the production environment, as well as additional libraries only useful to developers, such as the internationalization libraries and the IDL libraries.

Also included are a wide selection of example programs demonstrating the use of almost all -portions of the Java API.

———-

Also for understanding about JRE and JVM, I feel the following would be the best definitions from ibm site.

Java Runtime Environment (JRE):  A subset of the Java Development Kit (JDK) that contains the core executables and files that constitutes the standard Java platform. The JRE includes the Java Virtual Machine (JVM), core classes, and supporting files.

Java Virtual Machine (JVM): A software implementation of a central processing unit (CPU) that runs compiled Java code (applets and applications).

Understanding what Application Server is ??

•July 2, 2008 • Leave a Comment

Before discussing about the Application Server, lets have a look at what webservers are/were?

Lets refer Wikipedia, the free encyclopedia for this purpose:

The term web server can mean one of two things:

  1. A computer program that is responsible for accepting HTTP requests from web clients, which are known as web browsers, and serving them HTTP responses along with optional data contents, which usually are web pages such as HTML documents and linked objects (images, etc.).
  2. A computer that runs a computer program as described above

Going back to era when we used web servers, what used to happen was, developers used to develop the pages the HTML pages and now the main purpose of these page being getting developed was to serve the customers. To make these developed pages available to the customers these were being hosted on the web servers. Once hosted on  the web servers these page(s) we available to the users and the users can now use it.

 

Coming to the present time, the customer/user/business needs for the services are growing and catering these huge needs obviously requires applications with complex logics.

 

Once the developers understand the business needs they develop the application, and for this application to be available to all the users for whom it is being developed, it is deployed on the Application Server.

 

Whenever you go to a Supermarket u see the cashier working on an Application that does the billing stuff for you, that application is also deployed on the Application Server.

 

Hope u  now understand what Application Server is in general terms.

 

CHEERS !!!

Watch Live INDIAN Channels Online free !!!

•July 2, 2008 • 4 Comments

Watch Live INDIAN Channels Online free at :

www.idesitv.com

 

What if ur EM Console is not coming up?

•May 23, 2008 • Leave a Comment

Trying to launch the Enterprise Manager Console ?? 

What is the first location u would navigate to when ur Enterprise Manager Console page is not coming up. The first place to visit in this case is “<ORACLE_HOME>/sysman/log”.

$ pwd

<ORACLE_HOME>/sysman/log

 

-rw-r–r–  1 oracle oinstall  5002539 Month Date 08:19 emoms.trc.2

-rw-r–r–  1 oracle oinstall  5000302 Month Date 08:43 emoms.trc.1

-rw-r–r–  1 oracle oinstall  3378776 Month Date 09:12 emoms.trc

-rw-r–r–  1 oracle oinstall 19358667 Month Date 09:12 emoms.log

 

“emoms.log” this is the file from where we can start our investigation.

 

Enjoy !!!

This is what i feel sometimes — I

•May 22, 2008 • Leave a Comment

We keep on analysing everything around us .
Bangalore Royal Challengers are at the bottom of the point table. With Adam Gilchrist, Gibbs, Rohit Sharma and many more others in team still Deccan Chargers are not in the race for semi’s.
Mumbai Indian’s after losing couple of games in the starting of the tournament are now in some respectable standings.

Dravid — an iconic player considered senior in national side, Sachin — an iconic player considered senior in national side, saurav Ganguly an iconic player considered senior in national side ………….. What can we conclude about these three . One of the top three players of the Cricketing world.

We can say that these people have “Never DIE attitude”. Dravid is playing a good 20-20 cricket despite the batting failure. Sachin as usual showed that his talent is not gone, ad saurav has also proved his standards.

So what i mean to say is that when a person is senior he is so because he is having Tons of experience and we should regard that.

Be that be our parent , manager , and/or anyone who is considered senior should be given due regard and we should also learn from them so that we can attain heights where in we can atleast sustain.

Be positive … Think High and Work Hard…………

•May 22, 2008 • Leave a Comment

This beautiful song says “Be positive … Think High and Work Hard…………”

Below is the lyrics of this awesome song ‘”I believe I can fly”

*****************************************************************

I used to think that I could not go on
And life was nothing but an awful song
But now I know the meaning of true love
I’m leaning on the everlasting arms

If I can see it, then I can do it
If I just believe it, there’s nothing to it

I believe I can fly
I believe I can touch the sky
I think about it every night and day
Spread my wings and fly away
I believe I can soar
I see me running through that open door
I believe I can fly

See I was on the verge of breaking down
Sometimes silence can seem so loud
There are miracles in life I must achieve
But first I know it starts inside of me, oh

If I can see it, then I can do it
If I just believe it, there’s nothing to it

Hey, cuz I believe in me, oh

If I can see it, then I can be it
If I just believe it, there’s nothing to it

Hey, if I just spread my wings

I can fly, hey
If I just spread my wings
I can fly

*************************************************

IPL T20 Live Score and all the updates

•May 15, 2008 • Leave a Comment

please visit www.icccricketworldcuplive.com , www.cricinfo.com for IPL T20 Live Score and all the updates .

Cheers !!!!!!!!!!!!!

 
Follow

Get every new post delivered to your Inbox.