Whenever we write code, we have some user in mind who will interact with it via some an interface.
How do you interact with (your own? someone elses?) software?
What broad kinds of interfaces are there?
What kinds of users are there?
No interface:
Click program icon
Type name, press ENTER
Command line interface (CLI):
ls -lh
tar -czvvf my_new_tar_file.tgz ./*
fdisk
What makes CLI software easy/hard to use?
Take the next ten minutes and explore cat
and grep
then explain what they do. Were they easy to use?
Graphical user interface (GUI):
What makes GUI software easy/hard to use?
With the people around you: Compare some interfaces, e.g. Yahoo & Google, Notepad & Word
Simple software should have a simple interface. Should complex software have a complex interface?
Creating simple interfaces for complex software is hard! Broad principles:
Know your users. Are they:
Know your users (cont.)
Exploit familiar interface patterns
Exploit familiar interface patterns (cont.)
Exploit psychology and culture
Exploit psychology (cont.)
Having many controls that are poorly organized can obscure the useful ones Having excessive documentation for things that are obvious or unnecessary for the user can obscure the useful information
When you don’t know how to make something better, find some guinea pigs! Ask them what they expect to happen when they use your software.
python -m http.server 8000