Make your interactive command work as an HTTP server! :)
Currently Supports line-by-line commands, like Kytea and python interpreters.
$ python setup.py install
making Python interpreter work as HTTP server
$ pserve --port 8080 --command 'python -i -q'
...
$ curl localhost:8080?stdin="5-2"
>>> 3
- no response from command will end up hanging response
- when command returns multiple lines of result, it will break
- many access to a server might make it unstable