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?
It’s so hard to finish an idea that is not yours and is just suggested by AI
61–70 of 88 posts
Re: It’s so hard to finish an idea that is not yours and is just suggested by AI
#62I 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.
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.
Re: It’s so hard to finish an idea that is not yours and is just suggested by AI
#63I 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.
```
## Comments
Use comments extremely sparingly. Most comments should be at the request of the user. When something warrants a comment, keep it to one or two lines: what the code does and why it's necessary. No background narrative, no replaying the investigation or failure mode, nothing a test name or the commit message already says. Applies to specs too. If a comment needs a paragraph, make the code clearer instead.
```
The comments Claude was leaving got absolutely out of control. Just lines and lines of LLM drivel that was barely intelligible and not remotely relevant to what a code comment should be used for.
Re: It’s so hard to finish an idea that is not yours and is just suggested by AI
#64I 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.
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.
Re: It’s so hard to finish an idea that is not yours and is just suggested by AI
#65Re: It’s so hard to finish an idea that is not yours and is just suggested by AI
#66Earlier quoted context omitted.
but then no human generated comments allowed either, right?
I'd do this by only running the linter locally and using this as a custom rule for the LLM, but I need to think about it a bit harder.
You may have to write your own linter for that specifically.
Re: It’s so hard to finish an idea that is not yours and is just suggested by AI
#67Could anyone enlighten me as to why to use Obsidian in one's daily life ? I have a dozen ideas popping a day and nothing comes close in terms of ease than a paper notebook for capturing and some apple notes equivalent for storage. Used to have a Notion but all the "Second Brain" movement seems...fishy to me ?
Re: It’s so hard to finish an idea that is not yours and is just suggested by AI
#68For the Original title, I wish they added the qualifier "generative" for AI. You may well use e.g. embeddings to semantically search through your notes, and there are only gains in that.
Having an AI write notes for you is however of course completely pointless. The act of writing notes is 80% of the reward.
Re: It’s so hard to finish an idea that is not yours and is just suggested by AI
#69Having an AI write notes would only produce text, but the actual notes are mostly a side effect — an important one, but not the most important one in note taking.
I think hard about related notes, and peek at them when linking, sometimes finding interesting one-off connections. This makes me think further and sometimes expand the topics. Automated linking would not make me think, it wouldn't make me learn. It would just produce yet another pile of information that's already available online anyway.
Re: It’s so hard to finish an idea that is not yours and is just suggested by AI
#70I 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…