Bouke van der Bijl

Results 34 comments of Bouke van der Bijl

Thanks for the detailed issue—these are quite tricky bash idioms so they might not translate very well

I see, good to hear it's on your radar! I have some vague ideas about projects I would like to use lucet for, but not really the time to contribute...

I'm taking a stab at implementing the BufRead using [specialization](https://github.com/rust-lang/rfcs/blob/master/text/1210-impl-specialization.md), which would make it nightly-only for now., although I guess we could add a from_bufread. I think with `fill_buf` we...

All right I have an absolutely terrible but working PoC. It required a lot of 'open-heart surgery' on the project to make all the lifetimes and stuff work (you can't...

You can prepend the command with `history -w` to flush the history to `~/.bash_history` and then you can use a callback to get the data from that file

I managed to work around this, as follows: ```go import ( "context" "fmt" "golang.org/x/oauth2" "golang.org/x/oauth2/google" "google.golang.org/api/idtoken" ) func IDTokenTokenSource(ctx context.Context, audience string) (oauth2.TokenSource, error) { // First we try the...

The python SDK seems to support it at least, since that's what gcloud uses under the hood (I assume?)

Related: https://github.com/tokio-rs/tokio/issues/4516