Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
clawlor
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
clawlor
3mo ago
Max representable frequency is half the sampling rate (nyquist-shannon theorem), which is still a bit above normal but IIRC the extra headroom has something to do with eliminating aliasing
2.
▲
by
clawlor
6mo ago
> Nvidia’s Auto Shader Compiler is distinct from Microsoft’s Advanced Shader Delivery system, which lets developers generate databases of precompiled shaders that can be downloaded ahead of time to align with a player’s specific system.
3.
▲
by
clawlor
1y ago
There are variants of CRDTs where each change is only a state delta, or each change is described in terms of operations performed, which don't require sending the entire state for each change.
4.
▲
by
clawlor
2y ago
Agreed, this is quite annoying, but there is a workaround. You can tell blame to ignore commits like this, through a config option blame.ignoreRevsFile or similar CLI option. Not the most convenient perhaps, but it’s something. I believe Gi
5.
▲
by
clawlor
3y ago
It's more of a mouthfeel thing than a thickener. Gelatin, in the amounts found in a good stock, will still be quite liquid when the stock is at serving temperature, but will sort of coat your mouth with flavor even when the broth hasn&
6.
▲
by
clawlor
3y ago
Some CI systems do this automatically for PR builds, e.g. TravisCI: > Rather than build the commits that have been pushed to the branch the pull request is from, we build the merge between the source branch and the upstream branch. http
7.
▲
by
clawlor
3y ago
> [...] when it would just be ‘class Foo<T>’ in almost any other language. Good news on that front at least. PEP-895 [1] removes the need for `T = TypeVar(...)` boilerplate in Python 3.12. [1] - https://peps.python.org&#
8.
▲
by
clawlor
3y ago
Django also prepends the app name, giving you e.g. `auth_user` instead of `user`, side-stepping the likely collisions with reserved SQL keywords.
9.
▲
by
clawlor
3y ago
> Never deploy a site into production with DEBUG turned on. - https://docs.djangoproject.com/en/4.1/ref/settings/#debug Setting DEBUG = False doesn't cause in Internal Server Issue. The issue is
10.
▲
by
clawlor
4y ago
New (v5) isort doesn't move imports to the top of the file anymore, at least not by default. There is a flag to retain the old behavior, but even then I don't think it will move imports from, say, inside a function body to the top
11.
▲
by
clawlor
4y ago
The leading double underscore functions differently from a leading single underscore in this case: > Any identifier of the form __spam (at least two leading underscores, at most one trailing underscore) is textually replaced with _classn
12.
▲
by
clawlor
4y ago
I upgraded from a 970 to a 2080 a while back and have been very happy with it. Still plays modern games at good frame rates, though not with max settings. Obviously your choice depends greatly on budget + availability of hardware, as well a
13.
▲
by
clawlor
4y ago
I just tried this for the first time a few weeks ago. In Colombia they call it chicha de piña. The stuff I had wasn't bottled, just left on the counter in a large covered crock to ferment for a few days. Sweetened with panela and some
14.
▲
by
clawlor
4y ago
Most of the places I've lived have vented stove air outdoors. I've had the kind you're referring to as well, but outdoor venting hasn't been uncommon in my experience. Maybe it's a regional thing; I'm on the ea
15.
▲
by
clawlor
4y ago
"Practical Django Projects" by James Bennett was very good, but was released back for Django 1.1 and I don't know how much it's been updated since. Walks the reader through creating the prototypical Django application: a
16.
▲
by
clawlor
4y ago
It's still a "market" so long as there are supply and demand, regardless of how frequently a given participant is conducting transactions in that market. The housing market is probably a good example. Many participants probab
17.
▲
by
clawlor
5y ago
I don't know of any books, but I've found this Pycon talk to be useful: https://www.youtube.com/watch?v=pMgmKJyWKn8
18.
▲
by
clawlor
5y ago
Most DAWs work like that, it's the expected interface for the target audience.
19.
▲
by
clawlor
5y ago
> why not just give every 5th person vaccinated in some large center a link and a code to enter observed side effects after 1 day, 3 days, week, and a month, and then maybe 3 months after into some website. The CDC ran such a study. IDK
20.
▲
by
clawlor
5y ago
Unfortunately, the pyproject.toml format still doesn't support editable installs. So, setup.py is still required if you need this feature.
21.
▲
by
clawlor
6y ago
Dead at the moment. Tamale King 1, space ballers 0.
22.
▲
by
clawlor
6y ago
I started playing around the same time as you, and also hold the pick "incorrectly", using both the index + middle finger. It's only been in the last year or so that I've made any sort of effort to use just the index fin
23.
▲
by
clawlor
6y ago
Author claims frustration with Django's settings, only to re-implement it almost exactly. How is ENV=production any different from DJANGO_SETTINGS_MODULE=myproject.settings.production? Sure, by default Django may create a single settin
24.
▲
by
clawlor
7y ago
Pymetrics | Android Engineer | New York, NY | https://pymetrics.workable.com/j/12B13613ED Pymetrics | Senior Cloud Infrastructure Engineer | New York, NY | https://pymetrics.workable.com/j/18CE7639
25.
▲
by
clawlor
7y ago
``@enum.unique`` will raise a ValueError if you accidentally include the same value twice in an enum definition: In [21]: @enum.unique ...: class Animal(enum.Enum): ...: DOG = 1 ...: CAT = 2
26.
▲
by
clawlor
8y ago
Those cookie prompts are a result of EU Directive 2009/136/EC, which predates the GDPR by 7 years.