Jonny
Jonny
The [howto copying completions](https://github.com/zsh-users/zsh-completions/blob/master/zsh-completions-howto.org#copying-completions-from-another-command) section states you can copy a completion from one command to another using: ``` compdef cmd1=cmd2 ``` This doesn't appear to work. In my case I...
I'm auditing ~35 AWS accounts. Running `report` in one go for all of these does work, but opening the output in my browser then causes the browser to hang, gobble...
Using the Docker container, when running `cloudmapper.py report`, with multiple accounts, I get the following error: ``` Traceback (most recent call last): File "./cloudmapper.py", line 72, in main() File "./cloudmapper.py",...
I had a `config.json` with the following: ``` "cidrs": [] ``` Running `cloudmapper.py report` then causes this exception: ``` Traceback (most recent call last): File "cloudmapper.py", line 72, in main()...
If I derive a type from a core type and use that in my expectations, tests start failing where they didn't before, even where the inputs have not changed. I've...
I have a test making calls to an interface with a fairly large struct. When the test fails owing to a verification failure, I have to scan through the error...
This moves the definitions of SAML providers to a separate YAML file, similar to how other data is managed in cloudmapper. We also tolerate a missing SAML provider definition so...
Set saml_provider_arn even when no SAML providers present. Avoids exception when using `weboftrust`.
Just come across your trio of console UI libraries, they look awesome! One bug I've found is when combining this with `uitable`. Here's my code: ``` writer := uilive.New() bufferedWriter...