Saturday, July 30, 2005

Google LogoMarker, http://{earth,moon,mars}.google.com

My google style-logo: http://www.logogle.com/ggl.php?hl=ja&lo=manivannan

earth: http://earth.google.com
moon: http://moon.google.com
mars: http://mars.google.com

Human natured, Divine natured

I consider people, helping others are human natured. People taking risk and helping others are divine natured. I am really impressed by some people who helped me a lot by taking long efforts. I dont see anyway to say my thanks back.

Wednesday, July 27, 2005

Experiencing the Real World

These 2 months, I learnt a lot from all respects of people and events. I really see a lot of change and improvment in my self-attitude by these experiences.
So far, am having very short exposure to outer world. But, day to day I amaze to see the people's attitude and real happenings around me.
I happened to meet variety of people....and they taught a lot about real life ethics.
These days, I try to improve the mental integrity & stability...Also, somedays back arvind said that he used to try the same...
Lets see how things go.

Monday, July 18, 2005

My recipe for making coffee...ha ha!

I am having headache for the past 4 days...I closed books and made
my simple recipe for coffee..

-------------------

package recipe.coffee;

/**
* This class defines core methods for making coffe.
* The variables 'sugar' and 'powder' are scaled interms of tea-spoon.
* (tea-spoon) size is purely platform and implementation
* dependent.
* variable 'milk' is scaled interms of class. (class size also
* platform and implementation dependent.)
* @author Manivannan
* @version 1.0
*/

import javax.coffee.*;

public class CoffeeMaker
{
private final int sugar;
private final int powder;
private final int milk;
private Coffee coffee;

/**
* @param milk specifies the milk in class.
*/
public CoffeeMaker(int milk)
{
this.milk = milk;
this.sugar = 3 * this.milk;
this.powder = 3 * this.milk
}


/**
* @return coffee the coffee returned to the caller.
*/

public Coffee makeCoffee()
{
return coffee = Coffee.mixIngredients(sugar,powder,milk);
}
}

------------