Kevin Stone

Results 19 comments of Kevin Stone

chaining after a call to `none()` doesn't work with `PassthroughManager` because it changes to an `EmptyQuerySet` so it no longer returns our custom QuerySet sub-class. Your commit doesn't necessarily resolve...

This insecure connection nag is annoying. After the first notice, I'm aware that I'm using an insecure connection ("✅ don't remind me again"). I'm currently trying out Postico, but wouldn't...

Did you load the `staticfiles` templatetags? You're also not putting quotes around your attribute names.

@Kludex The PR was here but was closed as wontfix by Tom: https://github.com/encode/starlette/pull/1013

+1 on this. I'd love for my Mac to switch to Display Audio when I plug it into my home Cinema Display and switch back to internal speaker when unplugged.

Here's my implementation for a typed header trait extension: ```rust use headers::{Header, HeaderMapExt}; pub trait ResponseTypedHeaderExt { fn typed_header(self, header: H) -> Self; } impl ResponseTypedHeaderExt for hyper::http::response::Builder { fn...

http://www.eyecon.ro/bootstrap-datepicker/ works well for us.

I mentioned that the lack of hardware PWM in the GPiO library greatly impacts the usefulness of the PWM support in #95. Here's my workaround using `gpiozero` (which uses `pigpio`...

Not sure I follow what you mean by "multiple PWM mechanisms". The `PWMBacklight` class can be improved to leverage different PWM interfaces (e.g. `sysfs`, drivers like `gpiozero` or the current...