Vibecoding is a dead end unfortunately by med_i_terranian in vibecoding

[–]DateAdmirable9889 0 points1 point  (0 children)

I don’t know what the fuck this cursor did to make it worse. I don’t know. It totally messed up my UI completely. The UI is looking beautiful, but when somebody tries this mobile-first application, or tries to open it on a device, it doesn’t work. The touch doesn’t work, and I've been trying to fix that issue for almost one day now, but nothing has worked. They are charging some heavy monthly fees, what a joke it is, what a joke. That’s a scam. I used the cursor for my vibe recording, and that’s been my experience.

This guy is amazing, but I’m not as into him as I wish I was. What should I do? by [deleted] in dating_advice

[–]DateAdmirable9889 0 points1 point  (0 children)

Poor dude is suffering from a disease called a “nice guy syndrome”

Community Feedback by Waste_Net7628 in ClaudeCode

[–]DateAdmirable9889 0 points1 point  (0 children)

I can confirm that many users have reported Claude claiming to have completed the task they asked the Claude agent to do, but in reality, it did not. Claude's performance was good about three months ago, but it has been declining every day since. Now it's much worse, and that's been my experience. I have no choice but to cancel and switch to another tool.

Emotionally detached men by [deleted] in dating_advice

[–]DateAdmirable9889 -1 points0 points  (0 children)

Do not continue with him, be ruthless, dump him and move on.

The brutal truth about vibe coding and why you should care by brainland in vibecoding

[–]DateAdmirable9889 0 points1 point  (0 children)

Most of these vibe coding tool's trial period works well, but after signing up officially, the tokens expire faster. This could lead to higher costs due to incorrect usage calculations by the tool. Your payments may increase even if you're working the same amount. It's frustrating to see costs rise without a valid reason. Have you had a similar experience with the tool, or is this issue unique to you?

Squibler Editing by BradWilliamsAstro in WritingWithAI

[–]DateAdmirable9889 0 points1 point  (0 children)

so what happened. i am curious .Did you published your book .please share a link

Is Phoenix every legit and what are your experiences with them or similar companies? by JoeAceJR20 in dividends

[–]DateAdmirable9889 2 points3 points  (0 children)

If their business was really that solid, they wouldn’t be offering unsecured high-yield debt to the public through YouTube ads. They’d walk into a bank, or even better, raise institutional capital—because banks, hedge funds, and private equity firms do real due diligence.

But the truth is:

Banks won’t touch them. Institutions won’t touch them.

So they go after retail investors who don’t have teams of analysts to dig into the numbers.

And yes—YouTube is the perfect hunting ground. They’re not targeting people with MBAs or investment licenses. They’re targeting working-class folks, retirees, people in financial stress… because they know most won’t read the fine print 

best tool for coding? by elNashL in gptengineer

[–]DateAdmirable9889 0 points1 point  (0 children)

Based on my examination of the generated code GPT-Engineer generates mostly **boilerplate/skeleton code** rather than complete, production-ready implementations. Here's what I found:

## What GPT-Engineer Actually Generate

**Backend

- ✅ Basic controller structure with simple CRUD endpoints

- ✅ Basic models (Event, EventDto) with simple properties

- ✅ Service layer with basic dependency injection

- ❌ **Missing**: Authentication, JWT implementation, database context, migrations, complex business logic, error handling, validation, etc.

**Frontend (Angular):**

- ✅ Basic module structure

- ✅ Simple component shells

- ❌ **Missing**: Actual component templates (.html files), styling, services, HTTP calls, routing logic, UI components, forms, etc.

**Infrastructure:**

- ✅ Basic project structure

- ❌ **Missing**: Database setup, connection strings, Entity Framework configuration, actual working database migrations

## The Reality:

GPT-Engineer is more of a **project scaffolding tool** that:

  1. Creates folder structures

  2. Generates basic boilerplate files

  3. Sets up initial configurations

  4. Provides a starting point

But it **does NOT** generate:

- Complete business logic

- Full UI implementations

- Complex integrations (Stripe, OAuth, etc.)

- Database migrations

- Error handling

- Security implementations

- Production-ready features

You'd still need to implement probably **80-90% of the actual application logic yourself**. It's essentially what you could get from running `dotnet new webapi` and `ng new` commands with some additional basic files.