[dead]
It's not just about traffic. IoT devices (or any other low-powered devices for that matter) also like protobuf because of its comparatively high efficiency.
You said "that Django still lacks". Django no longer lacks CSP and background tasks. Regarding my edit, you need to differentiate between different types of jobs. Sending an email is okay to do in process. Other (mostly…
This "memory shortage" is not about AI companies needing main memory (which you plug into mainboards), but manufacturers are shifting their production capacities to other types of memory that will go onto GPUs. That…
It's actually in the name: R = Redundant, i.e. availability.
I don't know about this exact metrics, but the Backblaze hard drive report is always a very good read when thinking about failure rates. Maybe check it out and see if you'll get your answers there.
But "outdated code" isn't inherently bad, is it? v1 code is still supported by the stdlib and it still does its job, at least until Go 2.x drops.
That's why you can give guidance to crawlers using sitemaps.
What exactly is a pain there? There's a docker compose file in the documentation that will tell you everything: https://docs.getoutline.com/s/hosting/doc/docker-7pfeLP5a8t
> It is simply cost and money in the face of much cheaper, less risky and heavily abundant renewable energy. Adding to that, Germany still has no suitable location for a final depot for storing nuclear waste, and the…
Well, 1978 was a long time ago and environmental concerns weren't a big thing back then. RWE had all rights to do what they did, even the Green party acknowledged that when the Hambach Forest situation escalated. About…
Notepad on Windows 11 is decent. Replaced my need for Sublime Text.
I agree with anything you said, and: 4. Having the scraped data in Python-land makes it sometimes way easier to dump it into an analysis landscape, which is probably Python, too.
https://github.com/pramsey/pgsql-http
The core reason is (imo) that it's simply not possible to provide a Django admin equivalent in other frameworks because they lack the functionality to do so. The basic dependencies for the Django admin are: -…
That's because psycopg adheres to the DBAPI standard (think of JDBC of the Python world). asyncpg deliberately ignores this standard for huge performance boosts.
Their software may be bad, but they make huge amounts of money with it. That's all that matters from an economical standpoint.
Not only that, but the Golang example is full of errors. Parameter definitions don't have colons between name and type. The map for seen elements is declared as a, but later referenced to as m. The append instruction…
Not too familiar with go toolchains, but I bet there's a linter that will warn you about shadowing builtins.
As long as you're installing/updating Python via your distro's package manager you won't break anything. Most horror stories of borked system Pythons are caused by people uninstalling/updating packages from the system…
Excluding 3rd party tools like Homebrew, one dosn't. The native 'package manager' is the Apple App Store. You can also manually download and install .dmg files of applications (much like .deb or .rpm).
That's an issue of dependency management though, not the runtime. Contrary to other distros, Fedora actually has a multitude of Python versions in their core repositories. If you need 3.9 but 3.11 comes preinstalled,…
I think that would violate ATX standards, but there are already plenty of niche cases that mount the GPU in different places via riser cables.
DRF is for building REST APIs, but OP wants to dump the JSON-representation of an arbitrary object into an HTML template. That's a very different use case for which simple JSON-encoding and the json_script filter should…
Or simply use Django's builtin mechanism for that instead of poorly reimplementing it: https://docs.djangoproject.com/en/4.1/ref/templates/builtins...
[dead]
It's not just about traffic. IoT devices (or any other low-powered devices for that matter) also like protobuf because of its comparatively high efficiency.
You said "that Django still lacks". Django no longer lacks CSP and background tasks. Regarding my edit, you need to differentiate between different types of jobs. Sending an email is okay to do in process. Other (mostly…
This "memory shortage" is not about AI companies needing main memory (which you plug into mainboards), but manufacturers are shifting their production capacities to other types of memory that will go onto GPUs. That…
It's actually in the name: R = Redundant, i.e. availability.
I don't know about this exact metrics, but the Backblaze hard drive report is always a very good read when thinking about failure rates. Maybe check it out and see if you'll get your answers there.
But "outdated code" isn't inherently bad, is it? v1 code is still supported by the stdlib and it still does its job, at least until Go 2.x drops.
That's why you can give guidance to crawlers using sitemaps.
What exactly is a pain there? There's a docker compose file in the documentation that will tell you everything: https://docs.getoutline.com/s/hosting/doc/docker-7pfeLP5a8t
> It is simply cost and money in the face of much cheaper, less risky and heavily abundant renewable energy. Adding to that, Germany still has no suitable location for a final depot for storing nuclear waste, and the…
Well, 1978 was a long time ago and environmental concerns weren't a big thing back then. RWE had all rights to do what they did, even the Green party acknowledged that when the Hambach Forest situation escalated. About…
Notepad on Windows 11 is decent. Replaced my need for Sublime Text.
I agree with anything you said, and: 4. Having the scraped data in Python-land makes it sometimes way easier to dump it into an analysis landscape, which is probably Python, too.
https://github.com/pramsey/pgsql-http
The core reason is (imo) that it's simply not possible to provide a Django admin equivalent in other frameworks because they lack the functionality to do so. The basic dependencies for the Django admin are: -…
That's because psycopg adheres to the DBAPI standard (think of JDBC of the Python world). asyncpg deliberately ignores this standard for huge performance boosts.
Their software may be bad, but they make huge amounts of money with it. That's all that matters from an economical standpoint.
Not only that, but the Golang example is full of errors. Parameter definitions don't have colons between name and type. The map for seen elements is declared as a, but later referenced to as m. The append instruction…
Not too familiar with go toolchains, but I bet there's a linter that will warn you about shadowing builtins.
As long as you're installing/updating Python via your distro's package manager you won't break anything. Most horror stories of borked system Pythons are caused by people uninstalling/updating packages from the system…
Excluding 3rd party tools like Homebrew, one dosn't. The native 'package manager' is the Apple App Store. You can also manually download and install .dmg files of applications (much like .deb or .rpm).
That's an issue of dependency management though, not the runtime. Contrary to other distros, Fedora actually has a multitude of Python versions in their core repositories. If you need 3.9 but 3.11 comes preinstalled,…
I think that would violate ATX standards, but there are already plenty of niche cases that mount the GPU in different places via riser cables.
DRF is for building REST APIs, but OP wants to dump the JSON-representation of an arbitrary object into an HTML template. That's a very different use case for which simple JSON-encoding and the json_script filter should…
Or simply use Django's builtin mechanism for that instead of poorly reimplementing it: https://docs.djangoproject.com/en/4.1/ref/templates/builtins...