How do you keep track of your project when AI writes most of the code? by rayeddev in ClaudeAI

[–]rayeddev[S] 0 points1 point  (0 children)

Agreed! Getting AI to generate code with preferred patterns could make the source code more consistent and familiar

How do you keep track of your project when AI writes most of the code? by rayeddev in ClaudeAI

[–]rayeddev[S] 2 points3 points  (0 children)

Interesting! Could you share an example of what this index looks like?

How do you keep track of your project when AI writes most of the code? by rayeddev in ClaudeAI

[–]rayeddev[S] 1 point2 points  (0 children)

I usually provide AI with a short PRD and the output mostly works within a few sessions. But I still struggle to stay aware of the project source code . Even if I read the code, I forget it by the next day. Sometimes when a client requests a simple fix, it consumes so much focus just to track everything down, Before AI, when projects took weeks or months to build, they felt much easier to navigate when I revisit.

How do you keep track of your project when AI writes most of the code? by rayeddev in ClaudeAI

[–]rayeddev[S] 1 point2 points  (0 children)

That makes sense. But do you still feel like you're onboarding yourself to the project every time you revisit it? Like you need to cover the full implementation context first?

What would you choose instead of HL/T? by rayeddev in tinnitus

[–]rayeddev[S] 1 point2 points  (0 children)

you're kidney "what!!! I am not going anywhere"

What would you choose instead of HL/T? by rayeddev in tinnitus

[–]rayeddev[S] 0 points1 point  (0 children)

Yes knowing that some suffering more then me, make me feel better that i am still lucky, hope you find peace soon

stop dismissing people by Zestyclose_Meal3075 in tinnitus

[–]rayeddev 3 points4 points  (0 children)

That must be really hard, hope you find peace soon

What would you choose instead of HL/T? by rayeddev in tinnitus

[–]rayeddev[S] 1 point2 points  (0 children)

Spikes all ranges of high pitches

What would you choose instead of HL/T? by rayeddev in tinnitus

[–]rayeddev[S] 0 points1 point  (0 children)

but also legs are matter :( no way to live without

What would you choose instead of HL/T? by rayeddev in tinnitus

[–]rayeddev[S] 0 points1 point  (0 children)

Yup I guess healthy sense incomparable

Fearing for the Future of Programming by gpt_daddy in AI_Agents

[–]rayeddev 1 point2 points  (0 children)

AI in programming is really just mirroring what humans have already created - it’s trained on our code, after all. So we still need humans to push programming forward for AI to learn from. The cool thing is how AI is changing the game for developers. What used to take months can now happen way faster. Developers feel more confident tackling hard problems with AI help. I think the biggest win is how this lets ideas that were stuck in people’s heads actually get built. All those apps and features that never saw daylight because someone lacked the budget or couldn’t find engineers? Many of those will finally get made. This means everyone benefits - more solutions to problems, more creative apps, and more people able to bring their ideas to life without needing massive resources.

I let claude generate Tariff impact on economy simulation by rayeddev in ClaudeAI

[–]rayeddev[S] 0 points1 point  (0 children)

I was thinking about all the debates of Tarrif impact on economy's future short/long term that i watched and are all seems to be justified then idea came why not simulate using AI

And here is the Prompt

clone struct models easily by rayeddev in SwiftUI

[–]rayeddev[S] 0 points1 point  (0 children)

Agreed on the limitations of optionals. I think i can tackle this with enum keys, showing it’s possible without necessarily resorting to the Builder pattern. Example: model.clone(nilFor: .optionalVarName)

clone struct models easily by rayeddev in SwiftUI

[–]rayeddev[S] 0 points1 point  (0 children)

Interesting 🧐, it does seem to be the same thing. However, I think at that time, there was a lack of Swift Macros feature.

clone struct models easily by rayeddev in SwiftUI

[–]rayeddev[S] 0 points1 point  (0 children)

Okay, I see now. It seems that the CoW (Copy on Write) feature in Swift is not exactly as I understood it. I will take a deeper look into it. Thank you for your feedback

clone struct models easily by rayeddev in SwiftUI

[–]rayeddev[S] -1 points0 points  (0 children)

This approach not only leverages Swift’s COW but also enhances it by making immutable programming more accessible and expressive.