💾 Archived View for gem.librehacker.com › gemlog › tech › 20210911-0.gmi captured on 2024-06-16 at 12:32:03. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2021-11-30)
-=-=-=-=-=-=-
I needed a utility to control the speed (i.e., bit-rate) at which data is outputted from a file. One solution for this is the Pipe Viewer utility, which has a Guix package:
It is designed to do a lot of other things as well, but it can be used simply to limit bit-rate of data through the program. For 2400 b/s:
pv -L 2400 -q myfile.txt
or, e.g.,
some_program | pv -L 2400 -q | some_other_program
An entertaining application of this is reproducing old vt100 ASCII animations:
https://www.ibiblio.org/archive/2020/04/vt100-animations/
http://artscene.textfiles.com/vt100/
I tried this out, and it is pretty entertaining! Not sure how "useful" it is, but definitely entertaining!