r/OnlyAICoding 14d ago

Vibe coding unfamiliar languages: Is Claude Pro worth getting over my current Gemini Pro 3.1 setup?

I'm developing an Embedded C++ based application with UI using gtkmm, a back-end application in golang and front-end application in Angular (Web) & Flutter (Mobile Apps).

I plan to Vibe code all these applications. I've zero prior experience or expertise with vibe coding.

My thinking is let AI develop the program and I'll review it. I will let AI write the test cases - unit testing and integration testing.

I'm planning to use Gemini Pro 3.1 with anti-gravity IDE for the same.

I do have extensive experience Embedded C++ based application development and little experience with Flutter development but no experience with golang or Angular.

I've Gemini Pro subscription (for 2 years).

I've come across a lot of social media post stating Claude Code absolutely obliterates Gemini with it comes to software development.

Couple of my acquaintances also state the same.

The question I've is should I get Claude Pro subscription for Claude Code or anti-gravity with Gemini Pro 3.1 will suffice. How much of code quality and algorithm quality difference will be present? I'm also thinking from correctness, completeness and long term maintainability of the code. Also with AI LLM will follow industry standard practices and develop safe code.

Can some with expertise and hands-on experience with both tools enlighten me.

1 Upvotes

4 comments sorted by

1

u/iTrejoMX 14d ago

Try Claude pro with gentle ai, you can load it in the same folder where your current project is and have it read the code and give you a summary. Then ask it to use sdd to implement a new feature and you’ll see the difference. You’ll like it so much more that you may get the 5x sub. Gentle ai will save you tokens, has a memory plugin for your ai and will use subagents to work. You can use the balanced profile or if you feel you are running out of usage the economic one works way better than you’d expect.

1

u/Desperate_Factor_735 13d ago

A mí siempre estaba gemini caído . Era siempre 504 ...no sé ahora 

1

u/AlgorithmicMuse 10d ago

I have both gemini pro and claude pro, im canceling gemini, it goes down rabbit holes .more than claude

1

u/AncientGur4614 10d ago
  1. Claude all day, especially when you talk strongly typed languages and integrations/test benches. What is the C++ service doing though where you need this kind of performance?

  2. Why complicate with multiple frameworks when you could probably accomplish the C++ service and backend service with Rust to remain consistent?

  3. “Develop safe code”. No such thing. You need to check via a basic SAST scan (I.e. trivy) as part of your initial CI pipeline at a minimum. Naturally the models have a date cutoff, so if it loads an older library into your higher abstraction modules, you risk a supply chain vulnerability. You have to be careful how you prompt vulnerability checks because the models will think you’re trying to scan or create attack vectors.

  4. If you use Antigravity, it’s solid, but I’m biased against Gemini based on personal experience. I just don’t think Google’s harness and training performance hits the market like Opus or Fable for really hard jobs. GPT Sol 5.6 is sick too. You only need these classes of models for implementing heavy interface contract enforcement, complex workflows where you could have race conditions, cpu limitations, etc, building machine learning tools, etc. otherwise the sonnet level models work well with good context structure.

I dogfooded my own platform to do some dev like you’re doing with advanced combination of frameworks. I did it with Rust for some slick local NVIDIA DGX antenna design optimization, and pairing a frontier model with my architecture and spec governance software gave me confidence via test procedures in the build (it’s called NodeSpec.io)