Peter Munch-Ellingsen

Results 403 comments of Peter Munch-Ellingsen

Hmm, just talked to some guys over in the IRC channel and it seems like the error is with how curly brackets are parsed. I checked and if you simply...

How was the porting experience by the way? One thing I feel is important with genui is how it is a fairly simple conversion to actual code so you should...

I'm definitely hoping so, which is why I wanted to port genui to it as quickly as possible. I added a shorthand `@r` now by the way that can be...

I wrote a bit about the benefits of this system in my post [here](https://peterme.net/cross-platform-guis-and-nim-macros.html)(primarily under the "A simple GUI DSL" heading). The macro in play here is actually fairly simple...

Well technically yes. The wxNim version of genui was made a part of wxNim simply because I had to make changes to the code in order to make it work...

@andrewgohlk, on my fork, or the main repository? This PR is pretty outdated by now, no idea if it still works or not.

Superset of #51? Most of the required functionality should be there if #51 was fixed, then it's just a matter of piecing it together as you want to.

Problem with that though is that the nimble file is NimScript and IIRC you can do things like `version = staticExec("git describe --tags")` so the logic for what to change...

Leaving this for future reference: https://github.com/FedericoCeratto/nim-httpauth

I checked this in Nim, it was originally doing `0 .. 1_000_000` which is inclusive. Changed it to `0 ..< 1_000_000` so it should be fine.