this post was submitted on 30 Dec 2025
98 points (99.0% liked)

Programming

24141 readers
430 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] melfie@lemy.lol 5 points 20 hours ago* (last edited 20 hours ago)

GitHub Copilot with Claude Sonnet 4.5 works okay in codebases that have established and obvious patterns. It can continue following those patterns with careful guidance, review, and a healthy dose of manual testing. I generally get a modest productivity boost for code that is pretty straight forward, though you either have to spend time ensuring quality up front or fixing the slop afterwards, and there are times when it just won’t get something right that you’re better off doing yourself. Don’t expect it to come up with any clever or innovative solutions to hard problems: it’s just going to make a big bowl of hacky slop soup for you instead. It also does a shit job writing clean, maintainable code using things like the DRY principle, high cohesion / loose coupling, properly naming things, etc.

With all the babysitting required, the productivity increase is modest, but existent.