One use of this which came to mind is tailing log files or watching the ongoing output of a process.
Are there any limits on how big a pad can get? Are there issues with scrolling when the content gets to the bottom? I haven't run EtherPad in a while, so don't remember.
There's a project called Log.io (http://logio.org:8998/) which does streaming and scrolling for events which ends up feeling a bit similar. Not sure if you can pipe stdout to it though.
Honestly, I wasn't too worried about making something complex - I wanted to write something quickly that would work reliably.
Yes, it's trivial to write. But it fulfilled a need that we had, and getting something useful released rather than building something needlessly complex is, from what I understand, everything that HN is about.
How is this comment HN worthy? It brings no valuable knowledge to the discussion, and discourages the sharing of novel ideas. The code may be trivial, but the idea certainly is not.
11 comments
[ 2.8 ms ] story [ 41.8 ms ] threadAre there any limits on how big a pad can get? Are there issues with scrolling when the content gets to the bottom? I haven't run EtherPad in a while, so don't remember.
There's a project called Log.io (http://logio.org:8998/) which does streaming and scrolling for events which ends up feeling a bit similar. Not sure if you can pipe stdout to it though.
Very interesting!
Also, why would he make it harder for himself than necessary? I'd like to see your shell/C++/asm implementation
Yes, it's trivial to write. But it fulfilled a need that we had, and getting something useful released rather than building something needlessly complex is, from what I understand, everything that HN is about.
Would be nice sharing a terminal session on the web with others.
From another terminal, you can then do something like tail -f screenlog.0 | etherpad mypad
Also, look into the ttyrec and script commands
The limitations: The screen method won't follow you across screens and it won't interpret ansi escape codes
If you pipe something into it, the first command's stdout will become this script's stdin.