i'm writing a chat program, and have all the dirty work done, but when
trying to setup a nice screen layout with curses.h functions, the keyboard
is no longer echo'd
/* setup curses */
mywindow = initscr();
nocbreak();
echo();
btw, in case it matters, i'm using select() to tell if there is input on
keyboard/sockets.