Tagged with " Quick Tips"
21 Mar
2007
Posted in: Quick Tips
By    No Comments

Effectiveness of Eye-Tracking

I recently got to know that there is something interesting to know about the eye-tracking of the readers especially when it comes to web.  Most of the users are believed to follow a F-Pattern in reading website contents quickly.
So following eye-tracking across board will definitely be of great use to the people who are really concerned about their content being read by the users properly should investigate more on the reading patterns of the users.
I came across an article detailing on this http://www.useit.com/alertbox/reading_pattern.html

19 Jan
2007
Posted in: Quick Tips
By    No Comments

Useful SQL Functions related to date

Here are few SQL Functions which would be useful when we do some tasks dealing with dates

Dateadd: Returns a new datetime value based on adding an interval to the specified date.

Syntax: DATEADD ( datepart, number, date )

Datediff: Returns the number of date and time boundaries crossed between two specified dates.

Syntax: DATEDIFF ( datepart, startdate, enddate )

Datename: Returns a character string representing the specified datepart of the specified date.

Syntax: DATENAME ( datepart, date )

Datepart: Returns an integer representing the specified datepart of the specified date.

Syntax: DATEPART ( datepart, date )

Day: Returns an integer representing the day datepart of the specified date.

Syntax: DAY ( date )

Getdate: Returns the current system date and time in the Microsoft® SQL Server™ standard internal format for datetime values.

Syntax: GETDATE ( )

Month: Returns an integer that represents the month part of a specified date.

Syntax: MONTH ( date )

Year: Returns an integer that represents the year part of a specified date.

Syntax: YEAR ( date )

Hope this would be helpful.