Andy Hayden

Results 221 comments of Andy Hayden
trafficstars

😄 . Yeah compiling is for sure a pain, we publish a binary in releases. I guess the question here is what is the point of `sam build` ? (If...

I think it actually may be this issue https://github.com/awslabs/aws-sam-cli/issues/1489 Since the lambda layer is referenced by an SAR application. That would be annoying. I am loath to publish a lambda...

Thanks. I'm going to sit on this for a while. It's a shame that SAR layer doesn't "just work" since IME it's kinda a pain to manage layer versions (especially...

There is HANDLER_EXT env variable which you can set to js https://github.com/hayd/deno-lambda#configuration I am erring (for the moment) two template files 1. using SAR (which only deploy works, with the...

@casey how did you do this in `just`? This might also be useful for #15.

We have something like: ```rust fn permission_prompt(message: String) -> DenoResult { if !atty::is(atty::Stream::Stdin) || !atty::is(atty::Stream::Stderr) { return Err(permission_denied()) }; eprint!("{} Grant? yN", message); ... // more stuff ``` What maybe...

Okay, here's one way to fake TTYs in stdin, stdout and stderr: https://stackoverflow.com/a/52954716/1240268 https://gist.github.com/hayd/4f46a68fc697ba8888a7b517a414583e

This would be really nice to have, are there any pointers you could give in how to get started to add this feature?

Perhaps `reset_identity` should be called in `__enter__`. It feels like there ought to be a method that would expose this e.g. `reset_ip` ?

I wonder if having a postgres core and then having pooling etc sitting on top would make sense? e.g. have postgres be a light wrapper around pgc4d ? OR have...