David Gamba
David Gamba
> Do you have anything to help get the meta data out yet? That is what dcmdump is for. Also, the dcm4chee toolkit has a very mature dcmdump tool. >...
For the 1 or more I normally define `1, 99`. Since go is strongly typed I wouldn't want to change the max definition to any other type than int, so...
Correct, the two methods are exclusive and aren't meant to be mixed. I recall having considered handling the help on the parse call but decided against it. I need to...
To add more info on why keeping `opt.Help()` is important, I just created a command where I want the argument to be an argument, not an option: ```go func GetProjectIDCMD(parent...
Awesome, thanks! I forked your repo and right now just removed all args alltogether (I am ok with asciidoctor's defaults when writing a single file). I will see if I...
I started migrating this backend into asciidoctor core. I will update https://github.com/asciidoctor/asciidoctor/issues/651 with a PR soon. Initially I am not going fancy, just enough to render the asciidoctor man page....
I posted what I did in asciidoctor/asciidoctor#651. Let me know what you think of it. I didn't clean up the things that I haven't updated but I am wondering if...
A more generic solution is needed. I have a terraform wrapper that exposes the variable `$TERRAFORM_JSON_PLAN` as the filepath to the json version of the plan so that any third...
It would be great if you could extend the data resources to have a flag for when they fail but without failing the entire plan so you could handle that...
IMHO if I introduce a nullable data block into my codebase and the result never converges it is a me problem, not a Terraform problem. Every language allows to shot...