some1ataplace

Results 96 comments of some1ataplace

The error you're encountering in Firefox is due to the character encoding not being specified for the plain text document. To resolve this issue, you can set the content_type attribute...

I did not test any of this this but hopefully someone could make a PR from this. When using Django's CsrfViewMiddleware to include a CSRF token in your Django form...

I got this error running an old mac OS: ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/sentencepiece/_sentencepiece.cpython-311-darwin.so, 2): Symbol not found: ____chkstk_darwin pip3 install sentence_transformers pip3 install sentencepiece Neither of these are working.

Maybe something like this. I did not test this yet. To fix the XSS vulnerability, you need to sanitize the user input before rendering it as HTML. One way to...

I am using a django form I made on my site where the user could pass in a promo code before getting redirected to the btcpay invoice payment page. On...

@pavlenex Can I ask why this is not being planned? To me, it is bad UX having a customer pay for something (even if they have a 100% off discount)...

Here's an updated code for django-robots that allows the Django sites package to be optional: ``` from django.conf.urls import url from django.http import HttpResponse from django.urls import reverse from django.views.generic.base...

Here's an example code to allow Multilanguage and sitemaps in the robots.txt file for django-robots: 1. To add support for multilanguage robots.txt files, you can create a custom view that...

Microsoft Bing Robots.txt Tester may report an error on line 2 of the default robots.txt file generated by django-robots because it contains a Disallow directive with an empty value. According...

It seems that when generating the robots.txt file using django-robots, it's possible to create multiple Disallow directives for the same user agent, which can result in a blank line between...