H4rryK4ne

Results 10 issues of H4rryK4ne

Hi, I want to propose an extension of the ethernet_frame implementing the stacked VLAN tags according to 802.1AD (taken from https://en.wikipedia.org/wiki/IEEE_802.1ad). I have another variant of implementation, but I'm not...

I just found, that `build` does not use the pip config for the local virtual environment (`/pip.ini`) where the `index-url` isdefined, but the `index-url` of the user (e.g. `C:\user\\AppData\Roaming\pip\pip.ini`). I...

**What is the current behavior?** If a special character (like german umlauts) is typed the encoded char is placed. To be platform independend one has to sanitize the special char...

enhancement

As described in https://github.com/typeddjango/django-stubs#how-can-i-create-a-httprequest-thats-guaranteed-to-have-an-authenticated-user one could use `AuthenticatedHttpRequest` annotate `request` in function views with `@login_required` decorators. But how can this be adapted to class views with `LoginRequiredMixin`? Any idea?

**Describe the problem** I created a custom DateField: ``` class GermanDateField(django.forms.DateField): widget = bootstrap_datepicker_plus.widgets.DatePickerInput( options={ "format": "DD.MM.YYYY", "locale": "de", }, ) ``` When I load the page, I get ```...

I have a text with a lot of abbreviations (VT, KW od KW47, MWG, EKV, ...) and most (if not all) of them are tagged as NE and lemmatized as...

I don't get the content of the HTMLField if I use this in a dynamically loaded view with HTMX. StackOverflow seems to have already some questions regarding this issue: -...

Did you ever consider adding type annotations or creating stubs for type checking?

enhancement

I am getting mypy errors I do no completely understand. I have a generic base class and want to create a (generic) base serializer which shall be used by the...