← Back to context

Comment by seper8

8 hours ago

>Honestly, I suspect the people who would prefer to have someone or something else do their coding

Alright, please stop using SDK's, google, stackoverflow, any system libraries. You prefer to do it for yourself right?

If you're using those things to do *the core function* of the program you're writing, that's an issue.

SDKs and libraries are there to provide common (as in, used repeatedly, by many) functions that serve as BUILDING BLOCKS.

If you import a library and now your program is complete, then you didn't actually make a useful program, you just made a likely less efficient interface for the library.

BUT ALSO-

SDKs and libraries are *vetted* code. The advantage you are getting isn't just about it having been written for you, it's about the hundreds of hours of human code review, iteration, and thought, that goes into those libraries.

LLM code doesn't have that, so it's not about you benefitting from the knowledge and experience of others, it's purely about reducing personally-typed LoC.

And yes, if you're wholesale copy-pasting major portions of your program from stack overflow, I'd say that's about as bad as copy-pasting from ChatGPT.