This is an old revision of this page, as edited by Pale blue dot (talk | contribs) at 21:54, 19 May 2004 (List of insights in the book). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Revision as of 21:54, 19 May 2004 by Pale blue dot (talk | contribs) (List of insights in the book)(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)The Mythical Man-Month: Essays on Software Engineering is a classic book on software project management written by Fred Brooks.
Reflecting on his time at IBM managing the development of OS/360, Brooks recounts the mistakes made and lessons learned. One of the mistakes was the attempt to add more workers to a project falling behind schedule, in the hope of speeding development. His observation, known as Brooks's Law, was simple: "Adding manpower to a late software project makes it later."
Another of his challenges to the idea of expecting results to match labor expended was the assertion that writing an Algol compiler requires six months, regardless of the number of workers involved.
Brooks also describes the second-system effect and advocates prototyping.
The book was first published in 1975. It was republished as an anniversary edition in 1995, adding the essay No Silver Bullet and commentary by the author.
Some invaluable insights from the book
- Assigning more programmers to a project running behind schedule, could actually make it even more late.
- The second system an engineer designs is the most dangerous system she will ever design, since it will be disasterously overdesigned. Thus, when embarking on a new project, a project manager should ask for a chief architect, who has at least designed three or more systems.
- In order to make a user-friendly system, the system must have conceptual integrity, which can only be achieved by separating architecture from implementation. A single chief architect (or a small number of architects), acting on the user's behalf, decides what goes in the system and what stays out. A super cool idea by someone, may NOT be included if it doesn't fit with the overall system design seamlessly. In fact, to ensure a user-friendly system, a system may deliberately provide less features than it is capable of. The point is that if a system is too complicated to use, then many of its features will go unused because noone has the time to learn how to use them.
- What the chief architect produces are written specifications for the system in the form of the manual. It describes the external spcifications of the system in detail i.e. everything that the user sees. The manual can be altered as feedback comes in from the implementation teams and the users.
- When designing a new kind of system, a team will design a throw-away system (whether it likes it or not). This system acts as a pilot plant that will reveal techniques which will subsequently cause a complete redesign of the system. This second smarter system should be the one delivered to the customer, since delivery of the pilot system would cause nothing but agony to the customer and possibly ruin the system's reputation and may be even the company's.
- Every project manager must create a small core set of formal documents which acts as the roadmap as to what the project objectives are, how are they to be achieved, who is going to achieve them, when are they going to achieved and how much are they going to cost. Now, a programmer cannot say, "I didn't know that', when confronted, since she is supposed to have read the formal documents. These documents may also reveal inconsistencies which are otherwise hard to see.
- When estimating project times, remember that compilers are three times as hard to write as application programs. And systems programs are three times as hard to write as compilers. And the use of a suitable high level language may dramatically improve programmer productivity. Also, keep in mind how much of the work week will actually be spent on technical issues rather than administrative ones or other non-technical ones, such as meetings or sick leaves.
- In order to avoid disaster, all the teams working on a project should remain in contact with each other in as many ways as possible (email, phone, meetings, memos etc.) Instead of assuming something, the implementor should instead ask the architects to clarify their intent on a feature she's implementing, before proceeding with an assumption that might very well be completely incorrect.