Went back to school to take photos with some of my friends.
http://picasaweb.google.com/gunblad3/NTUSCEClass2007
I've moved! http://pleasefeedthegeek.wordpress.com/
MozBackup is a simple utility for creating backups of Mozilla
Firefox, Mozilla Thunderbird, SeaMonkey, Mozilla Suite and Netscape profiles.
private byte LeftBarrelShift(byte b, uint amount)
{
amount %= 8;
byte temp;
for (uint i = 0; i < amount; i++)
{
temp = (byte)(b >> 7);
b <<= 1;
b += temp;
}
return b;
}
private byte RightBarrelShift(byte b, uint amount)
{
amount %= 8;
byte temp;
for (uint i = 0; i < amount; i++)
{
temp = (byte)(b % 2);
b >>= 1;
temp <<= 7;
b += temp;
}
return b;
}