Man. What an absolute GENIUS way to get people to not post ChatGPT answers. Just put them there from there from the start. "Burn the boats"
The main point of answering to StackOverflow questions is to earn points, points that you can show on your CV :) "Top StackOverflow expert on XX", so the incentive is still there. One solution to spam could be to keep the voting system, but not publicly reward users with points (like on HN).
Show HN: StackOverflow.gg – AI-generated answers to every coding question
141–150 of 161 posts
Re: Show HN: StackOverflow.gg – AI-generated answers to every coding question
#142Man. What an absolute GENIUS way to get people to not post ChatGPT answers. Just put them there from there from the start. "Burn the boats"
GPT output isn’t deterministic though?
Maybe it's chaotic like you and me, but it cant be non deterministic, it'd mean it doesnt even really answer questions and just spout random tidbits :s
Re: Show HN: StackOverflow.gg – AI-generated answers to every coding question
#143Earlier quoted context omitted.
GPT output isn’t deterministic though?
It is deterministic, no ? Do they have some entropy source they use? Maybe it's chaotic like you and me, but it cant be non deterministic, it'd mean it doesnt even really answer questions and just spout random tidbits :s https://en.m.wikipedia.org/wiki/Chaos_theory
Re: Show HN: StackOverflow.gg – AI-generated answers to every coding question
#144Earlier quoted context omitted.
Lol just yesterday I saw an eight year old answer on SO neatly solving my problem, except the API was hallucinated. Humans have been hallucinating APIs for far longer.
The first time I read this I thought it meant it was an eight year old person answering your question.
Re: Show HN: StackOverflow.gg – AI-generated answers to every coding question
#145Earlier quoted context omitted.
> From your long rant, I'm not sure if you're coming off any better. To me it sounds like SO should be happy someone like you isn't contributing. Is quite a harsh personal attack, and probably contributes to the author's feelings regarding hostility and gatekeeping.
They're the one saying people at SO aren't nice. My guess is just that the person feels that way after getting pushback from their own behavior / attitude. I feel it's a trend, I see lots of toxic comments from people "having given up SO", and I think to myself that it's a good thing.. But you're right, I should've avoided going personal.
I literally not do care remotely what you, or other folk like you on SO say. :)
You’re why I no longer go there.
Re: Show HN: StackOverflow.gg – AI-generated answers to every coding question
#146Earlier quoted context omitted.
The chatgpt output comes in chunks from openai's servers themselves, it can't get computed instantly. There's no way for this plugin to do what you want it to do.
OpenAI could return it instantly if they wanted.
Re: Show HN: StackOverflow.gg – AI-generated answers to every coding question
#147Earlier quoted context omitted.
Oh, the XY people are the worst on SO. Here's the latest example I've seen: https://stackoverflow.com/questions/57121467/import-a-module... Please see the comments under the OP. While the question is technically sound (I've needed this exact thing for a REPL I was writing), the comments are perfectly useless, self-entitled and discouraging drivel. Notable example: > This is an incredibly odd thing to ask (emphasis th…
I don't see the problem there at all . They ask a question with some weird requirements, people ask why those requirements are in place as it makes it hard to solve, the asker explains why. Everything is good.
Re: Show HN: StackOverflow.gg – AI-generated answers to every coding question
#148Earlier quoted context omitted.
No, it wasn’t “not ‘welcoming’”, it was just “not welcoming”. Sure it’s the owners who forced this, but it’s not a bad thing to be more welcoming and thinking otherwise because “it’s better” is problematic. You should also blame the owners for not giving a shit about moderation for the low quality of things now, if you want to blame them for the push for being “welcoming”.
You can be welcoming and still enforce guidelines, it's not an either/or situation.
Re: Show HN: StackOverflow.gg – AI-generated answers to every coding question
#149Earlier quoted context omitted.
On the other hand, it's a great way to get a contact at SO, assuming anyone other than lawyers finds out about it.
No one other than lawyers or lawyer accessories is going to represent the company to the domain owner about it, though. Source: Ages ago I had a personal domain based on a longstanding nick that happened to partially coincide with the name of a major motion picture studio. That it was a paralegal who called me said they weren't anxious to take it seriously, and all they were really after was just getting me to say it…
Of course. Here's the plausible chain of events:
1. Someone at the co. reads about this on HN 2. They tell their boss who might tell their boss, etc. 3. It finally gets to someone who is responsible for telling the lawyers. But they also say "hey this is kind of cool. We'll send a C&D, but maybe reach out to see if there's anything interesting there."
Re: Show HN: StackOverflow.gg – AI-generated answers to every coding question
#150Earlier quoted context omitted.
Tell him what? It is annoying that they don't return the output instantly. This does throttle usage, so I can see why they do it, but it is annoying.
I asked ChatGPT about this: "Why are ChatGPT responses written a few words at a time?" It replied, a few words at a time: - - - The responses are broken up into smaller chunks for several reasons: 1. Better readability: Breaking up the responses into smaller pieces makes it easier for users to read and understand the information being provided. 2. Interactivity: ChatGPT's response format allows for a back-and-forth i…
For those who don't know, it is like Markov Chains: probability of next word (or a group of words encoded as a token) is calculated based on previous words and computationally intensive. It just uses not just probability between 1-2 previous tokens, it uses 2048 token window (roughly 1500 words) to predict next token, then puts next token into window and goes on.