PhilippMDoerner

Results 71 issues of PhilippMDoerner

Particularly for large-ish applications and generic stuff it is nice to be able to see if prologue registered that a specific route was added and what exact URL was added....

Just stumbled over this while writing a prologue extension: The settings and/or configuration section could use some examples on how to actually retrieve settings from ctx.

### Description I opened [a nim forum thread](https://forum.nim-lang.org/t/10873) about this yesterday. It appears that using async creates a circular data-structure with its futures and that leads to leaks under arc....

### Description Apparently (?) thread-local variables do not get collected/destroyed when a thread is joined with another thread via `joinThread`. This was the result of a [forum discussion with mratsim](https://forum.nim-lang.org/t/10839)...

Threads

## The Problem The following command will *act* like it is installing owlkettle correctly, but it will incorrectly install the latest version instead of the head commit: ```txt choosenim devel...

Minimal example: ```txt #project.nimble task play, "Build a release for debugging": --define:basePath:"lalalu" --outdir:"." setCommand "c", "src/playground.nim" ``` ```nim #project.nim const basePath {.strdefine.} = "path from file not from flag" echo...

Fixes #331 Fixes overall 2 issues: 1) `## `, `# ` and the like often get rendered into headlines under the right circumstances. By replacing them with `\# ` (which...

Heyho, I am trying to get an example to work where I spawn a thread to perform a task in weave that eventually sends a Channel message, while the proc...

### The Problem I've recently tried to compile docs of a project of mine which makes use of the `chronos/threadsync` module in 2 places. I've come to notice that it...

Heyho, While writing code for a library of mine with chronos I noticed that some of my tests were showing leaks under address sanitizer, but only under `--mm:arc`. I managed...