Ringside Notes
Here are some pages of notes that I've taken as I learn the Ringside codebase. I'll eventually move this to appropriate places on the public wiki, but until I find a home for these notes, they will stay here.
Some useful information that can be used within Ringside:
PHP Notes
I'm keeping some notes on PHP.
SVN Notes
Here's some useful tidbits regarding SVN usage.
Miscellaneous Notes
- Calculating Running Average
long newValue = ...;
long count = currentCountOfItems++; currentAvg = (((count - 1) * currentAvg) + newValue) / count;
Useful Thunderbird Plugins
Here are some Thunderbird plugins that I've found useful.
Useful Firefox Plugins
Here are some Firefox plugins that I've found useful.
AOP Research
See my results of my research into AOP implementations for PHP.