
Nim forum
Forum użytkowników języka programowania Nim, miejsce do zadawania pytań, dzielenia się wiedzą i dyskusji na temat Nim.
simpleargs - Dead simple CLI parsing. - Nim forum
Most of Nim's CLI parsing libraries are gigantic macro-heavy opinionated things that are overkill, and don't let you write your own docstrings. The gift that is std/parseopt allowed me to vastly …
Nimony - 'TypeKindT' should be: 'TypekindT' - Nim forum
There are several similar errors about letter casing differences (TypeKindT vs. TypekindT, FieldKind vs. Fieldkind, etc.). I don’t really understand why Nim is being so strict about this — I …
Nimony progress report -- part 4 - Nim forum
Oct 2, 2002 · Nim is the modern, cheerful, and powerful distillation of Free Pascal, Ada, and scripting in my view. Free Pascal has an outstanding base to develop desktop apps, and has a …
Cborious: Fast standards-compliant CBOR library for Nim 2.x
Announcing Cborious for Nim 2.x! What: Fast, standards-compliant CBOR library for Nim with streaming I/O, canonical/deterministic modes (RFC 8949), and compile-time encode/decode …
Nimony progress - Nim forum
This might not look impressive but it is (IMO): Nimony is a new Nim compiler which does not use much of the old codebase. A good dozen subsystems have been reimplemented from scratch: …
How to Efficiently Implement Microservices with Nim?
Nim compiles to a single executable so deploying once your have an automated, reproductible build system, is very straightforward. Scaling, well it depends what exactly you want to scale.
Neo, a new package manager for Nim - Nim forum
Hey all, I've been recently writing a new package manager for Nim. Nimble's gotten awfully slow for me lately, especially inside Nix shells. I would've loved to fix that, but unfortunately the …
Tooling Update: Sep, 2024 - Nim forum
We have also enriched the Nim Panel in the vscode extension with more information about the nimlangserver status, such as Pending Requests and Project Errors, which should help …
Asyncdispatch vs chronos await compatibility? - Nim forum
chronos's await takes chronos Futures, but browser.newTab (from cdp) returns an asyncdispatch Future. Unless chronos has some compatibility magic that I don't know about, you need to …