You've opened a new tab!

Sound familiar? You know IE holds back the Internet right?

Here you'll be able to find my brief notes on computer/linux things I'm currently doing, and if I had any troubles, details about how they were overcome.

My public GPG key
My public SSH key

My github

My nicknames:

  • cgerpheide (official)
  • phoxicle (IRC, forums, twitter)
  • HorseRayX (AOL -- haven't used this one since I was 11)

A list of my favorite XKCDs:

C0mput3rz & T3chno1ogy

PHP Magic methods and static keywords

It turns out that calling magic methods with static keywords (like parent::) do not always work:

// Doesn't work in some PHP versions
parent::findByType($type); // findByType() is magic

A quick fix is to call the method directly using __call:

parent::__call('findByType',array($type));

Just a heads up...