Monday, July 19, 2010

Beauty in Simplicity...

There is beauty in everyday simple things. There is richness in grandeur.

Heaven on Earth...

The transparency between heaven and earth lies in how we perceive things.

Saturday, July 17, 2010

Javarasi Payasam

Ingredients:

1/2 cup javarasi (sago)
1/2 cup roasted semiya (vermicelli)
1 cup sugar
1/2 cup coconut milk
2 cup milk
a handful of raisins/cashews/pista
1 cardamon
2 spoons of ghee

Preparation:

Bring sufficient water to boil and add javarasi. Once it becomes transparent, it means its cooked. Then add semiya and cook. If un-roasted semiya, then roast it lighlty till golden brown in ghee.
Next add milk. Bring milk to boil and simmer. Add sugar, coconut milk and cardamon.
Seperately in a tawa, add ghee and roast the raisins/cashews/pista. Add these to the payasam and simmer for 1 minute again. Tasty Payasam ready.

Tuesday, July 13, 2010

What Kevin says...

7 yrs

Started a new award system to Kevin by awarding him with stars for every good thing he does...
When he earns 25 stars, he gets a toy. One day when he earned his reward and was about to go and buy a toy...

kevin: mum are we going shopping now to buy a toy for my reward
me: yes
kevin: (happy and asks) what else are you going to buy?
me: some onions and tomatoes too..
kevin: (unhappy) I did not earn rewards to buy those stuff too.
me: :))

What Keith says...

Keith - 2 month old

keith - Ingha!
meaning - I am hungry..give me food!

Tuesday, March 3, 2009

Merging changes in Subversion (SVN) with Trunk and Branch

Merging from Subversion (SVN) Trunk into Branch

From: Specify trunk <project_name>
Revision: Choose a revision number (Probably the revision no from which the Branch was created or if previous merges have happened, then the last revision when a merge was done)

To: Check 'Use From URL'
Revision: Head Revision

Merging from Subversion (SVN) Branch to Trunk

From: Specify Trunk <project_name>
Revision: Head revision

To: Specify Branch <branch_project_name>
Revision: Head revision

Thursday, February 12, 2009

Trunc function in SQL

In sql when when we use the BETWEEN function to bring out data for a period of date range, some of the records might not come up in the result

for e.g.

SELECT *
FROM orders
WHERE order_date between to_date ('2003/01/01', 'yyyy/mm/dd')
AND to_date ('2003/12/31', 'yyyy/mm/dd');

If the order_date column in database has a time componenet in it, then the results might not come up for the dates 2003/01/01 and 2003/12/31

To solve this problem, we remove the time componenet from the query using the TRUNC function

SELECT *
FROM orders
WHERE trunc(order_date) between to_date ('2003/01/01', 'yyyy/mm/dd')
AND to_date ('2003/12/31', 'yyyy/mm/dd');