Justin

Results 10 comments of Justin

**Bottom Line Up Front:** I found a solution by rendering the components through preact-render-to-string and using Demo DOM. ## Prelude Unfortunately, preact-testing-library does not work with Deno and fresh because...

Thank you for the help. The issue ended up being environment specific and not with bitnami. We ended up changing the platform design.

Can confirm that the following configs remove the "encoding" error. ```rs OxidizedPythonInterpreterConfig::default(); config.interpreter_config.isolated = Some(true); config.interpreter_config.filesystem_encoding = Some("utf-8".to_string()); config.set_missing_path_configuration = false; config.interpreter_config.parse_argv = Some(false); config.argv = Some(vec!["python".into()]); config.interpreter_config.executable = Some("python".into());...

I've compiled a list of methods that are on the go SDK, but not available on rust: - list incomplete upload - set Bucket policy - get bucket policy -...

Another method I found to work is using `cargo run -- server` which will build and run the server from the project root. The server will crawl recursively, so you...

How would we know that a preheat is required? Is it only for "bake for" keywords? Would there be other instances where pre-heat would be needed?

@markstur is there an issue already open for the other concept? I tried looking for an overlapping issue before opening this one. Regarding expected vs allowed. I think expected is...

Yeah. I agree with your statement. When a whitelist is provided there are three use cases. 1. License Matches: Cool keep scanning. 2. License Does Not Match: Keep Scanning, but...

I think this issue and #29, could be wrapped into the same PR.

I've started working on a prototype for this feature. I'm building this out for a use case for my home, not sure if the community would also benefit from this...