Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is help file (or user manual) dead? [closed]

Tags:

Back in the days of Unix, you couldn't even close a software without reading the man page first. Then came Mac and Windows with consistent menu layout and keyboard shortcuts, but you still saw paper user manuals shipped in the shrinkwrap box, which described each and every single operation possible in the app. After the Internet, help files became html documents.

Nowadays with Web 2.0 applications, you hardly see the Help. Even if it's there, they simply describe some specific tasks. In other words, the apps are relying more on the common sense or don't-make-me-think factor of the user base.

Years ago Microsoft came up with a concept called Inductive User Interface, which basically tells programmers to put in instructions on the apps itself, but I am not sure how popular that idea is.

Are help files, user manuals, and context sensitive online help with F1 key dead? Have I failed if user could not find out what to do from the UI? If not, what degree of help should I provide? (both for desktop and web app)

EDIT: How does documentation/help file mesh with agile development methods? For example, should the developers think twice before UI changes that may obsolete a bunch of screenshots?

like image 341
Eugene Yokota Avatar asked Sep 13 '08 18:09

Eugene Yokota


People also ask

Do taxes need to be filed for a deceased person?

Report all income up to the date of death and claim all eligible credits and deductions. If the deceased had not filed individual income tax returns for the years prior to the year of their death, you may have to file. It's your responsibility to pay any balance due and to submit a claim if there's a refund.

How to file a tax return for a deceased spouse?

If you're a surviving spouse filing a joint return and there's no appointed personal representative, you should sign the return and write in the signature area "Filing as surviving spouse." A surviving spouse can file joint returns for the taxable year in which the death occurred and, if the death occurred before ...

Can you email the IRS?

Send the IRS Comments and Feedback by E-mail Give us your email address if you want a response, but don't include any social security numbers or other personal tax account information.


1 Answers

Three notes on help:

  1. F1 / stand-alone context-sensitive help was always doomed. It was hidden by default, and so the people who most needed it were least likely to read it. There was hope at one time that we would be able to train users to always hit F1 when they ran into trouble, but too many applications without useful context-sensitive help... combined with too many bizarre help interfaces... pretty much killed this.
  2. Manuals are as important now as they ever were. Not so many printed manuals anymore, but online manuals are better than ever. The proliferation of wiki-as-a-manual systems has helped here, reducing the up-front cost of creating good online documentation. Of course, plenty of people just don't read...
  3. The beauty of using web pages as an application interface is that you can combine useful context-sensitive help with the UI, removing the barrier for novices and others who otherwise couldn't be bothered to look for relevant information when they get stuck.

Of course, there are still plenty of apps, even online apps, designed with obtuse interfaces and a tiny little help icon in a corner somewhere, presumably hoping that the latter mitigates the former. Pity them.

like image 53
Shog9 Avatar answered Oct 02 '22 12:10

Shog9