Thursday
Jan102008
Dealing with Bandwidth Thieves

Ian sent me this link about what to do if you suspect the neighbours are stealing your home WIFI.
http://www.ex-parrot.com/~pete/upside-down-ternet.html
Brilliant stuff.


in
Link

I've had to give up that Distance Learning course as I was having trouble seeing the teacher.
Ian sent me this link about what to do if you suspect the neighbours are stealing your home WIFI.
http://www.ex-parrot.com/~pete/upside-down-ternet.html
Brilliant stuff.
Reader Comments (2)
I'm still sort of confused about the whole collisions topic...
http://msdn2.microsoft.com/en-us/library/aa446552.aspx
Part 2, you mention bounding boxes? I am using pieces of graphics?
"if ( goingDown )
{
// only bounce if the cheese is going down
if ( cheeseRectangle.IntersectsWith(breadRectangle))
{
// we have a collision
bool rightIn = breadRectangle.Contains(
cheeseRectangle.Right,
cheeseRectangle.Bottom) ;
bool leftIn = breadRectangle.Contains(
cheeseRectangle.Left ,
cheeseRectangle.Bottom) ;
// now deal with the bounce"