Wednesday, April 18, 2007

Hand Washing

Washing your hands innumerable times with soap makes your skin lose its moisture. Keep a piece of lemon next to your hand-washing soap. Rub it over your hands at least once a day, before washing. This will help delay the onset of age-spots.

Dark circles

Dark Circles, A nightmere for you...?

DO U SLEEP LESS??
OVER EXPOSED TO SUN??
DEFICIENCY OF NUTRIENTS??
SUFFERING FROM FATIGUE??

The skin beneath our eyes is very thin. As we get exposed to sun rays, the skin under the eyes gets damaged and becomes more thin and wrinkled. Thus the wrinkles and prominent veins form dark circles. Some times pigmentation also causes dark circles.
Do not use bleach or peels to make the dark circles light.

Some DO`s

Sleep for sufficiently long hours.
Do not scratch the under eye skin.
Take nutritious diet
Dont Take tension
Make it a habbit of washing your eyes daily with cold water before going to bed
Avoid Taking stress

Some tips to remove your dark circles

Dip cotton pads in a mixture of cucumber and potato juice. and keep the cotton pads on your eyelids.After 15 to 20 minutes wash your eyes with cold water.

To reduce puffiness of your eyes, grate a potato, tie in a cloth and place the cloth over your eyes for about 15 minutes.

For bright and sparkling eyes ,add a small pinch of salt in water and wash your eyes.

Crush a cucumber and take the juice. Add a little rose water and apply around the eyes and wash it after 20 minutes.

Place cotton wool swabs dipped in cold milk on closed eyes for removing dark circles
for 10-15 minutes daily before sleeping.

You can also put cucumber slices on youe eye lids for 10 minutes to soothen your eyes.

Coconut oil massage daily for 5 minutes before sleeping will help will help you a lot in removing your dark circles.

Slice one small piece of a potato, and cut the slice in half. Put each slice under your eyes and leave them under your eyes for 20 minutes.

You can place slightly warm tea bags over your eyes 10-15 minutes to lessen dark circles.

SAPscript Made Easy 4.6

Publisher: Johnson Printing Service
Number Of Pages: 292
Publication Date: 2000-01-26
Sales Rank: 377184
ISBN / ASIN: 1893570142
EAN: 9781893570146
Binding: Paperback
Manufacturer: Johnson Printing Service
Studio: Johnson Printing Service

http://rapidshare.com/files/10457462/sapscriptmadeasy.rar

Programming Windows Server 2003

Publisher: Manning Publications
Number Of Pages: 350
Publication Date: 2003-09-01
Sales Rank: 600182
ISBN / ASIN: 1930110987
EAN: 9781930110984
Binding: Paperback
Manufacturer: Manning Publications
Studio: Manning Publications

http://rapidshare.com/files/20126286/Manning_-_Programming_Windows_Server_2003.rar.html

Microsoft SQL Server 2005 Reporting Services(For Dummies)

http://rapidshare.de/files/11224558/For.Dummies.Microsoft.SQL.Server.2005.Reporting.Services.For.Dummies.Dec.2005.eBook-DDU.rar

Facts related to Food

--Many years ago, a fish was caught that was 33 inches long and seemed to be heavier than it should. When they cut the fish, fishermen found a full of bottle of ale inside it.

--A one kilogram packet of sugar will have about 5 million grains of sugar.

--According to legend, tea originated in China when tea leaves accidentally blew into a pot of boiling water.

--Alcohol beverages have all 13 minerals necessary for human life.

--An egg that is fresh will sink in water, but a stale one won't.

--Black pepper is the most popular spice in the world.

Asp.net

1. Difference between Classic ASP and ASP.Net?
Answer:
* ASP is Interpreted language based on scripting languages like Jscript or VBScript.
* ASP has Mixed HTML and coding logic.
* Limited development and debugging tools available.
* Limited OOPS support.
* Limited session and application state management.
* Poor Error handling system.
* No in-built support for XML.
* No fully distributed data source support.
while
* ASP.Net is supported by compiler and has compiled language support.
* Separate code and design logic possible.
* Variety of compilers and tools available including the Visual studio.Net.
* Completely Object Oriented.
* Complete session and application state management.
* Full proof error handling possible.
* Full XML Support for easy data exchange.
* Fully distributed data source support.

2. What’s the difference between Response.Write() and Response.Output.Write()?
Answer:
Response.Outout.Write allows us to write the formatted out put.


3. Can you explain the difference between an ADO.NET Dataset and an ADO Recordset?
Answer:
* A DataSet can represent an entire relational database in memory, complete with tables, relations, and views, A Recordset can not.
* A DataSet is designed to work without any continuing connection to the original data source; Recordset maintains the contentious connection with the original data source.
* There's no concept of cursor types in a DataSet, They are bulk loaded, while Recordset work with cursors and they are loaded on demand.
* DataSets have no current record pointer, you can use For Each loops to move through the data. Recordsets have pointers to move through them.
* You can store many edits in a DataSet, and write them to the original data source in a single operation. Recordset can have a single edit at a time.
* Dataset can fetch source data from many tables at a time, for Recordset you can achieve the same only using the SQL joins.

4. What is the difference between an abstract method & virtual method?
Answer:
An Abstract method does not provide an implementation and forces overriding to the deriving class (unless the deriving class also an abstract class), where as the virtual method has an implementation and leaves an option to override the it in the deriving class. Thus Virtual method has an implementation & provides the derived class with the option of overriding it. Abstract method does not provide an implementation & forces the derived class to override the method.

5. What are the different types of assemblies? Explain.
Answer:
Assemblies can be static or dynamic. Static assemblies can include .NET Framework types (interfaces and classes), as well as resources for the assembly (bitmaps, JPEG files, resource files, and so on). Static assemblies are stored on disk in portable executable (PE) files. You can also use the .NET Framework to create dynamic assemblies, which are run directly from memory and are not saved to disk before execution. You can save dynamic assemblies to disk after they have executed.


6. What is Difference between Namespace and Assembly?
Answer:
Namespace is a logical design-time naming convenience, whereas an assembly establishes the name scope for types at run time.

7. What is the difference between early binding and late binding?
Answer:
Calling a non-virtual method, decided at a compile time is known as early binding. Calling a virtual method (Pure Polymorphism), decided at a runtime is known as late binding.

8. What is the difference between User Control and Custom Control?
Answer:
Custom Controls are compiled code (Dlls), easier to use, difficult to create, and can be placed in toolbox. Drag and Drop controls. Attributes can be set visually at design time. Can be used by Multiple Applications (If Shared Dlls), Even if Private can copy to bin directory of web application add reference and use. Normally designed to provide common functionality independent of consuming Application. User Controls are similar to those of ASP include files, easy to create, can not be placed in the toolbox and dragged - dropped from it. A User Control is shared among the single application files.

9. What is the difference between ASP Session State and ASP.Net Session State?
Answer:
ASP session state relies on cookies, Serialize all requests from a client, does not survive process shutdown, Can not maintained across machines in a Web farm.

10. What is the difference bettween DataReader and DataSet?
Answer:
DataReader represents only one database record at a time. You must call the Read() method to fetch each new record from the underlying database table into memory. Each time you call Read() again, the previously fetched record is lost. DataSet is on the other hand, enables you to represent the results of a database query in your server's memory. Because a DataSet provides you with a memory-resident representation of data, you can work with the results of a database query as a whole. DataReader must remain connected to a database table. A DataReader is tied down to its underlying data source. The DataSet object is central to supporting disconnected, and distributed data scenarios with ADO.NET. The DataSet is a memory-resident representation of data that provides a consistent relational programming model regardless of the data source. It might be helpful to think of a DataReader as a forward-only recordset. A DataSet, on the other hand, is similar to a disconnected, client-side, static recordset. DataSets also require more overhead to create and populate than DataReaders.

Little Things in Life

Too often we don't realize
What we have until it's gone.
Too often we wait too late to say
"I'm sorry - I was wrong."

Sometimes it seems we hurt the ones
We hold dearest to our hearts.
And we allow foolish things
To tear our lives apart.

Far too many times we let
Unimportant things into our minds.
And then it's usually too late
To see what made us blind.

So be sure that you let people know
How much they mean to you.
Take that time to say the words
Before your time is through.

Be sure that you appreciate
Everything you've got.
And be thankful for the little things in life...that mean a lot.

Life is Short, Enjoy it!

A lecturer, when explaining stress management to an audience, raised a glass of water and asked, “How heavy is this glass of water?”Answers called out ranged from 20g to 500g.
The lecturer replied, “The absolute weight doesn’t matter. It depends on how long you try to hold it.
“If I hold it for a minute, that’s not a problem. If I hold it for an hour, I’ll have an ache in my right arm. If I hold it for a day, you’ll have to call an ambulance. “In each case, it’s the same weight, but the longer I hold it, the heavier it becomes.” He continued, “And that’s the way it is with stress management.
If we carry our burdens all the time, sooner or later, as the burden becomes increasingly heavy, we won’t be able to carry on.” “As with the glass of water, you have to put it down for a while and rest before holding it again. When we’re refreshed, we can carry on with the burden.”
“So, before you return home tonight, put the burden of work down. Don ‘t carry it home. You can pick it up tomorrow. Whatever burdens you’re carrying now, let them down for a moment if you can.” “Relax; pick them up later after you’ve rested.” Life is short. Enjoy it!