Earlier quoted context omitted.
OP might be implying that from now on many engineers will use AI tools to write the first draft of their code so it’s smart to hire people skilled at correcting AI-generated code.
"many engineers will use AI tools to write the first draft of their code" I fail to see how ChatGPT would be useful for capable engineers. Is boilerplate code actually a time suck for anyone?
const ts = require("typescript");
const options = {
target: ts.ScriptTarget.ES2017,
module: ts.ModuleKind.CommonJS,
};
const someJavaScriptCode = ts.transpileModule(someTypeScriptCode, { compilerOptions: options });
console.log(someJavaScriptCode.outputText);
(Actual ChatGPT response when asked to convert TS to JS)That saved me a good five minutes with minimal disruption to my flow. Those little things add up to a significant amount of time and energy. I have two young children, ages 1 and 4, and these tools make it possible for me to program in little 10 minutes bursts between basically endless cooking and cleaning chores.
I actually take offense to the notion that you would consider people who find these tools useful to be incapable engineers.