Sep16
Google Reader & Yahoo Pipes II, Legend of the Overfeed
Some time after my last post, I completed setting up my technology feed aggregation pipe. Here’s what it looks like:
Continue reading »Sep16
Some time after my last post, I completed setting up my technology feed aggregation pipe. Here’s what it looks like:
Continue reading »Sep13
I’ll probably write up the exact details of implementation later on How I Use Things but I wanted to express my feelings about and behind this move and something so meta as that belongs here instead of there.
Continue reading »Jan30
I wanted to create an interface that would be implemented by a group of classes all extending the same abstract class. Curiosity led me to try implementing the interface in the abstract class alone, forcing the interface’s requirements down to descendants by way of abstract functions fulfilling the interface’s requirements and in turn obligating descendant classes to implement them.
Continue reading »Sep30
When declaring members of a class in PHP, only the most basic of value assignments may be immediately made.
HTML parse error: <pre class="brush: php;">private $var = 'test'; // will work private $var2 = $var; // will not workContinue reading »