how to parse a multipart/form-data POST body string?

2024-03-22 Thread ITwrx
I'm glad to hear you are dogfooding Guildenstern and Nim. I'm now fairly invested in Guildenstern as well, as i just spent the last few months porting the beginnings of my current project to Guildenstern and working on it from there. I think i prefer your philosophy for Guildenstern, even if it

Having trouble with the Testament tool

2024-03-22 Thread thindil
Testament requires the tests to be stored in a proper directories' hierarchy. For example, Nim tests: Example of working structure. The tests are in `tests/directory/test.nim` and `tests/directory2/anothertest.nim`. If you have that structure, t

how to parse a multipart/form-data POST body string?

2024-03-22 Thread Allin
Hello (Guildenstern author here) In my modest open source contributions, I am inspired by the ["do one thing and do it well"](https://miikanissi.com/blog/understanding-unix-philosophy/) -philosophy. I admit that it moves some complexity from maintainer to the user (you have to compose your own

Oversight or intentional?

2024-03-22 Thread shirleyquirk
to get gcc to tail-call any recursive proc you need to write it in an awkward way, making sure the last statement is the recursive call. but doing so with a closure or a proc results in tail-call optimization, at least for this toy example: giant YMMV applies,

Having trouble with the Testament tool

2024-03-22 Thread Kiloneie
I read some of the docs, checked the examples, and read trough ringabout's dev.to tutorial of [Testament Tutorial](https://dev.to/ringabout/how-to-use-testament-in-nim-1l0h). But i cannot get it to run any test, and i've tried several. I don't get it. Here is an example from ringabout's tutoria

how to parse a multipart/form-data POST body string?

2024-03-22 Thread termer
Do not worry, my son, the dream of a headless multipart form parser in pure Nim will someday come true

how to parse a multipart/form-data POST body string?

2024-03-22 Thread ITwrx
Go has one in the std lib: Python has one that is not server/framework specific: ^ `Temporary files on disk for big uploads.` PHP has a generic one as well:

Oversight or intentional?

2024-03-22 Thread sls1005
And possibly get a stack overflow if using it too much, because, unlike recursive procs, which directly invoke themselves, a recursive procedural variable always extracts (a reference to) itself from its own environment (or a global variable, if it is) to perform a recursive call, and a C compil

Radiant Ease Blood cbd gummies [Empowering Yourself] Managing Blood Sugar

2024-03-22 Thread PamelaFBooth1
Radiant Ease Blood cbd gummies [Empowering Yourself] Managing Blood Sugar What Are Radiant Ease Blood CBD Gummies? Radiant Ease Blood CBD Gummies stand out in the world of wellness supplements. ➲➲Click Here➲Official Website➲Huge Discount These gummies are infused with CBD, a compound derived

Radiant Ease Blood CBD Gummies Code of Blood Sugar Regulation

2024-03-22 Thread PamelaFBooth1
Radiant Ease Blood CBD Gummies Code of Blood Sugar Regulation What are Radiant Ease Blood CBD Gummies In fact? The Radiant Ease Blood CBD Gummies present a pivotal recipe for really overseeing blood tension and blood sugar levels, ➲➲Click Here➲Official Website➲Huge Discount outperforming some ot

The problem Bliss Bites CBD Gummies DiabetesReviews Manage High Blood Pressure solves

2024-03-22 Thread ChristpherGillis
╰┈➤PURCHASE LINK :- ╰┈➤Facebook Page’s:- Bliss Bites CBD Gummies Diabetes :

Oversight or intentional?

2024-03-22 Thread shirleyquirk
you can write recursive, self-capturing lambdas if you name them first import sugar var fib:int->int fib = (x:int) => (if x < 2 : x else: fib(x-1) + fib(x-2)) echo block: collect: for i in 0..10: fib(i) Run

Wealthy Brain Wave (Audio Mp3 Price 2024): Benefits, Side Effects

2024-03-22 Thread blisswealthy
Wealthy Brain Wave is a modernized sign program that uses sound waves to help you with attracting cash without any problem. The program relies upon the likelihood that there is a walnut-assessed piece of the brain that, when sanctioned, can help you with attracting wealth, wonderful accomplices,

Bliss Bites CBD Gummies 2023 Reviews - Where To Purchase?

2024-03-22 Thread blisswealthy
To help major areas of strength for the changed regular practice in your life, Bliss Bites CBD Gummies solidifies the adhering to the posting of standard characters without containing any sort of fillers or man-made segments in the recipe. The Bliss Bites CBD Gummies supplement can be obtained u

What Ingredients Are Used To Make Gold Coast Keto Gummies Australia?

2024-03-22 Thread sewwab
➢ Product Name – Gold Coast Keto Gummies Australia ➢ Category – Weight Loss Gummies ➢ Main Benefits – Burn Extra Fat & Make Body Slim ➢ Side Effects - No Major Side Effects ➢ Rating - ★ ➢ Availability – Online ➢ Where to Buy Online – Gold Coast Keto Gummies A

nim2_ide: Notepad++ plug-in (IDE for Nim lang)

2024-03-22 Thread gremlin-art
Hi, I wrote in Nim a Notepad++ plug-in that provides IDE features via `nimsuggest` etc. Also I pushed the limit on "syntax highlighting".