Eric Kennedy
Eric Kennedy
@zhongchen I just used this library instead: https://github.com/twmb/franz-go It had a different sasl authentication issue but the maintainer is very good and fixed it.
Sorry, I am new to python annotations. How would I use the types in typeshed to annotate my code? I get `Import "types_stripe" could not be resolved` when I install...
In the direction of per database connections, here is another lib that handles postgres logical decoding well: https://github.com/kyleconroy/pgoutput I liked what [pgdeltastream](https://github.com/hasura/pgdeltastream) is doing as well. Main difference between the...
I got this same but in a different context. I had applied: ``` resource "postgresql_extension" "my_extension" { name = "unaccent" } ``` and everything worked well. I then noticed I...
@NRay7882 I use this module to create the datadog user like you. I am able to access `pg_stat_database` simply by creating the role: ``` resource "postgresql_role" "datadog" { name =...
@mediocreatmybest Trying out your script and I am getting this error: ``` Error running install.py for extension /content/gdrive/MyDrive/sd/stable-diffusion-webui/extensions/sd_dreambooth_extension. Command: "/usr/bin/python3" "/content/gdrive/MyDrive/sd/stable-diffusion-webui/extensions/sd_dreambooth_extension/install.py" Error code: 1 stdout: stderr: Traceback (most recent call...
i get this when I mark the memory attention as "xformers" instead of "default". The thing is I am able to get xformers to install if i follow the instructions:...
I have dreambooth working on cuda 11.6. My issue is applying xformers to it. As mentioned I am able to apply xformers to the inference stage using automatic1111. I do...
My solution was to just modify the code to have the total coverage, but not the full coverage: ``` exports.comment = function comment(percentage, options) { return fragment( `Coverage after merging...
So the `widgetDimensions` would make the svg element 20% of it's container, which by default has no width and there isn't a prop to set that. `widgetSpacings` affects the padding,...