Resume writing tips

jjohn on 2003-01-21T01:34:08

One of my clients has me looking a fairly complex mod_perl application that has several dozen modules arranged to varying degrees in object heirarchies. There are several examples of empty subclasses that exist to as aliases for their parents. There are very nice examples of method overriding whose purpose isn't entirely until the parent class is examined. Of course being a mod_perl app, one can't fire up the debugger and trace a live program's execution. Still, I think I've done pretty well at understanding this byzantine code.

Can I list the following skill on my résumé:

can stick his head up the ass of any perl code base

I think so.


Tracing mod_perl execution

pdcawley on 2003-01-21T06:03:51

Apache::DB is your very good friend when you've got a mod_perl app that's too entangled with the workings of Apache to be debugged separately.

Personally I'm rather keen on moving application logic out into a separately testable and runnable layer that doesn't make mod_perl assumptions, but time pressure often stops that happening in real life...

Re:Tracing mod_perl execution

jjohn on 2003-01-21T13:01:12

I have heard of Apache::DB and I really do need to look at it more carefully. The application in question is a framework (never easy to debug anyway). Let me do my homework on Apache::DB and see if it can help in a situation as difficult as this.