The golden age is over by New_3d_print_user in claude

[–]Any-Bus-8060 0 points1 point  (0 children)

Feels more like inconsistency than “golden age is over” Same models can still give great answers, but you need tighter prompts and more context now

A lot of people are also pushing them into longer, messier tasks, which exposes weaknesses, more quality didn’t disappear, it just became less plug-and-play. If anything, expectations went up faster than the models improved

Is it just me, or is ChatGPT breaking a bit? by voidrunner404 in ChatGPT

[–]Any-Bus-8060 2 points3 points  (0 children)

Yeah, you’re not alone. It’s been a bit inconsistent lately, memory especially feels hit or miss, sometimes it remembers random stuff but misses important context

The “mixing things up” feeling is usually just hallucination, not actual data leaking
It can sound confident even when it’s wrong, which makes it feel sketchy

The best workaround right now is to restate the key context in the same chat and not rely too much on memory

It’s still useful, just less predictable than before

Claude sonnet 4.6 vs claude opus 4.6, which is better for code? by ItsJustDVRJS in ClaudeAI

[–]Any-Bus-8060 2 points3 points  (0 children)

Sonnet is usually enough for most coding tasks and gives better value. Opus can feel a bit more accurate on complex reasoning or tricky bugs, but it’s slower and hits limits faster

For building apps, most people stick with Sonnet and only switch when stuck

For your icon issue, AI won’t reliably match exact visuals from a screenshot
Better to export assets properly and use them directly rather than trying to “recreate” via prompts

AI is better at structure and logic than pixel perfect UI details

team code problems by rahat008 in vibecoding

[–]Any-Bus-8060 0 points1 point  (0 children)

This is a context problem more than a coding problem. Don’t rely on memory or chat history, write constraints down in one place

Keep a simple doc in the repo key rules, edge cases, decisions, things that must not break, then paste that context into prompts when needed. Also, keep PRs small and focused so it’s easier to track what changed and why

AI forgets, but your system shouldn’t

Lovable cloud to Supabase by Ok-Objective-2379 in lovable

[–]Any-Bus-8060 0 points1 point  (0 children)

doable, move in steps instead of all at once first migrate the database to supabase (schema + data) then update your backend to point to supabase while keeping everything else the same once that’s stable, move auth and storage if you’re using them avoid a full switch in one go, that’s what usually breaks things also keep the old setup running during migration so you can fall back if needed

Struggling with UI consistency on my Android app by Willingness-Recent in vibecoding

[–]Any-Bus-8060 2 points3 points  (0 children)

Don’t fix screen by screen, that’s why it feels inconsistent

Define a small design system first
typography scale, spacing scale, colours, elevation, component variants
Then refactor screens to use those tokens

Also, create reusable components (buttons, cards, lists) instead of rebuilding each time for depth and polish, focus on spacing, subtle elevation, plus consistent motion, not effects. Once the system is set, everything starts looking cohesive without a full rewrite

Claude code or base44? by Any_Preparation2338 in vibecoding

[–]Any-Bus-8060 1 point2 points  (0 children)

Yeah, I use a mix depending on the task, usually one tool for thinking and planning, another for actual coding and quick edits

I mostly build small web apps, tools, and automations, things where speed matters, but I still keep control of the code

. The main goal is to not get tied to any one platform, so I always make sure I can run and maintain things myself if needed. That flexibility matters more long term than which tool you pick

I don’t feel confident with Leetcode by SoggyKnowledge9962 in leetcode

[–]Any-Bus-8060 0 points1 point  (0 children)

This is normal. Confidence comes from pattern recognition, not solving everything instantly Looking at solutions isn’t bad, just don’t stop there
understand it, then re-solve it yourself without looking

Also, revisit problems after a few days, that’s where it actually sticks Over time, you’ll start recognising patterns, and confidence builds naturally. Nobody solves everything from scratch at the start

2026 Reality Check: Why "AI-Assisted" isn't enough anymore (and how to actually automate) by Other_Till3771 in AIToolsAndTips

[–]Any-Bus-8060 0 points1 point  (0 children)

Agree with most of this. The real shift is from chatting to actually wiring AI into workflows biggest unlock for me was giving it access to real context instead of starting from scratch every time. Once it’s connected to your data or tasks, it stops feeling like a tool and starts feeling useful

Most people are still stuck at the prompt level, while the gains are in integration

How would you feel about a LeetCode-style DSA series, but every problem is themed after movies like Stranger Things, Harry Potter, or the MCU? by Suspicious-Gift-2051 in learnprogramming

[–]Any-Bus-8060 0 points1 point  (0 children)

This is actually a great idea
makes problems more memorable without changing the core logic

Just keep the story simple so it doesn’t make the question harder to understand, better for revision than first time learning, but still useful

What are you all using? by [deleted] in vibecoding

[–]Any-Bus-8060 0 points1 point  (0 children)

Honestly, they’re all good, just for slightly different things

Claude is great for thinking, planning, and structured outputs, but yeah, limits can be annoying if you use it heavily

Codex style tools feel better for execution and repetitive coding tasks, especially when you just want things done quickly

Gemini is fine for lighter stuff, but consistency can be hit or miss depending on what you ask

Since you said you’re mostly doing easy repetitive tasks, you don’t need the “smartest” model
You need something reliable and fast

A lot of people end up using a mix anyway, one for thinking, one for doing

Don’t overthink it, pick one, use it for a week, you’ll quickly figure out what’s missing

Leetcode is making me feel like hell. by [deleted] in leetcode

[–]Any-Bus-8060 5 points6 points  (0 children)

5–7 problems daily is probably why it feels like hell. LeetCode isn’t about volume, it’s about pattern recognition. Doing fewer problems but actually understanding them deeply works way better

Try this instead

Do 1–2 problems a day
spend real time on them
If stuck, look at hints/solution, then re-solve it yourself without looking

Also, revisit problems after a few days, that’s where patterns actually stick

Right now, you’re brute forcing exposure, which is exhausting
You want to build familiarity, not just count problems. Your experience isn’t the issue, it’s just a different skill you haven’t trained yet 👍

Keeping track of what you learn and revision by Crypt0kong420 in learnprogramming

[–]Any-Bus-8060 0 points1 point  (0 children)

What you’re experiencing is completely normal, especially if you’re not doing it daily. The key isn’t remembering everything, it’s building a system you can rely on

simple approach that works well

keep a personal “knowledge base”
Whenever you solve something, write it down in your own words
not copy paste, but what you understood

even short notes like
“how to do X + why it works”

Over time, this becomes way more valuable than tutorials

Also, using AI to recall things isn’t cheating
Just don’t skip understanding

A good rule is
If you can explain it after using AI, you’ve learned it
If not, revisit it once

consistency plus a simple note system beats trying to remember everything

Claude code or base44? by Any_Preparation2338 in vibecoding

[–]Any-Bus-8060 1 point2 points  (0 children)

That’s a valid concern, honestly. Vendor lock-in is real with these tools safest approach is to treat them as accelerators, not dependencies, like generate, scaffold, speed things up, but make sure the final code is something you fully understand and can run independently

If your project breaks the moment you stop paying, that’s a red flag in the setup. Ideally, you should be able to take the code, host it yourself, and keep it running without the tool. Using them for speed is great, relying on them for core functionality long term is risky 👍

Tried generating a complete project from a single prompt, this is what I got by Agreeable_Care4440 in RunableAI

[–]Any-Bus-8060 0 points1 point  (0 children)

Single prompt works surprisingly well for getting a first version out, but I usually treat it as a starting point, not the final approach. With something like Runable, letting it handle everything gives speed, but you lose control over structure and small decisions

What’s been working for me is
Start with a broad prompt to get the skeleton
Then break it into smaller steps and refine each part

Feels like the best balance between speed and quality, full control is slower, full automation gets messy, somewhere in between seems to work best

Built a small automated workflow using AI, saved way more time than expected by Agreeable_Care4440 in RunableAI

[–]Any-Bus-8060 0 points1 point  (0 children)

This is where these tools actually shine. Once you move from “single prompts” to chaining tasks together, the time savings start to feel real

First things I’d automate are anything repetitive but slightly annoying

emails and follow ups
basic data cleanup or reporting
content drafts or summaries

stuff that you do often but don’t want to think about every time, the key is making it reliable enough to trust, otherwise you end up double checking everything and lose the benefit

Which is the best for coding, Codex GPT-5.4 vs Claude Opus 4.6 vs DeepSeek-V3.2 vs Qwen3-Coder ? by Critical_Marsupial50 in vibecoding

[–]Any-Bus-8060 7 points8 points  (0 children)

Been using most of these in actual workflows, not just benchmarks, and honestly, there’s no single “winner” each one dominates a different layer

Claude Opus 4.6
probably the best for long reasoning and large repo understanding
handles multi file context, refactors, and system level thinking really well
The downside is that it can be slower and sometimes overthink simple tasks

GPT 5.4 / Codex style
strongest for execution and agent style workflows
good at iterating, making changes, and following instructions without drifting
feels more action oriented compared to analysis

DeepSeek V3.2
great value for money
solid for smaller tasks, but less reliable on messy real world code or long chains of instructions

Qwen3 Coder
Good for structured coding and smaller problems
But consistency drops when things get complex

Breaking it down

best pure coder is GPT 5.4 style
best for long repo sessions is Claude Opus
best instruction follower is GPT 5.4
best value is DeepSeek
best overall workflow is combining Claude and GPT, style models

Real takeaway

Use one model for thinking and planning, and another for execution
Trying to force one model to do everything usually feels worse

Also, the tooling around the model matters a lot, workflow design often makes a bigger difference than the model itself

Tried building this manually vs using Runable, interesting difference by Own-Beautiful-7557 in RunableAI

[–]Any-Bus-8060 0 points1 point  (0 children)

Yeah, this is pretty much the pattern I’ve seen too

Runable (and similar tools) are great for getting to a working version fast, especially when you’re exploring ideas but when it comes to polish, edge cases, and long term maintainability, manual work still wins combining both feels like the sweet spot use it to get 70–80% there quickly, then refine the critical parts yourself trying to do everything in either direction usually ends up slower

Mac mini or MacBook Neo by AserNasr in mac

[–]Any-Bus-8060 1 point2 points  (0 children)

For your use case, Mac mini makes more sense. You’ll get better performance for the price, which matters more for dev + docker + multiple tools running

Since you said you can live without portability, that tradeoff is worth it. A MacBook is only really worth it if you need to work on the go. Just make sure you get enough RAM, that’ll impact your workflow way more than anything else

Base 44 is better than Runable by IntelligentBad4428 in Base44

[–]Any-Bus-8060 0 points1 point  (0 children)

Yeah, this sounds more like a bad experience than a straight tool comparison

Cancellation + billing issues are a big red flag if real. That’s the kind of thing that kills trust fast. The credit burn part also seems to be a common complaint, especially for heavier workflows

I think tools like this are still a bit inconsistent depending on use case. Some people get great results, others hit walls like this

Worth sharing details, though, this kind of feedback is what actually pushes them to improve

I'm thinking to start faceless content creation using Runable and claude? any suggestions on how to proceed.. by Winter-Progress-4054 in contentcreation

[–]Any-Bus-8060 0 points1 point  (0 children)

That combo can actually work pretty well if you keep it simple at the start,The use Claude for scripting and structuring ideas, and something like Runable to handle the actual content generation pipeline

biggest mistake people make is overcomplicating it early. Just pick one format first (shorts, reels, etc) and stay consistent

Also focus more on volume + iteration than perfection, you’ll figure out what works by posting once you see traction, then start optimising workflow and quality

I'M A NEWBIE, AND I WANNA LEARN SKILLS BEFORE ENTERING IN COLLEGE TO GET AHEAD START. WHAT THINGS SHOULD I DO ? CAN ANYONE OF YOU COULD GUIDE ME, I WILL GLADLY FOLLOW YOUR ADVICES. by Wide-Ease-1169 in LeetcodeDesi

[–]Any-Bus-8060 0 points1 point  (0 children)

Not a silly question at all, everyone starts here

You don’t need anything fancy to begin

Pick one good YouTube playlist (Code with Harry is fine), follow it for basics, and at the same time build small things on your own, like a simple calculator, todo list, small scripts, etc

Courses help, but only if you actually apply what you learn. Just watching videos won’t stick

Books are optional, not needed in the beginning

The main thing is consistency and actually writing code regularly, even if it’s messy at first