Brett Robinson
Brett Robinson
Yes! It's just been a bit neglected. I've now got it working with Boost 1.72. Some more testing needs to be done to make sure it all works properly, and...
Thanks for the heads up! I'm developing on Arch Linux where the latest version of Boost available is 1.69.0. It looks like Boost 1.70.0 has been out since April 12th,...
The current formatting style is quite consistent with itself. When in doubt, looking at the surrounding code and similar sections should help to clarify things. Although, having a format spec...
I can see how a formatter would make things easier. I haven't had a chance to try out clang-format yet, but I still plan on checking it out. Interestingly, the...
Thanks for the suggestion, I'll take a look into it and see what needs to be done to support binary messages over the WebSocket API.
Relevant links: [using websocket messages](https://www.boost.org/doc/libs/1_70_0/libs/beast/doc/html/beast/using_websocket/messages.html) [websocket::stream::text](https://www.boost.org/doc/libs/1_70_0/libs/beast/doc/html/beast/ref/boost__beast__websocket__stream/text.html) [websocket::stream::binary](https://www.boost.org/doc/libs/1_70_0/libs/beast/doc/html/beast/ref/boost__beast__websocket__stream/binary.html) [websocket::stream::got_text](https://www.boost.org/doc/libs/1_70_0/libs/beast/doc/html/beast/ref/boost__beast__websocket__stream/got_text.html) [websocket::stream::got_binary](https://www.boost.org/doc/libs/1_70_0/libs/beast/doc/html/beast/ref/boost__beast__websocket__stream/got_binary.html)
Thanks for the feedback! I agree it should be more clear about the required options to run. The following commits cf56a6d and 6844912 should fix that. It outputs the help...
The __entr__ tool is great! After playing around with it for a bit, the following command seems to work well: ```bash printf "regex.txt\ntext.txt\n" | entr -c -s 'cat text.txt |...
@Kabouik I think it would be best to keep __fltrdr__ as just a reader, and leave the content wrangling to other dedicated programs, unless it would offer some advantage that...
@communistkiro It's currently possible to traverse text by sentence using `H` to go to the previous sentence and `L` to go to the next sentence. Traversing text by paragraph is...