By PVG viagra

Data security Payday loans What a relief these loans bring
C:\>SRCHARCH.EXE "August, 2009"

Never Code Tired

| August 30th, 2009

Never try to calculate the bounding rectangle of a circle when you're tired, distracted, or less than fully sober. I must have been some combination of all three of those when I wrote this masterpiece:

public override RectangleF BoundingRect
{
  get
  {
    float x = WorldPos.X - (m_radius / 2.0f);
    float y = WorldPos.Y - (m_radius / 2.0f);
    return new RectangleF(x, y, m_radius, m_radius);
  }
}

I spent an hour this morning wondering why my mouse click code thought my circles were half as big as they were. Sigh.

iPhone Tethering At Work

| August 14th, 2009

I work for a company that restricts access to the internet. Today I set up my iPhone so that when it's docked, my work computer uses its tethered 3G connection to browse the internet, bypassing the filter. Here's how I did it. more »

Cuttlefish Engine Update

| August 14th, 2009

I posted a lengthy Q & A about my upcoming Cuttlefish Engine - a cross platform cell phone game engine for iPhone, Android, and Blackberry - over on the Cuttlefish Industries blog, for all you cell phone game makers.