Last few months I have been using ChatGPT LLM for coding, debugging, troubleshooting.
Earlier I used to google / post my question on Stack Overflow.
But now I have instant solution to most of my coding problems.
Does that make Stack Overflow / google irrelevant in the world of LLM (Large Language Model)
$(“.question a[data-onebox-id]”).replaceWith(function () {
var onebox = $(“.question div[data-onebox-id='” + $(this).data(‘onebox-id’) + “‘]”);
return onebox.length > 0 ? onebox : this;
});
14
LLMs are killing Stack Overflow in the same way that fast food killed restaurants. It doesn’t.
The page views might be dropping and the ad income with it, so it’s still a concern but not necessarily the death.
$(“#answer-430996 a[data-onebox-id]”).replaceWith(function () {
var onebox = $(“#answer-430996 div[data-onebox-id='” + $(this).data(‘onebox-id’) + “‘]”);
return onebox.length > 0 ? onebox : this;
});
1
No, no it doesn’t. If you want to be good, you should expand your tools, not limit them.
Danimal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
$(“#answer-430995 a[data-onebox-id]”).replaceWith(function () {
var onebox = $(“#answer-430995 div[data-onebox-id='” + $(this).data(‘onebox-id’) + “‘]”);
return onebox.length > 0 ? onebox : this;
});