vote up 83 vote down star
134

Some of us just have a hard time with the softer aspects of UI design (myself especially). Are "back-end coders" doomed to only design business logic and data layers? Is there something we can do to retrain our brain to be more effective at designing pleasing and useful presentation layers?

Colleagues have recommended a few books me including The Design of Sites, Don't make me think and Why Software sucks , but I am wondering what others have done to remove their deficiencies in this area?

flag
1  
Graphic design != UI design. The former is about making things pretty. The latter is about making things useful and usable. – Esko Luontola Feb 10 at 22:24
1  
+1 @Esko. Often 'pretty' means totally UN-usable. But the two CAN co-exist if handled with care and thought. – David HAust Feb 10 at 23:25
1  
Why is developing software so hard for UI designers? – Greg Hurlman Feb 13 at 20:33
show 10 more comments

62 Answers

1 2 3 next
vote up 214 vote down check

Let me say it directly:

Improving on this does not begin with guidelines. It begins with reframing how you think about software.

Most hardcore developers have practically zero empathy with users of their software. They have no clue how users think, how users build models of software they use and how they use a computer in general.

It is a typical problem when an expert collides with a laymen: How on earth could a normal person be so dumb not to understand what the expert understood 10 years ago?

One of the first facts to acknowledge that is unbelievably difficult to grasp for almost all experienced developers is this:

Normal people have a vastly different concept of software than you have. They have no clue whatsoever of programming. None. Zero. And they don't even care. They don't even think they have to care. If you force them to, they will delete your program.

Now that's unbelievably harsh for a developer. He is proud of the software he produces. He loves every single feature. He can tell you exactly how the code behind it works. Maybe he even invented an unbelievable clever algorithm that made it work 50% faster than before.

And the user doesn't care.

What an idiot.

Many developers can't stand working with normal users. They get depressed by their non-existing knowledge of technology. And that's why most developers shy away and think users must be idiots.

They are not.

If a software developer buys a car, he expects it to run smoothly. He usually does not care about tire pressures, the mechanical fine-tuning that was important to make it run that way. Here he is not the expert. And if he buys a car that does not have the fine-tuning, he gives it back and buys one that does what he wants.

Many software developers like movies. Well-done movies that spark their imagination. But they are not experts in producing movies, in producing visual effects or in writing good movie scripts. Most nerds are very, very, very bad at acting because it is all about displaying complex emotions and little about analytics. If a developer watches a bad film, he just notices that it is bad as a whole. Nerds have even built up IMDB to collect information about good and bad movies so they know which ones to watch and which to avoid. But they are not experts in creating movies. If a movie is bad, they'll not go to the movies (or not download it from BitTorrent ;)

So it boils down to: Shunning normal users as an expert is ignorance. Because in those areas (and there are so many) where they are not experts, they expect the experts of other areas to have already thought about normal people who use their products or services.

What can you do to remedy it? The more hardcore you are as a programmer, the less open you will be to normal user thinking. It will be alien and clueless to you. You will think: I can't imagine how people could ever use a computer with this lack of knowledge. But they can. For every UI element, think about: Is it necessary? Does it fit to the concept a user has of my tool? How can I make him understand? Please read up on usability for this, there are many good books. It's a whole area of science, too.

Ah and before you say it, yes, I'm an Apple fan ;)

link|flag
2  
Excellent comment! You've nailed one of the most fundamental hurdles in software design. A hard fact to swallow for hardened developers (like me), but the truth often is. – Gerard Feb 5 at 22:03
2  
+1. I recommend reading "The Inmates are Running the Asylum", it goes into good detail about the differences in user/dev mindsets, as well as some remedies. – Richard Levasseur Feb 7 at 18:59
1  
Damn I wish I could vote for this more than once. You.Are.Right. .FullStop – CAD bloke Feb 8 at 10:32
2  
Very valid points, and I think that this mentality is also part of the reason that a number of developer-run projects (e.g. open source or what-have-you) have come across as difficult to use -- by and large, most developers write for themselves as the user, not for the "real" end user. – rmz Feb 10 at 22:19
show 21 more comments
vote up 0 vote down

I designed a program for people outside my social circle and observed their behavior. In doing this, I was no longer subject to the bias of my friends, and my own pride and ego. In improving the app, I became more humble and sensitive to the design issues. I learned the importance of task-oriented design, of simplicity. I learned the cost of having too many features. With experience, so will you.

Some references I highly recommend:

  • joelonsoftware jef raskin's "the humane interface"
  • robin william's "a non-designer's guide to design"
  • most of the ui articles on alistapart
  • jwz's blog on programming
  • the apple human interface guidelines

Some references and philosophy I highly advise you to ignore:

  • "themes"
  • desktop applications in general, unless you need driver/filesystem access
  • the idea that "more is better"
link|flag
vote up 0 vote down

"Is there something we can do to retrain our brain to be more effective at designing pleasing and useful presentation layers?"

Yes - use an interface driven architecture. First design a user flow from your business requirements --- then design your programming logic and databases based on your user flow. If you structure the mid-tiers and back-end as something designed to serve the front-end, then you'll have a user-centered app.

link|flag
vote up 1 vote down

Part of the answer is that UI design is much harder than it looks, just as coding is much harder than it looks to designers. The two worry to very different degrees about very different things, and this, apart from the obvious differences in approach and skills needed, causes them to focus on problems that are invisible to each other.

I've found that it helps to describe my app and how to use it to someone without any visual tools whatsoever. It helps focus on what is actually necessary and important and feeds back what can be comprehended quickly by another person. I can do this even before I have a line of code, so it's very cheap to do and doesn't require any artistic skills. The other advantage is that verbalizing the app gets parts of my brain working that otherwise would remain dormant while coding and I can start to "see" the app work (or not work) as I talk.

link|flag
vote up 1 vote down

Design it for your Mother.

link|flag
vote up 1 vote down

Eating your own dogfood is actually not quite the best way. The lack of focus on user concerns while true is not the whole story either. The same with growing distant from normal user concerns as your expertise grows. Most developers I know want to do a good job in creating software that solves problems.

Where the disconnect occurs is in failure of imagination. The inability for us as human being to think of all the possibilities and combination. Sure we try to overcome this with "better" methodologies.

The only way I found that works is putting myself in line of fire in receiving user feedback. This way I LEARN about the problem I am solving, not just once but on a continuing basis as users use my software.

This is not easy solution. You have to not only be a good programmer but also good at X with X being whatever problem you are trying to solve. By being good at X you can the needed experience to understand the possibilities and limitations. You can start accounting for that in your code resulting in more polished software both in the features you offer and the in the design of the UI.

It not about retraining your brain but gaining the experience needed to effectively solve the problem. This especially true if you going something brand new like Stack Overflow where the experience can only be gained if you are the line of user feedback.

link|flag
vote up 0 vote down

If you read the book "Why software sucks" you would have seen Platt's answer, which is a simple one:

  1. Developers prefere control over user-friendliness
  2. Average people prefere user-friendliness over control

But another another answer to your question would be "why is dentistry so hard for some developers?" - UI design is best done by a UI designer.

http://dotmad.net/blog/2007/11/david-platt-on-why-software-sucks/

link|flag
vote up 1 vote down

"good ui design" is actually two problems:

  1. getting the right design
  2. getting the design right

both are hard problems. in my experience the two things should be explored in parallel, as to not get ugly surprises late in the project ("why is our sexy drag&droping ultra-slow in IE8?? what do you mean it's not fixable???")

to get the right design you will have to explore posibilites. books can guide you towards trying out things that make most sense for your cicumstance - experience is even better, of course. also you absolutly need feedback from real users - how else would you find out that the design is already right? (you certainly can't tell.. read on!)

"getting the design right" then is the next problem, as it means the design you found appropriate must be implemented.

those "user experience / gui" things are so hard, because finding the right answer involves understanding what humans want - which they can't objectivly tell you and you on the other hand can't find out from "the outside". this means an (experience-) guided trial&error approach is the only way to go.


to more clearly answer your question:

why is good ui design so hard for some devels

for hardcore developers a big problem is, that their understanding of how the software works is so very different from how the users think it works (for example the URL "www.stackoverflow.com" should be written as "com.stackoverflow.com", if you know anything about how DNS works. but try selling a browser that expects URLs it like that :)).

as a sidenote: I would suggest you look into "experience design" rather then "user interface design", but that's another story.

link|flag
vote up -1 vote down

ui design and software development work on two different sides of the brain. it isnt that a designer sucks at developing and vice versa, its just that they are trying to do it with the wrong side of the brain. no serious person would disagree.

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

UI design is a completely different skill. It is one closely related to visual art - being able to appreciate and create visual symmetry and beauty. And for WHATEVER reason, typically coders are NOT good with visual arts. I know there are exceptions - but as a general rule - it holds.

So really (unless you are the exception to this odd rule) - it should be dealt with like any other area where you are not naturally talented. You should evaluate if you can get along well enough with the chops ya' got - or maybe even spend a little energy improving, when you have a chance. However, you'd be better served developing the areas where you have ability and maybe seeking to work with people that are strong in the area where you do not..

A good book covering this idea is: Now, Discover Your Strengths by Marcus Buckingham ... it's an easy read.

link|flag
vote up 0 vote down

Because Its a different set of skill. Skills required to be a Web designer IS NOT the same as skills required to be a programmer. Yes few skills might overlap, like HTML, CSS, Javascript, but by nature Programmers know nothing of what makes a web design a good web design, and vice versa.

RWendi

link|flag
vote up 0 vote down

Because generally they are not UI Designers. Its a different skill. Thats it.

link|flag
vote up 0 vote down

Maybe because some developer start from Dos, and continue to partially work on command line OS.
Or because some of us writing software, because computer have some normal logic, not like human been. :-)

link|flag
vote up 0 vote down

When developers think UI, they usually think the perfect widget they could use for this or this task (by widget I mean text area, combo box, so interactive Ajax search field...). UI, and more especially HCI, should be thought at a lower level. It is interesting to split the reflexion about the UI into 4 steps:

  • Task and concept model: this is the most difficult to understand at a developer point of view. You must abstract from your reflexion all the idea you could have about the future platform, the language you could use. [Paterno, 97] is the reference in this domain. You define your tasks as a tree, where tasks have sub tasks. Here an example for an export task.

  • Then you define the abstract UI: this is about group tasks and subtasks into workspaces.
  • Concrete UI: you can now decide which interactors use. You should now think about the platform (large screen, PDA, mobile phone...). Here is the key. Your task model and abstract UI can be factorized among several platforms.
  • And the final UI, implemented in a chosen programming language.
link|flag
vote up 0 vote down

User interface isn't something that can be applied after the fact, like a thin coat of paint. It is something that needs to be there at the start, and based on real research. There's tons of Usability research available of course. It needs to not just be there at the start, it needs to form the core of the very reason you're making the software in the first place: There's some gap in the world out there, some problem, and it needs to be made more usable and more efficient.

Software is not there for its own sake. The reason for a peice of software to exist is FOR PEOPLE. It's absolutely ludicrous to even try to come up with an idea for a new peice of software, without understanding why anyone would need it. Yet this happens all the time.

Before a single line of code is written, you should go through paper versions of the interface, and test it on real people. This is kind of weird and silly, it works best with kids, and someone entertaining acting as "the computer".

The interface needs to take advantage of our natural cognitive facilities. How would a caveman use your program? For instance, we've evolved to be really good at tracking moving objects. That's why interfaces that use physics simulations, like the iphone, work better than interfaces where changes occur instantaneously.

We are good at certain kinds of abstraction, but not others. As programmers, we're trained to do mental gymnastics and backflips to understand some of the weirdest abstractions. For instance, we understand that a sequence of arcane text can represent and be translated into a pattern of electromagnetic state on a metal platter, which when encountered by a carefully designed device, leads to a sequence of invisible events that occur at lightspeed on an electronic circuit, and these events can be directed to produce a useful outcome. This is an incredibly unnatural thing to have to understand. Understand that while it's got a perfectly rational explanation to us, to the outside world, it looks like we're writing incomprehensible incantations to summon invisible sentient spirits to do our bidding.

The sorts of abstractions that normal humans understand are things like maps, diagrams, and symbols. Beware of symbols, because symbols are a very fragile human concept that take conscious mental effort to decode, until the symbol is learned.

The trick with symbols is that there has to be a clear relationship between the symbol, and the thing it represents. The thing it represents either has to be a noun, in which case the symbol should look VERY MUCH like the thing it represents. If a symbol is representing a more abstract concept, that has to be explained IN ADVANCE. See the inscrutable unlabled icons in msword's, or photoshop's toolbar, and the abstract concepts they represent. It has to be LEARNED that the crop tool icon in photoshop means CROP TOOL. it has to be understood what CROP even means. These are prerequisites to correctly using that software. Which brings up an important point, beware of ASSUMED knowledge.

We only gain the ability to understand maps around the age of 4. I think I read somewhere once that chimpanzees gain the ability to understand maps around the age of 6 or 7.

The reason that guis have been so successful to begin with, is that they changed a landscape of mostly textual interfaces to computers, to something that mapped the computer concepts to something that resembled a physical place. Where guis fail in terms of usability, is where they stop resembling something you'd see in real life. There are invisible, unpredictable, incomprehensible things that happen in a computer that bare no resemblance to anything you'd ever see in the physical world. Some of this is necessary, since there'd be no point in just making a reality simulator- The idea is to save work, so there has to be a bit of magic. But that magic has to make sense, and be grounded in an abstraction that human beings are well adapted to understanding. It's when our abstractions start getting deep, and layered, and mismatched with the task at hand that things break down. In other words, the interface doesn't function as a good map for the underlying software.

There are lots of books. The two I've read, and can therefore reccomend, are "The Design of Everyday Things" by donald norman, and "The Human Interface" by Jef Raskin.

I also reccomend a course in psychology. "The Design of Every day Things" talks about this a bit. A lot of interfaces break down because of a developer's "folk understanding" of psychology. This is similar to "folk physics". An object in motion stays in motion doesn't make any sense to most people. "You have to keep pushing it to keep it in motion!" thinks the physics novice. User testing doesn't make sense to most developers. "You can just ask the users what they want, and that should be good enough!" thinks the psychology novice.

I reccomend Discovering Psychology, a PBS documentary series, hosted by Philip Zimbardo. Failing that, try and find a good physics textbook. The expensive kind. Not the pulp fiction self help crap that you find in Borders, but the thick hardbound stuff you can only find in a university library. This is a necesesary foundation. You can do good design without it, but you'll only have an intuitive understanding of what's going on. Reading some good books will give you a good perspective.

link|flag
vote up 1 vote down

A good book that provides lots of thoughts on user interface and its importance is In the Beginning was the Commandline by Neal Stephenson. Not everyone needs a GUI, just a lot of people who don't program. It's like the difference between DisneyWorld's Animal Kingdom and the actual Amazon.

link|flag
vote up -1 vote down

Why is UI design so hard for some Developers?

That's a bit like asking why basketball is hard for footballplayers.

link|flag
vote up 2 vote down

To improve just look around at existing sites. In addition to the books already suggested, you might like to have a look at Robin Williams's excellent book "The Non-designers Design Book" (sanitised Amazon link)

Have a look at what's possible in visual design by taking a look at the various submissions over at The Zen Garden as well.

UI design is definitely an art though, like pointers in C, some people get it and some people don't.

But at least we can have a chuckle at their attempts. BTW Thanks OK/Cancel for a funny comic and thanks Joel for putting it in your book "The Best Software Writing I" (sanitised Amazon link).

link|flag
vote up 2 vote down

Developers are not (necessarily) good at UI design for the same reason they aren't (necessarily) good at knitting; it's hard, it takes practice, and it doesn't hurt to have someone show you how in the first place.

Most developers (me included) started "designing" UIs because it was a necessary part of writing software. Until a developer puts in the effort to get good at it, s/he won't be.

link|flag
vote up 0 vote down

Easy.

Developers aren't designers. They haven't trained or attempted to learn about design, so why should they be good at something like UI design? It's almost the same as saying "why is accounting so hard for some developers?"

UI Design is essentially Design and Design is a visual representation of rules. Being good at design means that you understand why something should look, act and behave in a certain way (e.g. why links should be highlighted or why a header should be at the top of a page).

Design and Development are two entirely different beasts, but both require background knowledge and practical work. If you're not willing to put in time with one of these subjects then you simply won't be very good at it, no matter how well you fluked one of your programs/websites into looking good.

link|flag
vote up 1 vote down

I think part of it is because UI design and program design often have conflicting goals. When I program I often think "What is the easiest way to do this?". When designing a UI the easiest way is not always the most user friendly. If you do both you might have a tendency to choose the easiest implementation which negatively affects user friendliness.

I also believe programmers are too close to the product to see it from a user's perspective. What seems very easy and intuitive to the person programming the application may not be to a user. It's necessary to get a user's input.

UI design is also not something that is always right or wrong. Different people will evaluate a UI differently. For example some people hate the new "Ribbon" UI in Office, some people love it. Some people think Apple's OSX UI is great, others don't care for it and find it difficult to use. No matter what UI you come up with you will have people who don't like it.

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

Just like with music: Sometimes people can be technically great musicians, but not be artists. My rule of thumb is always present the user with only the UI they need at the time. I notice a lot of back end developers flooding the screen with every option imaginable when they do a UI. While those type minds like to have all the details first and slowly ignore what they don't need, that doesnt work for most end users.

link|flag
vote up 1 vote down

I think they are very different skill-sets. Good designers know about human behaviour, the psychology of colors and fonts, etc. I think it's like trying to be a marketing person and a developer at the same time. Very challenging but not necessarily impossible.

I'd try to find some UI experts and see what their study recomendations would be. Unless you are designing something very minimalist like google, if it is a significant project it is probably best to hire someone who has studied the art of UI as their main thing.

That said, if you are designing a very practical app, I think you could try to focus on simplicity and clarity in the interface -- I think this is at least half the key to goole's success (and stack-overflow) -- i.e. it is intuitive and a pleasure to use.

link|flag
vote up 1 vote down

I use what I call the Grandmaw test.

  • If your dear old Grandmaw can't use it, there's a problem.
  • Presupposing she knows what the program's about, e.g., knows how to do taxes and is trying to use Quicken.
link|flag
show 1 more comment
vote up 0 vote down

Something no one else has suggested but which help you immensely is to take a course (usually graduate level) in Human factors engineering. If you don't want to take the course at least go find the textbooks and read them.

link|flag
vote up 98 vote down

UI design is hard

To the question:

why is UI design so hard for most developers?

Try asking the inverse question:

why is programming so hard for most UI designers?

Coding a UI and designing a UI require different skills and a different mindset. UI design is hard for most developers, not some developers, just as writing code is hard for most designers, not some designers.

Coding is hard. Design is hard too. Few people do both well. Good UI designers rarely write code. They may not even know how, yet they are still good designers. So why do good developers feel responsible for UI design?

Knowing more about UI design will make you a better developer, but that doesn't mean you should be responsible for UI design. The reverse is true for designers: knowing how to write code will make them better designers, but that doesn't mean they should be responsible for coding the UI.

How to get better at UI design

For developers wanting to get better at UI design I have 3 basic pieces of advice:

  1. Recognize design as a separate skill. Coding and design are separate but related. UI design is not a subset of coding. It requires a different mindset, knowledge base, and skill group. There are people out there who focus on UI design.
  2. Learn about design. At least a little bit. Try to learn a few of the design concepts and techniques from the long list below. If you are more ambitious, read some books, attend a conference, take a class, get a degree. There are lot of ways to learn about design. Joel Spolky's book on UI design is a good primer for developers, but there's a lot more to it and that's where designers come into the picture.
  3. Work with designers. Good designers, if you can. People who do this work go by various titles. Today, the most common titles are User Experience Designer (UXD), Information Architect (IA), Interaction Designer(ID), and Usability Engineer. They think about design as much as you think about code. You can learn a lot from them, and they from you. Work with them however you can. Find people with these skills in your company. Maybe you need to hire someone. Or go to some conferences, attend webinars, and spend time in the UXD/IA/ID world.

Here are some specific things you can learn. Don't try to learn everything. If you knew everything below you could call yourself an interaction designer or an information architect. Start with things near the top of the list. Focus on specific concepts and skills. Then move down and branch out. If you really like this stuff, consider it as a career path. Many developers move into managements, but UX design is another option.

Why UI design is hard

Good UI design is hard because it involves 2 vastly different skills:

  • A deep understanding of the machine. People in this group worry about code first, people second. They have deep technological knowledge and skill. We call them developers, programmers, engineers, and so forth.
  • A deep understanding of people and design: People in this group worry about people first, code second. They have deep knowledge of how people interact with information, computers, and the world around them. We call them user experience designers, information architects, interaction designers, usability engineers, and so forth.

This is the essential difference between these 2 groups—between developers and designers:

  • Developers make it work. They implement the functionality on your TiVo, your iPhone, your favorite website, etc. They make sure it actually does what it is supposed to do. Their highest priority is making it work.
  • Designers make people love it. They figure out how to interact with it, how it should look, and how it should feel. They design the experience of using the application, the web site, the device. Their highest priority is making you fall in love with what developers make. This is what is meant by user experience, and it's not the same as brand experience.

Moreover, programming and design require different mindsets, not just different knowledge and different skills. Good UI design requires both mindsets, both knowledge bases, both skill groups. And it takes years to master either one.

Developers should expect to find UI design hard, just as UI designers should expect to find writing code hard.

link|flag
show 6 more comments
vote up 1 vote down

A decade ago, I really sucked at UI design... I guess what helped me become better with the years was a healthy combination of humility and striving for perfection.

Bottom line: Never become too satisfied with your past or present achievements. Learn from your own and others' mistakes.

link|flag
vote up 2 vote down

There are a lot o good comments already, so I am not sure there is much I can add. But still...

  • Why would a developer expect to be able to design good UI?
  • How much training did he had in that field?
  • How many books did he read?
  • How many things did he designed over how many years?
  • Did he had the opportunity to see the reaction of it's users?

We don't expect that a random "Joe the plumber" to be able to write good code. So why would we expect the random "Joe the programmer" to design good UI?

Empathy helps. Separating the UI design and the programming helps. Usability testing helps.

But UI design is a craft that has to be learned, and practiced, like any other.

link|flag
show 3 more comments
vote up 2 vote down

A useful framing is to actively consider what you're doing as designing a process of communication. In a very real sense, your interface is a language that the user must use to tell the computer what to do. This leads to considering a number of points:

  1. Does the user already speak this language? Using a highly idiosyncratic interface is like communicating in a language you've never spoken before. So if your interface must be idiosyncratic at all, it had best introduce itself with the simplest of terms and few distractions. On the other hand, if your interface uses idioms that the user is accustomed to, they'll gain confidence from the start.
  2. The enemy of communication is noise. Auditory noise interferes with spoken communication; visual noise interferes with visual communication. The more noise you can cut out of your interface, the easier communicating with it will be.
  3. As in human conversation, it's often not what you say, it's how you say it. The way most software communicates is rude to a degree that would get it punched in the face if it were a person. How would you feel if you asked someone a question and they sat there and stared at you for several minutes, refusing to respond in any other way, before answering? Many interface elements, like progress bars and automatic focus selection, have the fundamental function of politeness. Ask yourself how you can make the user's day a little more pleasant.

Really, it's somewhat hard to determine what programmers think of interface interaction as being, other than a process of communication, but maybe the problem is that it doesn't get thought of as being anything at all.

link|flag
vote up 2 vote down

I think its because a good UI is not logical. A good UI is intuitive.

Software developers typically do bad on 'intuitive'

link|flag
show 5 more comments
1 2 3 next

Your Answer

Get an OpenID
or

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