Joren Hammudoglu
Joren Hammudoglu
According to [Google](https://support.google.com/webmasters/answer/6340290?hl=en): > For standalone AMP pages (those that don't have a non-AMP version) the AMP page should specify itself as the canonical version After reading the docs, the...
Automatically build `handler400`, `handler403`, `handler404` and `handler500` https://docs.djangoproject.com/en/dev/topics/http/views/#customizing-error-views
So I've been testing the performance a bit, varying e.g. - 1:1, 16:1, 64:1 producer : consumer ratio - normal/lifo/priority queue etc - asyncio/uvloop event loop - async -> async,...
Defining the two variances of a TypeVar is rather verbose: ```python T_co = TypeVar("T_co", covariant=True) T_contra = TypeVar("T_contra", contravariant=True) ``` So I propose an alternative syntax, similar to that of...
Is there a built-in mechanism that removes the cropped media images after a field gets deleted? If not, consider this a feature request.
http://docs.wagtail.io/en/stable/reference/contrib/routablepage.html Perhaps using a setting to enable this.
In Accelerated Mobile Pages, regular javascript is prohibited. Instead, it provides an `amp-analytics` tag with a lot of customizability. Are you planning on supporting this? https://www.ampproject.org/docs/reference/components/amp-analytics
This `format` option replaces the `showLogLevel`, `showMethodName` and `separator` options, and allows for way more formatting flexibility. E.g. ```javascript const options = { isEnabled: true, logLevel : isProduction ? 'error'...
With added default `async` and `defer` attributes (as is recommended in the [docs](https://developers.google.com/recaptcha/docs/invisible)). And some bonus typo fixes :)
Is fragment ultracaching also supported in jinja2?