this post was submitted on 27 Jan 2024
132 points (97.8% liked)

Programming

21140 readers
137 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
 

Interesting to see the benefits and drawbacks called out.

you are viewing a single comment's thread
view the rest of the comments
[–] uthredii@programming.dev 40 points 1 year ago (1 children)

In this regard, AI-generated code resembles an itinerant contributor, prone to violate the DRY-ness [don't repeat yourself] of the repos visited.

So I guess previously people might first look inside their repo's for examples of code they want to make, if they find and example they might import it instead of copy and pasting.

When using LLM generated code they (and the LLM) won't be checking their repo for existing code so it ends up being a copy pasta soup.

[–] GammaGames@beehaw.org 3 points 1 year ago* (last edited 1 year ago) (2 children)

Makes sense, even if it’s not good practice.

It is really useful for hobby projects! I needed a recursive function to find a path between two nodes in a graph and it wrote me something that worked with my data in a few seconds, saved a bit of time

[–] MonkderZweite@feddit.ch 8 points 1 year ago (1 children)

saved a bit of time.

For now.

[–] GammaGames@beehaw.org 0 points 1 year ago (1 children)
[–] MonkderZweite@feddit.ch 8 points 1 year ago* (last edited 1 year ago) (2 children)

Best practices exist to save you time and nerves in debugging.

[–] GammaGames@beehaw.org 3 points 1 year ago

Meh, I knew that my graph would never have loops and would only ever have one path from A to B, so it did it well enough. Pretty easy to test!

[–] magic_lobster_party@kbin.social 2 points 1 year ago (1 children)

Good practices don’t matter much for small hobby projects.

[–] MonkderZweite@feddit.ch 5 points 1 year ago

Training bad habits... vs. fun, i get it.

[–] silasmariner@programming.dev 5 points 1 year ago (2 children)

I find that code way too fun to write to let someone or something else do it for me 😂

[–] redcalcium@lemmy.institute 4 points 1 year ago

Actual time spent micromanaging the AI until it produces the perfect code may or may not exceed writing the code yourself.

[–] GammaGames@beehaw.org 1 points 1 year ago

That’s fair, and if I were getting paid for it I’d do the same! But it’s for a project that’s essentially a pomodoro timer 😆 so it’s harder to justify the time