Steve Lacey
Steve Lacey
**EDIT:** I decided this makes more sense on StackOverflow: http://stackoverflow.com/questions/16220646/how-can-you-extend-a-symfony2-service-defined-with-the-jms-di-extra-service-ann
I am having trouble getting the ImageMagick adapter working via your plugin. I believe it is because of your use of PHP stream paths, and that php5-imagemagick eventually boils down...
I don't see a way to make help output list available aliases – currently these are only discoverable via reading the source or README I currently copy the help output...
Any plans to support `fetch` in addition to `xhr`? I don't see a way to hook php-debugbar up to Apollo currently, whilst it works just fine with Axios, is lack...
**Describe the bug** The debounce delay should apply only to variable updates/refetches rather than the initial query load – the scenario it's creating for me is that when then passing...
Flatten in `fnc` will flatten a list of querysets but `pydash` won't: ```py from fnc import flatten list(flatten([Skill.objects.all()[:2], Skill.objects.all()[2:4]])) [, , , ] from pydash import flatten list(flatten([Skill.objects.all()[:2], Skill.objects.all()[2:4]])) [,...
Might be worth adding fixtures for creating models with `build` instead of `create` I know this exists because I've used FactoryBot in Rails and I knew to look for it,...
Most m2m relation handling for factories in Django is pretty simple, is this of interest? ```py class ManyToManyPostGeneration(factory.PostGeneration): """ Simplified factory post_generation for many-to-many relationships - sets values passed to...
I use the `updated_at` timestamp off of the instance in order to generate my object etags – for that I need to be able to retrieve the instance, which I...