Skip to main content

If you don't have an IBM ID and password, register here.

By clicking Submit, you agree to the developerWorks terms of use.

The first time you sign into developerWorks, a profile is created for you. This profile includes the first name, last name, and display name you identified when you registered with developerWorks. Select information in your developerWorks profile is displayed to the public, but you may edit the information at any time. Your first name, last name (unless you choose to hide them), and display name will accompany the content that you post.

All information submitted is secure.

The first time you sign in to developerWorks, a profile is created for you, so you need to choose a display name. Your display name accompanies the content you post on developerworks.

Please choose a display name between 3-31 characters. Your display name must be unique in the developerWorks community and should not be your email address for privacy reasons.

By clicking Submit, you agree to the developerWorks terms of use.

All information submitted is secure.

The cranky user: Take off the training wheels

How are users supposed to learn if they never fall down?

Photo of Peter Seebach
Peter Seebach has been using computers for years and is gradually becoming acclimated. He still doesn't know why mice need to be cleaned so often, though.

Summary:  Like dull knives in the kitchen and training wheels on bicycles, many so-called safety features just lead to trouble. The cranky user suggests an alternative approach.

View more content in this series

Date:  01 Nov 2005
Level:  Introductory

Comments:  

A friend once needed to run a process where, for reasons unknown, the program required him to confirm each task in a series of hundreds. He balanced a pocket knife on the Return key and went to lunch. In his particular case there were no horrific surprises; it was just a huge waste of time and he worked around it. For many users faced with this type of "safety" feature, however, the workaround isn't so simple.

Confirming, clarifying, and checking every operation, as most applications these days do, is intended to protect users from accidents. The result is similar to what many people find after putting training wheels on a child's bicycle: the vehicle is more cumbersome and the child never learns to ride it properly. This month I'll count the ways excessive protections make computers harder to use and more accident prone.

Double your trouble

The first problem with excessive confirmation is that it prevents the computer from doing what it's good at -- working quickly without human intervention. This is especially frustrating when you remember that the original idea of the computer was that it should take whole processes and automate them. Of course, computer programs started out with simple processes like "add three columns of numbers," but even at greater levels of complexity the idea remains the same: it's important to be able to kick something off and be done with it.

The second problem is that it eventually weakens a user's ability to do what they're good at -- making decisions about what the computer should do next. If my computer constantly checks in to say "Hey, when you said to do this, did you really mean to do this?" I quickly learn to respond with an impatient "yes" to every prompt. The unfortunate result is that when there's a real question I'm unlikely to read it; why bother when the last thousand or so were all pointless?


Use your noggins, people!

A Linux system I recently loaded has the rm command aliased to rm -i by default for the root user. When you're removing one file, that's inconvenient. When you're trying to do what UNIX is really good at, like write a brief command-line script to batch-process some files, it's utterly awful. There's a workaround using the -f flag, but like many safety features it actually makes the problem worse. The -f flag overrides not only the totally spurious inquiries but legitimate warnings, such as trying to remove files flagged as write-protected to avoid mishaps.

Ideally, I would like to be able to see queries about protected files without seeing queries about all the other ones, too. The easiest way to do this is, of course, is to remove the alias.


The obliteration of 'yes'

It's perfectly reasonable to ask a user for confirmation the first time a problem comes up. But in any automated task, right next to the Yes option should be a Yes to all option. The argument against this proposal is that users could end up authorizing actions they didn't realize were part of the package, but what's the alternative?

Very few users read dialog boxes past the first couple of lines. If I've requested a five-hundred step process and some lunatic (who shouldn't have been allowed near a compiler in the first place) has inflicted 500 clicks of the Yes button to authorize it, then I'll be reading a book while clicking periodically on the spot where the Yes button last occurred. I'm not going to read 500 identical messages, and that means I'm not going to read 492 identical messages, or even the eight I would have actually cared about.

In many cases, the way to get around the obliteration of 'yes' is to refine the question. If I'm extracting an archive, I would like to be able to overwrite all my older files with newer versions by clicking a single Yes to all button. But I might also want to be asked some other questions, such as whether to overwrite newer files with older versions.


The law of unintended consequences

I've written before in this column about the law of unintended consequences. The law states simply that the consequences of an action, especially a policy, are not always directly related to its intent. For instance, the policy of aliasing rm to rm -i has the consequence that users quickly learn to type rm -f by habit, which has the consequence that any file a user is able to remove will be removed, even if the user wouldn't have wanted to remove that particular file.

Some UNIX users have the habit of marking files read-only to prevent accidental deletion. Normally, rm will query the user before deleting such a file, but not before deleting a file with regular write permissions. Such files are thus protected from accidental deletion. The inconvenient alias leads to an actual decrease in the safety of user data!

In a more subtle example, user interface (UI) researchers have claimed that the Macintosh trash icon should not graphically show its contents. Users respond to a full trash bin by emptying it, they say, which defeats the purpose of allowing recovery of accidentally-deleted files. I can report with some confidence at least several instances of this mishap having occurred between 1990 and 2005 (Seebach 1990-2005, personal and very emphatic communications with various persons; unpublished).


Wait -- can't I undo that?

The safety net that only works part of the time is a particularly common source of interface disappointment, and often data loss. For instance, if you're accustomed to using applications (such as Microsoft Word or Photoshop) that incorporate an Undo feature for key processes, you may develop the habit of trying things out just to see if they work, because you can always undo them later. If you try something that doesn't work on a process that can't be undone, however, the results could be catastrophic.

The common solution is to notify the user every time, which is annoying. A more subtle solution is to notify the user the first time he or she tries a certain operation, and then provide a checkbox for "Don't remind me again." Of course, the real solution is to make every essential operation undoable.

I was absolutely flabbergasted to discover that the $800 publishing program I recently used wouldn't allow me to undo a global search and replace! I know of free text editors a decade old that do that. In fact, I did a global search and replace in this article and sure enough, Undo works. If Keith Bostic can make this stuff up in his spare time, why can't Adobe do it with a team of engineers?


Just talk to me

Like public policy, user interfaces are often designed to overcome particular failings. In the rush to resolve the problem, the solution is often ill-thought-out and heavy-handed. The response of online commerce sites to double-submission bugs (where a user could submit the same order twice, resulting in two orders and two credit-card charges) is a good example. In the rush to assuage users, many sites have adopted elaborate JavaScript hacks to prevent order resubmission. Unfortunately, the hacks are typically far more error-prone than simply warning users not to click the button twice.

The fact is, users are responsible for their actions. In many cases I'd prefer to be warned -- once -- about the danger of proceeding than to be coddled and protected to the point of never learning better. Given both information and choice, I can decide for myself how I want to proceed. For instance, while I have disabled all my browser's security warnings about submitting unencrypted data and entering and leaving secure sites, I still like the warning about unencrypted forms on encrypted pages. That's a very useful warning that I don't plan to turn off.

This week's action item: Try to find instructions that refer to a confirmation message without needing you to click OK. (I've never seen this happen.) If you're just supposed to click OK, what's the message for?


Resources

Learn

Discuss

About the author

Photo of Peter Seebach

Peter Seebach has been using computers for years and is gradually becoming acclimated. He still doesn't know why mice need to be cleaned so often, though.

Report abuse help

Report abuse

Thank you. This entry has been flagged for moderator attention.


Report abuse help

Report abuse

Report abuse submission failed. Please try again later.


developerWorks: Sign in

If you don't have an IBM ID and password, register here.


Forgot your IBM ID?


Forgot your password?
Change your password


By clicking Submit, you agree to the developerWorks terms of use.

 


The first time you sign into developerWorks, a profile is created for you. This profile includes the first name, last name, and display name you identified when you registered with developerWorks. Select information in your developerWorks profile is displayed to the public, but you may edit the information at any time. Your first name, last name (unless you choose to hide them), and display name will accompany the content that you post.

Choose your display name

The first time you sign in to developerWorks, a profile is created for you, so you need to choose a display name. Your display name accompanies the content you post on developerWorks.

Please choose a display name between 3-31 characters. Your display name must be unique in the developerWorks community and should not be your email address for privacy reasons.

(Must be between 3 – 31 characters.)


By clicking Submit, you agree to the developerWorks terms of use.

 


Rate this article

Comments

Help: Update or add to My dW interests

What's this?

This little timesaver lets you update your My developerWorks profile with just one click! The general subject of this content (AIX and UNIX, Information Management, Lotus, Rational, Tivoli, WebSphere, Java, Linux, Open source, SOA and Web services, Web development, or XML) will be added to the interests section of your profile, if it's not there already. You only need to be logged in to My developerWorks.

And what's the point of adding your interests to your profile? That's how you find other users with the same interests as yours, and see what they're reading and contributing to the community. Your interests also help us recommend relevant developerWorks content to you.

View your My developerWorks profile

Return from help

Help: Remove from My dW interests

What's this?

Removing this interest does not alter your profile, but rather removes this piece of content from a list of all content for which you've indicated interest. In a future enhancement to My developerWorks, you'll be able to see a record of that content.

View your My developerWorks profile

Return from help

static.content.url=http://www.ibm.com/developerworks/js/artrating/
SITE_ID=1
Zone=Web development
ArticleID=97654
ArticleTitle=The cranky user: Take off the training wheels
publish-date=11012005
author1-email=crankyuser@seebs.plethora.net
author1-email-cc=htc@us.ibm.com

Tags

Help
Use the search field to find all types of content in My developerWorks with that tag.

Use the slider bar to see more or fewer tags.

For articles in technology zones (such as Java technology, Linux, Open source, XML), Popular tags shows the top tags for all technology zones. For articles in product zones (such as Info Mgmt, Rational, WebSphere), Popular tags shows the top tags for just that product zone.

For articles in technology zones (such as Java technology, Linux, Open source, XML), My tags shows your tags for all technology zones. For articles in product zones (such as Info Mgmt, Rational, WebSphere), My tags shows your tags for just that product zone.

Use the search field to find all types of content in My developerWorks with that tag. Popular tags shows the top tags for this particular content zone (for example, Java technology, Linux, WebSphere). My tags shows your tags for this particular content zone (for example, Java technology, Linux, WebSphere).