Ivan Smirnov
Ivan Smirnov
Would it be possible to add an optional deflate layer? (since there's many gzipped websocket servers these days, like okex, huobi etc)
@vi I'm not sure what's the answer to the "why" question, but it seems to be growing more and more popular for whatever reason. And yes, pretty much all of...
A possible answer to "why" could be that not all libraries and clients (only a selected subset) will support permessage-deflate. Meanwhile, you can always use any websocket library and just...
This should work: ```sh (echo -e '{"op":"subscribe","args":["spot/ticker:ETH-USDT"]}' && cat) \ | websocat wss://real.okcoin.com:8443/ws/v3 --base64 \ | xargs -n1 -- sh -c '{ echo H4sIAAAAAAAAAA== | base64 -d; echo $0 |...
By the way, having to send a single "subscribe" message (or a few of them) is also extremely common, wonder if it's something that could be integrated in so you...
@vi Looks awesome, thanks!
Hi all, let me throw in my 2 cents if there's any interest: https://github.com/aldanor/qoi-rust. I've been working on my own Rust implementation too (since the start), and finally got it...
@benfred You could output timestamps same way `pyflame` does it, so that it could be then visualized using Chrome's flame charts?
Seems like a similar problem as in https://github.com/simgrid/simgrid/issues/88 (In brief, looks like you can't rely on the .so of libunwind-ptrace to always exist there - e.g. it's not there on...
If you need a multiline cursor for 20 lines, clicking to set up precise locations takes longer than not using the multiline cursor at all. Would it be possible to...