this post was submitted on 26 Aug 2025
85 points (98.9% liked)
Technology
40294 readers
231 users here now
A nice place to discuss rumors, happenings, innovations, and challenges in the technology sphere. We also welcome discussions on the intersections of technology and society. If it’s technological news or discussion of technology, it probably belongs here.
Remember the overriding ethos on Beehaw: Be(e) Nice. Each user you encounter here is a person, and should be treated with kindness (even if they’re wrong, or use a Linux distro you don’t like). Personal attacks will not be tolerated.
Subcommunities on Beehaw:
This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I don't think AI is done improving, but companies need to find something other than throwing more compute at it. It seems to get exponentially more expensive for logarithmic gains in performance. I honestly can't even tell the difference between ChatGPT 4 and 5. I don't doubt that it is better but I can't see a difference in my own productivity.
Time savings vs time sinks depends a lot on exactly what you're doing. Treading well-worn ground in a new domain can be speedy. But fixing a non-standard or niche (or shitty) code base can be a nightmare because nothing is done the standard way.
So far, I've gained a bit of productivity through AI, but I've been down a few rabbit holes, too. Integration tests can be a real pain. It always wants to recommend custom test configurations but then you wind up with a different test environment and you can't necessarily trust your tests. Date parsing with Jackson in particular can be different between your configured ObjectMapper injected by Spring and
new ObjectMapper()
in test to give just a super basic example.