Matej Kafka

Results 52 comments of Matej Kafka

Bump. After rebase over current master, the CI is green.

Cannot reproduce on latest preview.

@mklement0 I know that the pipeline should be stopped, so `echo` should fail, but in my testing, I cannot seem to reproduce the issue. Weird.

@mklement0 Tried it at least 100 times, every time it prints both lines. To be clear, I do agree that `echo` shouldn't be used, but I wonder if something in...

@noseratio You might want to try experimenting with `[Console]::TreatControlCAsInput` for that usecase, since you probably want to ignore Ctrl-C, not forcefully terminate the target with you.

@noseratio > Sadly it works on the per-console level, not per-process level, so the child Node.js process also can't be stopped with Ctrl-C. Sorry, my bad, you're correct. A better...

I don't believe Invoke-WebRequest supports streaming of the response, since it returns a complete response object, so you'll have to implement it yourself, either as a C# binary cmdlet, or...

> > As an aside, it might be a worthwhile addition to add a `-Stream` parameter to the web cmdlets, which stream the raw response as it comes in. >...

@SteveL-MSFT It would definitely be more generally useful. However, there's already an open issue for that, and there doesn't seem to be will or time to design and implement that...

@CarloToso The provided code looks more-or-less the same as what Chromium is doing, sans some sanitization: https://github.com/chromium/chromium/blob/11a147047d7ed9d429b53e536fe1ead54fad5053/net/base/filename_util_internal.cc#L219 In general, it would make sense to me to stay close to the...