Look what I found!! This is an archive of what my site/life was about 4-5 years ago. For the modern JobyBednar.com, try here.
JobyBednar.com
In a mad world only the mad are sane.
- Akira Kurosawa

Ruby Development
/root
  ./apple I
  ./articles
  ./code
  ./decode
  ./hobbies
  ./mac
  ./pics
  ./ruby
  ./www



 Use OpenOffice.org
./C/C++/Swap Integer Values
void swap(int & A, int & B)
{
     //using a series of XOR bit opperations
     A ^= B; //A = A xor B
     B ^= A; //B = B xor A
     A ^= B; //A = A xor B
}