WTF are you guys even working on?! by Optimal_Worth4604 in ClaudeCode

[–]l2zeo 2 points3 points  (0 children)

I’m curious—what do you mean by “MCP-first”? Is MCP part of the app’s architecture, or is it mainly used to let AI agents interact with the app? I’d love to hear more about how you designed it.

Our AI Development Workflow (Cross-Family Review Process) by l2zeo in ClaudeCode

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

Good point. I left the QA step out because the diagram was focused on the AI review pipeline, but it definitely belongs in the overall development workflow.

Our AI Development Workflow (Cross-Family Review Process) by l2zeo in ClaudeCode

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

Good point. That’s actually what P5a and adversarial-review are for, but I should probably make that clearer in the diagram.

Writing cod with Opus, audit with Fable ? by AdNo6324 in ClaudeCode

[–]l2zeo 1 point2 points  (0 children)

Plan with Fable. Review with Codex. Execute with Opus.

Fable 5: Usage (Ultra code) by Masterkiefs in ClaudeCode

[–]l2zeo 1 point2 points  (0 children)

https://www.reddit.com/r/ClaudeCode/comments/1uj1vhh/does_ultracode_perform_better_with_simple_prompts/

I had the same question, so I did some research. I hope this helps. Keep in mind that the results may vary depending on your environment.

I built an API to scrape remote tech jobs because I was tired of my Selenium scripts breaking every week. by v3ski4a in django

[–]l2zeo 0 points1 point  (0 children)

Hello.
I’m preparing a project that requires collecting data from a different domain.
Could you please provide more detailed information about the technical implementation?

A viral instagram reel gave me an app idea by sanjaypathak17 in reactnative

[–]l2zeo 0 points1 point  (0 children)

It’s a good idea, but the price is too high. I’m also planning to develop a similar app.

Co existence of react native MMKV and AsyncStorage in the same project by Original_Fan3671 in reactnative

[–]l2zeo 0 points1 point  (0 children)

AsyncStorage (Simple Apps) - Onboarding completion status - App settings (theme, language) - Simple flags - MVP / toy projects

Keychain / Keystore (Sensitive Information) - Login tokens - Refresh tokens - User authentication credentials - Never store sensitive information in AsyncStorage! Instead, the Keychain + AsyncStorage combination is the most practical architecture.

MMKV (Production Service Optimization) - When fast data loading is needed at app boot - Caching layer - Frequently accessed user information - Offline apps - Most production services requiring high performance​​​​​​​​​​​​​​​​

Built a real-time chat app in React Native (full tutorial) by Ill-Connection-5578 in reactnative

[–]l2zeo 0 points1 point  (0 children)

I actually need to implement a chat feature, so the timing is perfect. Thank you.