Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
12answers
2k views

Human factors design (meeting psychological needs in UI design)

Reading about the G.729 codec, I found this interesting tidbit about "Comfort Noise": A comfort noise generator (CNG) is also set up because in a communication channel, if transmission is ...
21
votes
18answers
1k views

How to get the most out of a 3 month intern? [closed]

We've got a software engineering intern coming in who's fairly competent and shows promise. There's one catch: we have him for 3 months full time and can't count on anything past that. He still has a ...
13
votes
16answers
1k views

Is it possible to teach humility to a smart but inexperienced programmer?

I used to work with a guy who was fresh out of college and acted like he was the God of Java — the best possible programming language that could ever be invented (and no other language, with the ...
8
votes
4answers
269 views

OS user interface guidelines: when to ignore?

A line in this answer, "Get used to using the Mac on its own terms", took me aback a little bit, and made me start to think about something I pondered ages ago and still haven't come up with a good ...
7
votes
7answers
1k views

Using spaced repetition to retain programming knowledge

Has anybody successfully used spaced repetition concepts embodied in programs like supermemo in the context of programming ? The motivation for this question: I'm increasingly having to look up ...
7
votes
14answers
1k views

What Healthy Tricks Do You Use to Stimulate Your Brain and Increase Code Output? [closed]

There have been a few posts around the place as to what is the best music for coding, etc. While music can certainly make coding more enjoyable, I don't believe it actually makes me more productive ...
6
votes
3answers
526 views

Hand Detection results in jerky cursor

I've written a program that uses the Depth data from a Kinect, and does blob detection to find a user's hand. However, when using the user's hand to control the mouse, it becomes very jerky, probably ...
6
votes
6answers
178 views

1 Hour for Human Factors and Usability [closed]

I have volunteered to give a one hour lunchtime briefing at my workplace to our user experience team. I have a passion and love for human factors and user interface design and have had my hand in it ...
6
votes
6answers
296 views

Do you consider performance reviews useful and why? [closed]

all, It looks like performance reviews are used in virtually any organization. You know, those lists of objectives, values, estimates (achieved, partially achieved, exceeded etc.) And then you'll get ...
5
votes
10answers
401 views

Do you use your mouse as a “placeholder” while you're reading code/documentation?

I'm going through some research tapes of developers who are editing code and reading documentation (either online or via the hover in the IDE) and I'm trying to figure out all the techniques they use ...
5
votes
10answers
617 views

How do you deal with Brain Buffer Overflow? [closed]

This is probably an old topic, but I just ran into it again, and it sounds like a good area to look for other ideas. The library I am working on has a bug that I am having difficulty isolating. In ...
4
votes
3answers
195 views

How to design a user user interface for high latency conditions?

Working on an application that controls a remote robot where there is the potential for significant delay between pressing a button and that action actually happening. Furthermore, there is the ...
4
votes
6answers
294 views

How much code can a programmer be intimately familar with? [closed]

Are there any statistics for this? I realize it must vary from person to person, but it seems like there should be a general average. The reason I ask is that the company I contract for has multiple ...
3
votes
4answers
188 views

Distinguishable characters?

I have a bunch of items in my database. Each is assigned a unique ID. I want to shorten this ID and display it on the page, so that if I user needs to contact us (over the phone) regarding a ...
3
votes
5answers
135 views

How to handle management trying to interfere with the project (including architecture decision)

I feel this is not a very good question to post on SO, but I need some advice from experienced developers... (I'm a second year developer) I guess this is a problem to many, many projects, but in ...
3
votes
4answers
497 views

Pronouncable passwords?

Modules or software solutions for generating English pronounceable passwords? Are there similar modules for other languages?
2
votes
6answers
195 views

New project panic

I have a question which is not strictly-speaking programming related, but nevertheless caused by being an analyst and a programmer at the same time. It's about starting new projects which seem to be ...
2
votes
5answers
126 views

Constructing regex

I use regex buddy which takes in a regex and then gives out the meaning of it from which one gets what it could be doing? On similar lines is it possible to have some engine which takes natural ...
1
vote
9answers
146 views

Why is short project lifetime and other situation-specific reasons used to excuse crappy code? [closed]

Every now and then (including on SO) people say things implying that "if the project is short lived you can leave obvious defects there" or "that memory leak only accounts for 100 bytes per whole ...
1
vote
10answers
352 views

Did you ever get into trouble because of using or creating odd-named software? [closed]

I've noticed that some software names occasionally raise an eyebrow. I'm thinking of: libpr0n (semi-official synonym of libimg2) mutt (Mail client) BullZip (Freudian slip waiting) GSpot (codec ...
1
vote
2answers
133 views

How does UI design differ when designing a software appliance console from traditional web applications?

Are there any open source frameworks that are for this purpose? How does UI design differ when designing a software appliance console from traditional web applications? Any examples of particularly ...
1
vote
5answers
492 views

What should be considered when deciding between explicit vs implicit paging in a UI?

When a list becomes very large, presenting it in a UI raises a design issue. Should the user get pages of items or should the user get a list control that pages items implicitly as it is scrolled? ...
1
vote
5answers
258 views

Work Breaks & Eye condition [closed]

I've found this tips great. But some years ago, I had some programs that popped up an alert every hour or so (Tea Break or something like that was the name of the program). Does anybone know a good, ...
0
votes
2answers
65 views

best way to: detect real user + block bots

I am using a Maps API which costs quite a lot per request My goal is to make as little requests as possible, so i use a lot caching here The API is called on each pageload but doesn't need to be ...
0
votes
2answers
77 views

What's the most effective programming workflow for performance

This is more of a "human-side-of-programming"-Question. So I'm not sure if I should post it on this site. But since I find lot's of programmers here, I guess I'll just ask. I'm thinking in the lines ...
0
votes
3answers
342 views

Lambda notation and logical comparisons

The lambda notation x => x.MyProperty is easily confused, by some humans, with greater than or equal to. Ie if (x => y) ... the question is: Does the compiler ever confuse these? Ie, ...
0
votes
0answers
94 views

Does being a good programmer imply not being totally dumb? [closed]

I can say of myself that I am a relatively good programmer - I know what (not) to do and why, understand the logic behind pointers in compiled languages, know how to avoid memory leaks, and I can ...
0
votes
4answers
914 views

Captcha algorithm

I've notised that Stack Overflow only presents me with a captcha occasionally. Does anyone know if it has a good algorithm for sensing if I might be a robot or, instead if it's just random. Reducing ...