Tom Wright
Tom Wright
I'm trying to collect the outputs from an ARM template using the `Outputs` property of `ArmDeploymentPropertiesExtended`. For example: ``` var depop = rg.GetArmDeployments().CreateOrUpdate(Azure.WaitUntil.Completed, "MyDeployment", deploymentContent); var outputs = depop.Value.Data.Properties.Outputs; var...
This tip is really helpful. I've discovered it independently on several occasions over the last few years. One aspect is out of date. I'm not sure how actively these are...
For numeric columns, it would be cool to be able to visualize these as a simple bar chart in a new column. For instance: ``` ╭─────────┬────────┬────────────────────────────────────────────────────────────╮ │ │ │ │...
In some use cases it might be helpful to allow a table to be redrawn with new data. For instance, I may want to grab new data every 5 seconds,...
Following on from #55, do we ever want to be able to explicitly specify the formatting culture a table (or column) should use when rendering values? Approaches: 1. Apply whatever...
Currently we have four classes in the ConTabsTestData project that exist solely for the purposes of testing and demoing: 1. `DemoDataType` 2. `TestDataType` 3. `MinimalDataType` 4. `InvalidTestDataType` This seems like...
At the time of writing, 8.1.0 is the latest version. It was released on September 21st. [Github tags](https://github.com/jd/tenacity/tags) and [PyPI](https://pypi.org/project/tenacity/#history) agree. Unfortunately the [changelog](https://tenacity.readthedocs.io/en/latest/changelog.html) is still showing the prior version...
Inspired by [this PR for Coverage.py](https://github.com/nedbat/coveragepy/issues/1418), it would be awesome to (have the option to) output a summary of the scan results as markdown, for use in a [Job Summary](https://github.blog/2022-05-09-supercharging-github-actions-with-job-summaries/)....