Joshua Pedrick

Results 31 comments of Joshua Pedrick

I would find this helpful for dynamic policies. I would like the external_id filled in with the vault username so I could have one policy dynamically control access to pre-existing...

I'm also wondering why they don't supply an STS::GetFederationToken interface to generate temporary credentials for managed iam users. I'm picturing being able to store/create multiple IAM user credentials, with periodic/automatic...

@erw7 I noticed your branch solving this issue was deleted. Do you know of a workaround in neovim's vimscript that would be the equivalent of "call system('my_command', 'my stdin input')"?

> `/dev/stdin` on linux is a link to `/proc/self/fd/0` which only is a valid link if the file is named (including some devices, like pseudo-terminals). > > What is the...

Hi @bfredl , I'm not the original poster; but in my case I'm piping output to a script which uses the OSC 52 escape sequence to send a buffer to...

It is a custom bash script that accepts stdin or will read from a file if specified. However, I am unable to send stdin through the vimscript system() call.

Hi @bfredl when I run: ``` :echo system('yank', 'hello world') cat: /dev/stdin: No such device or address ``` However, when I run: ``` :echo system('cat', 'hello world') hello world ```...

Actually, I was able to make it work just now by changing the first line to: ``` the_input = $( cat ) ``` Thanks for your help. However, I think...

I see, yeah, I don't really know how cppyy works on the backend. What I would like is to cache the "cppyy.cppdef" results, so the next time I run the...

Yeah, so the issue is that I manage some legacy code in which templates are perhaps over used. Template parameters are being used for model parameters. My hope was to...