goldb.org home

AS OF MAY 2008, THIS BLOG IS NO LONGER BEING UPDATED.
Visit the new blog at: http://coreygoldberg.blogspot.com



 Sunday, March 04, 2007

Many Hats of a Performance Engineer

The many hats of a performance engineer:

  • tester
  • developer
  • toolsmith
  • dba
  • sysadmin
  • network/ops/tech
  • system integrator
  • architect
  • statistician
  • data visualizer
  • sadist



#!/usr/bin/env python


def main():
    me = PerformanceEngineer()
    print 'just another %s:' % me.role
    print me.skillz



class PerformanceEngineer(object):
   
    role = 'performance engineer'
    skillz= (
        'tester',
        'developer',
        'toolsmith',
        'sysadmin',
        'network/ops/tech',
        'system integrator',
        'architect',
        'statistician',
        'data visualizer',
        'sadist'
    )
  
    def __init__(self):
        pass      



if __name__ == '__main__':
    main()
#    Comments [0] |
Comments are closed.