282
This guy literally generated code snippets IMAGE with AI
(thelemmy.club)
"We did it, Patrick! We made a technological breakthrough!"
A place for all those who loathe AI to discuss things, post articles, and ridicule the AI hype. Proud supporter of working people. And proud booer of SXSW 2024.
AI, in this case, refers to LLMs, GPT technology, and anything listed as "AI" meant to increase market valuations.
you jest, but using the actual function keyword had to be made a point in my team's code style ruleset because people kept using the
const somethingFunction = ( input ) => { return input*2; };syntax everywhere. (as opposed to:
function somethingFunction ( input ) { return input*2; })Thats interesting, assuming this is JS, we went the other way and prefer arrow functions.