Friday, November 27, 2009

Google: Chrome : Opening new tab

If you type something in to the omnibox and hold down the Alt key while you press enter, the resulting page will open as a new tab at the end of your tabstrip, leaving your previous page untouched.






Extract from Chrome Blog.

Wednesday, November 11, 2009

DataStructures: To find whether the system follows little endianor big endian

int main ()
{
long val = 1;
char *c = (char *) &val;
if( *c == 1 ) printf( "Little endian");
else printf("Big endian");

return 0;
}

Sunday, November 8, 2009

Google: Google Dashboard

Google is launching a Google Dashboard, which will give you a high-level summary of everything Google knows about you by virtue of the Google products you use. This might include how many emails are in your inbox, recent subject lines, which YouTube video you’ve watched lately (yes, all of them), appointments on your calendar, and more.