Samrat Man Singh
Samrat Man Singh
Currently my code to handle events looks like this: ``` nk_input_begin(ctx); if (SDL_PollEvent(&window_event)) { if (window_event.type == SDL_QUIT) break; nk_sdl_handle_event(&window_event); handle_event(&pplane_state, &window_event); } nk_input_end(ctx); ``` The problem is that the...
When I run `ocamlfind ocamlmktop -o myutop -thread -linkpkg -package utop myutop_main.cmo`, I get a bunch of "Warning 31" errror messages: ``` File "/usr/lib/ocaml/compiler-libs/ocamltoplevel.cma(Trace)", line 1: Warning 31: files /usr/lib/ocaml/compiler-libs/ocamltoplevel.cma(Trace)...
If I'm in the page http://docs.gl/gl3/glDrawArrays, and search for `glBindVertexBuffer` I am probably looking for the `gl3` version. I think it'd be a good idea to show that at the...
Hello, thanks for this library and the many clean and well-commented examples. Is there an example of how I can use `sokol_imgui.h` with the `sokol-zig` bindings. I started to attempt...
Hello, I'm using `crawly` in a project where I also depend on httpoison 2.0. Because crawly depends on httpoison 1.7, this creates a conflicting dependency. Are there plans of upgrading...
Hello 👋, When I try to generate JSON using the example in the `basics_tutorial` notebook with the `phi2` model, the JSON generated doesn't conform to the structure specified: ``` Please...
This promptlib program when run with `phi2` seems to consistently crash the server with the following stacktrace. ```python program = pl.PromptProgram(aici) # load a grammar file c_grammar = open("../../../controllers/aici_abi/grammars/c.y", "r").read()...
I might be missing something but I believe there is a bug in https://github.com/lite-xl/lite-xl/blob/cf028c510a908a1e208588ec90b57fef422f88bf/src/api/process.c#L637 -- if `read_size > READ_BUF_SIZE`, shouldn't it use the larger value as the buffer size? Also,...
### Feature request I would like to be able to call [SDL_ttf](https://github.com/libsdl-org/SDL_ttf/tree/main) functions from my Swift project. As far as I can tell, the project doesn't currently support this. ###...
Hi, I've added `flame_on` as a dependency and added it to my router.ex: ``` live_dashboard "/dashboard", metrics: DaymarWeb.Telemetry, flame_on: FlameOn.DashboardPage ``` but after restarting the server, I still don't see...