Viewing profile — more-coffee
more-coffee
HN member- Joined
- Thu, Nov 16, 2017, 12:11 PM UTC
- HN karma
- 102
- Public activity
- 40 items
- HN profile
- View on Hacker News ↗
About more-coffee
No profile information was provided.
Recent public activity
-
comment
Comment #48621781
Seems to me like the last thing you want to do is worry whether the LLM has a large enough context window to keep an eye on all duplicates. So I'd argue to deduplicate directly, wh…
-
comment
Comment #43231050
"karate chop flashlight" love this description! That's exactly why I've stayed with Motorola after my G5 just got too slow. I'm now on a Moto G Pro from 09/2020, it's getting fairl…
-
comment
Comment #42514495
This. I have argued with plenty of developers on why comments are useful, and the counter arguments are always the same. I believe it boils down to a lack of foresight. At some poi…
-
comment
Comment #41589689
And in a few million years, the next intelligent life form will examine remains of human texts, and wonder: with all the tools and knowledge they possessed, how could they not have…
-
comment
Comment #39789833
I'm trying difft for git now and I also really like it. One reason why I think it shouldn't be the default is that it hides whitespace differences. Maybe that's configurable though…
-
comment
Comment #39572796
It's a tad silly that they made this the default
-
comment
Comment #39330228
That is so obvious.. yet I've never thought to try this in 10 years of using git.
-
comment
Comment #36019905
For your mypy performance question, make sure it's using incremental mode [1] so that it can skip checks on code that didn't change. Yes, it is probably among the slowest of type c…
-
comment
Comment #35246005
And that's why I never trust/use x.0.0 releases because they must have missed something :)
-
comment
Comment #33798492
Depending on how much that equality check is deciding the application's performance, jsonifying to compare stuff is fairly ok. Just beware of any lists which you'll need to sort ma…
-
comment
Comment #32949950
I bet they also pulled out the "but the code will change and then the comments become invalid, or even gasp misleading"?
-
comment
Comment #32876156
I have done this too for familiarizing with large/complex codebases (i.e. for a C++ game engine). Afterwards I usually felt like it was a waste of time (and paper) as I didn't reac…
-
comment
Comment #28575390
Not sure how to contact you in case of possible bugs/problems, just going to drop a comment here. Was trying a bunch of "define:" queries and noticed something small; This works ht…
-
comment
Comment #26122792
I always have been and always will be against the walrus operator. I don't care how much anyone tries me to sell it on its elegance. There's just no _need_. It's already the #1 exa…
-
comment
Comment #24536903
Borg is supposedly a bit faster, restic supports a ton of backends https://github.com/restic/restic/issues/1875 Also restic does not allow to backup unencrypted. I haven't used bor…
-
comment
Comment #23959923
Yeah, I don't think the internet can be fundamentally altered to the extent that it could be regulated. Unless it somehow becomes a major priority for the world leaders - in which …
-
comment
Comment #23888346
You say you're human, but how can we know for sure?
-
comment
Comment #23888331
This entire thread is surrealistic and giving me Blade Runner vibes.. I love it.
-
comment
Comment #22520249
That's a good one. I do the same in code documentation. One line to very briefly summarize what that function/module does, , followed by a more detailed description.
-
comment
Comment #21898679
By packaging situation do you mean the user-side of things, i.e. how to install stuff separately of each other? For that I've had good experience using https://pypi.org/project/pip…
-
comment
Comment #21729992
Sorry for slow response, I don't check back here often enough. You're right about virtualenv. I don't realy use that anymore, the venv module added in 3.3 gets the job done. And th…
-
comment
Comment #21703146
Depending on the platform, virtualenv defaults to creating a symlink to the Python executable. You can override it with --copies, but then you have a new problem: updating the inte…
-
comment
Comment #20667668
- adapt a time management technique (i.e. pomodoro) to ensure frequent breaks from typing. Listen to it. Your code can wait. Grab some other objects during the breaks (lacrosse bal…
-
comment
Comment #20543517
> Admittedly, debugging is not perfect (at least not with my Docker Compose setup in PyCharm) A bit off-topic, but how so? It works fine for me using the setup described here https…
-
comment
Comment #20067900
Yes, there are more use cases I didn't knew of at the time. For example, optimizing revenue by calculating the optimal routing strategy for outbound calls. But data analysis wasn't…