Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
dcherman
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
dcherman
5mo ago
You need to define how much muscle mass you expect to lose. The entire idea behind the bulk/cut cycle is that you want to net gain muscle after a full diet cycle. It's also not borderline impossible to maintain the majority of yo
2.
▲
by
dcherman
6mo ago
I think the gist of what we're debating is principle of least privilege - give the LLM the fewest privileges needed to accomplish the task and no more, that way you avoid issues like leaking credentials. The approach you're propos
3.
▲
by
dcherman
6mo ago
You can make the identical argument for the CLI tool. Allow kubectl, deny everything else.
4.
▲
by
dcherman
6mo ago
The same permissions model that works for other tools. In Claude Code terms, allow Bash(kubectl:*). Deny Read(**/.kube/**). That allows kubectl access without allowing the tool to read ~/.kube directly. Your argument is th
5.
▲
by
dcherman
6mo ago
How so? Let's use a common CLI tool as an example - kubectl. Config is generally stored in ~/.kube in a variety of config files. Running `kubectl config view` already redacts the auth information from the config. LLMs could in
6.
▲
by
dcherman
1y ago
Can't recall if I played on your servers, but I know I played an unreasonable amount of CS 1.6, including on a bunch of WC3 servers when I wasn't playing on ESEA. If you happen to remember someone going by `nJs` - hi!
7.
▲
by
dcherman
1y ago
Adjusted for inflation?
8.
▲
by
dcherman
1y ago
The point about coverage results is an important one to understand. Something that I like to say when discussing this with other folks is that while high code coverage does not tell you that you have a good test suite, low code coverage d
9.
▲
by
dcherman
1y ago
There's another alternative - debug in CI itself. There's a few ways that you can pause your CI at a specific step and get a shell to do some debugging, usually via SSH. I've found that to be the most useful.
10.
▲
by
dcherman
3y ago
I generally would agree, but be careful. You don't know what you don't know, and that could be dangerous. As one example, I would guess that the vast majority of folks are not familiar with what an MWBC is and how they work, how
11.
▲
by
dcherman
5y ago
You can also use a deploy key. That's how I do it while avoiding adding a PAT to a shared repo
12.
▲
by
dcherman
5y ago
Random aside, were you at KubeCon a couple years ago chatting with Sugu at the whole conference party in San Diegi? If so, hi! I was crazy out of my depth, but listening to folks that know this stuff better than I ever will was one of the
13.
▲
by
dcherman
5y ago
Agreed, was typing a similar comment, however yours expressed that idea better than mine. Consider that this pattern contains N different properties that renders N different components (plus the default case), I don't know why you woul
14.
▲
by
dcherman
6y ago
Not only that, but it really illustrates that even well-known, famous engineers can start contributing to a project with simple pull requests that just rename variables or add comments to code for clarity. Not every pull request needs to be
15.
▲
by
dcherman
7y ago
It's not just the raw size of the image, but also about what the image includes; a smaller image often reduces the potential attack surface because vulnerable things just aren't there . That's one of the major rationales beh
16.
▲
by
dcherman
8y ago
I agree. While you can accomplish some really interesting things with Proxy, I think that this article presents some poor examples that are actively harmful. I don't expect `delete` to be O(N) (actually worse if you consider the `ownKe
17.
▲
by
dcherman
8y ago
What you're saying is that comparing the existing build time to the new one, the existing one is about 70% slower. You can also phrase it as comparing the new build time to the existing one, it's about 42% faster. Both are true s
18.
▲
by
dcherman
8y ago
This right here is why I'm a large proponent of using ML/AI for computer assisted diagnosis. Unlike a doctor, a computer won't forget about a possible diagnosis. I'm not saying to replace doctors with ML, but it seems l
19.
▲
by
dcherman
8y ago
Absolutely! I come from a historically Microsoft shop, and the lack of this was by far the biggest barrier when initially learning PostgresSQL since I was still in the mindset of designing stuff as I would in Sql Server.
20.
▲
by
dcherman
8y ago
So do you not have automated tests that run cross browser? If so, what's your method for doing so?
21.
▲
by
dcherman
9y ago
So what do you think your result variable contains in the event that the promise is rejected? Is this semantically equivalent to try/catch?
22.
▲
by
dcherman
9y ago
Hah, was just talking about this a few days ago. I was at work, maybe around 24-25 years old, and couldn't figure out why all of the supposedly high def screens in our conference rooms were so bad, but I could still read them without
23.
▲
by
dcherman
9y ago
Define expensive. 200$? That's the cost of the plumber's time, and now I've got that tool forever. That and I've gained knowledge and know how to fix or build something that I didn't before which is something I t
24.
▲
by
dcherman
9y ago
They did, but quite honestly they should have just renamed the framework; Angular 1->2 is less of an upgrade and more of a completely new framework that happens to share the same name. It was a mistake imo, but one they made because Ang
25.
▲
by
dcherman
9y ago
This post is entirely going to be based on questions that I would expect an experienced developer that I was interviewing to be able to have a conversation on. This is not a starting point for a beginner. Understand the language and how it
26.
▲
by
dcherman
9y ago
I've also never found TDD to really be very beneficial except for all but the most trivial utility libraries. Most of the time, I have an idea of where I want to go, but not necessarily exactly what my interface will look like. Writin
27.
▲
by
dcherman
9y ago
UBI does not work mathematically. I posted this a while back, so I'm just copying and pasting from an older response: Simple back of the napkin math is that based on the 2013 census, we have 242,470,820 adults living in the US. If we
28.
▲
by
dcherman
9y ago
Nope! You'd be surprised who it might affect. Families with a few kids (lots of tax credits rather than deductions) that own their own home and have a decent salary could potentially owe the AMT. If you make more than the exemption a
29.
▲
by
dcherman
9y ago
The AMT calculation is tedious as hell. Considering that the yearly cost for H&R Block is something like 20$, it's well worth the money just to avoid needing to do that by hand, and that's not even taking into account all of
30.
▲
by
dcherman
10y ago
Then you're shipping the entire (or at least large pieces of) language runtime to the client since presumably, you'd need to compile that to WASM as well.
More ›