this post was submitted on 01 Dec 2024
194 points (91.8% liked)

Ask Lemmy

27167 readers
2019 users here now

A Fediverse community for open-ended, thought provoking questions

Please don't post about current US Politics. If you need to do this, try [email protected] or [email protected]


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either [email protected] or [email protected]. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email [email protected]. For other questions check our partnered communities list, or use the search function.


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 2 years ago
MODERATORS
 

30 Nov 2022 release https://openai.com/index/chatgpt/

you are viewing a single comment's thread
view the rest of the comments
[–] ripcord 6 points 1 week ago (2 children)

I'm very curious what these development workflows are where writing "boilerplate" code is so common, especially that AI-generated is good enough. It's very rare for me to need this, and Ileven then I generally have spent more time cleaning up wjatbit built than the time it saved me.

[–] MintyAnt 1 points 1 week ago (1 children)

It could be level. Less experienced engineers find the boilerplate spit out by copilot extremely useful, more experienced find it more in the way.

Is some of this just caused by more experienced folks being less inclined to learn AI tools? Maybe. I think experience writing code is the bigger factor though.

I'm trying real hard to find it useful. I can see it eventually being more useful, but it's just not worth the cost.

[–] ripcord 1 points 1 week ago

Maybe, it's just really rare for me to be looking at a "blank page'. 95% is an incremental improvement on top of something existing. So "boilerplate" would come into my workflow pretty rarely.

Maybe some frequently-changing data science or data mining tasks?

[–] Gxost 1 points 1 week ago

By saying "boilerplate", I mean constructors, simple methods and even small classes that have some "standard" implementation. Copilot easily writes simple constructors, class initialization and destruction. It can suggest small method implementation, right after I added its declaration to related interface. Anything, that can be done almost without thinking of how to do it because there are standard practices, is handled by Copilot. It's not perfect, it can write a whole method at a time, or only line by line, or refuse to suggest any code. But it often writes valid code.