Live data from Hacker News

Claude Code Unleashed

ymichael.com

81–90 of 119 posts

Re: Claude Code Unleashed

#81

Am I the only person who hasn't found the time, money, permission from work, resources, etc to be able to produce software like this? I'm still at my corporate 9-5 where they're still making the decision on whether we're allowed to use copilot yet.

I am in a situation where everyone uses it but is ashamed to admit it. I often spot people secretly glancing at GH copilot chat or Chat GPT.

Its the Ozempic of programming!

Re: Claude Code Unleashed

#82
I've been using Claude Code for weeks now and I've found it to be fantastic at writing / debugging tests unit / integ tests that don't require external context. Still needs some guidance of course but it's been a huge productivity improvement.

Unfortunately, I can't say the same for other types of tests like E2E tests. It makes sense why: CC doesn't have access to all of the context to determine what's going wrong. During an E2E test suite run it can't pause to look into the console, view whats on the page, look at the backend logs, etc. I tried writing some utilities to snapshot and log the state of parts of the page when a test failed and this did help a bit, but not enough to get the same productivity boost for other types of tests.

Has anyone had any luck with this? Any strategies to share?

Re: Claude Code Unleashed

#83

It's just arbitrage. You aren't a programmer. The basic nature of your work is not serving users with better software, but buying $1000 of currency for $200.

Just as a tractor operator isn't truly a farmer if he doesn't engage in heavy manual labor. Who does he think he is, traversing the fields with a machine that merely converts diesel into grain?

Re: Claude Code Unleashed

#84
post #38

Earlier quoted context omitted.

If there is barely any code in those repos that you wrote, how can you license them under the GPL? You don't hold the copyright for it. This genuinely isn't an attack, I just don't think you can? The AI isn't granted copyright over what it produces.

I have not thought about it, it is one of the things on my list. But my understanding was that developers copy code from Stack Overflow, as an example. It is not "my" code but I still am the author. Or lets say I ask my friend to add code and she/he simply passes over the code to me. I author it in my name. The "barely" part may be important and I would like to know what others are doing.

I don't think you can just willy-nilly copy code from StackOverflow and sign it with your name. It's license forbids it. You also can't just sign your friend's code with your name unless she explicitly gives you permission. In both cases you are not the author of that code.

I get that people do it anyway but I guess it's kind of a grey-area because it's hard to tell after the fact that some snippet has been copied from SO.

Re: Claude Code Unleashed

#85

It's just arbitrage. You aren't a programmer. The basic nature of your work is not serving users with better software, but buying $1000 of currency for $200.

This narrative has been pushed hard lately that $200 a month is a “bargain” because it’s “worth” $1000. If that’s true, then these companies will be running out of venture capital money very soon. Then their only recourse will be to sell themselves or insert ads into LLM responses then this will be a total shit show.

It’s easy to see how trivial it will be to have an adwords type operation where output tokens are replaced with paid values.

For example:

this_varable_is_sponsored_by_starbucks = 42

Re: Claude Code Unleashed

#86

I am using Claude Code full-time for about 6 weeks* with the $20/month subscription. I am trying out building different products from ideas I have already had. It frees me a lot of time to talk about my founder journey. I have not needed multiple agents or using CC over an SSH terminal to run overnight. The main reason is that LLMs are not correct many times. So I still need time to test. Like run the whole app, or c…

I'm actually building something to fix this.

The biggest bottleneck for background agents is code review.

I'm building a tool that can give the first pass so the result of the background agent isn't garbage most of the time.

Re: Claude Code Unleashed

#87
There's a lot of arguments being made here that background agents aren't effective because code review is the bottleneck.

I built a tool that understands the codebase and can give the agent the first pass. So you don't need to spend mental bandwidth to review mountains of code.

If anyone is open to trying - email is in profile

Re: Claude Code Unleashed

#88

I need an open-source version of this. I’m not exactly comfortable exposing all of my code to some external service.

If you watch the following 'til the end https://youtu.be/bUBF5V6oDKw (from the AI Engineer conf, by the creator of Docker), you can I think find something satisfactory within those lines.

Thank you, that was an awesome talk!

Re: Claude Code Unleashed

#89
post #45

Earlier quoted context omitted.

Looking at ChatInterface.tsx/handleSendMessage in https://github.com/pixlie/Pixlie/commit/3c0bd23ff16c0fcdac80... , I'd have rejected this if it came up in a PR and would not consider this production quality software. Rewriting it to something sane would be harder and more time consuming than just writing a decent implementation upfront.

What would you change in that function?

It does a lot under a rather weird name. The fetch should be behind a client facade elsewhere, as should the response handler. I'd also shorten the name.

Probably more that would irk me if I looked closely.

Re: Claude Code Unleashed

#90
post #45

Earlier quoted context omitted.

Looking at ChatInterface.tsx/handleSendMessage in https://github.com/pixlie/Pixlie/commit/3c0bd23ff16c0fcdac80... , I'd have rejected this if it came up in a PR and would not consider this production quality software. Rewriting it to something sane would be harder and more time consuming than just writing a decent implementation upfront.

This may not be the best example, but it’s worth considering: if the code is never meant to be reviewed by humans, and it’s an ephemeral implantation detail that will only ever be read & edited by machines, do certain traditional measures of software quality even matter anymore inside the module boundary?

If no one checked it, no one is accountable. Is that how you do business? Or is that how only a few corporations are able to do business?
Post reply on HN