pfeatherstone

Results 403 comments of pfeatherstone

i'm sorry i haven't had time to work on the PR. My main problem was handling UNIX timestamps in nanoseconds which exceeds the maximum number supported by javascript: 2^53. For...

I imagine I'm having the same problem, but the following doesn't work for C++ < 17: ``` #include #include #include #include using namespace std; struct helper_size { template size_t operator()(const...

If someone wants to write a PR at some point, [abseil](https://github.com/abseil/abseil-cpp/blob/master/absl/types/variant.h) has an implementation too for reference.

Yeah I don't think the input lengths are used as masks

`poly_cast` is the hard one. Any ideas? You could use `typeid` but isn't ideal.

> No problem. PR submitted, though I don't expect it being ever merged. The crow project is pretty much dead at this point. Maybe this repo should be maintained on...

So i now manually keep track of websocket connections, and before i call stop(), i iterate through all the connections, and call close(). Now it turns out the handler that...

Don't worry. I use a combination of https://github.com/yhirose/cpp-httplib and https://github.com/zaphoyd/websocketpp.git. I also sometimes use https://github.com/civetweb/civetweb though i get hanging issues with the last one.

Like everything else in boost, it seems boost.asio is more complicated than what it needs to be.