Viewing profile — clawlor
clawlor
HN member- Joined
- Mon, Jul 02, 2012, 7:41 PM UTC
- HN karma
- 44
- Public activity
- 26 items
- HN profile
- View on Hacker News ↗
About clawlor
No profile information was provided.
Recent public activity
-
comment
Comment #48764530
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 …
-
comment
Comment #47617324
> 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…
-
comment
Comment #44310622
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 …
-
comment
Comment #43081484
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 t…
-
comment
Comment #39679959
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 o…
-
comment
Comment #36031114
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…
-
comment
Comment #36020735
> [...] when it would just be ‘class Foo ’ in almost any other language. Good news on that front at least. PEP-895 [1] removes the need for `T = TypeVar(...)` boilerplate in Python…
-
comment
Comment #35801712
Django also prepends the app name, giving you e.g. `auth_user` instead of `user`, side-stepping the likely collisions with reserved SQL keywords.
-
comment
Comment #35266582
> 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…
-
comment
Comment #34731682
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 im…
-
comment
Comment #34539058
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 on…
-
comment
Comment #32913681
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 dep…
-
comment
Comment #32488430
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 …
-
comment
Comment #31613790
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…
-
comment
Comment #31581066
"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 creatin…
-
comment
Comment #31261523
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 prob…
-
comment
Comment #30724754
I don't know of any books, but I've found this Pycon talk to be useful: https://www.youtube.com/watch?v=pMgmKJyWKn8
-
comment
Comment #30648242
Most DAWs work like that, it's the expected interface for the target audience.
-
comment
Comment #28279701
> 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 month…
-
comment
Comment #26743858
Unfortunately, the pyproject.toml format still doesn't support editable installs. So, setup.py is still required if you need this feature.
-
comment
Comment #25949911
Dead at the moment. Tamale King 1, space ballers 0.
-
comment
Comment #25528406
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 …
-
comment
Comment #22997532
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.product…
-
comment
Comment #20868565
Pymetrics | Android Engineer | New York, NY | https://pymetrics.workable.com/j/12B13613ED Pymetrics | Senior Cloud Infrastructure Engineer | New York, NY | https://pymetrics.workab…
-
comment
Comment #19918636
``@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 ..…