About 50 results
Open links in new tab
  1. Nim forum

    Forum użytkowników języka programowania Nim, miejsce do zadawania pytań, dzielenia się wiedzą i dyskusji na temat Nim.

  2. Which IDE to use in 2024? - Nim forum

    But what tools Nim provide - for IDE to use and integrate with. I remember there were discussion and effort about: Nim Incremental Compilation, a key component to make IDE better, to give fast …

  3. Kirpi - Löve2D style 2D game framework for Nim - Nim forum

    Another reason for this pragmatic approach is the number of abandoned projects in the Nim ecosystem. Even if this project were ever discontinued, it should still keep working thanks to choosing solid, well …

  4. ANN: New library to parse TOML files - Nim forum

    I think you are conflating the reference pages nim generates and plain documents explaining how to use them. People don't go to Nim's system module and read it from beginning to end, they go to the …

  5. High level TUI framework (or wrapper of) - Nim forum

    Nim ecosystem (libs and potential manpower, as well as velocity of growth) too sparse for the job unfortunately. And also because my poor coding speed and knowledge can't make up for the lacking …

  6. textalot- TUI I/O library written in Nim - Nim forum

    Hello everyone. I wanted to share a TUI library I wrote entirely in Nim. This will also serve as a lower-level layer for a more high-level TUI library I’ll complete later, called boxalot — which will include a …

  7. Nim forum

    Couldn't retrieve posts. Please report this issue to us so we can fix it!

  8. SSL: how to inspect and manually accept an unknown self-signed ...

    To connect as a client, use "openssl s_client -connect host:1965 -cert cert.pem -key key.pem -state -debug" with a self-signed certificate. Change verifyMode to see the effect of the two options. Maybe …

  9. imgui - Nim forum

    Then copy/link the generated cimgui.so to the the same directory as the nim based executable, or install it in /usr/local/lib via ldconfig. Alternatively you can build the library from the main cimgui repository.

  10. How to set discard or empty statement to a default value of ... - Nim

    It seems a statement cannot be specified to a default value of untyped parameter. I can workaround this by using overloadig or a proc with discardable pragma, but they requires extra code. Is there simpler …