Ohad Rau
Ohad Rau
Once you construct your Telegram Bot module, you can directly access the messages. It doesn't use a callback for this, so you'll have to basically create your own event loop...
Oh yeah, it should be `Update.Message` (https://github.com/nv-vn/TelegraML/blob/master/src/telegramApi.ml#L1436). I'll go ahead and add this to the README >To me, also looking at other libraries in other languages for writing telegram bots,...
Yeah as Zach stated there's some concerns over what the right choice is here. Obviously tying into the native notification API is a very nice feature to have, but right...
`ppx_blob` is just compile-time string insertion essentially. So `let x = [%blob]` just dumps the file into the code as a string. This would work for both native/JS out of...
[Found this page](https://en.wikipedia.org/wiki/Comparison_of_GUI_testing_tools) that might help, although I really know nothing about UI testing. [This](https://smartbear.com/product/testcomplete/desktop-testing/) is paid but it looks like it has a lot of useful features too. Looks...
Ah when using `esy x` you just say the name of the final executable. So to execute Hello.re, we do `esy x Hello`. However this requires us to add it...
@jeremyscatigna want to try working on a PR for this? Don't think anyone is working on it at the moment.
Would be really cool to get this merged into the examples so that we can track regressions & keep it up-to-date with new Revery APIs. Thoughts on putting this in...
Commenting here because I don't want to open a new issue and this is sort of relevant. I went back and tried the examples using `REVERY_DEBUG=1` and got some interesting...
Looks like your intuition was correct about swapping buffers. It was spending about 9ms/frame before maximizing and ~80ms/frame after when rendering with native OpenGL disabled in VcXsrv. I attempted to...