Results 10 comments of Sean Hanna

@kurahaupo This walk-through is gold. Maybe it should go in the README and/or FAQ somewhere? It seems like the XOAuth2 option should be removed from the UI completely as well...

I haven't actually compiled this but here's my 15-minute guess: ```csharp public double GetPercentileForValue(long value) { var bucketIndex = GetBucketIndex(value); var subBucketIndex = GetSubBucketIndex(value, bucketIndex); long runningCount = 0; for...

Same-site=strict is intended to prevent against CSRF vulnerabilities. Setting Same-Site=lax will cause all pages on the site to accept GET and POST from third party websites, opening them up to...

authenticate() get called all over the place, but bewteen the presence of the oauth state in the query string, and the missing cookie, you could probably detect this problem and...

Seems like this should exist, along with the other LINQ equivalents like Any / Single / First / FirstOrDefault / Single / SingleOrDefault / etc.. While i think the heart...

I don't believe the linq compatibility should be in conflict with conforming to idiomatic powershell. I mostly just think there is a clear feature set to base the design on....

I like this alternative design. It should be possible to cover every use case i am concerned with using `InterceptingProcessMessageAsync`. It probably only take a few lines of code to...

Hello @chkr1011 - do you have any feedback on this discussion before getting a PR underway?

I have submitted a pull request for this feature. #1915

Are you concerned with doing shutdown or cancellation during startup? 1) If you are just concerned with shutdown, i thought that was accomplished using `client.Dispose()` or `client.StopAsync()` I don't believe...