Wednesday, October 14, 2009

Facebook Lite

Facebook has activated a lite version of their popular website for users in selected countries. Facebook Lite was initially designed to offer users with slow Internet connections a faster way of accessing the most relevant sections in Facebook. The concept still seems to be valid although only users from selected countries can currently open the Facebook Lite website in their web browsers. The interface of Facebook Lite comes with less noise. Many elements that are displayed on the standard Facebook pages have been removed to provide faster access to the core functionality.

Elements that have been removed include Highlights, the left sidebar navigation to access modules in Facebook, the What’s on your mind bar at the top, links to quickly connect with friends and the requests section.

Some functions of these modules are still available on the Facebook Lite page. Friend requests for instance are still shown on the start page while invitations and other requests are not. A quick check with the Firefox add-on Firebug revealed the following size difference: The normal Facebook page had a size of 778 Kilobytes while the Facebook lite page only 113 Kilobytes. These values can obviously vary depending on the messages and images that have been posted. Not all notifications (like when someone earned a reward in a game) are displayed in the Facebook Lite page.
http://lite.facebook.com/

Disable Windows Live Messenger Update Alert

First make a back of msnmsgr.exe, inside the MSN Messenger folder, in case anything goes wrong or you what to go back to original later.
Then open that with res hacker, on the left locate the "version info" -> "1" -> 1033

Now on the right side, you need to change the originals values to:
FILEVERSION 8,5,1302,1018
PRODUCTVERSION 8,5,1302,1018
and
VALUE "FileVersion", "8.5.1302.1018"
VALUE "ProductVersion", "8.5.1302.1018"


or whatever is latest version is there..




now Save it n enjoy a smooth chating without updating

Saturday, August 22, 2009

Amirkhan




There's no doubt that Aamir Khan is an excellent actor. So excellent in fact that he's quite a favourite among advertisers. After all, he gives his all to the products he endorses.
From a sherpa to a cranky old man to a heavily made-up housewife, Aamir Khan has played most characters in his ads alone. And pretty convincingly too.

C, C++ Interview Questions

Q : What is a heap ?
Ans : Heap is a chunk of memory. When in a program memory is allocated dynamically, the C run-time library gets the memory from a collection of unused memory called the heap. The heap resides in a program's data segment. Therefore, the amount of heap space available to the program is fixed, and can vary from one program to another.

Q : How to obtain a path of the given file?
Ans: The function searchpath( ) searches for the specified file in the subdirectories of the current path. Following program shows how to make use of the searchpath( ) function.

#include "dir.h"

void main ( int argc, char *argv[] )
{
char *path ;
if ( path = searchpath ( argv[ 1 ] ) )
printf ( "Pathname : %s\n", path ) ;
else
printf ( "File not found\n" ) ;
}

Q : Can we get the process identification number of the current program?
Ans: Yes! The macro getpid( ) gives us the process identification number of the program currently running. The process id. uniquely identifies a program. Under DOS, the getpid( ) returns the Program Segment Prefix as the process id. Following program illustrates the use of this macro.
#include
#include

void main( )
{
printf ( "The process identification number of this program is %X\n",
getpid( ) ) ;
}

Q : How do I write a function that takes variable number of arguments?
Ans: The following program demonstrates this.

#include
#include

void main( )
{
int i = 10 ;
float f = 2.5 ;
char *str = "Hello!" ;
vfpf ( "%d %f %s\n", i, f, str ) ;
vfpf ( "%s %s", str, "Hi!" ) ;
}

void vfpf ( char *fmt, ... )
{
va_list argptr ;
va_start ( argptr, fmt ) ;
vfprintf ( stdout, fmt, argptr ) ;
va_end ( argptr ) ;
}

Here, the function vfpf( ) has called vfprintf( ) that take variable argument lists. va_list is an array that holds information required for the macros va_start and va_end. The macros va_start and va_end provide a portable way to access the variable argument lists. va_start would set up a pointer argptr to point to the first of the variable arguments being passed to the function. The macro va_end helps the called function to perform a normal return.

Q : Can we change the system date to some other date?
Ans: Yes, We can! The function stime( ) sets the system date to the specified date. It also sets the system time. The time and date is measured in seconds from the 00:00:00 GMT, January 1, 1970. The following program shows how to use this function.
#include
#include

void main( )
{
time_t tm ;
int d ;

tm = time ( NULL ) ;

printf ( "The System Date : %s", ctime ( &tm ) ) ;
printf ( "\nHow many days ahead you want to set the date : " ) ;
scanf ( "%d", &d ) ;

tm += ( 24L * d ) * 60L * 60L ;

stime ( &tm ) ;
printf ( "\nNow the new date is : %s", ctime ( &tm ) ) ;
}
In this program we have used function ctime( ) in addition to function stime( ). The ctime( ) function converts time value to a 26-character long string that contains date and time.

Q : How to use function strdup( ) in a program?
Ans : The string function strdup( ) copies the given string to a new location. The function uses malloc( ) function to allocate space required for the duplicated string. It takes one argument a pointer to the string to be duplicated. The total number of characters present in the given string plus one bytes get allocated for the new string. As this function uses malloc( ) to allocate memory, it is the programmer’s responsibility to deallocate the memory using free( ).
#include
#include
#include

void main( )
{
char *str1, *str2 = "double";

str1 = strdup ( str2 ) ;
printf ( "%s\n", str1 ) ;
free ( str1 ) ;
}

Q : On including a file twice I get errors reporting redefinition of function.
How can I avoid duplicate inclusion?
Ans: Redefinition errors can be avoided by using the following macro definition. Include this definition in the header file.
#if !defined filename_h
#define filename_h
/* function definitions */
#endif
Replace filename_h with the actual header file name. For example, if name of file to be included is 'goto.h' then replace filename_h

Q : How to write a swap( ) function which swaps the values of the variables using bitwise operators.

Ans: Here is the swap( ) function.
swap ( int *x, int *y )
{
*x ^= *y ;
*y ^= *x ;
*x ^= *y ;
}
The swap( ) function uses the bitwise XOR operator and does not require any temporary variable for swapping.

Thursday, January 22, 2009

E-kundali Professional Full





E-Kundali Professional 6.0 is a result of vast research, dedication and continuity towards astrology and occult subjects. However, it's not the end of hard work but it's the starting of a new era in astrology. E-Kundali Professional 6.0 – The NextGen Astrological Software - is an upgraded version of E-Kundali Professional 3.5. It includes lots of contents in Charts, Dashas, Yogas (including Kaal Sarp Yoga), Shada Bala, Bhava Bala, Shani Sadhe Sati (Saturn Transit) and Prediction section for astrologers as well as the common man. There are four separate well designed Work Screens for Horoscope, Marriage Matching, Transit and Varsha Phala. Work Screen designs and Charts designs are very attractive and quite easy to use.

More than 100 option are there.. All are working..

Link:
http://rapidshare.com/files/181252766/KUNDLI.rar

NOD 32 Offline Update 19-1-2009

Here is the Offline Update for NOD32 Download it and update your PC.

for more information or have you any problem feel free to Comment here we are helping you out

Link:
http://rapidshare.com/files/187467457/_NOD32_v3.0_Offline_Update_3778__20090119___.rar

Monday, January 12, 2009

Top 10 English Movies of 2008

Here is the List of Top 10 Movies of 2008
From 10-1

No:10


No:9


No:8


No:7


No:6


No:1