Phil Starkey

Results 41 issues of Phil Starkey

I have the following model structure (approximately): ``` USER = get_user_model() class Company(models.Model): #fields omitted for brevity class Staff(models.Model): company = models.ForeignKey(Company, on_delete=models.CASCADE) user = models.ForeignKey(USER, on_delete=models.CASCADE) ``` and a...

For some reason that I can't quite figure out, it seems that accessing `self.fields` inside a nested and expanded serializer causes the `only/exclude` URL query args to be ignored for...

I've run into a problem where some custom logic in a nested serializer is falling over because I can't provide custom kwargs (in this case, what I want to pass...

This PR adds a new consumer to CasparCG that sends raw video and/or audio down a named pipe. ## Motivation While CasparCG has an FFmpeg consumer, it is sometimes inefficient...

Right now I can't see any examples of the Pico accepting input via serial (whether over USB or not). The examples only send information out via calls to `printf()`. More...

The title describes the issue. The `accept_global_perms` check always uses `all()` instead of conditionally using `any()` like the subsequent object level permission check https://github.com/django-guardian/django-guardian/blob/1c74f2491bd5aba21c8fa9fdcf3cd1cc5c007382/guardian/utils.py#L106-L115

Hi, I was wondering if it was possible to add a 1080p50 mode or if there is a hardware limitation that prevents that? I'm interested in using this device to...

I've just tried installing PyDAQmx on Python 2.7.16 (a new conda 2.7 environment) using pip and it is not installing correctly (on Windows 10 anyway). It seems to be installing...

Fixes #86 #79 ## Rationale Most of the current dependency versions tested against are unsupported, while newer versions are not tested. Also, the existing CI seems to be dead (at...

Added support for specifying project paths with the extras_require modifier available when doing a pip install For example, you should now be able to runs something like: `setuptools_conda install-requirements labscript-suite[docs]`...