Filip Figiel
Filip Figiel
Autoreloading has been a long-requested RQ feature. Since it seems it's not going to be implemented in a while, I thought that django-rq could use runserver's auto-reloading feature instead. I...
Automated tests in my project failed because it turned out that `bulk_update` wasn't creating the new model instances I had in the list. I think `bulk_update` should raise a `ValueError`...
On chrome, the notification shown by visiting https://davidwalsh.name/demo/notifications-api.php and clicking "Show a Notification" has the following body: ``` davidwalsh.name I am the body text! ``` On firefox, the notification body...
I got this error during refactoring. ``` ----- {} ----- ``` After looking at the closed issues I noticed someone got a more helpful error message by running `elm make`...
When rendering a range input with `step` attribute smaller than 1, you must put the `step` attribute before the `value` attribute. Otherwise the rendered slider is maxed regardless of the...
There was some discussion on Slack about page transition animations. The difficult part is intercepting the internal `LinkClicked` or `UrlChanged` `Msg` to trigger the fade-out transition, and delaying rendering the...
**Describe the bug** Specifying the endpoint as a string with a port number in a Client config, the result of `SignatureV4.createCanonicalRequest` does not include the port in the `host` header,...
Hi, the fix for py3 metaclass has been around long enough to consider releasing a new version :smile:
When we retrieve a Choices list, ugettext is being evaluated. Sometimes this happens too early and translations are omitted, e.g. in form class body. ``` class MyForm(forms.Form): indexing = forms.ChoiceField(choices=core.IndexingModes())...
All examples seem to use `button`s with `onClick` event handlers, which is convenient but bad for UX. For example, what if a user wants to open a link in a...