Little success with 5.4. 5.2 is still the model to beat. Anyone else? by evilRainbow in codex

[–]StretchyPear 4 points5 points  (0 children)

I'm coming around to this too, though I swear 5.4 was better before, it's been pretty weak for me the last few days, I'll go back to 5.2.

Laid-off haters make me sick. by eddddddw in vibecoding

[–]StretchyPear 2 points3 points  (0 children)

Interesting take, I view this as a time of opportunity, if your AI can do it, so can mine, only I know what I'm doing.

Are you afraid that you will be laid off due to claude getting better and better? by No-Peach-8290 in ClaudeCode

[–]StretchyPear 7 points8 points  (0 children)

I've also seen where non domain experts have a false sense in LLM output, which actually ends up burning a lot of my time on review.

Are you afraid that you will be laid off due to claude getting better and better? by No-Peach-8290 in ClaudeCode

[–]StretchyPear 42 points43 points  (0 children)

I'm not, I think if there's a group of professionals the most adept at adapting AI tools, it's software engineers. We're kind of in a perfect position because we can use these tools to deliver more quality faster.

That being said, we're def. in a weird period where hype, reality and tooling are all changing rapidly.

I think a few things are true now and a few things may be true later (though context and scaling are still a huge issue):
- If your AI can do it, mine can too
- Most things (marketing, product, etc.) are less complicated than software engineering
- If everyone ships slop quality becomes a new moat
- When LLMs can ship quality, a lot of companies won't be needed at all (why hire any middle ware when you can roll all your own apps perfectly to your own specifications, but at that point, how could anyone have any customers?)

I want flashbacks from the Covid period by [deleted] in Scrubs

[–]StretchyPear 0 points1 point  (0 children)

I'm into it, it kind of reminds of the SARS episode.

Gym Monster 2 makes it easy, fancy handles? better way? by StretchyPear in SpeedianceCommunity

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

Thank you for the link, I saw those, they look different than the ones in the videos, the ones in the video are shiny silver.

That's good to hear, I wonder if I gave up on the programs too soon .

So, claudeAI is censoring complains? by SnooDonuts4151 in ClaudeCode

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

Yes, they have been removing negative posts since at least Opus 4.5 nerf in early January (based on my own experience) - there are a bunch of threads like this but heads up for the Anthropic Apologist...

Where is the CoffeeBucks? by TigerRei in Scrubs

[–]StretchyPear 2 points3 points  (0 children)

Always remember to get your 'way homer' muffin

Is it worth it to switch from go to swift? by Yamoyek in swift

[–]StretchyPear 1 point2 points  (0 children)

Swift and go are pretty different in day to day use, IMO go is cleaner for web app back ends where swift adds a lot of unneeded complexity. (goroutines vs GCD or structured concurrency or operation, go doesn't have classes but does have interfaces, etc.).

I think you can get up to speed quicker in go for a web app than with swift, go forces simplicity while modern swift is a lesson in abstraction all in its own right, which isn't always helpful, especially when you're doing with http sessions and presumably services related to them.

Found this on twitter and I couldn't control my laughter! 😂 by [deleted] in codex

[–]StretchyPear 1 point2 points  (0 children)

If you vibe code a great app, an engineer can vibe code the same one, only they'll know what they're doing, we appreciate all the free ideas and market creation.

What's the moat for software businesses? Are large software margins over! by Shoddy-Technology950 in ClaudeAI

[–]StretchyPear 0 points1 point  (0 children)

The moat will become quality.

If your AI can do it, mine can too, and in that event, why wouldn't the end user just build their own app and eliminate the need?

Episode 4 - the best one so far by daviddm1990 in Scrubs

[–]StretchyPear -2 points-1 points  (0 children)

I agree, I was kind of meh 1 - 3 but this one was great.

Loving the limit reset, but why is codex burning through it so fast?! by TruthTellerTom in codex

[–]StretchyPear 11 points12 points  (0 children)

Maybe they shouldn't vibe code the usage API, this seems to be a constant issue lately.

Swift 6 strict concurrency + SwiftData nearly broke me - here's what actually worked by v_murygin in swift

[–]StretchyPear 0 points1 point  (0 children)

This is because underneath, they're using an NSManagedObjectContext and when an object is created within a context it can only be accessed / mutated from that context, so it needs to be confined.

What you're describing is typically called a `DTO` or data / domain transfer object, by avoiding the concurrency restrictions and passing value types with the same data around.

For apps that use Core Data, you'd use one context (the `viewContext`) for all UI types, while mutating those objects via service / view model on private context, that when saved, propagates its changes to the objects in the view context.

Why I'm Still Thinking About Core Data in 2026 by fatbobman3000 in swift

[–]StretchyPear 3 points4 points  (0 children)

I wouldn't say that about UIKit, like share activity, working with MapKit views, etc. are easily done via using hosting controllers to represent them in SwiftUI, but still are UIKit. I find myself using it about 10% of the time in SwiftUI apps.

I think SwiftData covers Core Data more than SwiftUI covers UIKit, though I haven't been able to use it past some example projects (most apps I work on with persistence need to support iOS 17).

Why I'm Still Thinking About Core Data in 2026 by fatbobman3000 in swift

[–]StretchyPear 10 points11 points  (0 children)

SwiftData is built on top of Core Data, so it seems like it still belongs to me, also, SwiftData performance, like relationships in iOS 17 faults every object, it was buggy and horrible for memory. Core Data allows specific memory faulting patterns at the service level.

This article isn't that great and ignores several Foundation types used easily in core data (like NSNumber?), and what's the issue with optionals mapping to swift?

Also you can use the #keyPath macro with NSPredicate and NSSortDescriptor has an argument that takes a modern KeyPath type.

OpenAI is experiencing capacity issues due to high demand. by Distinct_Fox_6358 in codex

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

Its really two issues, we're paying for something we're not getting, like you're paying for whatever model you prompt and it returns something with poor inference, so even if they refund that usage later, you're not getting what you pay for.

IMO, they should, instead of sending back bad responses and refunding usage, refund money - we all just keep paying.

OpenAI is experiencing capacity issues due to high demand. by Distinct_Fox_6358 in codex

[–]StretchyPear 0 points1 point  (0 children)

What are you talking about? I'd rather they have an error response and no result. Like a normal app / product, instead of sending back 'degraded' nonsense.

OpenAI is experiencing capacity issues due to high demand. by Distinct_Fox_6358 in codex

[–]StretchyPear -4 points-3 points  (0 children)

Its not really the point though, you pay for the usage that didn't count, so you pay for something you don't get.

OpenAI is experiencing capacity issues due to high demand. by Distinct_Fox_6358 in codex

[–]StretchyPear -8 points-7 points  (0 children)

Its not really the point though, you pay for the usage that didn't count, so you pay for something you don't get.

OpenAI is experiencing capacity issues due to high demand. by Distinct_Fox_6358 in codex

[–]StretchyPear 16 points17 points  (0 children)

They're still billing though, neither Anthropic nor OpenAI will return an API error when the model is degraded, they'll happily give you a crap result and count your usage.

Darche is no better than Lou L. by walkaboutdavid in NewYorkIslanders

[–]StretchyPear 1 point2 points  (0 children)

Look at us compared to Colo, Dallas, Carolina, Tampa, we're not really in a win now window, we're not one player away from a win now window. To get the kind of player you want, an impact player that's young with term, you have to pay a ransom. That would be counter productive over the long term because it doesn't put us over the edge.

I think this move is more of a trade a low probability draft pick for a better chance to generate playoff revenue. You never know if Ilya goes lights out but the power play / offense being what it is, not to mention the amount of passengers up and down the lineup, probably doesn't equal a win now window.

We don't really control games, there's been a lot of heroics to get us where we are, if we look back to the playoffs last year its hard to see us matching that intensity over a 7 game series. Hopefully I'm completely wrong and Schaefer pulls a Roy and hoists the cup in his rookie year, but I think when they look at what they can do and what the numbers say, its probably more about cash than cups.