Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
Chiron1991
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
Chiron1991
8mo ago
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.
2.
▲
by
Chiron1991
10mo ago
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 async) Pyt
3.
▲
by
Chiron1991
10mo ago
CSP is literally in this release, and background workers are intentionally not part of Django because you usually want to offload tasks to other nodes so your CPU can keep serving HTTP requests. Edit: Background tasks for light work are als
4.
▲
by
Chiron1991
10mo ago
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 brings supply
5.
▲
by
Chiron1991
11mo ago
It's actually in the name: R = Redundant, i.e. availability.
6.
▲
by
Chiron1991
11mo ago
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.
7.
▲
by
Chiron1991
1y ago
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.
8.
▲
by
Chiron1991
1y ago
That's why you can give guidance to crawlers using sitemaps.
9.
▲
by
Chiron1991
1y ago
> The EU solution meaningfully changes the offending company's behavior. Citation needed. I'd imagine they just add a tiny markup to their prices to pay the eventual fine instead of investing huge amounts of money into fixing t
10.
▲
by
Chiron1991
2y ago
I can't speak for the other frameworks, but with Django this would have not been a problem at all. In Django, most "batteries included" features really just are 1st party plugins, i.e. you can choose to not use the builtin au
11.
▲
by
Chiron1991
2y ago
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
12.
▲
by
Chiron1991
2y ago
> 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 unquantifiable cost
13.
▲
by
Chiron1991
2y ago
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 the Tesla factor
14.
▲
by
Chiron1991
2y ago
Notepad on Windows 11 is decent. Replaced my need for Sublime Text.
15.
▲
by
Chiron1991
3y ago
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.
16.
▲
by
Chiron1991
3y ago
https://github.com/pramsey/pgsql-http
17.
▲
by
Chiron1991
3y ago
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: - authentication - user perm
18.
▲
by
Chiron1991
3y ago
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.
19.
▲
by
Chiron1991
3y ago
Their software may be bad, but they make huge amounts of money with it. That's all that matters from an economical standpoint.
20.
▲
by
Chiron1991
3y ago
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 references uniques
21.
▲
by
Chiron1991
3y ago
Not too familiar with go toolchains, but I bet there's a linter that will warn you about shadowing builtins.
22.
▲
by
Chiron1991
3y ago
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 syst
23.
▲
by
Chiron1991
4y ago
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).
24.
▲
by
Chiron1991
4y ago
That's the premium you pay for not having to deal with hosting and configuration. There are plenty of people - even in the tech community - who lack the knowledge to handle this themselves.
25.
▲
by
Chiron1991
4y ago
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, simply `dnf inst
26.
▲
by
Chiron1991
4y ago
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.
27.
▲
by
Chiron1991
4y ago
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 suffice.
28.
▲
by
Chiron1991
4y ago
Or simply use Django's builtin mechanism for that instead of poorly reimplementing it: https://docs.djangoproject.com/en/4.1/ref/templates/builtins...
29.
▲
by
Chiron1991
4y ago
Since ultimately anything you build in Django will eventually go into the ORM layer, it won't become anything unless the ORM is fully async. This release brings the async API to it, but: > Note that, at this stage, the underlying da
30.
▲
by
Chiron1991
4y ago
Personally I don't want a dumber phone. Smart phones have net-increased my quality of life, although that may be because I have always stood away from mainstream social media. However I want companies to loose their "we need to fu
More ›