(no title)
pandler | 3 years ago
When I was still learning to code, I spent hours and hours and hours poking around the Django source code. In particular I was fascinated by the metaprogramming used in the Model and Query objects, and I ended up learning a ton about how Python works under the hood.
vokracko|3 years ago
Opening random file on github: django.core.serializers.python https://github.com/django/django/blob/main/django/core/seria...
And I've seen way worse things inside django than this. Please don't recommend django. Pleaseumangsh|3 years ago
jamal-kumar|3 years ago
Python is easy to write but writing it "right", in a way that doesn't compromise performance, is a thing.
ThePadawan|3 years ago
At work, another team introduced automated CVE scanning to fulfill a contractual obligation to do so. When they asked me to implement this on my team's Django project, I said "well alright, as long as it doesn't constantly break the build because of some obscure false positive CVE".
Within a week, the CI job was broken because of 5 "CVE"s. 4 were false positives for our project and 1 was a configuration error by the other team.
Just to let you know to take "number of CVEs" with a large grain of salt.
physicsguy|3 years ago
pbhowmic|3 years ago