this post was submitted on 20 Jun 2024
4 points (100.0% liked)

Programming

16977 readers
147 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 1 year ago
MODERATORS
 

GitHub Copilot Workspace didn't work on a super simple task regardless of how easy I made the task. I wouldn't use something like this for free, much less pay for it. It sort of failed in every way it could at every step.

you are viewing a single comment's thread
view the rest of the comments
[–] Ephera@lemmy.ml 1 points 2 months ago

Hmm, interesting idea, to ask the user to provide the overall intent by making them edit/write the plan, since the LLM can't do intent.

But man, we've recently had a number of programming beginners join us in our relatively large codebase, and I've basically had to write such a plan, i.e. step-by-step instructions, for them many times.

It just means that I go through the whole codebase and have to think everything through, without doing it myself.
It often took similarly long do that, and formulate instructions, as it would have taken me to write the code myself. Because obviously we're using a high-level programming language, so there's not many detail problems which are easier to describe in a natural language.

It's also incredibly difficult to provide correct instructions that way, since I don't get to read the existing code while I write the code.
And reviewing their code to figure out what came from it, that binds even more time.

So, yeah, it really doesn't sound like this LLM thing would save me time either...