Andree Renneus
Andree Renneus
you need to configure the enviroment 'AUTH' https://github.com/henrywhitaker3/Speedtest-Tracker#parameters -e AUTH | Optional. Set to 'true' to enable authentication for the app -- | -- or if you're using compose add...
while i know the issue predates `$PSStyle`, doesn't `$PSStyle.OutputRendering` solve this? > OutputRendering - Control when output rendering is used [PSStyle](https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_ansi_terminals?view=powershell-7.4#psstyle) [Host mode](https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_ansi_terminals?view=powershell-7.4#redirecting-output-in-host-mode) ```ps1 Get-ChildItem | Out-String Get-ChildItem | Out-File...
> Your solution does not solve the format length issue. I'm not sure i entirely understand the problem, do you have an example? Out-File, Out-String and redirected `>` works and...
any news on this issue? I got it somewhat working using the following config: ```yaml font: size: 13 locator: DirectWrite text_shaping: engine: DirectWrite builtin_box_drawing: true render_mode: gray strict_spacing: true regular:...
> Thanks for reminding me about this behavior. And, sorry, this is actually PowerShell's bug yea i did feel that regardless of the cause it (Get-FormatData) should handle exceptions more...
It's still broken on version `6.5.1`, so not fixed yet unfortunately. i think atleast for my problem there needs to some handling of these values > The external IdP returns...
as it was mentioned on the community call that the team would appreciate some help reviewing PR's. some thoughts.. i was under the impression that feedbackprovider things were opt-in and...
here is a working example,  ```ps1 $Subtotals = @{ Age = @{ Function = '=SUBTOTAL(109;[Age])' Comment = 'Sum Age' } StreetNumber = @{ Function = '=SUBTOTAL(108;[StreetNumber])' Comment = 'Avg...
> In the screenshot below, I'm using img2sixel to convert an image that occupies four and half rows. In the first case there was no scrolling, so no extraneous background...
SpectreConsole checks terminal capabilities on import and sets a profile. try running this before you import the module. ```ps1 $OutputEncoding = [console]::InputEncoding = [console]::OutputEncoding = [System.Text.UTF8Encoding]::new() ``` i could replicate...