site banner

Culture War Roundup for the week of August 11, 2025

This weekly roundup thread is intended for all culture war posts. 'Culture war' is vaguely defined, but it basically means controversial issues that fall along set tribal lines. Arguments over culture war issues generate a lot of heat and little light, and few deeply entrenched people ever change their minds. This thread is for voicing opinions and analyzing the state of the discussion while trying to optimize for light over heat.

Optimistically, we think that engaging with people you disagree with is worth your time, and so is being nice! Pessimistically, there are many dynamics that can lead discussions on Culture War topics to become unproductive. There's a human tendency to divide along tribal lines, praising your ingroup and vilifying your outgroup - and if you think you find it easy to criticize your ingroup, then it may be that your outgroup is not who you think it is. Extremists with opposing positions can feed off each other, highlighting each other's worst points to justify their own angry rhetoric, which becomes in turn a new example of bad behavior for the other side to highlight.

We would like to avoid these negative dynamics. Accordingly, we ask that you do not use this thread for waging the Culture War. Examples of waging the Culture War:

  • Shaming.

  • Attempting to 'build consensus' or enforce ideological conformity.

  • Making sweeping generalizations to vilify a group you dislike.

  • Recruiting for a cause.

  • Posting links that could be summarized as 'Boo outgroup!' Basically, if your content is 'Can you believe what Those People did this week?' then you should either refrain from posting, or do some very patient work to contextualize and/or steel-man the relevant viewpoint.

In general, you should argue to understand, not to win. This thread is not territory to be claimed by one group or another; indeed, the aim is to have many different viewpoints represented here. Thus, we also ask that you follow some guidelines:

  • Speak plainly. Avoid sarcasm and mockery. When disagreeing with someone, state your objections explicitly.

  • Be as precise and charitable as you can. Don't paraphrase unflatteringly.

  • Don't imply that someone said something they did not say, even if you think it follows from what they said.

  • Write like everyone is reading and you want them to be included in the discussion.

On an ad hoc basis, the mods will try to compile a list of the best posts/comments from the previous week, posted in Quality Contribution threads and archived at /r/TheThread. You may nominate a comment for this list by clicking on 'report' at the bottom of the post and typing 'Actually a quality contribution' as the report reason.

7
Jump in the discussion.

No email address required.

Fair points, but verification is usually way cheaper than generation. If one actual human PhD can monitor a dozen AI agents, it is plausible that the value prop makes sense.

In a lot of tasks, including AI research and coding, you can also automate the verification process. Does the code compile and pass all tests? Does the new proposed optimizer beat Adam or Muon on a toy run?

There is probably perfectly adequate shareholder value in getting a billion lonely midwits to pay $10/month rising to $inf/month in the way of all silicon valley service models, and keeping them hooked with the LLM equivalent of tokenized language loot boxes. I'd wager its even the more significant hill to climb for shareholder value.

That might be true today (and tomorrow, or next year), but the companies are betting hard on their models being capable of doing much more, and hence getting paying customers willing to shell out more. The true goal is recursive self-improvement, and the belief that this has far more dollars associated with it than even capturing all the money on earth today. Of course, they need market share and ongoing revenue to justify the investments to get there, which is why you can buy in relatively cheap. Competition also keeps them mostly honest, OAI would probably be charging a great deal more or gatekeeping their best if Google or Anthropic weren't around.

Fair points, but verification is usually way cheaper than generation.

Not if P = NP

Fair points, but verification is usually way cheaper than generation. If one actual human PhD can monitor a dozen AI agents, it is plausible that the value prop makes sense.

Not necessarily! It's an adage among programmers that reviewing somebody else's code is often harder than making your own, because you have to figure it all out and then try to create some ideal version in your head and mesh the two together.

It's actually a big issue with vibe-coding - I end up with a codebase I don't understand and then have to do the work of figuring out the framework for myself anyway.

I would argue that this is a temporary state of affairs. Current AI coding is at the level of an over-caffeinated intern (who is very knowledgeable, but less than practical). Thus, a great deal of oversight is necessary to make sure they aren't shooting themselves in the foot.

But consider the potential SOTA in a year or two, when they're comfortably at par with mid-level coders. A senior SWE is usually happy to delegate to multiple experienced juniors, without worrying too much about the exact implementation details. My impression is that we're not there yet.

https://x.com/METR_Evals/status/1955747420324946037

Even when agents pass on all human-written test cases, we estimate that their implementations would take 20-30 minutes on average to get to a mergeable state—which represents about a third of the total time needed for an experienced developer to complete the tasks.

In other words, a lot (but not all) of the theoretical time savings are eaten up by the need to understand, edit and improve their code. At present.

But consider the potential SOTA in a year or two, when they're comfortably at par with mid-level coders. A senior SWE is usually happy to delegate to multiple experienced juniors, without worrying too much about the exact implementation details. My impression is that we're not there yet.

AFAIK it's usually mandatory for all written code to be reviewed before it's merged into the code base. At my last company every Pull Request (submitted code) had to be reviewed by two people, plus or including the 'owner' of the files in question. Review is usually considered a very onerous duty to be avoided where possible, and in theory reviewers bear as much responsibility for the final output as the original writer. The purpose is partly to inspect the quality of the code and to make sure it's doing what's expected (even senior guys fuck up) and partly to make sure that at least a few people are familiar with each part of the codebase.

This was at a 'move-fast-and-break-things' company. The review standards at somewhere like Intel are of course significantly higher.