vote up 45 vote down star
18

The Principle of Least Astonishment suggests that a system should operate as a user would expect it to, as much as possible. In other words, it should never "astonish" the user with unexpected behavior.

In your experience as the "astonishee," what types of systems are the worst offenders, and if you were the project manager, how would you correct the problem?

Bonus if your answer describes how you'd retrain the developers!

flag
2  
The ProgNazis or WikiNazis have struck again. I'll through an upvote in to help out. – Lance Roberts Oct 25 '08 at 5:26
2  
upvote to balance nazis that don't understand what's the social aspect of this site. – Terminus Oct 25 '08 at 19:23
6  
As fun questions go I'll be damned if I didn't laugh at the title :P – annakata Feb 26 at 22:24
show 7 more comments

68 Answers

1 2 3 next
vote up 27 vote down check

There are some applications out there that can't seem to stick to the OK-Cancel-Apply rules. Once you realize that pressing OK didn't save your changes, it throws your whole system of beliefs into question. I've watched as people press apply and then OK in my apps, and have told them they don't need to do that. They assure me that's not the case.

link|flag
1  
Guilty. But, it wasn't my fault. There was one dialog where the [apply] button could not be made to work without re-architecting the system. I wanted to take the button out, but the decision was made to leave it in for the sake of consistency across dialogs. Ugh! – Ferruccio Oct 25 '08 at 11:39
2  
Who's fault was it that making a single button work as expected required re-architecting the system? – Erik Nov 6 '08 at 19:20
24  
I must say that I prefer buttons that say what they do (e.g. [Save and quit]. [OK] frequently is ambiguous. – Accipitridae May 9 at 8:59
2  
@Ferruccio that's awesome so you left a button for the sake of consistency even though it wasn't working as expected. That's classic :) – dr. evil May 18 at 19:56
show 3 more comments
vote up 3 vote down

From experience working in tech support. The worst offenders are programs that unintentionally "hide" important information from the average user.

One example: Microsoft Outlook with Exchange being in offline mode or not connected.

I don't know how many times I've gotten calls from people wanting to know why the last email they'd received was xx days ago. While anyone who's used Outlook for a period of time knows that there is a status bar in the lower right and that multiple ways to see if you're connected, new users don't. I've run across other applications like this but can't think of them off the top of my head.

link|flag
vote up 3 vote down

Before going out I programmed DVB Viewer to record a show for me, then to save CPU (and tuner card wear) I de-selected "Playback" on the View menu (the program is in TV-viewing mode by default). When I returned home I found the recorded file (for a 1-hour show) was 8 bytes long. So apparently "Playback" is necessary for recording, and if you have a scheduled recording and disable playback, the program won't warn you :-/

EDIT: I may have unfairly criticised DVB Viewer - the real problem seems to be with the drivers for one of my tuner cards - a Compro Videomate. Despite them being signed by M$ WHQL, it doesn't seem to play nicely with third-party (ie. non-Compro) software, and like most OEM-written software, the bundled PVR program isn't very good. It seems to assume that all video material is frame-based (eg. shot on film), not field-based (interlaced video) - it doesn't know how to do "bob" deinterlacing. It also has a poor UI, only works with their tuner hardware, doesn't support hardware MPEG decoding, and sometimes the audio falls out of synch :(

link|flag
show 3 more comments
vote up 22 vote down
  • Small windows with text in them which will not resize (Windows mostly).
  • Dialogs which steal focus.
  • Hidden modal dialogs.
  • Having to recompile the kernel in order to do something I thought was going to be simple (like connect to a network, or listen to audio) (Linux mostly).
link|flag
2  
That isn't really astonishing. If you don't have the driver for some hardware, you've got to get it somehow. If you or your distro decided to slim down the kernel by only compiling the most basic stuff, well, then you're going to have issues when you need more capabilities. – Adam Jaskiewicz Dec 17 '08 at 16:12
show 6 more comments
vote up 13 vote down

The windows LAN icon in the taskbar is by default nice and visible when you're connected. Let's say you need to disable then re-enable the connection (networks problems, whatever), so you double click it, which brings up a dialog. You disable the connection - and the dialog and the icon disappear. Very annoying. Yes I know you can force it to remain there all the time, but it's a pain when you're working on other people's PCs

link|flag
vote up 20 vote down

I can't remember the app, but I'd already spent quite a bit of time entering a lot of information into a form when I accidentally hit the Escape key. The app thought I wanted to cancel my actions and displayed a dialog worded something like: "You are about to cancel this activity. Do you want to continue?"

Would you have pressed the "OK" or "Cancel" button?

Note: the dialog was modal, so copying my work to the clipboard was impossible.

link|flag
1  
To "keep something" means to "keep something you already have". I agree that the message should be worded differently, but there is no ambiguity here. It asks if you want to keep your existing file, or not. – Lasse V. Karlsen Oct 25 '08 at 19:22
show 2 more comments
vote up 39 vote down

alt text

Well... when an unexpected behavior fails to astonish the user because it does not manage to display itself... that's astonishing ;)

link|flag
1  
At least use the correct font when you fake messageboxes... – KristoferA Oct 25 '08 at 6:27
show 4 more comments
vote up 12 vote down

alt text

Often developers will test their application on their computer, in their environment.

But they might forget to make some tests in a "real" environment, which can leads to... some surprises!

So as a project leader, I would train them to properly setup clean testing configurations, for avoiding having that kind of "System Check" displayed in front of a customer!

link|flag
show 1 more comment
vote up 18 vote down

alt text

When your software does have an "unexpected behavior", it is bad enough... But when the developer did not respect a "professional language" policy, it starts to become embarrassing.

As a project leader, I would include in code review the control of all GUI displayed messages, and not just about typos.

Bonus to Olaf (see comments): he has correctly recognized the eclipse CVS dialog Box ;)

link|flag
5  
This is CVS, right? If I remember correctly this is the pserver protocol message when authentication fails. If it succeeds, "I LOVE YOU" (or similar) is sent. This is on par with the "printer on fire" error message – Olaf Oct 25 '08 at 6:40
5  
Just to second Olaf's point: This message does not come from Eclipse, it just takes the existing CVS message and passes it through. – Michael Stum May 27 at 14:21
show 2 more comments
vote up 0 vote down

Creaky old but still popular language called IDL made by ITT-VIS (formerly RSI). Back in 1979 or thereabouts, it was normal for an "integer" to be 16 bit. Still is today, if you use IDL. All integer variable by default are 16 bit. It is easy to forget when writing a "for" loop or stash the size of an array into a variable - and get bad, weird bugs. A few taxpayer dollars wasted (indirectly) as i puzzled over some of these bugs. Must remember to write "0L" not "0" in a lot of places. After several years, i'm still at times astonished by "bugs" until i remember this "feature".

link|flag
show 1 more comment
vote up 11 vote down

Poor performance is a huge source of astonishment for me. Applications that become non-responsive on seemingly trivial operations and even slow operating system-level tasks drive me batty.

link|flag
show 2 more comments
vote up 4 vote down

In windows it is quite hard to write an application that jumps to the foreground and takes focus. Instead the applications icon will flash on the taskbar, something that is both nice and useful. But. Some applications still manage to pop up and take focus, usually when I am very focused on a task. I have noe idea how many colleagues have received parts of my code as response in Msn messenger for example. A horribly annoying feature!

link|flag
vote up 59 vote down

Having to press Start to stop the computer. Then having to choose Shut Down to restart or put it to sleep.

It's so common place we don't realize how astonishing it is.

link|flag
5  
that one is really getting old. See it as starting the process of shutting down. – Hugo Nov 6 '08 at 19:16
4  
Any control can be described as "starting" a process making the "Start" label useless for answering "what button do I push to turn the computer off"?. Any UI defense of the form "the user should" [see it as starting...] is a red flag. You can't control how the user thinks (but you can train them) – Schwern Nov 6 '08 at 22:11
1  
In every store in the world, just before closing, some assistant manager tells a clerk, "I'm gonna start closing up" – James Curran Dec 16 '08 at 15:36
1  
The tooltip in Vista still says "Start"... ;-) – Richard E Dec 16 '08 at 16:48
show 3 more comments
vote up 83 vote down

The original Macintosh computer did not have a button to eject the diskette. Instead, you were supposed to ... drag the diskette's icon to the trash.

link|flag
1  
Ohhhhh ... drag the icon to the trash. Never mind. :-) – Adam Liss Oct 28 '08 at 4:27
4  
I always thought this was hilarious. Thankfully in OSX the trash changes to the 'eject disk' icon as soon as you start dragging a disk (and more importantly, all the disks have eject icons next to them in the finder), so it's less ridiculous – Orion Edwards Nov 6 '08 at 20:10
5  
No less ridiculous that your DESKTOP would have a stinking TRASH CAN on it. – Genericrich Feb 10 at 1:12
show 8 more comments
vote up 15 vote down

Mysql. Repeatedly.

For example by default string comparison is case-insensitive. Constraints are not enforced by default, even with InnoDB. "Grant all" does not grant all rights and so on...

Yes, Im new to mysql with years of experience of other databases, but mysql forces me to learn "new things" almost every day.

link|flag
vote up 8 vote down

Everytime I open Lotus Notes 6.5 I'm astonished. There's a UI design violation round every corner too numerous to list here.

link|flag
show 4 more comments
vote up 41 vote down

Hyperlinks which you can't click unless JavaScript is enabled!

I'm sick of "Prev/Next" links which do nothing if you click on them. I'm sick of "page X of Y" links which mock me for having JavaScript disabled. I'm tired of Web forms with form buttons which don't do anything without JavaScript.

Many times they do this for an "enhanced" experience I don't want embedding tracking information which is unreliable anyway. Yes, it will likely cost the companies more money to develop sites which work fine without JavaScript and I can understand that, but breaking hyperlinks? That's f'ing ridiculous.

link|flag
6  
Javascript is a tool. Telling designers not to use javascript because you don't trust what they do with it is a bit like telling a handyman not to use a hammer because you don't trust what he'll do with it. – Joeri Sebrechts Oct 25 '08 at 14:44
2  
Although I do agree every link should work like real link. Too many links don't let me right-click and select "open in new window". – Joeri Sebrechts Oct 25 '08 at 14:45
1  
@Joeri: I'm not telling designers not to use JavaScript. It's an incredibly useful tool. I'm telling them that the "principle of least astonishment" means that hyperlinks should work regardless of whether or not I have JavaScript enabled. – Ovid Oct 25 '08 at 16:36
10  
Progressive enhancement should be the rule for any web developer. A web app should work on the lowliest of browsers but provide a better experience the more fully featured a browser is. This means things that can only be accomplished with js are left out, but generally the app is better for it. – ahsteele Feb 26 at 22:47
show 7 more comments
vote up 2 vote down

Paint Shop Pro (ver. 8 and 9 I believe) had this serious flaw that would secretly bite users. When doing long operations you can press the ESC key and cancel that operation. If you do that any time during your current session and then save your image, your save would be silently canceled by that escape key press being remembered.

To the user it wouldn't show up until they next went to work on the image and it would be missing the work that they had been doing. You would chock it up to forgetting to save and then a few weeks later it would happen again.

The problem was around for quite a while before it was fixed.

The problem existed because of lack of testing. At the end of the day there needs to be a test plan with real people doing real tasks. I believe that no matter how small the task is to test there are always key tasks that should be tested every time. On a product like PSP at a minimum you should be able to save an image and reopen it without losing data and that obviously wasn't tested at the same time as the ESC key.

link|flag
show 1 more comment
vote up 63 vote down

I found this cool community-driven website once. I went to sign up, but it wouldn't let me, instead demanding that I go off and get something called an OpenID.

I left, completely baffled.

link|flag
5  
well actually i heard about openid a long time ago, and saw all those openid enabled sites. but I always said "who cares". But when i really needed an openid for this site, I was "astonished" i had one already – Midhat Oct 25 '08 at 16:47
7  
I like the use of opnenid - it is a step in the right direction. – Hrvoje Prgeša Dec 16 '08 at 16:42
8  
I disagree. OpenID is great. – Ctrl Alt D-1337 Feb 10 at 1:20
5  
No. StackOverflow is good enough in other ways to cancel out their bad decision making process in regards to OpenID. – Jason Kester Feb 27 at 18:11
4  
I'm astonished that in 2009 so many sites still want me to create a new account, enter all my details, create and manage a unique password and trust that they've implemented the site securely to keep all that stuff safe. Single sign on isn't exactly a new concept... – Luke Quinane May 15 at 10:33
show 9 more comments
vote up -3 vote down

I was working on getting a gentoo installed on my machine. Unfortunately, I just couldn't get sudo/su working quite right, no matter how much I man paged or googled(details are a little fuzzy, so I might be slightly misremembering).. Turns out that there was a requirement for a wheel group(something wholly undocumented in the man pages), for an account to sudo/su. At this point I lost any kind of real support of Linux, wiped the distro, and have never really preferred Linux to this day.

link|flag
show 3 more comments
vote up 3 vote down

I collect "funny error messages" I think they probably apply here. I've collected them from various sources over the years, so if you know what piece of software these come from, please tell me in a comment.

I think one of my favorites is this one though http://picasaweb.google.com/joebasirico/funnyerrormessages#5114174375491317826

http://picasaweb.google.com/joebasirico/funnyerrormessages#

link|flag
show 2 more comments
vote up 52 vote down

Outlook takes Ctr-F to mean forward rather than find as all other Microsoft applications do. (F4 is find in Outlook).

link|flag
4  
Long answer: This is for backward compatibility with older versions of mail applications used inside MS through the years: Xenix mail, MS Mail, and the Exchange client used Ctrl-F . Short answer: BillG was astonished when Ctrl-F didn't forward mail. – Ants Feb 10 at 1:00
4  
Do you have to write it M$? – Lucas Jones May 18 at 20:02
1  
After all find is not Alt+F4. – bayer Jun 2 at 15:28
4  
Agreed, "M$" is kind of lame. If you must express your dislike for Microsoft every time you talk about them, write "Micros~1". After all, that's what their own filesystem thought the company's name should be :D – keysersoze Jun 29 at 19:49
show 3 more comments
vote up 1 vote down

Some users are astonished about the inner workings of an application regardless of how un-astonishing it is. They might be geniuses in their fields, but when it comes to computers, it's all black magic.

link|flag
vote up 7 vote down

I was surprised (and annoyed) when an electronic teller wanted me to enter the dollar amount of my transaction before asking which account I wanted to use.

Could've been avoided by asking the developers' parents (or anyone not involved with the project) to use the machine before it went live. I explained the problem to the bank manager, who agreed.

I was further astonished to find that, the very next time I visited that machine, it asked for the account before the dollar amount. I'm guessing the project manager has an account with that bank. :-)

link|flag
vote up 6 vote down

How's this for an error message:

It is now safe to shut down your computer

link|flag
6  
I love the fact that this dialog had a big windows logo above it as if it was a tagline for the OS. "Windows: It is now safe to shut-down your computer." – JohnFx Feb 26 at 22:52
1  
Gee, I always thought it said "It is now safe to turn off your computer." – Carl Camera Mar 26 at 1:01
show 3 more comments
vote up 29 vote down

The entire OS X UI. I see an Excel window, but when I click Opt-S I get an error because Finder was the (INVISIBLE!!!!) active application. Or I click on Firefox in the Dock, and then I can't find my window because I actually had two Ffx windows open and the Dock only shows me the top one. Or I need to move the left edge of a window and I first have to make it smaller, move it, and then make it bigger again. Or when "Maximize" only makes the window as big as the window thinks it should be. Or when I sort by date in Finder and the file I just edited is half-way down the list surrounded by files with week-old dates. Or when I open up finder for the umpteenth time and I have seven skinny columns that I have to resize AGAIN so I can see the whole filename. Or when I look at my clear keyboard full of the crumbs of the person who had the Mac before me and think "Are Apple engineers allowed to eat near their computers? Yuck!" Or when I hit the "End" key and it just shows me the end of the file, without even moving the insertion point. Or when I double-click on the title bar and the damn window disappears instead of getting bigger. (That one isn't really Apple's fault though, it's just my habits.)

Or when I complain about the Mac on the Internet and all the fanboys scurry out of their animation studios to tell me that I clearly don't understand why all of these annoyances are because the Mac is just better.

(I'm not even sure this post is still on-topic, but boy did it feel GOOD!)

link|flag
show 1 more comment
vote up 13 vote down

The dialog box you get when saving an Excel spreadsheet as a CSV file. It took me nearly 2 years to get used to hitting "No".

link|flag
vote up 17 vote down

I only recently learned (on OSNews) that in MS Windows, one can select multiple windows (with CTRL) in the taskbar and have them tiled horizontally or vertically on the screen. I was looking for that feature for a long time (and it was there all the time from Win 95 or so) and I am missing it a lot in Linux (KDE nor Gnome can do this).

So, for me, unadvertised existing features of programs are the most astonishing (on the other hand, bugs aren't).

link|flag
show 5 more comments
vote up 36 vote down

In Windows XP, when you connect to a wireless network that's password protected, you have to enter the password into a password field, so you can't see what you're actually typing (very fun when entering a 26 digit hex password for a WEP network.) Then, to make things even worse, you have to enter the same password again! Why do I have to do this twice??? I'm entering a password, not changing it!!!

link|flag
4  
I've pondered the same question. I think a programmer was blindly following a design pattern for consistency. Oh, and it's a little-known fact that "XP" stands for "eXtra Password" -- astonishing, no? – Adam Liss Oct 26 '08 at 6:47
3  
+1 for "eXtra Password". We need more general silliness. – Electrons_Ahoy Nov 6 '08 at 19:23
6  
Thinking about this some more: you need to enter it twice BECAUSE IT'S OBSCURED. Since you can't see what you're typing, it's, um, easier to type it twice and get a "mismatch" error, rather than type it once and get an "invalid" error. Yah. Of course. – Adam Liss Dec 29 '08 at 4:52
7  
What I do is type it into Notepad first, then paste it twice. But it's stupid that you have to do this. Why can't there be an "unobscure this text!" button? – Kyralessa Feb 10 at 2:10
show 5 more comments
vote up 50 vote down

Copying a large set of files in Windows and getting an error part way through. A dialog pops up telling me something failed, then the whole copy operation dies. So which files got copied and which didn't? How am I supposed to recover from this?

Worse is when you do a move.

link|flag
6  
Teracopy is your friend. Makes file operations in Windows actually not totally suck. – garrow Feb 6 at 12:28
show 2 more comments
1 2 3 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.