François Lamboley
François Lamboley
The test 5 expects the mail to be `ISEMAIL_VALID`; it should be `ISEMAIL_RFC5321_TLD`.
Accessing or setting the App’s storage should be done in a thread-safe manner, or we can easily get segfault if we change the storage during the processing of a request....
Hello! I tried catching all the requests in my server w/ a simple ``` app.get(.catchall, use: c.myHandler) ``` however it seems `/` is not caught. Is this the expected behaviour?...
**Is your feature request related to a problem? Please describe.** I have a workflow to move lines: - `cmd-left` to go to beginning of line; - `shift-bottom` to select whole...
Specifically I’m launching a process in a server (yes, I know, I shouldn’t!), and it’s a pity having a server being killed like that, even in the case of a...
On macOS, the (Apple’s) Logger object uses a custom `OSLogMessage` object which allows it to have a custom string interpolation with support for format arguments privacy levels. Would it be...
Currently the completion script is auto-generated from ArgumentParser and cannot be modified. In some (rare) projects this auto-generated completion script can be unadapted. We should be able to customize it...
My use case is an example from `git`. Potentially linked discussion: https://forums.swift.org/t/supporting-subcommands-with-same-option-name-as-reused-parent-command Let’s consider `git commit` specifically which has the `-C` option to specify a commit from which to reuse...
Should fix #9 and #13 (and potentially #14 too). The formula should be edited to compile the project using `make build-in-homebrew`. The resulting binary will be in `.build/release`. To edit...
Rationale for this comes from this thread https://forums.swift.org/t/taskgroup-vs-an-array-of-tasks/53931 Apparently launching a lot of Tasks just like that is not very good, and we should use task groups instead. I did...