Bugzilla as a discussion forum
Barnboy
bz at barnson.org
Mon Mar 22 23:18:26 UTC 2004
Me, I'm of the opinion that discussion on a bug is a *good* thing. Slashdot and Kuro5hin's moderation systems have done wonders for their signal-to-noise ration from the end-user perspective -- set your threshold to a number you're comfortable with, and get your job done.
Just a thought :)
--
Matthew P. Barnson
- - - -
Thought for the moment:
n = ((n >> 1) & 0x55555555) | ((n << 1) & 0xaaaaaaaa);
n = ((n >> 2) & 0x33333333) | ((n << 2) & 0xcccccccc);
n = ((n >> 4) & 0x0f0f0f0f) | ((n << 4) & 0xf0f0f0f0);
n = ((n >> 8) & 0x00ff00ff) | ((n << 8) & 0xff00ff00);
n = ((n >> 16) & 0x0000ffff) | ((n << 16) & 0xffff0000);
-- C code which reverses the bits in a word.
More information about the developers
mailing list