Archive for 2009

Re-invention of Email – Google Wave – Top 10 Features

Posted on November 11 2009 by Sachin Jain

Google has introduced its new product GOOGLE WAVE! It is an online tool provides communication and collaboration in real time. Google wave has been build on the concept of cloud computing.
It just a next generation emailing or communication tool. It has merged social networking, instant messaging, emails, wiki all together at one platform. You can [...]

Do’s and Don’t for Interview

Posted on November 5 2009 by Sachin Jain

Do’s
1) Early arrival – There is no excuse for late candidates. Always arrive 15 min early.
2) Giving your qualifications – Stress your accomplishments that are most related to the job.
3) Conduct yourself professionaly – Be aware what your body language is saying. For example – Smile, make eye contact.
4) Anticipate tough questions – Prepare yourself [...]

Unique constraints for LARGE TEXT columns – SQL

Posted on November 5 2009 by Sachin Jain

Suppose you are storing URL in your table and you want to apply UNIQUE contraint but as SQL allows only 900 byte limit. how can you put unique constraint for larger text ??
For this you can create a computed CHECKSUM column which is an integer vale and put constraint on it.
Example as follows
CREATE TABLE messages [...]

preventing select * from the query in SQL

Posted on November 5 2009 by Sachin Jain

For Team Leads, Developer don’t listen what you say still using * in their select queries. You can restrict them using * by using deny select on object.
This all you can do by create a dummy column in table and deny it for selection. Now user can select the rest of the [...]

Top 7 features of windows 7

Posted on October 23 2009 by Sachin Jain

1) Home Group – Now you can share pictures, documents , videos , music in network with ease. Home Group is a feature that allows you to join any one in a network by just clicking to “join now”. Yes, ofcourse privacy has been maintained, you can set the password while sharing your documents over [...]

Custom application error tracking through global.asax file

Posted on October 22 2009 by Sachin Jain

Custom application error tracking through global.asax file. Here you can track querystrings, post data and whole exception message with url

Non Verbal Communication – 93% effective

Posted on October 21 2009 by Sachin Jain

Communication without words plays an very important role in communication. It is surprising that the words you are delivering is not as much effective, it is
the non verbal communication which makes your communication more effective. For example eye contact, Your tone (loud , low , polite).
Lets categorized it :-
1) Kinesics or body language – It [...]

WCF Architecture

Posted on October 20 2009 by Sachin Jain

Following is the diagram for WCF architecture

1. Contracts – It contains information about what service does and type  of information it will make available.
a) Data – A data contract includes the data that will be exchanged by the service. The service and the client do not need to agree on the types, but they [...]

Naming Conventions and Standards – C#

Posted on October 20 2009 by Sachin Jain

1) Use Pascal casing for type and method names and constants:
public class YourClass
{
const int ConstantVariable = 100;
public YourMethod( )
{}
}

2) Use camel casing for local variable names and method arguments. Use p prefix for parameterized vairables:
int intNumber;
void MyMethod(int pintNumber)
{}

Generate Paging – Custom function

Posted on October 20 2009 by Sachin Jain

Here it goes

private int mstrPageSize = 1;
private int mstrTotalRecords = 1;
private int mstrCurrentPage = 1;

public int PageSize
{
get
{
return mstrPageSize;
}

Get Adobe Flash playerPlugin by wpburn.com wordpress themes

Powered by Sachin Jain

Powered by Olark