Brian Bruggeman

Results 22 comments of Brian Bruggeman

Another data point: I have an older postgres, and the extra_float_digits is also not supported. Given time and support staffing, I'd have already moved to postgres 14, but at the...

I have found a workaround by setting up pgbouncer, which has a setting that can let me ignore the `extra_float_digits`. I'm not able to touch Postgres at this time; not...

Thanks for getting back to me. I'm trying to automate a vaccine signup page, and I want it to run on Windows, Mac and Linux with various versions of Firefox...

Was kind of hoping this was built in... I think this probably solves the original question, though? ```rust use serde::{Deserialize, Deserializer, Serialize}; use serde::de::{self, Unexpected}; /// Converts a string to...

It may not really matter. The `to_lowercase` is problematic as it will allocate a String. I suppose it is possible to move around that with more optional truthy/falsey values, but...

I had actually thought about adding a port variable initially, but then rejected it because: 1. I think it would be good to test against 3 ports rather than 1....

@jonas32 I took your thoughts and made several port environment variables using: https://www.aerospike.com/docs/operations/configure/network/ At this point you can now override where they are resolved locally.

hello.py: ```python from dataclasses import dataclass @dataclass class Foo: bar: str = 'bar' def greet(): f = Foo('baz') document.getElementById('greet').innerHTML = str(f) ``` index.html: ```html import * as hello from './__target__/hello.js';...

I've found asdict to be excellent as a named parameter input where the dataclass itself could mirror a specific API. For example: from dataclasses import asdict, dataclass @dataclass class Bar:...

I think `get_async_connection` within the [Manager](https://github.com/importcjj/mobc/blob/master/mobc-redis/src/lib.rs#L25) should actually be `get_multiplexed_async_connection`.