Tagged Questions

Host/controller interface in Bluetooth

learn more… | top users | synonyms

25
votes
10answers
849 views

What should a developer know about interface design, usability and user psychology to create great software? [closed]

Possible Duplicate: Human factors design (meeting psychological needs in UI design) What should a developer know about user interface design, usability and less technical aspects of human ...
15
votes
12answers
736 views

What are some good examples showing that “I am not the user”?

I'm a software developer who has a background in usability engineering. When I studied usability engineering in grad school, one of the professors had a mantra: "You are not the user". The idea was ...
8
votes
4answers
2k views

How can I handle multiple mouse inputs in Java?

A friend of mine asked me to implement a blue and a red pointer to represent the inputs of two separate mice to expedite a mixing desk scenario for real time audio mixing. I'd love to, but as much as ...
7
votes
6answers
886 views

Why does the Squeak interface look and act so antiquated?

Don't get me wrong - I love Smalltalk, but... To me, the Squeak interface is one of the biggest turnoffs. I love Smalltalk - not the user interface. One only has to contrast modern interfaces like ...
7
votes
8answers
545 views

Neural Networks or Human-computer interaction

I will be entering my third year of university in my next academic year, once I've finished my placement year as a web developer, and I would like to hear some opinions on the two modules in the ...
6
votes
9answers
896 views

Quick and Dirty Usability testing tips?

What are your best usability testing tips? I need quick & cheap.
5
votes
3answers
1k views

Looking for ideas on a class project in Computer Vision

I have come upon another class where I need to find an idea for a project, and since my last posting on SO for a project idea was so successful, I've decided to ask here again. I'm taking a class ...
5
votes
6answers
517 views

What is the most intuitive, usable way of entering a time of day or a duration?

I'm building a line-of-business application in Silverlight and need to get the user to edit two .NET TimeSpan values. One is a time of day (relative to midnight) and the other is a duration. Currently ...
4
votes
5answers
142 views

User interface issues regarding embedded PDFs

Q.1. What are the advantages and disadvantages, from a usability standpoint, of embedding PDFs in a web page? Q.2. In general, for the average computer user, which scenario provides the most ...
4
votes
6answers
218 views

Recommend book on Human Computer Interaction

I'm looking for a good book to read on HCI over the xmas holidays, is there a particular book you would recommend on this topic? Thanks,
4
votes
7answers
572 views

What alternative user input techniques should be adopted in programming?

Programming is particularly different to, for example word processing due to the wealth of special symbols etc that need to be entered. Of the current crop of new user interface techniques, which are ...
4
votes
10answers
818 views

HCI: UI beyond the WIMP Paradigm

With the popularity of the Apple iPhone, the potential of the Microsoft Surface, and the sheer fluidity and innovation of the interfaces pioneered by Jeff Han of Perceptive Pixel ... What are good ...
3
votes
2answers
61 views

Where do you get your sound samples from?

I finished an application and the users want to "sex up the interaction feeling" by adding some sound samples that should be played when some specified acitons occur. For the programming point of view ...
3
votes
6answers
454 views

Can humor cut down on perceived response time?

After reading a StackoOverflow question http://stackoverflow.com/questions/182112/funny-loading-statements-to-keep-users-amused, I was really intrigued to ponder upon this question "Can humor cut ...
3
votes
7answers
389 views

What is the best way of formally expressing usability requirements?

I am writing a system requirements document and need to include non-functional requirements relating to the usability of the system, but am not sure of the best way to express this. "The system shall ...
3
votes
1answer
175 views

Usability Solutions to Displaying Denormalized Data

I've got a typical impedance mismatch where the data is stored in a normalized fashion: Client | Year | Value -------------------------- Foo 2007 9000000 Foo 2008 10000000 Bar ...
2
votes
1answer
452 views

chrome-like status bar in qt

I'm not big on creating GUI's, and generally my philosophy is: I don't create them, or I make them as simple as possible (and convince myself that it's better for usability :) For my current project, ...
2
votes
9answers
196 views

Selecting an item from a very large list

Suppose I have a list of a couple of thousand organizations and a user needs to be able to select one of them. The list is too large to populate in a dropdown at page load, and the user often knows ...
2
votes
1answer
35 views

Resources on making editors / program interfaces more gaming-like

In this gigantic simulation program I'm writing, I'm designing the UI and writing a mini-editor in it. I would like to design the UI so that it's very computer-game like (almost a command & ...
2
votes
3answers
233 views

Smallest recommended button size

Is there a recommended smallest button size under normal conditions? By "recommended" I mean prescribed by some document like: Apple HCI Guidelines Windows UX Guidelines or some ISO standard.. ...
2
votes
4answers
162 views

Is there a generally acceptable definition of (soft) realtime delays?

I'm trying to find a benchmark for how long users are willing to wait for a response from a remote service. In my case the response is for very useful but not business critical validation of data ...
2
votes
3answers
95 views

Help me get more information on Web Usability Studies

I am very interested in human computer interactions and mainly web interaction. Can you please tell me some studies, web sites, papers, links or research groups that are investigating Web pages design ...
2
votes
1answer
139 views

Is there a good replacement for Borenstein's “Programming as if People Mattered”?

Borenstein's classic book "Programming as if People Mattered" dates from 1991. Is there a more modern book (say from this millennium instead of the last) that covers similar ground in a similar way, ...
2
votes
2answers
397 views

How does one use onmousedown/onmouseup correctly?

Whenever I write mouse handling code, the onmousedown/onmouseup/onmousemove model always seemed to force me to produce unnecessarily complex code that would still end up causing all sorts of UI bugs. ...
1
vote
0answers
44 views

Where to find materials about edge detection and which is good for virtual wardrobe application?

I am trying to build an application called virtual wardrobe where I am planning to capture the image of a human and then allow him to select different clothing and instantly see his virtual image ...
1
vote
2answers
77 views

application models

Within a research project that I'm currently working on, we're trying to define the notion of application model, and we're investigating methodologies/formalisms to represent application models, with ...
1
vote
1answer
94 views

Identifying 'Concepts' for a system HCI

I'm designing an interface based on data gathered from users. It is for a website which allows you get advice on choosing a restaurant. I'm stricly following a textbook which says you must identify ...
1
vote
1answer
44 views

Guidelines for creating interactive visualisations?

Does anyone know any guidelines in creating interactive visualisations for the exploration of datasets? I can find lots of material on why particular instances are good or bad, but the actual design ...
1
vote
0answers
507 views

Strange issue with capturing Bluetooth packets from Android JNI shared library

I have a question having to do with Bluetooth programming in C. I'm working on the Android platform, but anyone skilled with the Bluez stack should be able to lend some insight... I am trying to ...
1
vote
1answer
185 views

An image from byte to optimized web page presentation

I get the data of the stored image on database as byte[] array; then I convert it to System.Drawing.Image like the code shown below; public System.Drawing.Image CreateImage(byte[] bytes) { ...
1
vote
2answers
119 views

HCI challenges of Web 2.0

What are the HCI challenges of Web 2.0?
1
vote
2answers
185 views

HCI - How to evaluate a device to the relation with these theories such as: “senses (Visual, Auditory, Haptic) and cognition (short term and long term memory)”?

How can to evaluate a computerized device or a software application in the HCI field to the relation with these theories such as: "Senses (Visual, Auditory, Haptic) and cognition (short term and long ...
1
vote
3answers
471 views

what are evaluation techniques for HCI projects (without involving users, or psychologist)?

I'm going to choose a topic for my thesis and it will be a HCI project. (human computer interaction). It will be a research project, and I need to think some kind of evaluation for it. I would prefer ...
1
vote
4answers
164 views

Coming from web development, how do I approach desktop app usability/design?

When developing a desktop application that has several groups of equally important data and operations, how do you tackle the user interface design? Most of the web-based apps I've developed have a ...
1
vote
3answers
131 views

Usability: Where do users focus their initial attention on in new interfaces?

I know there was a study somewhere that showed which places users focused on initially when presented with new interfaces, but I can't remember that study, nor remember exactly what behaviors could be ...
1
vote
1answer
56 views

Should I use the user's current culture to compare computer names?

I've got a list view and a button. The list view has columns "Server Name", "Operating System" and "Description". The button populates the list view with computer records from Active Directory. The ...
1
vote
3answers
98 views

HCI: make the user wait through everything up front, or amortize?

I'm writing a silverlight app that queries a web service to populate a tree control. Each element will have at least 2 levels of children, so something like this: a +-b +-c d +-g +-h e +-i +-j ...
1
vote
4answers
152 views

What is a good way of implementing HCI in OpenGL?

I'd like to try and implement some HCI for my existing OpenGL application. If possible, the menus should appear infront of my 3D graphics which would be in the background. I was thinking of drawing a ...
1
vote
3answers
288 views

Giving user feedback during long-running process and user-interface/business-logic separation

When a long-running process is being executed, it is a good practice to provide feedback to the user, for example, updating a progress bar. Some FAQs for GUI libraries suggest something like this: ...
0
votes
4answers
116 views

Developing UI for Android

I am planning to develop an Android based mobile for my Human Computer Interaction based project. I am looking for a UI designing application for Android platform. Can it be achieved with Eclipse or ...
0
votes
0answers
58 views

Using HCITools for Bluetooth on Android (no root)

Is there anyway where i can use HCItools using C for an Android App, and not rooting the phone? The StartDiscovery() function on Android only lets you scan for 12 seconds, and i would liket to get ...
0
votes
1answer
155 views

Problem with getting list of HCI devices from driver in Android

I have to work with HCI device of Android, so I try to implement a simple code for get the number of bluetooth device: ... struct hci_dev_req *dr; int sk = socket(AF_BLUETOOTH, SOCK_RAW, ...
0
votes
0answers
31 views

User suggestions in electronic dictionary [closed]

Let's imagine we have an electronic dictionary - it doesn't matter if it's a webpage, a desktop application or a mobile app. The question might also apply to an encyclopaedia. Every entry has the ...
0
votes
0answers
114 views

WinCE MS Bluetooth stack - HCI layer code sample

I am looking for a code sample about how to work with HCI layer in WinCE 6.0 or 7.0. I would like to send/receive HCI commands/packets and register with a callback to get notification. Any help or ...
0
votes
1answer
143 views

Android bluetooth communication access modes?

When I check the bluetooth developer page, it states very clearly that the android api supports the establishment of RFcomm channels. Now, is this mode exclussive for android or does android also ...
0
votes
4answers
954 views

Android connect to WiFi without human interaction

I'm wondering if there are some code snippets that can be used to connect an Android device to a WiFi network. The network should be either open or WEP/WPA encypted, and visible to that device. ...
0
votes
2answers
98 views

Human-Computer Interaction SDK

The question is which SDK (if any) to use for developing applications with hci interfaces? I mean such an interface when user interact with computer using gestures and video camera.
0
votes
1answer
185 views

How can I find witch version of a2dp is used by my Bluetooth headset devise?

I know that one way to find out this is to have a look on the device specification. Most device specifications are reporting just that A2DP is supported. Is there an other way to find which version of ...
0
votes
1answer
132 views

UI pattern for editing temporal tables

I'm writing a web interface to edit several values that change over time (for each employee, the changing attributes are role/division/workplace/type of contract/etc) and show the history of each ...
0
votes
1answer
73 views

Downloading photos on the client side every 10 seconds on an ajax enabled asp.net environment?

There is a web site page which is coded on asp.net with using c# and ajax is enabled too. I want a very fast loading web page; which is going to happen with the following architecture; 1- First all ...

1 2