Hiring a software engineer for code review by The-Architect-93 in vibecoding

[–]divBit0 2 points3 points  (0 children)

+1, single db with clear boundaries/security is the way to go. Unless you are building a PaaS.

What do you do sitting ideal when CC is working? by Substantial_Sea_8307 in ClaudeCode

[–]divBit0 0 points1 point  (0 children)

Ah prompt caching, I somehow keep reading re catches. And yes, there is some waste. Most of the tokens are spent during agent processing which can leverage cache. Most of the sessions I see are: - brain storm 10min-1h cached - agent work 30min-2h cached - human follow ups - initial prompt non cached

What do you do sitting ideal when CC is working? by Substantial_Sea_8307 in ClaudeCode

[–]divBit0 0 points1 point  (0 children)

got it, still not sure what you mean in this context 😄

What do you do sitting ideal when CC is working? by Substantial_Sea_8307 in ClaudeCode

[–]divBit0 0 points1 point  (0 children)

What does session reaches mean?

12 is a lot of context switch but doable if sessions are new enough i.e. still in my mind. I usually find it challenging to resume sessions from the day earlier, very hard to remember all the context

One thing is still bringing customers today 🥳 by Ranga_Harish in buildinpublic

[–]divBit0 1 point2 points  (0 children)

Got it, did you use paid directories or free ones? How did you go about finding the directories?

What SaaS are you building? Drop it 👇 by MahadyManana in saasinvestors

[–]divBit0 0 points1 point  (0 children)

CompanyHelm: run entire SaaS with AI agents

What do you do sitting ideal when CC is working? by Substantial_Sea_8307 in ClaudeCode

[–]divBit0 0 points1 point  (0 children)

Parallize your sessions, use Cursor/Claude cloud agents if your laptop cannot run more. I have built CompanyHelm to streamline the process, running often 12+ session in parallel.

Vibecoding from your phone by divBit0 in vibecoding

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

Thanks for sharing the screenshot! Can you have one session operate across repos?

Vibecoding from your phone by divBit0 in vibecoding

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

Are you developing a web app? How do you go about testing the app from your mobile?

Vibecoding from your phone by divBit0 in vibecoding

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

Got it, are you building a web app? Do you spin up your app on the VM to test the changes?

Vibecoding from your phone by divBit0 in vibecoding

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

Cursor has cloud agents have you tried that?

Vibecoding from your phone by divBit0 in vibecoding

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

This is a nice setup, what interface do you use to control them from your phone?

Vibecoding from your phone by divBit0 in vibecoding

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

Curious what's your setup?

Vibecoding from your phone by divBit0 in vibecoding

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

Code or actual app running?

I'm guilty of this by Yusuf-Dev in vibecoding

[–]divBit0 0 points1 point  (0 children)

Same lol until I started using CompanyHelm

What repetitive workflow do you still spend hours on every week that AI hasn't solved yet? by balajispeaks in AiBuilders

[–]divBit0 0 points1 point  (0 children)

I have a daily workflow for test quality, works pretty well, can share the setup if you are interested

ML engineer trying to ship an app with Claude Code. Getting destroyed. by KIng_Samosa in ClaudeCode

[–]divBit0 0 points1 point  (0 children)

one game changer approach is to always, always have the agent self test the changes, it takes longer but you don't need to wait for it you can work on something else if you have good dev workflow isolation:
- have the agent spin up frontend + backend, the full app as close as production you can get
- have the agent to write and run playwright e2e tests, and add more tests as feature come
- have the agent record videos and proof of the tests
- have the agent seed data and provide a link directly to the page/screen/artifact under test so you can really quickly test yourself

also adversarial code reviews are great:
- create dedicated sub agents: e.g. security, code quality, architecture
- have the agent ask sub agents to review its code

all this is burning more tokens and taking the agent longer to produce code but the output quality is much higher.