Tai Lee

Results 45 issues of Tai Lee

I am using VS Code on my M1 MBP, with Docker via colima on my Intel iMac. But attempting to open my project in a dev container shows: ``` [34976506...

I think there was a change, something to do with named pipes, that now requires the file being monitored and sent to stdout must already exist *before* `dockerize` runs. That...

I've just tried to upgrade to a recent pyxero from an old version and `contacts.get(...)` started returning a list instead of a dict for a single object. Looking at the...

```python # models class User(Model): active_device = ForeignKey(Device, on_delete=SET_NULL ... # shell In [3]: u = User.objects.cache().get(pk=4473) In [4]: u.active_device Out[4]: In [5]: u.active_device.delete() In [6]: u = User.objects.cache().get(pk=4473) In...

I'm trying to determine why our cacheops instance is storing so much non-volatile data. With `maxmemory` set to 3.5GB and the `volatile-lru` maxmemory policy and LRU cacheops setting, we were...

`@cached_as(..., lock=True)` can be used to avoid dog-pile effect, but this still results in slow queries as clients wait to acquire lock while cache is being populated (but at least...

champion wanted

You need to add a line like this to `setup.py`: ``` packages=find_packages(), ``` Or otherwise explicitly specify that the `management` and `management.commands` packages should be included. See: http://setuptools.readthedocs.io/en/latest/setuptools.html#using-find-packages

This will allow filenames like `Doctor.Who.S02E01.New.Earth.DVDRip.DD2.0.x264 Z.mkv`, which include audio information between the source and encoding, to be matched correctly.

Don't download episodes in "initial" quality within a configurable number of days from the air date, IF "archival" quality is specified for a show AND other episodes have already been...

I have some views wrapped by `multiurl()`. One has a form upload and I want to modify the upload handlers list on the fly as per the Django docs. I...