Please identify yourself:
Username:
Password:
You reached server:
mail.pandjiris.com
The local server time is
03:25 AM
Have a nice
morning
You are coming from IP address:
216.73.216.124
"Really weird C code to count the number of bits in a word":
#define BITCOUNT(x) (((BX_(x)+(BX_(x)>>4)) & 0x0F0F0F0F) % 255) #define BX_(x) ((x) - (((x)>>1)&0x77777777) \ - (((x)>>2)&0x33333333) \ - (((x)>>3)&0x11111111))