A
BUG IS NO MORE AND NO LESS THAN A SOFTWARE
defect. However, the less harsh and less direct
name “bug” masks the nature of the beast and helps
toeasetheconscienceofprogrammersandtheorgan-
isations around them. The term also helps plays
down the frustrations of software users, to the point
that defects have become accepted as a normal and
reasonable state of affairs. The word has left its jar-
gon origins and joined mainstream English.
OK, so now we know what a bug is, what is it
worth? In practice, a bug has negative value: it uses
up good will; it costs money and time to discover it
and uncover its modus operandi; it takes time and
concentration away from whatever else we were
doing.
However, in principle, a bug also offers us a learn-
ing experience. There is the potential for some-
thing positive to come from it: we learn about a
particular usage or situation we had previously
overlooked; we learn more about a requirement
that was poorly articulated or tacitly assumed; we
learn that a piece of code we assumed to be cor-
rect was subtly problematic or obviously wrong –
deeply and systemically or because of a simple
thinko or typo – and we learn how to fix it. We also
learn that there might be an opportunity for us to
change our habits and choice of practices to reduce
the likelihood of such defects occurring again in
future.
With the exception of the last learning point, all
of these are the direct and
immediate lessons we take
from bug reports. They are
fairly local in their effect
and often we look no fur-
ther. But the last point is the
meta-lesson that could real-
ly add the most value. A
development model that
emphasises debugging after
the fact over practices that
reduce enbugging in the first
place has its priorities back to
front and represents a failure
of learning.
Learning to develop software
The idea of learning having a central position in
software development is more than a metaphor: it
identifies one dominant aspect of the software
development process. Pundits are often happy to
brand software developers as knowledge workers.
One image this inspires is of knowledge as some
kind of artefact or workpiece with the software
developer as the artisan standing over it, crafting
it with all manner of knowledge lathes and con-
ceptual hammers. However, knowledge is not phys-
ical enough to support such a metaphor. It cannot
simply be shipped and shaped as iron or wood.
The acquisition and presentation of knowledge
is all part of the established topic of learning.
Learning involves accumulation, consolidation,
exploration, articulation and feedback, all of which
can be seen in effective software development
processes. The emphasis on an iterative and incre-
mental approach is something that distinguishes
agile development processes from more bureau-
cratic and master-planned processes. A cyclic and
cumulative approach reflects a learning process.
When “learning” is normally mentioned in the
context of software development, it is assumed to
refer to development skills. This is the gap filled and
fulfilled by books, training courses and so on. But
more generally learning and the expression of the
knowledge acquired defines the axis along which
software development runs: what we learn is
embodied and revealed in the code behind the
software 1
.
For example, there is learning about the domain
in which a piece of software runs or is to run, and
the specific needs that define the scope and purpose
of the software and any changes to it. This respon-
sibility is not only restricted to someone with the
title “analyst”; it applies to all those who are
involved in formulating the software, including
the party for whom the software is intended. A
common criticism of software customers is that
they do not know what they want even though they
know they want it; it is easier to reason about this
perception from the perspective of learning. Unless
there is a process that encourages learning on all
sides, how else is the knowledge
going to emerge clearly? Mir-
acles and master plans?
Feedback obviously plays a
significant role in all this, and
shortening long feedback
loops is one of the optimisa-
tions that can make any
approach more effective.
Design education
Software development is a
design-based activity. Some
people assume that design
means “drawings and docu-
ments about the software, but
PROGRAMMERS’WORKSHOP
48 WWW.APPDEVADVISOR.CO.UK
KEVLIN
HENNEY
Software development can be more of an education
than you might first think. Kevlin Henney studies
what there is to learn
Learning curve
not the software”. However, this is not a particularly useful or
accurate reflection of what design-based professions do. Design
is about the creation and expression of structure, physical or
virtual, which fulfils a number of goals and satisfies a number
of constraints. It is a creative and intentional act with many
modes of expression and levels of detail.
Goals and constraints can be decomposed recursively from
the highest-level of granularity into finer levels of detail. Require-
ments exist at the application level with respect to its users,
but requirements also exist locally in the way that one method
uses another 2
. However, there is no simple sausage machine that
successfully turns a handful of use cases captured in natural lan-
guage into an effective running system. Design is involved in
everything from framing the requirements to demonstrating the
effectiveness of a running system.
Design embraces all the kinds of expression of structure
from whiteboard sketches in ad hoc UML to lines of code in
Java. This means that the view of code as no more than an
implementation detail – and therefore one that is not a prop-
er concern or activity of design – is one of those unhelpful
myths that has dogged software development for too long,
and yet fails to stand up to close scrutiny.
Code is a formal notation used to express structure and exe-
cution in a virtual world – very little code, even that written in
something as metal hugging as assembler, can claim to be
describing structures and execution in a strictly physical world.
Code creates and inhabits a designed domain 3
. A significant
number of decisions that affect the final software are made at
the keyboard in a code editor. This is not necessarily always a
good thing, but it is necessarily inevitable. Any sustainably
realistic view of development needs to do more than just
acknowledge this inevitability; it needs to take advantage of it.
To understand the inevitability, consider detail: all design
activities are in some way based on abstraction, but not all
are or aim to be complete. A package diagram sketched out on
a whiteboard may be accurate, but it does not offer a com-
plete view of what has been or is to be developed – if it did, it
would be unreadable and useless, defeating the very purpose
of using such a sketch. By contrast, the definition of a wire-level
protocol needs to be both accurate and precise for it to be of use
– a sentence such as “...and the bits ought to be laid out in
some order or other” is unlikely to be of much use. Code, in its
many forms, is still abstract, but it demands a high level of
both precision and accuracy. There is no cheating on the com-
pleteness of the detail needed – the variation across various pro-
gramming languages and infrastructures is with respect to
the amount of detail needed, not its completeness.
Of course, this is not to say that all designers are – or should
be – equally good at all kinds of design. Such a statement
would not be well supported by the facts. However, it does
indicate that design is a very broad church that cuts across
many different concepts and practices; successful design
involves playing on and bridging these differences to best
effect.
Shaker loops
Successful design is inevitably incremental, although some
steps might be larger than others. It inevitably involves accept-
ance of change, and therefore renewal and removal, rather
than the obstruction of change. Of course, just to be clear,
acceptance of change is not the same as an absence of stabil-
ity. And, to take us back to where we started, successful design
does not rely on software defects as its primary source of feed-
back.
Design is both a feedforward and a feedback process, which
makes it a dialogue: between people; between people and the
design; between people and the results of the design. This is
where learning fits in. So there is a need to shorten long feed-
back loops, but there is also a need to increase signal to noise
ratio by reducing interference – continuous unregulated feed-
back is noisy rather than helpful.
Active testing
To take an example people often associate with the issue of bugs,
consider the role of testing in software development. Is testing,
as is often articulated, concerned only with the discovery of
defects in software as built? Is testing, as is sometimes assumed,
the sole preserve of a testing department and individuals with
“tester” in their job title? Is testing, as expressed in many tra-
ditional development processes, something that necessarily
falls in the closing phases of the lifecycle after all the “devel-
opment” has been done?
If testing is divorced from other activities in software devel-
opment and placed towards the end of the development life-
cycle, carried out only by individuals who were not involved in
the design of the system, its main contribution to the software
is pretty much limited to one thing: defect reports. This is cer-
tainly better than nothing (and also better than many compa-
nies manage) but it represents a wasted opportunity for learning
and a poor distribution of responsibilities, schedule and money.
In such lifecycles, testing is consigned to play a passive rather
than active role, a role that cannot influence the framing of
requirements, the design decisions, the coding guidelines or the
team and its individuals until after the fact. If there is any
genuine learning, it will typically be localised and lost or, at best,
deferred to the next project.
As I said, a wasted opportunity. It is generally considered
wiser to close the stable door before the horses bolt. Testing
offers a form of empirical feedback that can be used to drive
design, clarifying requirements and providing a health check
for code. Running testing along the main axis of software
development and across more than one development role
shakes up the pipeline model of traditional development
processes. It closes many of the open feedback loops and
shortens many of the others, while at the same time ensuring
that the signal is stronger than the noise. Instead of treating
testing as a critical passenger, shoved into the backseat, it
becomes an informative driver. Testing ceases merely to be a
synonym for bug hunting and becomes a proactive form of
learning. s
References
1. Kevlin Henney, “Code versus Software”, artima.com,
August 2004, www.artima.com/weblogs/viewpost.jsp?
thread=67178
2. Kevlin Henney, “Inside Requirements”, Application
Development Advisor, May 2003.
3. Michael Jackson, Problem Frames, Addison-Wesley,
2001.
Kevlin Henney is an independent software development con-
sultant and trainer. He can be reached at www.curbralan.com
PROGRAMMERS’WORKSHOP
MARCH-APRIL 2005 49

More Related Content

PDF
Driven to Tests
PDF
Opposites Attract
PDF
Conventional and Reasonable
PDF
Form Follows Function
PDF
PDF
Inside Requirements
PDF
Prefer Code to Comments
PDF
Refactoring for Software Design Smells
Driven to Tests
Opposites Attract
Conventional and Reasonable
Form Follows Function
Inside Requirements
Prefer Code to Comments
Refactoring for Software Design Smells

What's hot (20)

PDF
Exceptional Naming
PDF
What's in a Name?
PDF
Responsibility Driven Design
PPT
Final grasp ASE
PPTX
How I Learned To Apply Design Patterns
PDF
Systematic error management - we ported rudder to zio
PDF
Presentation
PDF
Refactoring for Design Smells - ICSE 2014 Tutorial
PDF
Put to the Test
PDF
Design patterns through refactoring
PPT
How To Navigate And Extend The Flex Infrastructure
PPTX
Ian Cooper webinar for DDD Iran: Kent beck style tdd seven years after
PPT
Thoughtful Software Design
PDF
Clean code-v2.2
PDF
Tdd and-design-draft
PDF
Another Tale of Two Patterns
PDF
Comparing the Effectiveness of Reasoning Formalisms for Partial Models
PPTX
Lecture 18
Exceptional Naming
What's in a Name?
Responsibility Driven Design
Final grasp ASE
How I Learned To Apply Design Patterns
Systematic error management - we ported rudder to zio
Presentation
Refactoring for Design Smells - ICSE 2014 Tutorial
Put to the Test
Design patterns through refactoring
How To Navigate And Extend The Flex Infrastructure
Ian Cooper webinar for DDD Iran: Kent beck style tdd seven years after
Thoughtful Software Design
Clean code-v2.2
Tdd and-design-draft
Another Tale of Two Patterns
Comparing the Effectiveness of Reasoning Formalisms for Partial Models
Lecture 18
Ad

Viewers also liked (12)

PDF
Objects of Value
PDF
Collections for States
PDF
The Perfect Couple
PDF
Worse Is Better, for Better or for Worse
PDF
One Careful Owner
PDF
Stringing Things Along
PDF
Promoting Polymorphism
PDF
Substitutability
PDF
Bound and Checked
PDF
Flag Waiving
PDF
The Next Best String
PDF
The Programmer
Objects of Value
Collections for States
The Perfect Couple
Worse Is Better, for Better or for Worse
One Careful Owner
Stringing Things Along
Promoting Polymorphism
Substitutability
Bound and Checked
Flag Waiving
The Next Best String
The Programmer
Ad

Similar to Learning Curve (20)

PPT
Agile software development
PDF
A Philosophy Of Software Design John Ousterhout
PPT
Agile Software Development.ppt
PDF
A Philosophy Of Software Design Ousterhout John
PPTX
How to think smarter about software development
PDF
Real software engineering
PPTX
No silver bullet
PPTX
Advanced Software Engineering 800 Slides.pptx
PDF
How To Win At Software - Advice for New Engineers - by Gabe Johnson
PPTX
Workshop on software product development the backdrop
PPT
The Software Development Process
PPTX
No silver bullet summary (paper)
PPTX
S.E Lec #1.pptx
PPTX
No Silver Bullet - Essence and Accidents of Software Engineering
PPTX
1 introduction (1)
PPTX
1 introduction
PDF
The Nature of Software and Software Engineering ppt.pdf
PDF
Back To Basics Hyper Free Principles For Software Developers
PPTX
Software engineering
Agile software development
A Philosophy Of Software Design John Ousterhout
Agile Software Development.ppt
A Philosophy Of Software Design Ousterhout John
How to think smarter about software development
Real software engineering
No silver bullet
Advanced Software Engineering 800 Slides.pptx
How To Win At Software - Advice for New Engineers - by Gabe Johnson
Workshop on software product development the backdrop
The Software Development Process
No silver bullet summary (paper)
S.E Lec #1.pptx
No Silver Bullet - Essence and Accidents of Software Engineering
1 introduction (1)
1 introduction
The Nature of Software and Software Engineering ppt.pdf
Back To Basics Hyper Free Principles For Software Developers
Software engineering

More from Kevlin Henney (20)

PDF
Program with GUTs
PDF
The Case for Technical Excellence
PDF
Empirical Development
PDF
Lambda? You Keep Using that Letter
PDF
Lambda? You Keep Using that Letter
PDF
Solid Deconstruction
PDF
Get Kata
PDF
Procedural Programming: It’s Back? It Never Went Away
PDF
Structure and Interpretation of Test Cases
PDF
Agility ≠ Speed
PDF
Refactoring to Immutability
PDF
Old Is the New New
PDF
Turning Development Outside-In
PDF
Giving Code a Good Name
PDF
Clean Coders Hate What Happens To Your Code When You Use These Enterprise Pro...
PDF
Thinking Outside the Synchronisation Quadrant
PDF
Code as Risk
PDF
Software Is Details
PDF
Game of Sprints
PDF
Good Code
Program with GUTs
The Case for Technical Excellence
Empirical Development
Lambda? You Keep Using that Letter
Lambda? You Keep Using that Letter
Solid Deconstruction
Get Kata
Procedural Programming: It’s Back? It Never Went Away
Structure and Interpretation of Test Cases
Agility ≠ Speed
Refactoring to Immutability
Old Is the New New
Turning Development Outside-In
Giving Code a Good Name
Clean Coders Hate What Happens To Your Code When You Use These Enterprise Pro...
Thinking Outside the Synchronisation Quadrant
Code as Risk
Software Is Details
Game of Sprints
Good Code

Recently uploaded (20)

DOC
UTEP毕业证学历认证,宾夕法尼亚克拉里恩大学毕业证未毕业
PDF
Practical Indispensable Project Management Tips for Delivering Successful Exp...
PDF
AI/ML Infra Meetup | Beyond S3's Basics: Architecting for AI-Native Data Access
PDF
EaseUS PDF Editor Pro 6.2.0.2 Crack with License Key 2025
PDF
Visual explanation of Dijkstra's Algorithm using Python
PPTX
Full-Stack Developer Courses That Actually Land You Jobs
PDF
Topaz Photo AI Crack New Download (Latest 2025)
PPTX
Introduction to Windows Operating System
PPTX
Weekly report ppt - harsh dattuprasad patel.pptx
DOCX
Modern SharePoint Intranet Templates That Boost Employee Engagement in 2025.docx
PDF
Guide to Food Delivery App Development.pdf
PDF
How Tridens DevSecOps Ensures Compliance, Security, and Agility
PDF
Ableton Live Suite for MacOS Crack Full Download (Latest 2025)
PDF
The Dynamic Duo Transforming Financial Accounting Systems Through Modern Expe...
PPTX
Matchmaking for JVMs: How to Pick the Perfect GC Partner
PDF
CCleaner 6.39.11548 Crack 2025 License Key
PDF
DuckDuckGo Private Browser Premium APK for Android Crack Latest 2025
PDF
AI-Powered Threat Modeling: The Future of Cybersecurity by Arun Kumar Elengov...
PDF
Microsoft Office 365 Crack Download Free
PDF
Introduction to Ragic - #1 No Code Tool For Digitalizing Your Business Proces...
UTEP毕业证学历认证,宾夕法尼亚克拉里恩大学毕业证未毕业
Practical Indispensable Project Management Tips for Delivering Successful Exp...
AI/ML Infra Meetup | Beyond S3's Basics: Architecting for AI-Native Data Access
EaseUS PDF Editor Pro 6.2.0.2 Crack with License Key 2025
Visual explanation of Dijkstra's Algorithm using Python
Full-Stack Developer Courses That Actually Land You Jobs
Topaz Photo AI Crack New Download (Latest 2025)
Introduction to Windows Operating System
Weekly report ppt - harsh dattuprasad patel.pptx
Modern SharePoint Intranet Templates That Boost Employee Engagement in 2025.docx
Guide to Food Delivery App Development.pdf
How Tridens DevSecOps Ensures Compliance, Security, and Agility
Ableton Live Suite for MacOS Crack Full Download (Latest 2025)
The Dynamic Duo Transforming Financial Accounting Systems Through Modern Expe...
Matchmaking for JVMs: How to Pick the Perfect GC Partner
CCleaner 6.39.11548 Crack 2025 License Key
DuckDuckGo Private Browser Premium APK for Android Crack Latest 2025
AI-Powered Threat Modeling: The Future of Cybersecurity by Arun Kumar Elengov...
Microsoft Office 365 Crack Download Free
Introduction to Ragic - #1 No Code Tool For Digitalizing Your Business Proces...

Learning Curve

  • 1. A BUG IS NO MORE AND NO LESS THAN A SOFTWARE defect. However, the less harsh and less direct name “bug” masks the nature of the beast and helps toeasetheconscienceofprogrammersandtheorgan- isations around them. The term also helps plays down the frustrations of software users, to the point that defects have become accepted as a normal and reasonable state of affairs. The word has left its jar- gon origins and joined mainstream English. OK, so now we know what a bug is, what is it worth? In practice, a bug has negative value: it uses up good will; it costs money and time to discover it and uncover its modus operandi; it takes time and concentration away from whatever else we were doing. However, in principle, a bug also offers us a learn- ing experience. There is the potential for some- thing positive to come from it: we learn about a particular usage or situation we had previously overlooked; we learn more about a requirement that was poorly articulated or tacitly assumed; we learn that a piece of code we assumed to be cor- rect was subtly problematic or obviously wrong – deeply and systemically or because of a simple thinko or typo – and we learn how to fix it. We also learn that there might be an opportunity for us to change our habits and choice of practices to reduce the likelihood of such defects occurring again in future. With the exception of the last learning point, all of these are the direct and immediate lessons we take from bug reports. They are fairly local in their effect and often we look no fur- ther. But the last point is the meta-lesson that could real- ly add the most value. A development model that emphasises debugging after the fact over practices that reduce enbugging in the first place has its priorities back to front and represents a failure of learning. Learning to develop software The idea of learning having a central position in software development is more than a metaphor: it identifies one dominant aspect of the software development process. Pundits are often happy to brand software developers as knowledge workers. One image this inspires is of knowledge as some kind of artefact or workpiece with the software developer as the artisan standing over it, crafting it with all manner of knowledge lathes and con- ceptual hammers. However, knowledge is not phys- ical enough to support such a metaphor. It cannot simply be shipped and shaped as iron or wood. The acquisition and presentation of knowledge is all part of the established topic of learning. Learning involves accumulation, consolidation, exploration, articulation and feedback, all of which can be seen in effective software development processes. The emphasis on an iterative and incre- mental approach is something that distinguishes agile development processes from more bureau- cratic and master-planned processes. A cyclic and cumulative approach reflects a learning process. When “learning” is normally mentioned in the context of software development, it is assumed to refer to development skills. This is the gap filled and fulfilled by books, training courses and so on. But more generally learning and the expression of the knowledge acquired defines the axis along which software development runs: what we learn is embodied and revealed in the code behind the software 1 . For example, there is learning about the domain in which a piece of software runs or is to run, and the specific needs that define the scope and purpose of the software and any changes to it. This respon- sibility is not only restricted to someone with the title “analyst”; it applies to all those who are involved in formulating the software, including the party for whom the software is intended. A common criticism of software customers is that they do not know what they want even though they know they want it; it is easier to reason about this perception from the perspective of learning. Unless there is a process that encourages learning on all sides, how else is the knowledge going to emerge clearly? Mir- acles and master plans? Feedback obviously plays a significant role in all this, and shortening long feedback loops is one of the optimisa- tions that can make any approach more effective. Design education Software development is a design-based activity. Some people assume that design means “drawings and docu- ments about the software, but PROGRAMMERS’WORKSHOP 48 WWW.APPDEVADVISOR.CO.UK KEVLIN HENNEY Software development can be more of an education than you might first think. Kevlin Henney studies what there is to learn Learning curve
  • 2. not the software”. However, this is not a particularly useful or accurate reflection of what design-based professions do. Design is about the creation and expression of structure, physical or virtual, which fulfils a number of goals and satisfies a number of constraints. It is a creative and intentional act with many modes of expression and levels of detail. Goals and constraints can be decomposed recursively from the highest-level of granularity into finer levels of detail. Require- ments exist at the application level with respect to its users, but requirements also exist locally in the way that one method uses another 2 . However, there is no simple sausage machine that successfully turns a handful of use cases captured in natural lan- guage into an effective running system. Design is involved in everything from framing the requirements to demonstrating the effectiveness of a running system. Design embraces all the kinds of expression of structure from whiteboard sketches in ad hoc UML to lines of code in Java. This means that the view of code as no more than an implementation detail – and therefore one that is not a prop- er concern or activity of design – is one of those unhelpful myths that has dogged software development for too long, and yet fails to stand up to close scrutiny. Code is a formal notation used to express structure and exe- cution in a virtual world – very little code, even that written in something as metal hugging as assembler, can claim to be describing structures and execution in a strictly physical world. Code creates and inhabits a designed domain 3 . A significant number of decisions that affect the final software are made at the keyboard in a code editor. This is not necessarily always a good thing, but it is necessarily inevitable. Any sustainably realistic view of development needs to do more than just acknowledge this inevitability; it needs to take advantage of it. To understand the inevitability, consider detail: all design activities are in some way based on abstraction, but not all are or aim to be complete. A package diagram sketched out on a whiteboard may be accurate, but it does not offer a com- plete view of what has been or is to be developed – if it did, it would be unreadable and useless, defeating the very purpose of using such a sketch. By contrast, the definition of a wire-level protocol needs to be both accurate and precise for it to be of use – a sentence such as “...and the bits ought to be laid out in some order or other” is unlikely to be of much use. Code, in its many forms, is still abstract, but it demands a high level of both precision and accuracy. There is no cheating on the com- pleteness of the detail needed – the variation across various pro- gramming languages and infrastructures is with respect to the amount of detail needed, not its completeness. Of course, this is not to say that all designers are – or should be – equally good at all kinds of design. Such a statement would not be well supported by the facts. However, it does indicate that design is a very broad church that cuts across many different concepts and practices; successful design involves playing on and bridging these differences to best effect. Shaker loops Successful design is inevitably incremental, although some steps might be larger than others. It inevitably involves accept- ance of change, and therefore renewal and removal, rather than the obstruction of change. Of course, just to be clear, acceptance of change is not the same as an absence of stabil- ity. And, to take us back to where we started, successful design does not rely on software defects as its primary source of feed- back. Design is both a feedforward and a feedback process, which makes it a dialogue: between people; between people and the design; between people and the results of the design. This is where learning fits in. So there is a need to shorten long feed- back loops, but there is also a need to increase signal to noise ratio by reducing interference – continuous unregulated feed- back is noisy rather than helpful. Active testing To take an example people often associate with the issue of bugs, consider the role of testing in software development. Is testing, as is often articulated, concerned only with the discovery of defects in software as built? Is testing, as is sometimes assumed, the sole preserve of a testing department and individuals with “tester” in their job title? Is testing, as expressed in many tra- ditional development processes, something that necessarily falls in the closing phases of the lifecycle after all the “devel- opment” has been done? If testing is divorced from other activities in software devel- opment and placed towards the end of the development life- cycle, carried out only by individuals who were not involved in the design of the system, its main contribution to the software is pretty much limited to one thing: defect reports. This is cer- tainly better than nothing (and also better than many compa- nies manage) but it represents a wasted opportunity for learning and a poor distribution of responsibilities, schedule and money. In such lifecycles, testing is consigned to play a passive rather than active role, a role that cannot influence the framing of requirements, the design decisions, the coding guidelines or the team and its individuals until after the fact. If there is any genuine learning, it will typically be localised and lost or, at best, deferred to the next project. As I said, a wasted opportunity. It is generally considered wiser to close the stable door before the horses bolt. Testing offers a form of empirical feedback that can be used to drive design, clarifying requirements and providing a health check for code. Running testing along the main axis of software development and across more than one development role shakes up the pipeline model of traditional development processes. It closes many of the open feedback loops and shortens many of the others, while at the same time ensuring that the signal is stronger than the noise. Instead of treating testing as a critical passenger, shoved into the backseat, it becomes an informative driver. Testing ceases merely to be a synonym for bug hunting and becomes a proactive form of learning. s References 1. Kevlin Henney, “Code versus Software”, artima.com, August 2004, www.artima.com/weblogs/viewpost.jsp? thread=67178 2. Kevlin Henney, “Inside Requirements”, Application Development Advisor, May 2003. 3. Michael Jackson, Problem Frames, Addison-Wesley, 2001. Kevlin Henney is an independent software development con- sultant and trainer. He can be reached at www.curbralan.com PROGRAMMERS’WORKSHOP MARCH-APRIL 2005 49