Questions tagged [user-experience]

The user experience (UX) is the experiential, affective, meaningful and valuable aspects of human-computer interaction and product ownership, but also a person’s perceptions of the practical aspects such as utility, ease of use and efficiency of the system. Essentially, it's about how a person feels about using a product.

User experience is dynamic as it is constantly modified over time due to changing usage circumstances and changes to individual systems as well as the wider usage context in which they can be found. The end-user experience is about how the user interacts and experience the product.

Note: There's now an entire Stack Exchange site devoted to the subject of User Experience, so please consider whether your question would be better asked there.

Questions on Stack Overflow should be about the implementation of something that arises as a result of UX considerations. It could cover things like:

  • AJAX updates of web pages to avoid page refreshes.
  • Implementation of validation of and verification schemes

They should not be about whether design "A" is better than design "B" etc.

1697 questions
9
votes
5 answers

Ways to enhance a trial user's first time experience

I am looking for some ideas on enhancing a trial-user's user experience when he uses a product for the first time. The product is aimed at a particular domain and has various features/workflows. Experienced users of the product naturally find…
Thimmayya
  • 2,064
  • 2
  • 18
  • 20
9
votes
3 answers

How can I recognize slow devices in my website?

When adapting a web page for mobile devices I always rely on css media queries. Recently I no longer worry only about the screen size, but also the javascript engine of many mobile devices. Some common javascript effects that rely on window scrolls…
SystematicFrank
  • 16,555
  • 7
  • 56
  • 102
9
votes
5 answers

When to add "..." to the end of buttons?

I've noticed that many Microsoft applications will name some buttons with "..." at the end. These buttons always seem to open up a new dialog. There are some buttons, however, that don't have "...", but do open up new dialog. For example, in…
Sean
  • 1,373
  • 2
  • 14
  • 26
9
votes
7 answers

Crash Reporter for Cocoa app

I'm working on a Cocoa app targeting Leopard and above, and I'm thinking about adding a crash reporter to it (I'd like to think my app won't crash, but let's get real here). I have some mostly conceptual questions before I really get started. 1) How…
jbrennan
  • 11,943
  • 14
  • 73
  • 115
8
votes
4 answers

Basic NLP in CoffeeScript or JavaScript -- Punkt tokenizaton, simple trained Bayes models -- where to start?

My current web-app project calls for a little NLP: Tokenizing text into sentences, via Punkt and similar; Breaking down the longer sentences by subordinate clause (often it’s on commas except when it’s not) A Bayesian model fit for chunking…
fish2000
  • 4,289
  • 2
  • 37
  • 76
8
votes
3 answers

Force Modal Form to be Shown in Taskbar

According to MS when you show a modal form in VB6 it does not show in the taskbar 'by design' But is there any way to make a VB6 Modal form to be shown in the taskbar (the ShowInTaskbar property has no effect when it is modal) In one of our apps we…
Matt Wilko
  • 26,994
  • 10
  • 93
  • 143
8
votes
3 answers

Flutter Form get validity of all form fields without error reporting

Basically, I am looking for FormFieldState.isValid but for FormState. So the challenge is that I want to enable/disable my form submit button on the fly depending on whether all the form fields are valid, without calling FormState.validate() until…
nwagu
  • 532
  • 3
  • 17
8
votes
3 answers

Does unsubscribe link need to be idempotent?

So we have an unsubscribe link - this is by it's nature an HTTP GET. The appropriate RFC says this should be idempotent but to my mind the user expectation will be that they are clicking a link to take an action. I've implemented this so that the…
Paul D'Ambra
  • 7,629
  • 3
  • 51
  • 96
8
votes
2 answers

iOS UI development: approach to building document "selector" screen

I'm looking to build a document "selector" screen, similar to Pages and Numbers on the iPad/iPhone: I come from a WPF background and have some iOS experience. That being said, I'm looking for a good approach to building something like the…
themechanix1
  • 205
  • 2
  • 8
8
votes
0 answers

The best way to change favicon in browser

Possible Duplicate: Changing website favicon dynamically How is it possible to create a loading effect on tab (favicon) in gmail way. When I click something which needs use AJAX, gmail shows a nice loading circle in tab or title bar of the…
sennin
  • 8,552
  • 10
  • 32
  • 47
8
votes
7 answers

"Create or update" form behavior when hitting back button

I have the following workflow on a website: Some user John Doe declares a company through form 1 (fields: name, head office location) After John Doe submits (HTTP POST) form 1, he is redirected (HTTP 302) to company form 2 with additional legal…
Weier
  • 1,339
  • 1
  • 10
  • 20
8
votes
2 answers

How to hide unnecessary files from intellij project view?

Given a sample gradle project with project structure as shown: As you can see there are bunch of stuff you actually dont ever need to see in idea but you need them to exist... I know about ignored file/folder types under Editor/File Types but those…
vach
  • 10,571
  • 12
  • 68
  • 106
8
votes
8 answers

How to collect customer feedback?

What's the best way to close the loop and have a desktop app "call home" with customer feedback? Right now our code will login to our SMTP server and send me some email.
Nick
  • 13,238
  • 17
  • 64
  • 100
8
votes
3 answers

How to make groups of divs the same width using only CSS?

I've got a group of buttons (divs) which I would like to be the same length for all buttons within a logical group. I could simply do a min-length for the CSS style of the button, however some button groups are short, while others are very long.…
DOOManiac
  • 6,066
  • 8
  • 44
  • 67
8
votes
2 answers

Proper way to skip page execution after Response.RedirectToRoute

I'm writing an asp.net 4.5 application using the new routing features. I have a page that displays some information about an item. In the Page_Load event I check the route data (item id) and user permissions, and if something isn't right (e.g. the…