LOGIN
Please identify yourself:

Username:
Password:
Remember login:





You reached server: www.nade.dk
The local server time is 04:54 AM Have a nice morning ;-)

You are coming from IP address: 3.138.174.95
You are using: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)


"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))