Richard Simpson

Results 183 comments of Richard Simpson

> This is something which requires some discussion/design. Current instrumentations populate only the required fields, and any other fields which are readily available (without much perf cost). We need to...

> > Is it even possible to obtain properties of the user this way? I'm just trying to do the same thing and the identity comes always empty, as if...

My very PoC implementation of the above: ```csharp private class ECSExtendedDetector : OpenTelemetry.Resources.IResourceDetector { private readonly AWSECSResourceDetector _awsDetecter = new(); public Resource Detect() { var ecsBase = _awsDetecter.Detect(); if (ecsBase...

@flcdrg That is basically how ChocolateyGUI works. Should in theory be simpler to implement for choco. Edit: specifically shelling out to an independently elevated process. Definitely don't need any of...

Yup. A simplish idea would to have the choco process check whether it's A) in an elevated process and B) whether the command in question is non-informative (or destructive as...

GUI actually uses WCF over named pipes to do IPC to it's subprocess, and I don't believe we've run into any pipe security issues with GUI being no being elevated...

I might (maybe) be able to pick this up. Not overly familiar with either Cef or CefSharp though. It looks like it's a matter of forwarding accessibility events? (Which I...

Yes please! This would be amazing and simplify some chart scenarios.

@codejamninja This project is now in maintenance mode, I created a new issue in the new project: https://github.com/fluxcd/helm-controller/issues/104

Ahh! I should clarify, setting defaults by calling the extension method `Select` on `MultiSelectionPrompt`, which used to accept an Enumerable of indices to select. This was a convient way to...