ryukinix / lisp-chat

An experimental minimal chat written in Common Lisp
https://lerax.me/lisp-chat
MIT License
173 stars 15 forks source link

Create a better and efficient web-client interface #8

Open ryukinix opened 6 years ago

ryukinix commented 6 years ago

For now I'm using a modified version of gritty, but I have a lot of problems with it:

The main reason for being slow it's because all the data, at each keystroke, is sent by TCP sockets to server. The ideal is only send a new request when is really necessary (RET pressed).

Would nice creating a client-side based solution since I don't have much resources to handling so heavy sessions on server. A nice interface would be something like http://hack.chat, as ideal written well in Common Lisp (parenscript), but it's not necessary for now.

ryukinix commented 6 years ago

Update:

ryukinix commented 5 years ago

Closed due lack of activity (> year 1).

ryukinix commented 5 years ago

https://github.com/momozor/arpachat

ryukinix commented 6 months ago

A very cool technology to use is clog.

Example of chat written in clog: https://github.com/rabbibotton/clog/blob/main/demos/02-demo.lisp