Matt Haggard

Results 65 comments of Matt Haggard

Would something like this be welcome? Maybe behind `-d:useRequestIDs` (or not)? ```diff diff --git a/jester/request.nim b/jester/request.nim index 9a1a83c..5746758 100644 --- a/jester/request.nim +++ b/jester/request.nim @@ -20,6 +20,9 @@ type patternParams: Option[Table[string,...

@dom96 Oh, that's great! So maybe just do this for `useStdLib`?

Ignorant, fly-by question: how much of this could be implemented as a package without change to stdlib? I'm interested in using a system like the Python Trio system, because I...

@zserge would it be an option to (intentionally) expose the `priv` member (and leave adding menus as an exercise to the user/another library)? That would keep webview.h small and focused.

What's the status on this PR? I'm new to nim and think I want a statically linked libzip. (I could be convinced otherwise, of course)

The token is only used on your local machine to upload your app to GitHub, so regenerating and using a new token should not be a problem and will not...

You shouldn't be publishing or sending out your personal access token. It's equivalent to sharing your GitHub password. Look through this documentation, which allows you more control over how the...

Looks like the order is topological. Hmm... I can understand the reason for doing that, but couldn't topology be computed after reading the file?

You beat me to it! I just discovered it's the `NoVerifyServerName` flag alone that causes it to fail. Seems to work with `NoVerifyHost`. Looks like the former is for SNI...

Okay, thanks for looking into this. Yes, here's the part in BearSSL where it says what you've just said: https://www.bearssl.org/api1.html#reset-and-sni Disabling verification of the SNI name also disables sending the...