Dashboard > People > John Mazzitelli > John Mazzitelli Space Home Page
  John Mazzitelli Log In | Sign Up   View a printable version of the current page.  
  John Mazzitelli Space Home Page
Added by John Mazzitelli , last edited by John Mazzitelli on Aug 07, 2008  (view change)
Labels: 
(None)

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.

  • To rollback a particular revision, execute the following (where ### is the revision you want to back out, note the - (dash) prefixing the number - this is required):
    svn merge -c -### <svn http url>

    You can then svn status and svn diff to make sure its all correct. Then svn commit to checkin the changes, which effectively rolls back that revision. Read http://svnbook.red-bean.com/en/1.0/ch04s04.html and http://svnbook.red-bean.com/en/1.0/ch04s03.html for information about merging and branches.

Miscellaneous Notes

  • Calculating Running Average
    long newValue = ...;
    long count = currentCountOfItems++; // must be the count of all items currently
    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.

Powered by a free Atlassian Confluence Open Source Project License granted to Ringside Networks. Evaluate Confluence today.
Powered by Atlassian Confluence 2.7.1, the Enterprise Wiki. Bug/feature request - Atlassian news - Contact administrators