From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: To: 9fans@cse.psu.edu Subject: Re: [9fans] AIM software From: "Russ Cox" MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Date: Wed, 13 Nov 2002 16:42:16 -0500 Topicbox-Message-UUID: 1db3e228-eacb-11e9-9e20-41e7f4b1d025 especially if you use toc, an aim file server should be trivial. as for chatting, as long as you only care about text (and not embellishments like fonts and colors), using win inside acme to run a simple text program actually gives you a nice interface. there's an undocumented -e flag to win that erases input as it is read (bizarre, i know), which is really nice for chat interfaces. for example, in the minimal irc client i wrote, there are two threads. one does: while(read a message from the network) print " message" the other does: while(read a message from the keyboard) print " message" combined with win -e, this has the nice effect that new messages are inserted before what you're typing, and then once you hit enter on the line you are typing, message turns into message to look more like the conversation. i'd like to see an aim client. what i'd really like is a generic interface that clients for aim, irc, icq can use and then there can be just one client program. russ