Live data from Hacker News

Total monthly number of StackOverflow questions over time

data.stackexchange.com

431–440 of 1001 posts

Re: Total monthly number of StackOverflow questions over time

#431
post #103

Earlier quoted context omitted.

I suppose all sites that have a voting component run the risk of becoming unpleasant. Hacker News, and we who frequent it, ought to have that in mind.

dang and the other HN moderators do a heroic job to set the tone, which has second- and third-order effects on behavior.

[flagged]

Re: Total monthly number of StackOverflow questions over time

#432
post #103

Earlier quoted context omitted.

I suppose all sites that have a voting component run the risk of becoming unpleasant. Hacker News, and we who frequent it, ought to have that in mind.

I think it has more to do with the fact that when you offer zero salary for moderators, you have to take what you can get, and it ain't good. I don't really see a connection to the voting mechanic.

It's also disconnected incentives. SO users get numbers to go up by taking moderation actions so of course they do that. Also you literally get banned from reviewing questions if you don't flag enough of them to be closed. These are incentives put in place by the SO company intentionally.

It's not like only slimy people get to use moderator tools like on Reddit, since you need a lot of reputation points you get by having questions and answers voted up. It's more like (1) you select people who write surface-level-good answers since that's what's upvoted, and they moderate with a similar attitude and (2) once you have access to moderator tools you're forced to conform with (1) or your access is revoked, and (3) the company is completely incompetent and doesn't give a shit about any of this.

Re: Total monthly number of StackOverflow questions over time

#433
post #330

Earlier quoted context omitted.

Asking questions on SO was an exercise in frustration, not "interacting with peers". I've never once had a productive interaction there, everything I've ever asked was either closed for dumb reasons or not answered at all. The library of past answers was more useful, but fell off hard for more recent tech, I assume because people all were having the same frustrations as I was and just stopped going there to ask anyth…

this right here, not just overmoderated but the mods were wrong-headed from the start believing that it was more important to protect some sacred archive than for users to have good experiences. SO was so elite it basically committed suicide rather than let the influx of noobs and their noob questions and noob answers kill the site this nails it: https://www.tiktok.com/@techroastshow/video/7518116912623045...

> this nails it

I assume you’re taking about the ending where gippity tells you how awesome you are and then spits out a wrong answer?

Re: Total monthly number of StackOverflow questions over time

#434

I once published a method for finding the closest distance between an ellipse and a point on SO: https://stackoverflow.com/questions/22959698/distance-from-g... I consider it the most beautiful piece of code I've ever written and perhaps my one minor contribution to human knowledge. It uses a method I invented, is just a few lines, and converges in very few iterations. People used to reach out to me all the time with…

thanks for sharing that, it was simple, neat, elegant. this sent me down a rabbit hole -- I asked a few models to solve that same problem, then followed up with a request to optimize it so it runs more efficiently. chatgpt & gemini's solutions were buggy, but claude solved it, and actually found a solution that is even more efficient. It only needs to compute sqrt once per iteration. It's more complex however. yours…

Thanks for pushing this, I've never gone beyond "zero" shotting the prompt (is it still called zero shot with search?)

As a curiosity, it looks like r and q are only ever used as r/q, and therefore a sqrt could be saved by computing rq = sqrt((rxrx + ryry) / (qxqx + qyqy)). The if q For the other sqrt, maybe try std::hypot

Finally, for your test set, could you had some highly eccentric cases such as a=1 and b=100

Thanks for the investigation:)

Edit: BTW, the sin/cos renormalize trick is the same as what tx,ty are doing. It was pointed out to me by another SO member. My original implementation used trig functions

Re: Total monthly number of StackOverflow questions over time

#435

Earlier quoted context omitted.

The problem with duplicate questions is that they weren't duplicates at all, and mods weren't competent enough to tell a difference.

Show me one that was closed by a moderator. Just one. And I will tell you exactly what happened.

You had me looking through my history. Here is an example from 12 years ago: https://stackoverflow.com/questions/15626760/does-an-idle-my...

Granted when I look at that question today, it doesn't make much sense. But 12 years-back me didn't know much better. Let's just say the community was quite hostile to people trying to figure stuff out and learn.

Re: Total monthly number of StackOverflow questions over time

#436

Earlier quoted context omitted.

The "human touch" on StackOverflow?! I'll take the "robot touch," thanks very much.

Right? The "human touch" is "you fucking moron, why would you ask such a stupid question!"

Would you mind linking me to an example or two? I've seen this type of complaint often on HN, but never really observed that behavior on SO, despite being active on there for 15 years. I guess maybe I was part of the problem...?

Re: Total monthly number of StackOverflow questions over time

#437

Earlier quoted context omitted.

Am I the only one that sees this as a hellscape? No longer interacting with your peers but an LLM instead? The knowledge centralized via telemetry and spying on every user’s every interaction and only available thru a enshitified subscription to a model that’s been trained on this stolen data?

Asking questions on SO was an exercise in frustration, not "interacting with peers". I've never once had a productive interaction there, everything I've ever asked was either closed for dumb reasons or not answered at all. The library of past answers was more useful, but fell off hard for more recent tech, I assume because people all were having the same frustrations as I was and just stopped going there to ask anyth…

I had the opposite experience. I learned so much from the helpful people on StackExchange sites, in computer science, programming, geology, and biology.

Re: Total monthly number of StackOverflow questions over time

#438
post #177

Earlier quoted context omitted.

well you can say all that but it doesn't hold up to experience. The culture feels very different here. So, no, it's not the same.

[flagged]

> Well I've been around here longer than you

Prove it. Use your main account, you coward.

Re: Total monthly number of StackOverflow questions over time

#439

The graph is scary, but I think it's conflating two things: 1. Newbies asking badly written basic questions, barely allowed to stay, and answered by hungry users trying to farm points, never to be re-read again. This used to be the vast majority of SO questions by number. 2. Experiencied users facing a novel problem, asking questions that will be the primary search result for years to come. It's #1 that's being canib…

I’m going to argue the opposite. LLMs are fantastic at answering well posed questions. They are like chess machines evaluating a tonne of scenarios. But they aren’t that good at guessing what you actually have on your mind. So if you are a novice, you have to be very careful about framing your questions. Sometimes, it’s just easier to ask a human to point you in the right direction. But SO, despite being human, has always been awful to novices.

On the other hand, if you are experienced, it’s really not that difficult to get what you need from an LLM, and unlike on SO, you don’t need to worry about offending an overly sensitive user or a moderator. LLMs never get angry at you, they never complain about incorrect formatting or being too lax in your wording. They have infinite patience for you. This is why SO is destined to be reduced to a database of well structured questions and answers that are gradually going to become more and more irrelevant as time goes by.

Re: Total monthly number of StackOverflow questions over time

#440

I once published a method for finding the closest distance between an ellipse and a point on SO: https://stackoverflow.com/questions/22959698/distance-from-g... I consider it the most beautiful piece of code I've ever written and perhaps my one minor contribution to human knowledge. It uses a method I invented, is just a few lines, and converges in very few iterations. People used to reach out to me all the time with…

> Today I don't know where I would publish such a gem.

In the same blog you published it originally, then mentioning it on whatever social media site you use? So same?

Post reply on HN