Live data from Hacker News

It’s so hard to finish an idea that is not yours and is just suggested by AI

ssp.sh

121–130 of 138 posts

Re: It’s so hard to finish an idea that is not yours and is just suggested by AI

#121
post #31

I don't get the second brain thing. I don't keep a second brain, I just read and think a lot. I once did a physics masters and, when asked how to make steady progress, one of the professors (who had published with Paul Dirac no less) made the comment "well, my secret is that I think about physics all the time" I started practicing this for the stuff I'm interested in ... and the result is that I generate a lot of ide…

the second brain is very useful if it have instant search.

Re: It’s so hard to finish an idea that is not yours and is just suggested by AI

#122

Earlier quoted context omitted.

Delete the comments: I’ve gone on a tear with these recently because they’re nothing but trouble. The absolute least worst outcome is they chew up your token budget. But what tends to happen, and this is much more serious, is they poison future work and make further modification of the codebase more burdensome and error prone.

Why delete comments! Constrained grammar! Make invalid state unrepresentable.

Comments explain why the design is the way it is. If you later need to refactor the code, you probably won't remember the reasoning behind it and you don't know if it will be safe to remove or change parts of the design.

Re: It’s so hard to finish an idea that is not yours and is just suggested by AI

#123
post #46

Earlier quoted context omitted.

I've been whittling my way towards having Claude write zero comments in code. They're pretty much never helpful.

How do you do it?

I just delete them most of the time. But I keep my LLMs on a short leash. No 40000 line PRs.

Re: It’s so hard to finish an idea that is not yours and is just suggested by AI

#126
post #3

I have this problem even in codebases. Claude will work on something, and add detailed comments in which it extrapolates the from the design and confidently states intentions and decisions which aren't actually grounded in reality. Then, later sessions suffer when it reads back those hallucinations and treats them as canonical.

A computer cannot be held accountable. Therefore, a computer must never make a decision. -IBM, 1979 (paraphrased)

Re: It’s so hard to finish an idea that is not yours and is just suggested by AI

#127
post #53

Earlier quoted context omitted.

You could probably add linting rules to your tool of choice and tell claude that your lint tool has to pass.

but then no human generated comments allowed either, right?

Most lint tools allow exceptions if you add a special marker. I think even allow custom user exceptions.

E999: human generated comment :-)

Re: It’s so hard to finish an idea that is not yours and is just suggested by AI

#128
post #31

I don't get the second brain thing. I don't keep a second brain, I just read and think a lot. I once did a physics masters and, when asked how to make steady progress, one of the professors (who had published with Paul Dirac no less) made the comment "well, my secret is that I think about physics all the time" I started practicing this for the stuff I'm interested in ... and the result is that I generate a lot of ide…

Just wanted to say you're not alone. I've also never understood the appeal of a second brain. Most of our ideas are garbage, and we're often way too precious about our ideas

Re: It’s so hard to finish an idea that is not yours and is just suggested by AI

#129
post #127

Earlier quoted context omitted.

but then no human generated comments allowed either, right?

Most lint tools allow exceptions if you add a special marker. I think even allow custom user exceptions. E999: human generated comment :-)

But then the LLMs sees the syntax and is likely able to mimic it.

Re: It’s so hard to finish an idea that is not yours and is just suggested by AI

#130
post #3

I have this problem even in codebases. Claude will work on something, and add detailed comments in which it extrapolates the from the design and confidently states intentions and decisions which aren't actually grounded in reality. Then, later sessions suffer when it reads back those hallucinations and treats them as canonical.

Even worse to me is the tendency to not properly rewrite when prompted to change something in a text. It will always add to the document instead of replacing any obsolete information. The lengths it goes to to turn every document into a (useles) decision log is astounding and annoying.
Post reply on HN