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.
Claude Code Unleashed
81–90 of 119 posts
Re: Claude Code Unleashed
#82Unfortunately, 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
#83It'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.
Re: Claude Code Unleashed
#84Earlier 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 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
#85It'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.
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
#86I 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…
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
#87I 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
#88I 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.
Re: Claude Code Unleashed
#89Earlier 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?
Probably more that would irk me if I looked closely.
Re: Claude Code Unleashed
#90Earlier 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?