Live data from Hacker News

Show HN: Continuous Claude – run Claude Code in a loop

github.com

61–66 of 66 posts

Re: Show HN: Continuous Claude – run Claude Code in a loop

#61

Earlier quoted context omitted.

Yes, but the act of writing code is an important part of figuring out what you need. So I’m left wondering how much of a prefect the AI can actually help with. To be clear I do use AI for some code gen. But I try to use it less than I see others use it.

Eh, I think my decades of experience writing my own code was necessary for me to develop the skills to be able to precisely tell the AI what to build, but I don't think I need to (always) write new code to know how to know what I need. Now, if the thing I am building requires a technology I am not familiar with, I will spend some time reading and writing some simple test code to learn how it works, but once I underst…

It’s not just about new tech. It’s about new businesses and projects.

Re: Show HN: Continuous Claude – run Claude Code in a loop

#62
post #47

Earlier quoted context omitted.

Have you tried GitHub Copilot? I've been trying it out directly in my PRs like you suggest. Works pretty well sometimes.

I find that ChatGPT’s Codex reviews - which can also be set up to happen automatically on all PRs - seem smarter than Copilot’s, and make fewer mistakes. But these things change fast, maybe Copilot caught up and I didn’t notice

No codex catches genuine bugs here that multiple reviewers would have overlooked, whilst copilot only comes with nitpicks. And codex does none of those, which is also great.

Re: Show HN: Continuous Claude – run Claude Code in a loop

#64
post #15

Earlier quoted context omitted.

im not saying OP did this, but I've actually had AI spit out some pretty stellar bash scripts, surprisingly

The emojis give it away

I got a couple bug reports years ago on https://github.com/jdavisclark/jsformat for not dealing unicode emojis correctly when used in variable names in javascript. people are weird.

Re: Show HN: Continuous Claude – run Claude Code in a loop

#65

Earlier quoted context omitted.

The emojis give it away

Nah - as you'll see from my work from a pre-coding agents age, I like emoji :) Here are receipts some from 2020: - https://github.com/AnandChowdhary/bsc-thesis - https://github.com/AnandChowdhary/slack-netlify-trigger - https://github.com/AnandChowdhary/analytics-icons

LLMs had to learn where to use emoji from somewhere, now we know who to blame ;)

Re: Show HN: Continuous Claude – run Claude Code in a loop

#66
post #10
post #5

> codebase with hundreds of thousands of lines of code and go from 0% to 80%+ coverage in the next few weeks I had a coworker do this with windsurf + manual driving awhile back and it was an absolute mess. Awful tests that were unmaintainable and next to useless (too much mocking, testing that the code “works the way it was written”, etc.). Writing a useful test suite is one of the most important parts of a codebase…

I find coding agents can produce very high quality tests if and only if you give them detailed guidance and good starting examples. Ask a coding agent to build tests for a project that has none and you're likely to get all sorts of messy mocks and tests that exercise internals when really you want them to exercise the top level public API of the project. Give them just a few starting examples that demonstrate how to…

I find most human agents can only produce high quality tests if you give them detailed guidance and good starting examples. :)
Post reply on HN