in reply to reworking a large program

Given that /you/ have done all your work, write architecture of your intended product. Define input/ouputs, flow of data and functionality of your functions/programs properly. Thus spend sometime in design work and you will get your rewards.

Replies are listed 'Best First'.
Re: Re: reworking a large program
by scottj (Monk) on Feb 10, 2004 at 01:24 UTC
    I couldn't agree more with the above post. Plan, plan, plan.

    I've just begun reworking a large-ish system that I didn't write. I wish I were in your shoes instead of mine in this case because I first have to go in and dig through a ton of (poorly written) code to find out what it does. You at least have the advantage of knowing this already.

    When you do get around to writing your new code, though, please take into consideration that next guy who will have to rework your code. Document everything and use coding techniques that are easy to follow.

    And most importantly, Good Luck! Your ideas for the new app sound intriguing. Makes me want to go write some code myself. :)