vote up 45 vote down star
19

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

vote up 0 vote down

In the reverse vein, I recall that most BIOS setup screens, when you go to exit, regardless of whether you chose "Save and Exit" and "Exit without Saving", will always ask you "Are You Sure?" To me, this feels like the developer treating me like an idiot, assuming any action I make is wrong. If many users are accidentally hitting "Exit", that would indicate the UI is bad, not the the users are dumb.

link|flag
vote up 4 vote down

I was astonished by the language in this infamous debian bug.

It amazed me more as I read the arguments in the post for why this should/should not be dealt with as a critical patch or just leave it.

link|flag
vote up 5 vote down

The top answer about Macs not have Floppy eject buttons reminded me of one design that was clearly the most astonishing for me. It was actually a hardware design, but it was on a computer, so I think it counts.

It was on one model of Macs put out in the mid-1990s, which I can only assume was designed specifically to annoy PC users.

Like all Macs, it didn't have a floppy eject button. It did however, have a button on the case. It was thin and protruding and right next to the floppy, so it look exactly like a floppy eject button.

It was, however, the power button.

You go to eject your disk, and suddenly the power shuts off!

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

I just answered a question here on SO, and when I clicked Post Your Answer I was directed to a page that told me the question didn't exist. Seems the OP had deleted and re-entered it while I was answering.

But, then, I often talk to myself....

link|flag
vote up 4 vote down

My husband uses some inhouse stuff. He has to enter a bunch of data on a form, including some long mixed alphanumeric strings, similar to GUIDS, something really easy to enter incorrectly. I don't think there is a copy/paste option. He presses SUBMIT.

If there is an error, then a bright red screen comes up and says there is an error in input. It doesn't say what the error is, what field, or show the incorrect value. Then, it goes back to the original form, with ALL fields emptied, so that the hapless user can re-enter all of those fields again.

Correcting the problem would be easy: give a nicer error message on the offending fields (after submit, if fields are related to each other), and don't clear out anything.

How to retrain the programmers? I'd suggest using a rack, because torture does seem appropriate.

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

How about the Windows "Use the web service to find the right program to open this file."

It's bad enough that it's in there, but what makes it so much worse, is that it's the DEFAULT!

link|flag
1  
And how it doesnt work. Similar to the installing a new driver dialogue that asks to hit up the Windows Update server, which invariably fails to have the driver for me. – Karl Feb 10 at 1:29
show 1 more comment
vote up 64 vote down

Hijacked focus — an astonishing misuse of multithreading.

iTunes is an example. I close iTunes and start typing in another program. After a delay, iTunes puts up a little window that says "Saving iTunes library." Besides being totally pointless, it steals the focus from what I'm doing. So in frustration I press Alt+Tab to get back to what I was doing. But if the offending window has disappeared in the meantime, then I actually Alt+Tab away from the window I want, meaning that at this point one or two more Alt+Tabs are required to get back, but you can't tell, because iTunes is now completely invisible... and so on, ad nauseam.

It's even worse when the window that pops up presents a dialog with a choice, and keyboard shortcuts, because I can inadvertently select something I didn't want, or indeed know that I'd chosen.

link|flag
2  
I absolutely hate this. I have the same thing happen with ZoneAlarm regularily and more often than not I deny some program web access which means something (usually an install) stops working. – Makis Jun 2 at 14:03
show 1 more comment
vote up 6 vote down

For a C++ developer, I was most astonished when I ran my program on another machine for the first time. It immediately said:

"This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem."

The application configuration is incorrect? That's funny, I don't remember writing code to show that message box. How do I even begin to diagnose the cause?

It turns out this message means "The Visual C++ runtime DLL is not installed. Please install version 9 of VCREDIST.EXE from microsoft.com or, if you are the developer, link statically to the CRT library."

link|flag
1  
This is a common problem where developers have confused the task of making error messages "user friendly" with the task of removing any hint of technical detail from them. The result is often error messages so generic they are meaningless to developers and users both. – Wedge Feb 10 at 1:29
show 4 more comments
vote up 4 vote down

This will end your Windows Session.

umm... duh, kind of why I clicked "Exit Windows", guys... thanks.

link|flag
1  
What's the problem? Confirmation dialog, that's all. – Loren Pechtel Jun 29 at 19:44
show 1 more comment
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
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 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 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 30 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
1  
+1. Just because. – Pondidum Jun 2 at 14:44
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 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 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 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 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 -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 62 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
6  
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
8  
I like the use of opnenid - it is a step in the right direction. – Hrvoje Prgeša Dec 16 '08 at 16:42
9  
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
5  
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 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 42 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 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 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 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 60 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
6  
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
2  
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 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 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 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

Your Answer

Get an OpenID
or

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