May 2010 Entries

How to find Overlap or Intersection

I forget this every time.  C# public bool NumbersOverlap(int Set1Min, int Set1Max, int Set2Min, int Set2Max){ return (Set2Min >= Set1Min && Set2Min <= Set1Max) || (Set2Max <= Set1Max && Set2Max >= Set1Min) || (Set2Min <= Set1Min && Set2Max >= Set1Max);}   VB 6 Private Function NumbersOverlap(Set1Min As Integer, Set1Max...

posted @ Wednesday, May 26, 2010 7:50 PM | Feedback (2)

The Downfall of Peer Guardian for the Mac.

Peer Guardian for the Mac has got to be the most opaque app ever.  At least two apps would not work: Steam Penguin Club It just silently block them.  No preferences, no UI to selectively pick apps or ports.  It seems to block all non-HTTP socket traffic. So I set out to uninstall.  Dragging the app into the Trash Can didn’t fix the situation.  Finally I had to uninstall it with the help of AppDelete.  Then, magically, Steam and Penguin Club just worked.

posted @ Thursday, May 13, 2010 5:08 PM | Feedback (2)