Steffen Blake

Results 10 comments of Steffen Blake

If anyone is interested in a quick solution, I posted in #4379 a quick hack to get this functionality working in Windows Terminal here: https://github.com/microsoft/terminal/issues/4379#issuecomment-905112832

As others above have stated, it should be a greedy state machine. The pattern of `/{+a}/{+b}` will always parse `/1/2/3/4/5/6/7` as `a=1/2/3/4/5/6` and `b=7`, deterministically. If you want a double...

Hashes are supported on `script-src` because it applies to both inline and elem scripts generically. Hashes for elem scripts is not currently supported by CSP lv 3, which is what...

Id be in favor of a `TryNormalize` function that will return false if it tries to divide by Zero (and its out param will be NaN/Nan), as a way to...

Perhaps not marking old method as Deprecated and thus having both options available to be used as "right tool for the right task"? There definitely outta be times when the...

That seems out of scope of this github issues discussion. The scope is discussing if the README's documentation is clear enough or needs improvement and, if so, what would be...

I actually tried that first solution initially as a workaround, both actually proceed to fail with wine failing to find `dotnet`, it doesn't show up under system32 and you get...

This is a bit more nuanced than simply just adding singletons. Ideally, what gets generated by OpenAPI Generator properly wires into using [HttpClientFactory](https://learn.microsoft.com/en-us/dotnet/architecture/microservices/implement-resilient-applications/use-httpclientfactory-to-implement-resilient-http-requests) You do *not* want to just have...

Updated Node to v23.5.0(latest) to test, issue still persists the same

For reference, I've found a far smoother workflow is just running the aspire project normally with `dotnet run` or `dotnet watch` Aspire hands you the process Id on a silver...