AI;DR (AI; Didn't Read) (rickmanelius.com)

906 points by mooreds 15 hours ago

LPisGood 15 hours ago

My coworkers continue to dump hundreds of lines of AI documentation in every PR and every other line of code has between one and ten lines of AI generated comments, talking about the real unlock and how things are byte for byte identical on the load bearing path or how the acceptance ladder is misleading.

Features are coming out and metrics are improving, but we’re basically in a post readability code base, with the occasional performative comment about a variable name.

I don’t really know how to address this situation or if it needs addressed. I certainly don’t read the long-winded AI comments or the AI documentation, but perhaps it’s useful for the AI on its next pass.

aaaronic 13 hours ago

My "favorite" Claudism is when I critique its work and ask it to remove some unnecessary part of the design -- and then the diff has more green than red because it added comments about why the code is no longer there -- the code that was never in the mainline and never asked for!

roarcher 8 hours ago

Oh god this has been driving me nuts since Opus 5 landed. Every docblock is filled with long-winded jargon explaining why this design is superior to some other design, which never existed as far as any dev who might read that comment is concerned.

tehlike 7 hours ago

foolserrandboy 7 hours ago

masto an hour ago

koyote 13 hours ago

It's not just claude, all AI is unable to produce something concise. On the surface everything looks 'good' whether code or prose, but then if you dig a bit, try and understand the whole text you quickly realise that 80% of it is unecessary and the whole thing could have been re-worded/re-coded into something a fraction of its size and complexity.

I asked Sol to reduce the length of some documentation we had by making it more concise. It came back after 20 minutes of work, did a line count and was aghast that the line count had somehow increased...

andreyf 4 hours ago

koe123 5 hours ago

preg_match 10 hours ago

unknownfuture 8 hours ago

Oh Jesus this. I've tried to include rules that tell Claude to only include relevant, evergreen comments but it's to no avail.

I also love how it'll build local plans with phases, tasks, or decisions, then reference those numbers in those same useless comments.

arcanemachiner 3 hours ago

_--__--__ 12 hours ago

Yeah this is awful. Every codebase becomes a graveyard of references to ideas or behaviors that were barely considered. It's probably also a compounding source of context poisoning when a minority of the comments/documentation are about how the current code actually works.

ryandrake 10 hours ago

geysersam 5 hours ago

shudder

I wish they trained the bots to be a notch more relaxed and less hysterical. Less is more.

But maybe that's just a consequence of the RL training being essentially AI torture to make them do what we want.

ulrikrasmussen 7 hours ago

This is a common problem, and I don't get why LLMs have not been tuned to stop this nonsense. It is writing comments as if the audience is you, the user in the session, while obviously code comments are meant for future readers.

soupspaces 6 hours ago

eithed 6 minutes ago

Be the change you want to see :)

I've created myself a pre-commit harness hook to explicitly discard superfluous or too lengthy comments. Within code-review I also added comment review as blockers

noman-land 14 hours ago

Have you considered talking about it? You're in a professional environment collectively working in a new way with a group of people. It's up to somebody to have opinions about what does and doesn't suck. If you silently go along and don't say anything you're dooming yourself and all of us to a lifetime of this garbage.

corndoge 14 hours ago

Fighting the ocean is futile

delecti 14 hours ago

trip-zip 14 hours ago

a34729t 14 hours ago

LPisGood 13 hours ago

Yes, talking about it repeatedly has been my process. Individual PRs have been changed but the 4 the next day look the same. The typical response is that they did change the (massive and wordy) PR overview from what AI said, even if it was obviously a minimal change at best. I can’t really argue against lying and going through and picking out every LLMism is not so productive in my opinion.

I don’t have time to go through and flag everything or even read the thousands of lines of code changes that are happening.

eudamoniac 9 hours ago

I've tried doing this, politely pushing back on problems happening from AI use, and it led to a not-so-subtle implication from my manager that I need to STFU or I'll be out of here (Cisco).

atomicnumber3 6 hours ago

No, if he speaks against it he gets labeled "anti-AI" and laid off or not promoted. If he stays silent he retains his job.

Corporate Capitalism's main innovation was virtualizing feudalism. Now anyone with a bit of cash flow can be a feudal lord with peasants to do his will. No need to maintain land or fight over it with other feudal lords. There's still fighting, naturally, but now the game isn't zero sum.

The serfs don't get any real say in this model. At best you can bend the lord's ear if you're sufficiently trusted an advisor. But part of the reason you're trusted is to be trusted not to treat the lord like he's too much of an idiot.

A huge problem is that capitalism rewards cash flows and accumulated capital so powerfully that lots of other things just don't matter, potentially for a very long time. Look at GitHub. This leads to immensely extended fuck around phases and "find out" looks like IBM (fossilization and bizarre holdings corporation / dead company parking lot) just as often as it looks like Enron.

brabel 5 hours ago

joshmoody24 13 hours ago

My team uses a Claude Code hook that blocks any comment more than 2 lines long, and when tripped it encourages the agent to rewrite the comment more concisely and focus only on the "why" not the "what" of the code. I've found this extremely useful for code reviews.

rbongers 12 hours ago

Two very useful directives to give AI when it comes to documentation:

1) Document what's there, not the diff. Documentation of how code was removed or changed to fix a bug or add a feature is not useful and difficult to maintain; documentation should explain how code works now.

2) Documentation should live close to the source as possible. Prefer line based comments and standardized function documentation. Top-level sweeping architectural essays are not maintainable for every change.

The last will depend on your codebase. It CAN be very useful to have a human-readable spec documented for the entire program and have it updated when anything changes. But the key is again, you're CHANGING it every time. If you add a whole new disconnected documentation file it should set off alarm bells; nothing in one system is truly disconnected.

ninkendo 9 hours ago

> Document what's there, not the diff

We recently added a similar thing to our style guide, It’s astonishing to me that we have to spell this out, that something as obvious as this needs to be explained to LLM’s at all. They’re supposed to be exceeding human intelligence, at least at things like programming, but can’t understand basic things like what code comments are.

paldepind2 2 hours ago

epidemian 4 hours ago

silverwind 4 hours ago

eru 7 hours ago

johnnyanmac 6 hours ago

kristjansson 8 hours ago

And the tests. Oh god the tests. Personal recent favorite: I asked for some changes to a Dockerfile, which it did ably, and then promptly tested by writing a pytest module that traversed up to the root, read the Dockerfile, and checked that the added lines were present.

eru 7 hours ago

Try property based testing perhaps.

kqr 5 hours ago

kristjansson 6 hours ago

LPisGood 6 hours ago

LPisGood 8 hours ago

I regret this but at some point I stopped reading generated tests. It feels pointless when our test files are already tens of thousands of lines of — at best — tautological slip which says that the codes does what it does.

hinkley 10 hours ago

I told someone this week, who (or whose AI) chose to do a problem the hard way that it's usually a bad sign if you need more comments than code to solve a problem, and then suggested a couple lines of code that accomplished the same thing and used, are you sitting down? MEANINGFUL VARIABLE NAMES to document the purpose of each calculation.

I wonder if I can get a MacArthur grant for this epiphany...

Fordec 14 hours ago

I have five enforcement mechanisms: 1000 line max edit, PR comment character limits (get to the point of your description), ISO 24495 conformance check, and enforced code line citation that must exist, be a function declaration for the start of all paragraphs and inline commentary must be three lines or less and inline comments contribute max 10% of the PR. Fail any of these, automatic PR denial with no human intervention.

LPisGood 14 hours ago

This sound pretty good, but every single attempt to put an actual character limit meets incredible resistance on my team. ISO 24495 looks interesting, how do you enforce that? Do you have some agent?

Fordec 13 hours ago

CSMastermind 14 hours ago

> ISO 24495 conformance check

How do you enforce that?

Fordec 13 hours ago

rfgplk 14 hours ago

Prune the comments? Instruct the LLM to print less comments (this one is genuinely hard though). What's really happening is that you don't have a strong enough review process (or a code standards process) to offset this. The one issue I see with this is that your team is almost certainly _NOT_ doing any kind of code review (especially if they're leaving comments like that). The other problem is that excessive comments actually harm LLM output, I've done tons of A/B testing, and pruning comments actually helps LLMs spot bugs, among other things.

kqr 5 hours ago

I think your last sentence is getting close to the truth. You're no longer the audience for those descriptions. Other robots are.

I'm not saying that's good or bad because I don't know, but I think that's the idea of dumping all that junk into PR descriptions.

However, annoyingly, we still need to review those descriptions very closely, because the robots are trained to put a lot of weight into things they read in the documentation. And they tend tospresent loose speculation as fact. They often end up documenting some assumption that isn't true, then end up writing code as if it were.

anematode 5 hours ago

Even worse, in a brownfield codebase that was once fairly light with comments, that's now being subject to these modifications, the insane amounts of commentary around the parts newly touched by AI lead to an excessive emphasis on those parts, for both human and AI readers (who think, well if this one part is commented so thoroughly, it must be unusually subtle)

72deluxe 2 hours ago

It's like people didn't realise that it was unmaintainable before and now we have a new level of unmaintainability. The insane amount of code produced means it's only maintainable with AI.

giancarlostoro 14 hours ago

Honestly, if you saved a ton of hours with the model coding for you, at least give me 30 minutes of your own words, show me you know what you're shipping, if you can't do that, then I don't know if I want to approve the PR. My first job we always did peer review in a meeting room when a PR looked a little too much, you can't exactly bring in GPT into a meeting so its a good time to ask simple questions about the change to ensure you understand it just as much as they do.

febusravenga 6 hours ago

(usually) You're not in position of power to effectively keep that position. As comments aroiund - standing against will mark you as anti-ai luddite and will now end well for you, not AI-spammer.

fragmede 13 hours ago

> you can't exactly bring in GPT into a meeting

They totally gotta be doing that at OpenAI. Meeting invitees: You, co-workers, GPT 5.6.

giancarlostoro 13 hours ago

dimgl 13 hours ago

Congratulations: now only AI can iterate on your codebase!

Gigachad 12 hours ago

Even the AI degrades as the codebase gets shittier

duskdozer 2 hours ago

LPisGood 12 hours ago

That’s probably not completely true, but it’s approximately true.

BeetleB 14 hours ago

It's a code review, right?

Give feedback that about the docs and block merging till the issue is resolved.

LPisGood 13 hours ago

This sounds easy in principle, but a half dozen of these sort sorts of massive PR’s per week is basically untenable. I’m not gonna read the hundreds of lines of added documentation to decide if they’re correct or not. The price of generating new words is just so much higher than the price of evaluating it that I can’t be bothered.

tcmart14 7 hours ago

BeetleB 13 hours ago

Gigachad 12 hours ago

You can't keep up with the slop. And before you finish a first pass read on the wall of diff, another AI sloperator on the team has hit approve and the PR is merged.

LPisGood 12 hours ago

theptip 9 hours ago

I have my agent write up a summary of the diffs that land each day in my org. If there is something you interesting I’ll ask for an html explainer with code pointers and scan the code in parallel.

I wouldn’t say “post reading code” but it’s definitely trending in that direction.

I’d rather the agents put jumbo verbose descriptions in the PR description than in code comments TBH.

cuddlyogre 14 hours ago

You forgot the smoke tests that passed.

donkeyboy 11 hours ago

So many smoke tests in every PR i make with AI. Not that i mind, I just find that phrase funny.

seer 7 hours ago

Honestly, I’ve stopped caring about code readability for a few months now. I want the code readable _to the agent_ not so much to me.

I don’t trust it with code anyway - every feature needs comprehensive test, and then a live deploy on a real working test system before it is approved - I mostly measure success with - after deployment is it doing what it’s supposed to be doing. It’s like “helping another team managing their work stream” experience rather than coding yourself.

Funny enough models seem to have personalities and the dis on each other - when I had an opus orchestrator dispatching fable workers, they would comment on how “unreliable” it was and it had “evidence to prove it” and fable thinks opus is too rigid and needs more hand holding… it really starts to feel like managing team egos and verifying work. And I code scan mostly to just spot check if it’s not doing anything super stupid. But my goal is to make sure anything shipped is easy to change and fix, and every mistake has a test behind it so it doesn’t happen again.

I ship more problems, but they get discovered and fixed quicker. Before they reach prod of course. And from time to time you do reorganisation and refactoring passes where I brainstorm how things could have been better with the help of evidence- chat sessions, tests, bugs etc.

It feels less like rigorous engineering and more like gentle gardening. Or like “project management” not “coding”.

Honestly given my age now I’m fine with that. Have enough “hard” projects under my belt (ORMs, sql parsers, etc) that I don’t feel I need to prove anything to anybody, but I don’t think that’s even relevant- the velocity change is … I guess around 5-10x for me - with provable metrics, so I try not to lent the good old days but figure out how I can now live in this brave new world and be happy with my work.

hbcdbff 4 hours ago

> I’ve stopped caring about code readability for a few months now. […] I don’t trust it with code anyway

If you don’t trust it with code, surely you need the code to be readable so you can understand what it is writing?

broast 7 hours ago

Most ai output is meant for other ai's to read, in my experience. The humans job is to compress it for humans

sebastiennight 14 hours ago

Am I the only one who's had Claude almost systematically remove human-written comments?

It might be touching one line of actual code in a file, and take advantage of it to remove 20+ lines of actual useful comments.

Everybody is talking about the opposite, so I'm wondering if this is rare.

panopticon 12 hours ago

Is this in one of the skills or CLAUDE.md? This was happening in our codebase, but turned out it was interpreting an instruction to not add "what" comments as license to strip out comments.

Sometimes I have luck interrogating Claude on why it did something. It'll either point to a skill or agent file with the culprit, or it'll respond with some vapid nonsense and apologize.

MattGrommes 14 hours ago

I've definitely seen this. One of my least favorite parts of developing with AI is when I add print statements or small changes and the LLM removes them in the process of doing the next thing. I want to work _with_ the AI, not have it stomp all over my code.

aaaronic 13 hours ago

hrk5 9 hours ago

I think at this point all the info added by AI which certainly would be too much to read for every PR, it just serves the purpose of context for the next action. Which it could be good or bad depending on how big of a window of context you are working on

CuriouslyC 8 hours ago

I'm looking forward to when AI labs focus more on conciseness of code and writing.

EastSmith 15 hours ago

I dump AI output in PRs, because it ads context for the AI reviewer.

apical_dendrite 8 hours ago

With one colleague, I was leaving PR comments and he would just put my feedback into the AI and paste its response. So I decided to cut out the middleman and now I just @cursor and tell it to trim unnecessarily long comments.

the_af 9 hours ago

> I don’t really know how to address this situation or if it needs addressed.

My worry is that after several passes this compounds and starts introducing errors or biases, a bit like in the "telephone game" children play.

bitwize 4 hours ago

> My coworkers continue to dump hundreds of lines of AI documentation in every PR and every other line of code has between one and ten lines of AI generated comments, talking about the real unlock and how things are byte for byte identical on the load bearing path or how the acceptance ladder is misleading.

They're just helping you understand the whole picture!

> Features are coming out and metrics are improving, but we’re basically in a post readability code base, with the occasional performative comment about a variable name.

You futilely grasp for control and it eludes you. The Way is to ride the tides of life, move with the forces that shape you. Your code base is in the hands of the Machines now.

mawadev 14 hours ago

Just wait until you see vibe contracts, vibe requirements and vibe legal documents

RealityVoid 7 hours ago

I'm... Actually fine with that. In one direction. I use AI to fill in forma and usually it has really good pointers. I do not trust it to do it itself, but it does simplify things quite a bit.

Bombthecat 3 hours ago

You use AI to summarise it! That's the way to go lol

fnord77 8 hours ago

I always as for CONCISE documentation.

still get walls of text sometimes

moltar 15 hours ago

I address it with AI.

Write REVIEW.md.

I have CC check itself pretty well.

I also put into agent/claude/review instructions to write using simple English skill and humanizer skill. Then not to write redundant comments.

It’s not perfect but definitely catches lots of slop.

rfgplk 14 hours ago

It's actually insanely difficult to get LLMs not to produce comments. Even with explicit "NEVER LEAVE ANY COMMENTS WHATSOEVER", they still do, across basically all providers.

atombender 11 hours ago

golergka 14 hours ago

> perhaps it’s useful for the AI on its next pass

Yes, that's the entire point. And it is extremely useful. Why wouldn't I want this?

minus7 13 hours ago

Is it really, or do you just think so and it could actually mislead you and your LLM the next time? In my experience, the information in the comments tends to be quite redundant, often even with other comments in the same file

plmpsu 8 hours ago

afr0ck 14 hours ago

I think the main reason many people (including me), very often, lack the motivation to read content that is likely generated by AI is the suspicion that it comes from a place of intellectual laziness. Another reason, based on personal experience, is that AI content may suffer from too much verbosity, too much jargon and over-confidence, which makes the reading experience feel fake and border-line irritating. In many cases the content may have very little to no nuance, which is ultimately a waste of time. As an anecdote, someone posted a blogpost on Linkedin on using agents to implement a driver to access PCIe devices over TCP/IP. I was intrigued because that's not an easy task for several reasons, like handling PCIe interrupts and DMA. For exmaple, how does the remote machine map the device's PCIe BARs? And when it issues I/O to the devices registers, how are these reads and writes transferred to the remote device. In the end, this is just some virtual memory. In a local machine, this is either directly mapped to the PCIe physical addresses or some IOMMU virtual address space which is then translated by the hardware upon CPU/device/VM access.

After reading the long verbose promising article, in the end, the guy (with the help of the agent) only managed to implement access to the PCIe config space so that lspci on the remote machine works and shows the remote PCIe device, but that's all. It never addressed the issues above nor even mentioned them. The code was AI generated. The article was AI-written. The article never made a reference to DMA, interrupts, MSIX-X, IOMMU, IOTLB, virtual memory, etc, but it made big claims on next-gen datacenter disaggregated architecture, boosting GPU utilization, reducing large scale inference costs, etc.

Anyway, you get my point: big long beautiful words, but zero nuance.

Ekaros 5 hours ago

It is extremely annoying when you have a certain problem that surely should have someone making a solution for it and then you find a blog post. And in the end blog post doesn't actually solve the issue as it does has final step. But actually never implemented the most important middle bits. Thankfully I found someone who had actually solved that middle bit in workable hack. But still those blogs are really annoying pollution.

hinkley 10 hours ago

My question is always, "Am I willing to maintain this code?"

Sometimes that's a yes, even if AI generated it and I can tell despite someone making half an effort to be a human for a minute during the PR process. But sometimes it's not.

It gets really dicey when you've kept an architecture a certain shape because there's a difficult feature you intend to slot into the negative space. There are two or three ways to implement that feature, and the one they chose just stomps all through your potential. But that's why we have code reviews. You don't have to read my mind if I just tell you. But it can be frustrating if someone asks you to do it a different way, and then has comments on how you accomplished that, and then comments on the fixes for your other comments.

gortok 15 hours ago

The part that astonishes me is that in the year of our common era two thousand twenty-six that it's not universally offensive and reviling to post an AI-generated response to another person.

If I'm reading something on the internet, I'm either reading it to learn, or I'm reading it to be persuaded. If I wanted the LLM to teach me (thank you, no), I would ask an LLM. I'm reading your website/newsletter/email because I want to hear from you.. If you can't be bothered to put your time into writing it and teaching me what you think, why should I be bothered to read it?

Insimwytim 13 hours ago

I think there are some, who couldn't be a part of the public conversation, precisely because of they inability to add anything to said conversation.

LLMs enables them to post (or, rather, paste) something, in an attempt to trick others into believing they do have something to say.

They think they sound smart now, because LLMs are "very much the “stupid person’s idea of an intelligent person”"[1]

So now we are flooded with stupid people's attempts to show us how smart they are.

[1] https://news.ycombinator.com/item?id=49300763

yoyohello13 12 hours ago

Wow! that comment you linked speaks to me. I was watching a review video for a game yesterday that was so obviously written by AI it was actually painful to listen to. I started reading the comments and there were several people praising this Youtuber on their great use of metaphor. Literally "subbed because you're such an amazing writer." It actually shook me to my core. If those were real people making those comments, there is no hope for us. I need to believe those were mostly bot comments just to maintain my sanity.

kennyadam 12 hours ago

urbnspacecowboy 11 hours ago

zombot 3 hours ago

CuriouslyC 8 hours ago

tessierashpool 11 hours ago

notahacker 13 hours ago

I believe you've just described 95% of things posted to LinkedIn...

Quekid5 13 hours ago

jdidjsjdjw 10 hours ago

> So now we are flooded with stupid people's attempts to show us how smart they are.

Now? My friend, we’ve been flooded with stupid people’s attempts to show us how smart they are ever since internet forums came to be. Heck, just look at 90% of the comments on any given HN post. It’s mind-numbingly stupidity by the handful disguised as PhD talk—big words, fancy terms, heavy phrasing, all to say a bunch of nothing or just pretend they have a part in said conversation.

undefined 13 hours ago

[deleted]

BeetleB 14 hours ago

> The part that astonishes me is that in the year of our common era two thousand twenty-six that it's not universally offensive and reviling to post an AI-generated response to another person.

Because it wasn't pre-AI. It was normal for people to post links as arguments, counterarguments, etc. It annoyed me, and I didn't bother clicking most of them, and would occasionally tell them "If you can't bother articulating your thoughts, I can't be bothered with that link".

But I was always in the minority. If that behavior is acceptable to the masses, so is AI generated content.

(And, BTW, the "link as argument" bugs me a lot more than AI responses. If I know the person, I can assume the person has done some due diligence in reviewing the AI response before sending it to me.)

> If I wanted the LLM to teach me (thank you, no), I would ask an LLM. I'm reading your website/newsletter/email because I want to hear from you.

To play the devil's advocate: it's far from a given that had you asked the LLM it would have given you a comparable response to the one you got. You're precluding the possibility that the other party instructed the LLM to write what he intended to say.

sebastiennight 14 hours ago

I would have said the opposite: I'd assume the link to be to a blog post, or Wikipedia page, that articulates the idea in a clearer more succint way than the person might be able of.

This is, of course, before people started sending Instagram Reel or YouTube Short links. Or, maybe worse, links to 3-hour-long YouTube podcasts.

BeetleB 13 hours ago

aliasxneo 13 hours ago

erikschoster 13 hours ago

I think you're right, and we've been training ourselves for the shortest path of least resistance for quite a while while kidding ourselves that we're able to somehow preserve the result as worthwhile. Before I ever tried using LLMs for search I had already been training myself for years to offload my thinking to a quick web search and a skim of some plausible result served up.

Arguably things like Cliff's Notes and "for dummies" books were sating this impulse before that, I wouldn't be surprised if the line can be traced back further.

Since dropping LLMs altogether I've made the connection to the impulse for a superficial jump to the conclusion just by noticing how I use web search, or feverishly scan some text to get to the point.

Theoretically I studied critical thinking and have learned decades ago how to recognize when this is OK and when it's a superficial placation of some addiction to closing the book on a subject or micro-subject... but boy whatever good instincts I might have developed back then have significantly eroded over time. Trying to reclaim that again is pretty humbling.

thatjoeoverthr 13 hours ago

"Because it wasn't ..."

Not so. Posting links is not the same. If you were to copy+paste someone's blog post into the forum and post is as your own, without attribution, it would be seen as plagiarism. Everyone understands this; you're trying to pass another's work as your own.

On X there's actually a good modern equivalent to "posting links" which is @grok, and letting Grok add to the thread. There is occasional teasing but it's nothing like posting slop under your own name.

ChatGPT actually allows something like this; you can share a link to the conversation.

Everyone is free to do this, instead of using ChatGPT as a ghostwriter.

BeetleB 13 hours ago

watwut 14 hours ago

> If that behavior is acceptable to the masses, so is AI generated content.

No, linking blog post and posting AI generated content is not the same. One is ok, other is not.

BeetleB 13 hours ago

b112 13 hours ago

You're precluding the possibility that the other party instructed the LLM to write what he intended to say.

That is not currently possible. At best, you could train on millions of personal examples of style, eg historical emails, reports, etc, and you'd still never get what the person would have written.

I'd be astonished if an LLM didn't even miss important nuance, data, and focus on the wrong point.

It think the parent's point was, hearing a summary of what someone was thinking, from a second party isn't interesting as data from the primary source.

When you come to listen to Bob the Great, having a minion walk put and paraphrase Bob's words isnt the same. Human, LLM, or not.

preg_match 10 hours ago

BeetleB 13 hours ago

fluidcruft 15 hours ago

It's like when you type a search in Google and get a wall of SEO spam.

I do feel like there is some middle ground where AI helps, but there's this one guy who keeps emailing everyone with walls of dumbass text and does not integrate or understand the feedback he gets when we are telling him what he needs to do. He just runs it though the LLM and replies and then forgets half of it in the next email engagement which functions as /clear on his end apparently. Like... dude I have ChatGPT and Claude, too. Actually read your goddamn emails.

paimapi 14 hours ago

I was going to say, the acceptance of bottom-of-the-barrel and subsequent capital investment in SEO as some industry-standard practice has pretty much lowered our standards for writing and comprehensibility across the board

it probably doesn't help that the US education system is so deeply broken with how rooted it is in segregation-era practices [0][1][2]. the average gets dragged down quite a bit when some districts receive so much money that they're flying their Spell Bowl teams to nationals and putting them up in hotels while another one a few miles away can't afford to pay for textbooks. average reading levels suffer and consequently so too does the effort that people put into writing well and reading critically

[0] https://www.shankerinstitute.org/segfunding

[1] https://www.jchs.harvard.edu/research-areas/working-papers/s...

[2] https://edlawcenter.org/research/the-color-of-opportunity/

venzaspa 14 hours ago

People are posting on this very website and commenting on Reddit using AI. I can't get myself into the headspace that would enable this behaviour. What exactly is the point of not engaging in conversation yourself and getting a bot to post it for you on an free platform. Crazy.

otterley 14 hours ago

The HN Guidelines explicitly forbid posting AI-generated comments; they will be deleted if detected or reported.

I'd like them to go further and delete links to AI-generated content, but I haven't been able to persuade management to do that yet.

miyoji 14 hours ago

plorg 14 hours ago

I get the sense that people who spend all day interacting with software can start to see every interaction, especially in online text platforms, as a kind of API or user interface. You might learn to instrumentalize your interactions and relationships with people. Chatbots, including coding agents, only reinforce this kind of behavior, as they don't have the kind of limits of patience or of bodily or emotional needs that humans have.

cheschire 14 hours ago

What drives people to cheat at competitive games? I imagine it’s the same genes.

mister_mort 7 hours ago

xdennis 12 hours ago

rockinghigh 14 hours ago

strbean 13 hours ago

I've seen it used as a newer evolution of trolling on Reddit. A user hops in to a somewhat nuanced discussion and gives a very curt and rude contradiction, and then just uses an LLM to generate walls of argumentative text after you respond with "What are you talking about and why are you being such a dick?"

Very low effort the ensnare someone and waste their time for a bit, even though it is pretty quickly obvious what they are doing.

asadotzler 11 hours ago

Attention is all they need. It's ego-tripping, whoring for social status.

tayo42 13 hours ago

Everyone can use the Internet. Some people are just crazy, neurodivergent or whatever.

sobellian 13 hours ago

A few thoughts.

- I'm open to seeing information from an AI (I'm fine with an LLM "teaching me") so long as it is high quality. That does require human inspection.

- I've seen a related bit about AI-written emails where the commenter would rather see the prompt. I agree. As a software engineer, I like reproducibility. If an AI outputs an interesting result, show me the "source" (i.e. the model, effort, prompt, etc.). I wouldn't say no to an added one-liner summarizing a long response.

- In the end this will be a difficult attitude to prosecute as it boils down to a Chinese-room-style preference. You want to hear from some being on the other end of a labyrinth of transmission lines and logic gates. As language models continue to develop, what goes on inside the room will be difficult to verify.

- The day may come where, rather than people passing AI off as their own thought, they will pass off their own thought as AI. "If I wanted a human to teach me (thank you, no), I would ask a human." The coming generations may value AI's opinion much more highly, whether that's right or not. And people may want to usurp that credibility for themselves.

dhorthy 10 hours ago

> AI-written emails where the commenter would rather see the prompt

this a thousand times this

LLMs are information transformers. if you're trying to take some rough idea and blow it out into something that "feels" substantive, you're just combining your high-signal idea / prompt with a bunch of meaningless bloat and noise from the model weights.

freetime2 11 hours ago

What's astonishing to me is how quickly people at my workplace have adopted this habit. Six months ago my manager was vociferously complaining about his boss asking him to review a lengthy document that was clearly AI generated, saying that his boss wasn't even capable of understanding the document the LLM had created. Now the majority of technical communication I get from my manager is just a transcript exported directly from ChatGPT.

Recently on a call with a junior coworker where they asked me to look at some changes they had made, they were completely unable to answer any questions that I asked on their own. The way the conversation went was: I ask a question, they type my question into a ChatGPT prompt, we read the output together and discuss whether it makes sense. This is a person I've had great discussions with in the past, and who has frequently had really good insights, but seems to have completely tapped out.

To be fair, the outputs from ChatGPT tend to be quite good. It's the inputs people give it where problems most often arise - and people seem far too eager to charge ahead with a vibe coded solution built on invalid or incomplete inputs/assumptions. And it's shocking to see how quickly and willingly people have handed over control to LLMs.

72deluxe 2 hours ago

This is very sad. I found it was interrupting coding when the editor would suggest new blocks of code without me actually thinking and I found I was just generally abandoning any thought processes.

So I've disabled that and now I'm explicit if I want to solve a problem because then it means my brain's actually engaged.

It seems to be like a shortcut to early onset dementia because the brain's never being actively involved in problem solving.

Twirrim 11 hours ago

I've been wondering lately if this is about the end of the road for me for a career in tech (I've had a good long one, so.. maybe?).

I'm so tired of AI Slopped architecture documents, code, messages in slack, emails etc. I'm close to flat out rejecting any architecture doc I get that's written by an LLM, because I'm not sure the engineers even understand what they're proposing. The code is often a nightmare under the hood, even if it works. I've got smart coworkers who now just copy paste everything via an LLM giving themselves something approaching a lobotomy in the process.

freetime2 10 hours ago

Aramgutang 12 hours ago

There's an old meme tweet that goes like this:

> the fact that i'm at risk of seeing a 14 year old's opinion at any point during my day is a human rights violation

This always strongly resonated with me; if something was written by a 14-year-old, I don't want to read it, end of story. There is no way it can provide value to me. I shudder to think that I may have unknowingly argued with 14-year-olds on the Internet in the past.

But if I had a child who was 14, I wouldn't object to interacting with them, obviously.

It's the same with LLMs: the only time I want to be reading LLM output is when it's my model that I prompted myself.

tpoacher 14 hours ago

I completely agree in principle, but to play devil's advocate, if an "author's" prompting technique is better than mine such that they generate a more useful article than what my own AI session might produce on average, then maybe there's value in some generated articles.

The above still implies some effort going into good prompting, however. I completely agree about the uselessness of "build me a castle; no bugs plz" style generated articles.

mediaman 14 hours ago

It's possible, but I've experimented with different style guides and prompt methods and have never gotten it to output what I'd call "good" writing.

It is almost always low information density. Sometimes I can get it to remove most of the extraordinarily cliche phrases it injects into everything, along with the tortured, gauche prose (especially Claude). But what remains is an expansion algorithm: it takes a simple idea and expands it like polyurethane foam to fill however much space it can take, the volume filled mainly by grammatical syntax and only traced with any actual semantic meaning.

gowld 13 hours ago

elendilm 13 hours ago

dspillett 14 hours ago

> that it's not universally offensive and reviling to post an AI-generated response to another person

There has even been an advert extoling the behaviour (I forget which phone OS brand it was for, which is a shame as I might like to try avoid buying anything from them): "if a friend asks a question and your phone can answer directly, shouldn't it?", to which my gut reaction is "absolutely fucking not, it shouldn't". My more considered reaction is pretty much exactly the same.

For a start I'd consider it rude and if I found out it was happening reduce my fucking my communication with that person, or call instead if messaging (unless it seems they have a fake them taking calls, no doubt that'll be a thing sooner rather than later). And quite frankly I will reply when I'm good and ready, thankyouverymuch, instant automated reactions plays far too much into the "always available" thing that I don't care for even without AI.

I look forward to future news stories where people with such features turned on suffer PII exfoliation or other hacks when someone finds a prompt injection hole, or just uses the feature as designed because the user has been too open with what they have given it access to and who it should respond to (perhaps by inaction, because the defaults will likely be wide open for "convenience" until there is uproar).

thih9 14 hours ago

> If you can't be bothered to put your time into writing it and teaching me what you think, why should I be bothered to read it?

You are likely not the target audience anymore and they don't care if you're going to read it.

giancarlostoro 14 hours ago

This is why even if I ask GPT or Claude or whatever to rewrite an email, I still rewrite it by hand with my own words, what I look for is, did the AI remove sentences where I repated myself or that were too wordy? Perfect, I'll ommit those details.

jaredsohn 11 hours ago

Could probably ask the AI what changes they'd make to the email.

noman-land 14 hours ago

You and I and everyone else need to make it clear to people who do this that we don't like them doing this and we think they are uncool.

dspillett 14 hours ago

Me calling someone uncool would be rather hypocritical in afraid! I've done some interesting things, cool even, but that doesn't necessarily make conversation with me interesting/cool! I'll go with letting them know I find it dickish and perhaps even a tad offensive.

sebastiennight 14 hours ago

ithkuil 13 hours ago

Don't get me wrong, I loathe the AI style as the next person.

But I don't buy your argument: if a person used AI to produce a text it doesn't mean they haven't steered the I in the direction they wanted the conversation to go and (hopefully) review the output.

That's an added value

Yes, it would be nice if it was also pleasant to read

LPisGood 12 hours ago

They don’t review the output. That’s the thing. No one is reading this stuff, not all of it at the least.

oblio 11 hours ago

It's still a lower effort contribution and because the surface is plausible and the content is usually verbose, it's a bigger waste of time for the other party than a low effort 100% human contribution.

gspr 5 hours ago

Steered it?! If I'm gonna read it, I want someone to have written it, not bloody "steered" it!

"Why are you upset with this restaurant meal? Okay it wasn't actually cooked here per se, but the chef certainly reheated it and carefully monitored the microwave oven while doing so!"

This crap just needs to end. "Steering" words at another human being is incredibly disrespectful.

ithkuil 3 hours ago

jerezzprime 10 hours ago

To play devil's advocate here, it is possible for someone to simultaneously use AI to write and also not be a meat proxy. I'm not saying that is the norm, but I have written docs where the vast majority of the words come from AI, but I also spent multiple days on the substance and content.

Ampersander 3 hours ago

Maybe if you only use the LLM to proof read or something? I don't know if LLMs are actually any good for this purpose, but it's something I came to think of when trying to answer your question.

I do think that it is very difficult to not be a meat proxy when you utilize an LLM for writing tasks. These tools are computer programs that generate text, so what else would you do with it than have it write for you? This is being a meat proxy.

Trying to avoid being a meat proxy can quickly eat the supposed productivity gains of using an LLM in the first place.

Like say I need to write an article about some subject and it would take me the entire day to complete this task without an LLM. I can get some sort of article out of an LLM by simply asking, I don't need to think about the subject myself at all. The LLM productivity promise is also fulfilled, because I did an entire days work in a minute or so.

Now if I also need to read and understand the work, and be able to defend it or explain it to others as if I produced it myself, then this will take a lot of time. If on top of this I need to edit the text to sound like me rather than an LLM, then I probably still need the whole day for this task and I have lost all the productivity increase that I sought from using the LLM.

It's the thinking that takes time when you write, not typing. But you can't do the thinking and avoid doing it at the same time.

The same idea applies to coding too. Doing code review and requiring the author and reviewer to read and understand the code basically eliminates all the productivity gains that using the LLM was supposed to provide. Throw out the reviewing, reading, and understanding and we can have each developer producing a thousand kloc per day, over 1000x productivity. If we don't throw those out, we are comparatively in the exact same spot as not using LLMs at all.

scarecrowbob 14 hours ago

Getting an AI response from folks has a very "let me google that for you" kind of feel.

If you're not familiar with the concept... https://letmegooglethat.com/?q=lmgtfy

fhe 10 hours ago

maybe it's not so absolute. if someone else has the talent or takes the effort to come up with a clever prompt that got an interesting response from an LLM, I'd want to read it too. Treating LLMs as a tool, this is not so different from someone else using Blender to create an interesting animation.

m463 15 hours ago

AI;WR

scotty79 6 hours ago

I'd rather read something novel but AI generated, than the opinion I've seen few times already. Like yours.

fragmede 13 hours ago

It takes energy to generate the LLM response. If you read the already generated response instead of generating your own, we burn less coal.

ModernMech 14 hours ago

I went to a farm opening this weekend. A guy was there with fliers with about the barn renovation he completed, products they used, how the process went. 100% LLM output. How would you talk to your LLM about something like that? If he gave you that flier, would you scoff and trash it talking about how you can't be bothered to read it if he didn't write it? Or would you look it over?

dspillett 14 hours ago

> If he gave you that flier, would you scoff and trash it talking about how you can't be bothered to read it if he didn't write it? Or would you look it over?

Depends on his countenance and how good a mood I'm feeling in!

In any case I might well ask how much time went into at least reviewing the output. Or I say (rather than a flat AI;WR) "I'll scan that and have an AI summerise it for me later".

Calazon 9 hours ago

Is there something in particular I'm trying to glean from that information? If so I might look it over, or snap a photo and ask my own LLM about it.

If not, I would politely keep my mouth shut, then pocket the flier to trash later, and on the way home I would complain about it to my wife.

ModernMech 8 hours ago

quickthrowman 12 hours ago

> If he gave you that flier, would you scoff and trash it talking about how you can't be bothered to read it if he didn't write it? Or would you look it over?

I would crumple up the flyer, throw it on the ground, and then ask for another one. Then I would crumple up that flyer, throw it on the ground, and ask for another one. I would repeat this until he refuses to give me another flyer.

sailfast 12 hours ago

It is offensive and reviling. But people do it anyway. People are lazy. And often don’t care about you, the reader.

throwaway98797 13 hours ago

it’s not that it’s ai generated it’s that it’s bad.

blitzar 13 hours ago

Is Ai really any more offensive than the templated influencer slop of the past few years?

If your favourite creator is engaged in generating this style of content, then I think it says more about your tastes than their morals.

Don't smash the like button, don't share and unsubscribe.

crab_galaxy 13 hours ago

Everyone is fighting OP on this extremely reasonable take when some of us are dealing with coworkers that copy slack messages/JIRA ticket comments/PR feedback into Claude and respond with the pasted output as is back like that’s completely acceptable.

Like I don’t need to be placated by someone else’s AI agent when I call out something in a PR, especially when they have such an aversion to conciseness and resolution

blitzar 13 hours ago

edaemon 13 hours ago

Volume is the problem. There's so much more of it now. Many platforms I used to enjoy are just overwhelmed with valueless content.

blitzar 13 hours ago

cyanydeez 12 hours ago

ok, what part of the last decade led you to believe that communication decency has radically improved.?

bdangubic 13 hours ago

while i might not have written it, i used my masters in prompt engineering to carefully guide its creation :)

LPisGood 11 hours ago

If this is not sarcastic, which school gives such a masters

xdennis 12 hours ago

> The part that astonishes me is that in the year of our common era two thousand twenty-six

It astonishes me that in 2026 AD, people still like to pretend that our calendar is not based on Christ's supposed birth. Christians have no problem calling days after pagan gods (Wednesday = Woden's day, Thursday = Thor's day, etc), but for some reason we have to pretend like the calendar isn't based on the Christian god.

tom_ 12 hours ago

It's typically referred to as CE to indicate the speaker's personal lack of belief in the divinity of Jesus, that might be implied by using the term anno domini. Nobody is under any illusion about whose birth began this era.

godwinson__4-8 14 hours ago

Yes, we get it. Laziness has always abounded in human endeavors. Despite the common social norms against it, there is a clear reason. Obviously, if you can get the same reward with less work it is a greater ROI. The incentive is pretty straightforward. In a mechanized world the incentives are even more aligned towards a kind of laziness given the capacity for automation to scale.

None of this is new. People who act like they were born yesterday at every instance in this parade of slop induced phenomena are more grating to me than the slop itself.

Just take your response. Reads as incredibly lazy to me. I've read pretty much the exact same sentence so many times by now. At a certain point, what distinguishes a mob of humans repeating each other from an LLM? Original, high quality commentary is exceedingly rare. Surely you must already know this. Of all the words written on the internet, most must be garbage. It was not LLMs that tipped this balance. In my experience, the average LLM actually speaks as a superior interlocutor to the average person online. It comes with the benefit that if you get a lame response, you probably deserve it for asking such a lame question.

Most humans are not worth reading. Sorry, but this should be obvious to anyone who has tried to research or investigate anything with significant rigor. People don't appreciate enough that many times when something comes up where the LLM is doing something "dumb" it is obviously because they are trained on a corpus authored by dumb humans. My favorite example of this is when people complained in a geopolitical simulation the LLM happily deployed a "tactical nuke" as if the phrase "tactical nuke" is not itself aptly described as a wholly human authored hallucination.

People are using LLMs at work or w/e to get back time from their corporate bosses that don't care about them. Not everyone has the luxury of being able to act like an enlightenment era university student. Most words published have to be akin to "we'd like to reach out to your about your car's extended warranty" anyway. Many blogs are more or less cover for the same, or at the very least indirectly subsidized by such commercial interests. If that is not offensive, frankly it's not clear why it would be more offensive to have an AI author it. It's mostly all pablum anyway.

No one who actually cares about a topic will use a LLM. The rest of them might as well, because it makes almost no difference. If you had a clearer model of this incentive structure you doubtlessly on the whole benefit from as a modern human typing on hackernews, instead of this knee-jerk reactive one ("universally offensive and reviling") you would learn to just move on and get over it. If you want more people to have the luxury of your enlightened discernment, you should probably celebrate LLMs automating away the majority of so-called "knowledge work" so that the economy, which has largely already solved for basic human needs, can achieve a state of hyper optimization, algorithmic foresight and UBI where none of us have to work and we can spend all our time in symposium with each other, given that is what you seem to desire for yourself and other humans. We will not get there if at every turn LLMs are demonized on these incessantly banal terms.

otterley 12 hours ago

It's not controversial that if left alone, most people will tend towards minimizing laborious work, and that the use of technology to do that ought to be expected. Consider, however:

1. This work was largely optional to begin with. Few people actually need to post on LinkedIn, write blogs, etc. It's arguably a mountain of content waste (which is why the term "slop" is so fitting). Not only does it waste the producer's time to produce it, but it also wastes the reader's time to try to consume it.

2. It's not a substitute for actual work. If it becomes clear that you're using LLM to do work you are paid to do, eventually the person who pays you will notice, and replace you with the LLM. If your employer values you because of the work you do, it's in your best interest to do the job yourself.

godwinson__4-8 12 hours ago

Multicomp 13 hours ago

TL;DR: I want more effort posts/better SNR, so I guess I have to tolerate the human non-effort posts complaining about AI non-effort posts with the hope that it helps retard the rate of non-effort posts vs effort posts.

While I'm hoping the AI bubble pops sooner than later, as I still hold out hope that knowledge work will continue to require knowledgeable humans at the helm, I wanted to add on that I think you make a good point.

A lot of users online can't read[1], and between a lack of pure reading comprehension, poor media literacy habits draining one's brains and ability to focus, and finally the increase in AI-enabled content, I'm not surprised at how redditor-cultured netizens love to throw up their hands and say "AI;DR!", as if that makes them somehow morally superior.

These users won't read dense texts or try to elucidate meaning out of human-written works, they ask for AI summaries or manual "TL;DR" entries as it is, now the AI is use is being used as an excuse to enable mental laziness and lack of attempts to read information.

So while I get lost in wikipedia walks because I'm looking for written entertainment for 'learning', they are getting mind-melted by algorithms, therefore, an uncharitable part of me wants to let the meat-proxying continue.

And then the other part of me that gets annoyed by having to sift through AI-slop-infested text to see what if any meat there may be in there decides that perhaps that's not as helpful of an attitude as I should take after all, because if everybody decides to meat-proxy the world away, I'll be unhappier than letting lazy functionally-illiterate-users complain aloud, even as the latter is boring reading as well.

[1] in the https://coding2learn.org/blog/2013/07/29/kids-cant-use-compu... sense

godwinson__4-8 13 hours ago

coderatlarge 13 hours ago

i wonder if you’re equally offended by a public figure hiring young people to ghost write for their social media accounts or their books etc

otterley 12 hours ago

The benefit and promise of social media, at least early on, was that it was supposed to be authentic - that when someone posted, it was really coming from them. Engagement was truly personal, at least for a little while. It still is for most.

In the book-publishing context, ghost writers have to be credited, even if the attribution is in small print.

cortesoft 15 hours ago

I really like the point I read somewhere the other day; instead of sending me the AI output, just send me the prompt you used to generate it. That is the only part that contains only the information you are trying to convey. The rest is just guesses flowery language added, and it confuses the actual message being sent.

supermatt 14 hours ago

stordoff 13 hours ago

FWIW, I tried to read the AI version first, and found myself bouncing back to the prompt multiple times. The AI version just reads as flat, impersonal, and as if it has had all the corners sanded off (both in style and content). The prompt conveys much more about what _you_ want to say, and is easier to read without zoning out and losing interest.

If you must use AI in this way, I'd tell it to take a _much_ lighter touch. It cleans things up without washing away the personality of your writing. ChatGPT example:

> adjust the following for spelling and grammar, making MINIMAL alterations to the original wording and content. do NOT rewrite, just clean up what is already there: [post]

https://chatgpt.com/share/6a8382b9-3620-83eb-b17e-4397aee5ad...

supermatt 13 hours ago

miyoji 14 hours ago

Yes, the original prompt is 10000% better than the AI output, because it shows me exactly how much the author (you?) cares about this topic and how much effort they're willing to put into communication, which is barely any at all.

supermatt 14 hours ago

ryankrage77 12 hours ago

The stream-of-consciousness in the prompt is much better than the LLMs response. Yes, it's messy and unpolished, maybe even a little hard to parse, but it's so much richer for it. The way it is written lets me follow your thought process, shows that you were getting the words out quickly without much or any editing, and how you were exploring the idea and making it more concrete by giving it written form.

The LLM response has none of that character, it doesn't give me that little sliver of insight into the writer. It strips the idea from the author, making it generic and anonymous. The only thing I can gleam from text edited with an LLM like this (besides the literal meaning of the text), is that the author didn't care enough to express themselves.

Sure, it's more polished, but doing the writing manually is half the point. You have an abstract idea, you refine into something that can be communicated, and in doing so, explore that idea and improve your understanding of it. I've re-written this paragraph a dozen times trying to do exactly that.

supermatt 12 hours ago

x-complexity 10 hours ago

voxelghost 6 hours ago

I asked claude 4.5 : """ Please, with an absolute minimum of content modification, edit this text with proper paragraph-formatting, spelling, punctuation and grammar. Do not alter vocabulary, language, or tone. """

And then fed it your input.

And the output was a very easily readable, enjoyable plain-ascii-text, with no Ai-ick, except for an em-dash or two.

Tried pasting it here, but that removed paragraph formatting

supermatt 6 hours ago

an0malous 13 hours ago

I think you intentionally sandbagged your prompt by dragging on and being repetitive and it’s still a better read than the LLM output.

There’s also a difference between “please edit my writing” and “please generate a blog post from these bullet points.”

flitzofolov 10 hours ago

This is actually a great representation of what is good and what is insidious about LLM assisted writing.

The practice of writing can serve the purpose of conveying an idea or information to the readers, but it can also be an invaluable tool for the writer to process, digest, and internalize a message.

The act of wordsmithing, and shaping the idea from its raw rambling form into a coherent narrative, is intellectual metabolism.

A good writer will both distill the ideas, present them in such a way that will be pleasurable to their readers, and also bring the reader along the way so they can learn as well, and feel like an active participant.

The LLM tend to produce prose that defeats the purpose for the writer, takes the joy out for the reader, and ultimately does nothing for anyone but take up space.

It's not more words that make good stories, and it's not more code that makes good programs. It's what use is this to anyone, and only humans understand what other humans want and only humans can care.

Seems like people in this thread agree that it's better to express oneself in a less skilled fashion but actually write something that represents your idea, than to present some polished turd and pass it off as your own writing.

Same as a birthday card on some stock paper written in crayon will always be more valuable than a store bought card with generic sentiment.

jcranmer 11 hours ago

The stream-of-consciousness is only hard to read because it lacks paragraph breaks, sometimes sentence breaks, and there's so many misspelled words. If you just tweak it to fix that stuff, it becomes fairly readable, like most internet comments or whatnot. (Which do you think this comment is, a polished essay, or lightly-formatted stream of consciousness?)

Meanwhile, the LLM-generated essay is hard to read because it's essentially the high-school essay that's padding its paper to meet a minimum page count. I'm surprised that you find it easier to read than most human text, because I've invariably found that my first reaction to LLM-generated text is "where's the point?"--everything is just buried in so much fluff.

So yeah, I find the prompt much better than the LLM output.

supermatt 10 hours ago

swatcoder 14 hours ago

Sure enough, the prompt is infinitely more expressive and interesting.

AI writing is like the voice anonymizer they'd use in TV interviews when they wanted to hide the identity of the person speaking. The output is more adherant to convention but likewise more impersonal and exhausting, and when it's used by too many people it's so indistint that it becomes noise.

It might look good to you in isolation, because you're excited to see that it says what you meant to say without the features you feel self-conscious about, but to others it just reads like yet another sample of the same old AI slop. The message gets entirely lost behind that.

jmilloy 8 hours ago

I read your entire jumbled stream joyfully and hated the llm article that was spit out.

nunez 10 hours ago

definitely prefer the rambling; i can break it up into paragraphs sans LLM

mrheosuper 9 hours ago

while both are difficult to read, i enjoy reading the prompt more, it feels more human (don't know exactly what).

raincole 14 hours ago

The prompt is the whole chat history. It would be like 10~20 times longer than the final output if the author gave the slightest amount of shit.

Alpha3031 13 hours ago

The author giving the slightest amount of shit seems like a big assumption to make, but ultimately even it that were the case I don't see why I would prefer what I read to be curated in that specific manner (having access only to what has been filtered past some black box). As opposed to being able to choose what to read from the whole chat history.

CuriouslyC 7 hours ago

Would you prefer a 10k word discussion with an agent about a hypothesis with back and forth over data sources and such, analysis, etc, or a 2000 word AI essay condensate with the rough edges smoothed over manually?

jampa 14 hours ago

I used to do that, but the person could be bad at prompting too (which is often why the LLM couldn't give a good answer in the first place).

So the polite version I use now is: "Hey, just to get a bit more context, what was the original problem you were trying to solve?".

That gets them to distill their own problem a bit further.

coderatlarge 13 hours ago

i personally prompt to produce a baseline then re-prompt to tweak then re-re-prompt to re-order, then re-re-re-prompt to expand certain parts, then re-re-re-reprompt to properly cross reference internally , then re-re-re-re-reprompt to proof read and add missing references . so there is no single prompt that produced the document and if i were to start from scratch the path would likely be different.

hinkley 10 hours ago

Somewhere in that wall of text is a single statement that might sink the entire project...

snmx999 14 hours ago

Not all AI content was created with one prompt.

m132 14 hours ago

I like how some people take offence at that

fallingbananna an hour ago

I don't like it. I don't take any offence. It just triggers the same AI;DR for me.

If I think the task requires a human to think about it. And the person is the human paid to think about it. Whether I get a wall of AI text, prompt, or an entire AI conversation... there is no human insight in it.

If that person took the time to think about the problem, had a chat with the AI, and understood the output, surely they can take the final step and tell me the short result/summary themselves, right?

---

However, if I had to choose lesser evil, I would of course prefer to have a link to the AI conversation over having a wall of text directly in the conversation.

globular-toast 3 hours ago

Yeah, my post is more than a year old at this point: https://blog.gpkb.org/posts/just-send-me-the-prompt/

A lot of people replying seem to be misunderstanding, though. The only point of human-to-human communication is to transmit thoughts from one brain to another. If you simply send me stuff from AI then I don't need you. I want to hear your thoughts. If you don't have any, then I don't need or want to hear from you. Your thoughts are entirely contained within your prompts. Just send me those.

paulpauper 15 hours ago

Many people use many prompts and revisions or prompts or combinations or human and AI writing. Its not a simple as just making a single prompt and copying the output as the blog post.

pelotron 14 hours ago

They could prompt the AI to scroll up and copy their previous prompts for them.

rsalus 14 hours ago

Yeah, by the time my thought is fully formed I've gone through an entire conversation.

onion2k 14 hours ago

That implies you think the output of an LLM is only a rewording of the prompt, and that it doesn't add anything from it's corpus of training data. That's obviously untrue.

andriamanitra 12 hours ago

Even when LLMs add something it's a better idea to let the readers use LLMs to augment content. They have the best knowledge of their own background and what they're looking for.

Sharing information that is already in the corpus is simply not that valuable in a world where everyone has access to their own LLMs.

Alpha3031 12 hours ago

I'm in the "post both and let your readers figure out which, if any, they prefer" camp but even if you didn't (and unless you were using one of those super special models that can't be released according to the companies) I would hope that any literate adult that thought it valuable would be capable of consulting something with comparable knowledge and experience.

Of course, given that posting one is not mutually exclusive with posting the other, I would still think that posting both is the easiest way to satisfy both people who prefer to read the prompt and those who prefer the read the output.

neilv 15 hours ago

> Look, I get it. It’s Q3 2026, and we should expect that everyone is utilizing AI at SOME point in their process (sourcing ideas, creating outlines, refining prose, etc.).

Sounds like this isn't everyone, but rather, it's people who have nothing to say, and -- even after they've "sourced ideas" -- they don't know how to reason about it, nor how to communicate it.

This isn't everyone. This is people engaged in generating noise, for the sake of noise.

jannyfer 15 hours ago

Fantosism 15 hours ago

Thank you. Felt like I was stuck in a time loop.

sega_sai 15 hours ago

If some text is AI written as a response to a much shorter prompt, then the prompt and/or sources used to make the text should be published instead (or at the very least together with the text).

al_borland 15 hours ago

I had to do this with my boss. He sent an email saying he asked AI about an assignment he gave us, then sent us the reply from the LLM. It was verbose and lacked any and all awareness of the constraints we have within the company. The assignment was poorly defined from the outset, and I asked for the prompt he used, because I thought that would be far more useful to understand what he was looking for rather than what AI decided to spit back.

It turned out his prompt was equally uninspired... 1 or 2 sentences. That was the thought he put into it, which then had us spending hours trying to figure out the AI reply. He could have saved the whole team a full day by just sending the prompt... or nothing at all.

Gigachad 12 hours ago

Having this problem a lot at work currently. Every single jira ticket is a novel worth of useless text you have to skip over to find the human written parts. Occasionally important details get lost in the noise because they are sandwiched between slop.

bessbd 15 hours ago

I wish I could do a "right-click -> view page source"-like "right click -> view prompt" or like the dark mode toggle (prompt <-> ai slop (expanded)), depending on my mood (although almost everything is in constant dark mode, so I believe I'd look mostly at the prompts)

beloch 15 hours ago

The infinite monkey theorem[1] can be applied to show that AI is not incapable of producing quality output. However, expecting your audience to sort through the output from a very large quantity of monkeys is not respectful. I think the best approach would be:

"Here is the prompt and model I used, here is the portion of the output that stuck out to me as relevant and useful, and here, in my own words, is why I think that is so."

i.e. Highlight the good part of the output for me and, preferably, explain why you think it's good. Otherwise it's the same thing as posting slop, only with extra steps. You thought it was worth posting and I thought that made it worth looking at, but now I'm sorting through a bunch of monkey garbage looking for what made you think that. Being a different person, I may not find that hidden gem and I may become quite frustrated with you.

________________

[1]https://en.wikipedia.org/wiki/Infinite_monkey_theorem

zirkonit 14 hours ago

Funnily enough, for me AI writing is usually the summarizer rather than expander. I would usually give Claude 2-3x the amount of data in notes, context, braindump etc; when doing person-to-person communication, using AI to _expand_ the context rather than shrink it is doing everyone a disservice.

JimTheMan 10 hours ago

The problems with AI text is mostly a 'skill issue' or 'taste issue'.

It's a tool like any other. It assists the intelligent, but makes the lazy - lazi-er.

add-sub-mul-div 15 hours ago

I think of a prompt more like a tweet. The medium does matter. If someone was only willing or able to put an abbreviated amount of thought and effort into something, it's not worth a disproportionate amount my time or attention.

JoshTriplett 15 hours ago

Exactly. And I think the information theory matters here: it's worth putting in information proportional to the human-supplied input, not proportional to the AI-expanded output.

paulpauper 15 hours ago

It's like "inverse twitter "

perching_aix 15 hours ago

"please walk our observability stacks, our IaC code and config, our cloud account, and our application codebases to gather an RCA for for any errored out request responses we've been producing this week. include a tabulated breakdown."

~actual prompt i sent in to claude last week. doing what you propose would be basically impossible / nonsensical, and further undo the entire exercise, sending all the money spent on the tokens down the toilet.

put differently, if you use agents in any actually useful manner, the principle you describe erases whatever value they did end up providing. though since the whole underlying premise is that ai never provides any value, maybe that's the intended result and is as expected. in which case, i'd argue such a desire is more than a bit demagogue.

CyberMacGyver 15 hours ago

Don’t be a meat proxy [0] is another one I like

[0] https://news.ycombinator.com/item?id=49151933

slybot 15 hours ago

hatthew 14 hours ago

One of the ways I think about this is to treat AI as if it were another person. If I want to give information to Bob but I think Alice might do a better job of writing something, I'm not going to ask Alice and then copy-paste her response to Bob. I'd either tell Bob to ask Alice, or loop Alice into the conversation. Me being the middleman between Alice and Bob can cause several issues including delayed communication, miscommunication, and obscured provenance.

Alice being AI or a real person doesn't change those factors much.

CuriouslyC 7 hours ago

I think this is a reasonable position, I prefer when people separate their words from their agent's words clearly, but I don't have a problem with reading stuff other people's agents wrote if the input to the writing was really good. I don't need to see the prompt, not having your agent Cyrano me is enough.

pavon 15 hours ago

AI—DR

phito 2 hours ago

It's late and you've already done what most people aren't doing — go rest.

orc00 14 hours ago

You've addressed a load-bearing seam.

krat0sprakhar 13 hours ago

Haha, this is my favorite one so far. Well done sir

GPerson 14 hours ago

You’ve hit your session limit

armanj 15 hours ago

You're absolutely right

hamdingers 15 hours ago

Now I have the full picture

sethops1 12 hours ago

Google Gemini is experiencing high load at the moment.

attheballot 3 hours ago

This bit in particular

> Look, I get it. It’s Q3 2026, and we should expect that everyone is utilizing AI at SOME point in their process (sourcing ideas, creating outlines, refining prose, etc.).

I stopped reading there.

r_lee 2 hours ago

I really don't understand the "refining prose"

it's more like, "refining prose so that nobody sane will bother reading it". like wow it's so useful to claudefy your thoughts, wow look at how amazing your blog post looks now with how much more slop you produced from your prompt, amazing.

I really wonder like, do those authors not think from the perspective of the reader?

marton78 14 hours ago

this is based on actual measurements, not just guesswork

hidelooktropic 15 hours ago

I get this reference

Gecko4072 14 hours ago

You hit the nail on the head.

DamnInteresting 14 hours ago

I appreciate the pushback!

cobolexpert 15 hours ago

You closed the gap

incognito124 15 hours ago

genuinely amazing

Applejinx 14 hours ago

Love the em-dash. Chef's-kiss.

mock-possum 15 hours ago

That’s the shape of it

bratr 15 hours ago

here's a honest take

r_lee 15 hours ago

that's load-bearing

mukize 14 hours ago

and honestly—that's the seam right there.

Lerc 11 hours ago

For me the bar is still quality. Sure it bothers me if I search for something and find a crappy AI written tutorial that answers none of my questions, but if I found a high quality well written, insightful, and informative tutorial, I would not care if it were AI written.

I guess the same thing goes for articles written by humans. I don't really read the articles that are "Shower thoughts that I think are profound" or "The way I do things is the way everyone should do things"

There is a fairly common wisdom that the way you get good at writing is by writing a lot, I'm prepared to cut people a lot of leeway at people putting all of the stuff out there before they are good at writing. It's just the path you have to take. That's OK, because I don't have to read it.

And I'm fine with people making crappy AI generated tutorials while they figure out how to make better AI generated tutorials. I am not fond of people who are creating bulk content by volume without any regard to quality or improvement. Some may be doing this to make money, and maybe that works, I suspect for the most part it doesn't. I don't appreciate it though, whether it be AI or human produced bulk content.

I'd spare a thought for those who feel that they are producing high quality content when they are not. Everyone has a poor perspective on something sometimes. Usually the harshest punishment they will face is the feelings their future selves experience when they look upon their work with a more balanced perspective.

mikhmha 10 hours ago

Recently I've gotten lots of DM's from boutique marketing firms offering to promote the game i'm working on. I'm pretty sure they all find leads via scraping the Steam API. Many of these small firms are people in developing countries.

It's frustrating dealing with them since they all use AI in communications. Everything is written so flowery and with so much extra words. Any feedback I give is met with overwhelming praise about "how right I am". Its exhausting.

I understand many of them are in developing countries and aren't confident in their English skills. But I always tell them I'd rather they write in broken English to communicate their own ideas. I want to hear what they have to say, directly from their brain. I don't have issues with parsing bad english. Usually its straight and to the point.

They always end up defaulting back to AI messaging. Even when I tell them to be genuine. I'd love to give one of these firms a chance, but they fail this basic step. I think they think everyone in the developed world likes AI or something.

meerita 2 hours ago

I am writing excellent documentation with AI. The key success is to have rules to write documentation, PRs, commits, etc. I use ASD-STE100 and some constraints on what to write, how, and what it matters to my projects.

nektro 5 hours ago

> Yes, there are certain situations in which we should expect 100% AI-generated copy. Customer support would be a perfect example.

hard disagree on this

Alephinitesimal 5 hours ago

I once spent two days on a pr and got an obviously AI generated review that contradicted what we agreed one before. So I had AI respond to it. The next day he asked if I'd used AI. I used the same justification he'd used for his review. Fight magic with magic. He never reviewed my pr that way again.

devrob 11 hours ago

I used to have a rolling product satire I called "Claude Handshake" which basically explained how cold-email is dead today as people feed email contents into Claude and Claude responds with a draft, that usually comes from another person doing the same thing.

The idea was to just avoid sending email altogether and just simulate the interaction entirely using Claude.

ronbenton 14 hours ago

Anyone else have coworkers responding to your human PR review comments with AI? I feel like I'm taking crazy pills, how can anyone find this socially acceptable?

firefoxd 13 hours ago

I've asked questions to people who wrote interesting articles where I didn't know it was AI generated. But then, they couldn't really answer me because most examples in the article wasn't something they experienced themselves. So basically, we were both reading the article for the first time, with made up scenarios.

runtime_lens 2 hours ago

AI comments are becoming a second documentation system nobody asked for. If the code is self-explanatory, “why this is good” is usually just noise.

atleastoptimal 13 hours ago

The problem is that in most domains we reward effort sometimes even more than results, especially in fields where results are hard to verify. A wall of text is the classic way to signal effort and delay feedback, a signal which was costly pre-AI, but now is not costly. However norms have not shifted.

Sha1rholder 14 hours ago

I personally don't care whether a piece of writing was AI-generated as long as it's useful or insightful.

However there's only 10% of AI-generated writing that is worth reading. If some articles convince me that there's somebody behind it contributing valuable understanding, I'm willing to overlook the telltale AI mannerisms. It's understandable that some domain experts aren't very proficient in English.

That said, statistically speaking 90% AI-generated pieces are a waste of readers' time. It's a good strategy to simply skip them.

I know this looks like a bot comment. It's not. It's a much older style of writing known as Chinglish. That's why as a non-native English speaker, I can totally understand why someone would want to use AI to help with their writing.

teo_zero 4 hours ago

Whenever I'm tempted to base my judgment on how something's been created rather than what the end result is, I think about the scene where Sheldon throws away the french toast Penny made for him, despite smelling good, just because "Monday is oatmeal day."

gavinsyancey 3 hours ago

Before LLMs came around, it took quite a bit more effort to write something than to read it. So the fact that someone had taken the time to create something was a signal that they thought it was worth that effort, and so it might be worth my (lesser) effort to read it. And even with that filter there was a lot of human-created crap out there.

I value my time. With a LLM, it takes very little effort to create a vast mountain of crap that will take a lot of time and effort to read through. True, it is also possible to use LLMs as a tool while creating things that are not worthless. But the fact that someone has not taken the time to make their thing not sound obviously AI-generated is a strong signal that it will not be worth my time.

ProCodeSoftware 14 hours ago

I have been feeling the same way for the past few months. I just want to say I will never read a paragraph that has signs of AI, because most of the time, the people didn't put much effort in it. I don't care if it is factually correct or not.

dbspin 15 hours ago

"Look, I get it. It’s Q3 2026, and we should expect that everyone is utilizing AI at SOME point in their process (sourcing ideas, creating outlines, refining prose, etc.)."

Hell no. Sourcing ideas? From AI? Are you kidding? Essentially guaranteeing they won't be original? Refining prose? Making it much more likely it'll be generic as hell. Call me old fashioned, but while I can certainly understand asking LLMs concrete questions - how do I fix this, where can I unsubscribe from that - using AI to help communicate seems bass-ackwards. LLMs have no idea what you're talking about - they're free associating probabilistic sentences! What on earth value could that have in communicating. They self contradict, hallucinate, speak most frequently in a weird smug corporatese. How is this an attractive use case of the technology?

yoz-y 5 hours ago

Sourcing ideas just seems so weird… if you don’t have an idea about what to make, then just don’t ?

Gepsens 4 hours ago

We could put comments in separate files with an annotation format. For example: ion.cpp.cmt And autoremove all comments from source files. Then use plug-ins to toggle comment files within the text editor.

keithnz 8 hours ago

Not sure how others are using AI, but for us, an AI dump is actually much better than some human editing/writing it. What we've found is that people become gatekeepers of context due to their role in the company they have privileged access to certain context, so when some question is asked, the person who's AI has the right context can look at it and generate a response making sure not to leak anything important and making sure the question is not nefarious. Also important that your AI doesn't generate a wall of text but is super concise. This works incredibly well for us.

brunoborges 15 hours ago

If a coworker sends me an AI generated report to help on my task, I am more likely to ask them to just send me the prompt and model they used. Let me own the session and steer it however I want.

paulpauper 15 hours ago

Then put the report in AI and have it read it . that is the only appropriate response

brunoborges 14 hours ago

I believe I have better context data in my session than someone simply prompting based on hearsay of what they think they know about the task I have at hand.

Also, I may have already started looking into it, but now this other person just wasted money.

jumploops 14 hours ago

> I’m SUPER jealous that I didn’t think of this first...

Not to toot my own horn, but...[0]

On a more serious note, we're planning a trip with family, and my mother-in-law asked if I'd read "the planning doc" yet.

It was a shared ChatGPT thread. Thankfully I read enough LLM output to skim it easily and avoid offending her (:

[0]https://x.com/jumploops/status/2031936768023638069

dktoao 9 hours ago

There is a sort of symmetry here with there also being things that everyone writes that no one reads.

* Cover Letters

* Most test reports

* Lots of docs required by the government

* I'm sure there are more you can think of

So now we can have stuff written that no-one ever writes and no-one ever reads? Hmm...

teo_zero 4 hours ago

Even worse: cover letters, presentation letters, even CVs themselves are routinely read by AI, at least in the screening phase.

ramdump 15 hours ago

The fear I have is that I accuse of AI without being 100% certain. I've not found a good way around this except to talk to the person.

LPisGood 15 hours ago

I left a comment on some of my interns, clearly AI generated code and response asking for him to please not respond with AI generated output — the response was talking about things I had known he was unfamiliar with because I had worked with him. The response itself had some particular formatting/content decisions that were generally a very odd way for anyone to write, but certainly not an intern. He responded that he did write this himself and that he was upset I would accuse him, etc.

I, of course, had no choice but to apologize. I hope I was right, but clearly there is some chance I was wrong.

Alien1Being 14 hours ago

Pangram does a decent job of AI detection.

darrelld 15 hours ago

We have a junior research student who does this on slack.

Before I think he was using AI and other tools to translate his messages since english isn't his first language. His own words, then AI translated it. Sounded kinda clunky, but I could sense the human behind the words and I gave grace since I can only imagine how hard it is to properly communicate your ideas when English isn't your first language.

But now it's gotten to a point where I can tell he's not using it for just translation. I'm gonna need to chat with him.

Redacted example below

```Hey @PERSON_WHO_ASKED_QUESTION Both good, and the retrieval one isn't written down anywhere. In order.

One corpus or four. My lean is one. Same chunks and embeddings tables, source_type column to tell them apart.

Values I'd propose, flat rather than nested: paper, dataset_description, dataset_readme, dataset_contributors, dataset_records, dataset_files. Description and readme split because their units already differ, one row versus one row per paragraph. A discriminator that can't separate those isn't doing much. The existing 440 rows would need backfilling to paper.

Chunk id in the same spirit: dataset doi, source type, ord. So EXAMPLE_DOI.

Worth checking before any of this matters: does chunks.doi carry a foreign key to papers.doi in 0001_init.sql? If it does, a metadata chunk with a dataset doi can't go in that table at all, and separate storage stops being a choice. Ten second read, I haven't done it. Shout if you get there first.

Retrieval is the one that's bigger than it looks. Search once across everything and nothing guarantees a paper chunk and a metadata chunk both land in the top k. The facts we want relate the two, and the generator can only write those if it sees both sides in the same window. So if one type systematically wins the ranking, that class of fact doesn't get worse. It becomes impossible.

Which way it goes I don't know. Two mechanisms pull opposite ways. Metadata chunks are short, tens of tokens against roughly 450 for a paper chunk, so they may just lose. But we embed context header plus text, and on a short chunk the header is most of the vector. The header is the dataset name, which is also most of the query. That points the other way.

Cheaper to measure than argue. Load one dataset's metadata, run a normal dataset level query, record the rank of the first chunk of each source type. Runnable as soon as any one of our four subtasks lands.

After that it's one pool, per source with quotas, or one pool with a floor per source type. I'd rather not pick before there's a measurement. ```

hinkley 10 hours ago

This has really started to hit my radar because people are filing PRs with AI generated commit messages that read like a bill being presented to congress. Holy shit, give me a summary.

I don't know if the contributors are writing any of the code they're submitting or just using AI to hop on every 'help wanted' tagged ticket in every product database but if it looks mostly like a smart human wrote it, which usually takes two rounds of reviews, then it can probably go in.

But if you make me work for it more than you did I'm just going to close the PR and do it myself.

bicepjai 12 hours ago

Totally agree with the core argument. I understand there must be some etiquette in the space of llm-writing where writers must respect the readers enough to edit and review. Also, pages and pages of LLM content is not something anyone should be proud about sharing. But we are in this world where condensing an argument is so easy that in the busy lives we live, sometimes some arguments are made with LLMs online. If those arguments are pages, I understand the backlash, but if it’s a terse argument, then I would urge others to address the argument made rather than categorizing them under AI;DR, it’s like ad-llminem in my view.

illusive4080 9 hours ago

What do you think of AI generated infographics? Someone at my job is creating them on the daily and sending them around to leadership. I find it lazy and too busy.

jedberg 12 hours ago

Every time this comes up I have to ask, how do you know it is AI? Sure, sometimes there are strong tells, like if they forget to take off the "Do you want me to change anything" at the end.

But AI was trained on good writing. Good writing looks like AI. I've had to reduce my use of em dashes for example because they are an "AI tell". I used to like using the term "load bearing".

And the list gets longer every day. Eventually every mark of a good writer will be an AI tell.

I don't know how to resolve this. But I've been accused multiple times of copy/pasting AI when I did no such thing, and it's getting equally frustrating.

bastawhiz 12 hours ago

Can you read something and tell when an author you like wrote it without seeing the attribution? I can. I think most of us could, because people use certain phrases or have a particular style. That doesn't make it bad.

AI writing isn't actually all that bad. But it has a very specific style, and there are MANY tells. I use Claude every single day, and it's immediately obvious to me when I'm reading something Claude wrote. "It's not X, it's Y" "That's the reframe" "The gap is" I could go on.

I too like using em dashes, and have been since I learned the keyboard shortcut over a decade ago. I've never been accused of posting ai-written text because of it.

AI is indeed trained on good writing, but it's also trained on bad writing. And it's post trained on specific things that are writing that aren't good or bad for reasons unrelated to style. What you're left with is a one-size-fits-all writing style. Doing math? Doing medicine? Doing anime waifu role play? It all starts from the same generic milquetoast style until you tell it not to. And to me (and apparently many other people) that's super easy to pick out.

Gigachad 12 hours ago

I know it's AI because the laziest coworker you know just posted 400 paragraphs of text on a minor topic.

jedberg 12 hours ago

Sure, that's one of those obvious tells. But when I sit and spend 10 minutes making a well thought out and researched comment, and then properly format it in markdown, and then the first response is "this is AI", it's really frustrating.

asadotzler 11 hours ago

nunez 10 hours ago

It has that feel to it. Hard to describe. It has a very consistent way of writing that gives it away, even if it's rephrase from text that was previously written by a human.

Beyond that, most AI content is WAY WAY WAY WAY WAY longer than it needs to be to get its point across and is oversaturated with unneeded "mic drop" phrases

twoodfin 11 hours ago

The problem with AI writing isn’t the tics and the tells. The problem with AI writing is that it’s bad.

The typical highly voted HN AI-written post has an annoying clickbait title, then jumps into a meandering chain of “so there I was” scene-setting, assertions of dubious reliability & relevance, and supposed supporting examples. All punctuated by short, unhelpfully dramatic sentences that would interrupt the high-level narrative, if only there were one.

I’m really curious what “good AI writing” you had in mind. My personal intuition is that for almost any topic, the HN LLM-generated post du jour has a far superior cousin sitting in the archive pre-2021.

anotherevan 11 hours ago

While I don't always agree with everything Drew writes, the title of his blog post[1], "Please stop externalising your costs directly into my face," really resonated with me.

At the end of the day I don't care how much of what you're presenting is your own words vs AI generated, as long as I can see evidence that you have reviewed and understood what you've passed to me. My resentment and ire is raised when the onus is pushed on me to be the first real human reviewer, having to do all the weighing of merit, practicality and in some cases plausibility that the quote un-quote author should have done before ever hitting send. It's passing the buck and an abdication of responsibility. It is lazy and makes more work for those you foist it upon when your role should be making the effort in your communications to make it easier for the recipient. Not wasting their time having to spend orders of magnitude more effort refuting bullshit you shouldn't have put out there in the first place.

It is something that has always pissed me off, however AI has made it fair easier for lazy people to think they sound smart and externalise their costs into my face.

[1] https://drewdevault.com/blog/Stop-externalizing-your-costs-o...

Gecko4072 15 hours ago

I thought this was: I summarized with AI; didn't read.

adroitboss 15 hours ago

I thought the exact same. There is also a growing problem with people using AI to summarize everything instead of reading the actual text. I thought this addressed that issue by having a section for the AI to help summarize or something similar.

ilaksh 12 hours ago

Valid and fair especially in the 95% of cases where the AI added a lot of unnecessary detail.

On the other hand, I suspect that we are pretty quickly going to get to the point within a few years where we realize that the best AIs are not just being overly verbose. But rather their communication is just more compressed and thorough.

So even though we still see a lot of jaggedness and weird failures in some places,in other ways I think this is actually an aspect of intelligence where AI has surpassed humans. Just in terms of being able to deal with a certain density of information.

agnishom 6 hours ago

Related:

Don't Be a Meat Proxy: https://gruhn.me/blog/2026-08-03/

No Meat Proxy: https://nomeatproxy.com/

How to Passive-Aggressively Shame People Who Use LLMs Selfishly: https://joshmoody.org/blog/selfish-ai/

m12k 6 hours ago

Throwing unread AI output at others is the new version of “sitting on your phone, oblivious to those spending time with you”. Every new consumer technology comes with a new way of being rude.

montroser 15 hours ago

I am pro AI, and also deeply share this sentiment.

I think sometimes people have a big long thread with Claude where they feel enthusiastic about the back and forth being very productive -- and then they genuinely want to share the summary of the conversation with their colleagues so that they can feel it too. It's not just typing a short prompt and copy/pasting the response.

But, Claude, especially Opus is so unnecessarily flowery, and smug -- and it's so identifiably characteristic.

It somehow rubs salt in the wound: "I didn't take the time to write this out in my own words, so now you get to listen to this petulant asshole mansplain it to you".

If it would get to the point, and with some humility, it would be a much different proposition.

matheusmoreira 12 hours ago

Only after switching to Sol did I notice how verbose and smug Claude was. Now I wonder if Claude's at least partly responsible for the AI hate.

whstl 15 hours ago

There is a light at the end of the tunnel for all the minds burned out by AI slop.

I already saw someone getting fired for only producing AI text as part of their entire output, after being unable to explain what they “wrote” in multiple situations.

And recently my company enacted a mandate that text made for humans should not be AI generated.

Sooner or later every company will start realizing that this is just people too lazy to actually work and coasting on a paycheck, at the expense of every other worker.

LPisGood 14 hours ago

This makes me happy to hear that someone got fired for that, but I just cannot picture that happening at my organization. Perhaps standards are too low. What sort of thing did they get fired for? Was there some warning etc?

whstl 14 hours ago

Product Manager using Jira AI to hallucinate tickets, epics, metrics and roadmap. Even the numbers were completely made up.

There were too many incidents of “this doesn’t look right” in the same week, so when their boss did a thorough check a couple days after, it was all fake, everything. Eventually they admitted and got canned.

LPisGood 13 hours ago

rfff2 15 hours ago

Yup sooner or later the new heuristic will be quality of comms measured by how short a thing is rather than how long.

Much how like essay's have a word limit - and people think you should max it out.

We will go in the opposite direction - which I'll be glad about!

ModernMech 15 hours ago

But they got fired for not being able to explain it, not for using it.

whstl 14 hours ago

It’s not as if he was advertising to the world that he wasn’t really working.

nunez 11 hours ago

> Customer support would be a perfect example. We’re not looking for artisanal “did you make sure to reset your phone” style dialogue.

Yeah...I'm probably dropping whatever services do this. If the company can't invest the capital to hire humans that help humans, then what does that say about their products?

mercurialsolo 8 hours ago

We just need better specialized models for these. Writing is as much a process of thinking as of communicating the idea. Current generation of outputs eliminate the process of thinking

heurist 7 hours ago

I find after 4 or 5 rounds of targeted feedback and requests to tighten the text AI can produce exceptionally readable documentation.

rphv 7 hours ago

> ...then I’m afraid I received a different message than you intended

Are you sure about that?

pixelesque 15 hours ago

Too sloppy, didn't read.

nik282000 14 hours ago

Big fan of "slop-jockies" as a collective term for AI spammers.

uygar 14 hours ago

I'm not particularly interested in who wrote the first draft. What matters is whether someone took responsibility for the final version.

keeda 6 hours ago

I dunno, not a huge fan of TL;DR (even though it definitely has its place for long-winded walls of text) -- I feel like TL;DR is a cause or a symptom or both of our dwindling attention spans. I think this inability to read anything longer than a tweet, and the resulting loss of nuance, has been pretty bad for discourse, online or off.

AI-writing is definitely very annoying to read, but I don't know if it's ideal to start dismissing interesting content before we even get to its substance just because we don't like its form.

0x69420 6 hours ago

but our dwindling attention spans are caused by a deluge of material sapping our energy before we can devote it to something worthwhile. developing a fast and frugal mental filter for insubstantial walls of slop is a new prerequisite for not being so exhausted that you default to saying tl;dr to the real, good stuff.

therepanic 14 hours ago

You don't have to preface every criticism by saying you're a huge AI proponent. EVERYONE overdoes this.

seanmcdirmid 6 hours ago

What I dislike is people who say they don’t know something when it’s easy to just Google it, with Gemini looking up fairly trivial factoids and comparisons is especially easy now. I know this was a stronger meme a few years ago, “just Google it dammit!” But now it’s even more so. People who don’t know these things at this point just don’t want to know, and they still get offended when someone throws an AI answer at them, not understanding that they already offended other people first by being willfully ignorant.

deathanatos 9 hours ago

The problem is merely determining to "AI; DR" itself is not free. Reading an article takes effort, effort that one hopes will result in something intellectually stimulating. By the time you sample enough of the content to make the determination that the article is AI, you've already invested effort, and now found out the rug has been pulled.

Sure, before, there was always the possibility that the article wouldn't deliver. Sturgeon's Law. But now it's like 10× more, and the amount of slop out there means its even harder to find that (human-written) gem amongst all the chaff. This last month especially, I've started to wonder "what even is the point of HN?" as more and more of the frontpage ends up dominated by slop. The thing that made HN worth it in the beginning is that it had a high gem:chaff ratio — at least compared to other corners of the Internet at the time I joined.

blobbers 12 hours ago

(such as giant automated meeting summaries we all get after an hour long slog).

krona 15 hours ago

A similar metaphor (I think I came up with but can't remember) is the slop sandwich. You can deliver slop to me but only when wrapped in a thick layer of human intervention (which usually also means removing 50% of the slop)

dkersten 12 hours ago

If you can’t be bothered to write it, then I can’t be bothered reading it.

redrix 14 hours ago

If you didn’t take the time to write it, why should anyone take the time to read it?

CuriouslyC 7 hours ago

I hope you posted this ironically.

waynecochran 11 hours ago

Fight fire w fire. Have AI read it and decide what to do w it.

dfee 11 hours ago

that's fine. doesn't absolve you from responsibilities of recipientship - as you'll inevitably find out (if you haven't already).

Alien1Being 14 hours ago

AI generated text should be treated as spam and automatically filtered out.

stevenhubertron 13 hours ago

Seem's reasonable and what I hold myself and my team to.

friarpuck 13 hours ago

Overall, I agree. My only problem with the idea is that I'm seeing more and more people just use "AI;DR" to deride an opinion that they don't agree with. It's becoming the new "paid shill".

techpression 15 hours ago

This hurts particularly much when it comes to software changelogs/release notes, most recently for me was the solidjs 2 beta, reading the announcement post was painful, even the headers are LLM:isms.

LogicFailsMe 11 hours ago

I suspect the free market of information content will ultimately sort this all out. I feel similarly about AI art, but to get to that point I had to go to my city's art museum and experience artwork in person. There's just no comparison between being in the same room with a Michelangelo sculpture and peering at a Stable Diffusion/Midjourney/Whatever image on one's screen, there just isn't. What AI can do though is create endless content and too many are content with that, see linkedin.

TLDR: Content != Art

tim-projects 8 hours ago

NP;DR

(Newsletter popup,. Didn't read)

protocolture 9 hours ago

Engagement Bait; Didnt Read.

runjake 14 hours ago

I guess I'm in the minority. I don't mind an AI response if it's informative, concise and well-crafted.

The problem is that those kinds of responses are rare in the tech world. But when you have someone competent at the helm, it's much better than reading human slop.

boogieknite 14 hours ago

> But if you’re my colleague and we’re in a Slack discussion and you post a wall of Claude output, then I’m afraid I received a different message than you intended.

i have what ill call a "condition" where i fear assuming someone did something stupid is insulting. i try not to patronize people because i also assume that would be insulting. this leads to issues where sometimes people really want to be lead to water rather than make an implied connection themselves

this is a roundabout way of saying, is there a genuinely polite way to tell colleagues posting ai copypasta makes them seem ignorant? i dont think ai:dr is workplace appropriate. id like to tell people gently and avoid patronizing if possible

purplethreads 14 hours ago

Impossible to know unless you did read.

TL;DR works because I can see the length at a glance

And you cannot tell all AI. Only mainstream crap like ChatGPT and Gemini which is full of cached tropes and boilerplate formats so it all sounds the same.

My custom invoicing software automates notes based on years of my previous notes and tasks I did - looks nothing like AI.

Use a real library and local model, mess with settings, there is a lot more to this than the mainstream consumer apps.

trelbutate 13 hours ago

So? This is about ovious stuff where you notice the typical annoying AI style directly in the first paragraph. After all, 99% of "regular" people use the mainstream models, and anyone who uses a local model probably knows enough about AI that they don't dump raw output on you.

chasing 13 hours ago

So what you're saying is: You no longer visit LinkedIn.

VCFundedGenYer 14 hours ago

The irony of making such a bold progressive statement while still being on X and not Mastodon....

thm 15 hours ago

Eternal September already?

nik282000 14 hours ago

There's been a few. The last one was 2007 when the iPhone changed the internet from a place you went because you wanted to be there and had a reason to engage, into an app meant to entertain you for 5min at a time between text messages and flushing.

classictraffic 15 hours ago

This blog post also feels AI written (I can tell it’s human written, just sloppy)

sportsracersss 10 hours ago

I love the notion, but I'm too conflict-averse to assert it.

Really hate it when I send a tricky spec out for review and people respond a couple minutes later with a Claude summary. Way to add value bro.

quantum_state 15 hours ago

Very good shorthand

frogperson 13 hours ago

I don't think AI is ever fully going away, but I can't wait for the bubble to pop and customers are forced to pay the actual cost of tokens. i think that's the only way we see a meaningful reduction in slop.

CuriouslyC 7 hours ago

DeepSeek v4 flash blew the doors off that fantasy. Even if we switched to tokenomics, models are getting good enough and cheap enough that there's no stopping this train.

foobar1962 13 hours ago

"I would have written a shorter letter, but I did not have the time."

jr3592 15 hours ago

The irony here is that his very own post reads (to me) as AI slop. Take this line:

> I’ve been thinking about it ever since. Why? Because there is growing grumbling among everyone about AI writing. And it’s not just others; it’s me!

Classic AI "its not just, its..."

Razengan 14 hours ago

By the way, just want to say, AI can be good for some bedtime stories while trying to fall asleep lol

After you've exhausted your favorite audiobooks, I mean

Like, I love The Wind in the Willows, but I wish the part where Toad and the gang go on the road in the cart lasted for longer. I asked ChatGPT to invent some fill-in chapters matching the same style and speak it out loud, and it kinda did OK actually.

themgt 14 hours ago

But if you’re my colleague and we’re in a Slack discussion and you post a wall of Claude output

Claude, post that wall of output to Slack yourself. Make no mistakes.

7e 2 hours ago

The new modern workflow is to take a succinct idea and expand it into pages and pages of slop using AI. Nobody reads this slop, they ask another AI to summarize it back down to the original succinct core.

kmeisthax 14 hours ago

> Yes, there are certain situations in which we should expect 100% AI-generated copy. Customer support would be a perfect example. We’re not looking for artisanal “did you make sure to reset your phone” style dialogue.

No, no, no, no - the whole point of customer support is that I am having a problem that requires attention from a representative of the business I am dealing with. Businesses really don't like doing this; they call it a cost center to have to talk to their own customers, so they staff their call centers with increasingly useless script-readers designed specifically to shield the people with knowledge of the matter you're facing against customers like you. This is a great solution for dealing with technically illiterate people who don't do basic troubleshooting and terrible for literally anyone else who actually tries to be a good customer.

hankbond 15 hours ago

Whenever I see a massive project README all I can think is if you didn't write it, ME won't READ it.

river_otter 15 hours ago

It's now faster to write than to read. A first in human history

gnarlouse 14 hours ago

YO (AIDR)IAN!

Terr_ 15 hours ago

> TL;DR (too long; didn’t read) was the solution for social media.

> AI;DR (AI; didn’t read) is the solution for AI slop.

Maybe I'm the odd one out here and didn't plumb the worse-depths of social media, but I feel I need to defend good old TLDR as a slightly different, and less-hostile animal.

It can be a moral condemnation of the poster, where they're disrespecting everyone else's time by posting something big and vague... But it usually isn't. At least half the time TLDR is someone providing a summary because they think it'd be useful (even of it's sometimes a hostile interpretation.)

Jare 15 hours ago

tl;dr as the sole reply to someone IS a condemnation of what they wrote. tl;dr at the front of your message with a short summary, is an admission that the long version may not be for everyone and there's a core point for quick consumption.

I'd say that sounds about the same for ai;dr. I could see myself posting a prompt like that in front of the generated report.

mrtesthah 8 hours ago

I agree, likening it to "TL;DR" is much too charitable. At least when someone wrote a wall of text it was apparent they cared enough about the subject to think about and pay attention to it.

scotty79 6 hours ago

Another use of this might be labeling yourself of the stuff you just pasted from your AI without reading so that the readers are aware where did the text come from.

layer8 14 hours ago

Not to be confused with Aider.

verdverm 10 hours ago

Not the first time this has been used, despite what author wants to claim, not the first time any of this has been said or commented about on HN

https://hn.algolia.com/?q=ai%3Bdr

This piece is still slop, human or ai created

fwiw, I'm partial to ns;nt (https://blog.kinglycrow.com/no-skill-no-taste/), but it is different in nuance

elendilm 13 hours ago

Its a bit lame in 2026, to attack the messenger instead of the content of the message.

Its awfully similiar to bitching about reading mails on a computer and attacking the sender.

The virtue signaling is beyond me. I dont care about AI;DR or TL;DR.

Give me good content. And I will read it.

arm32 15 hours ago

This is HW;DR: human-written, did read

sermah 15 hours ago

TA;DU: Too ambiguous, didn’t understand

em-bee 15 hours ago

yeah, how about HW;WR? human written, worth reading.

hinkley 15 hours ago

did understand?

spudlyo 15 hours ago

This is LE;DU: low-effort, didn't upvote.

ademup 15 hours ago

I'll probably be downvoted to the bottom of the ocean, but I feel this needs to be said:

- Why does it matter who or what wrote a thing? And how would you know if the /content/ is worthwhile, unless you read it...

- The ability to "detect AI" is imperfect at best. 90% AI written? 5%? How would you know, unless you read it....

- If you didn't read it, then why brag about it with an "AI;DR"?

- If you are wrong, and you announce it to the world, how would it feel to someone who spent a lot of time and energy writing?

otterley 14 hours ago

> Why does it matter who or what wrote a thing?

Two reasons:

1. I can't effectively engage in follow-up conversation with the "author." I can't do it with the human (principal) because they didn't write it and can't explain it--and, in fact, they may not even personally agree with all if it!

2. It shifts the cognitive burden from writer to reader. What makes writing hard, and valuable, is the effort put into translating one's raw, unfiltered thoughts into writing that is easy to comprehend, and the writer's own unique personality that is expressed in it. As ambient prose, AI-generated writing is often not only more difficult to read than human-drafted prose, but it also has this "sameness" quality that makes every "author" have the same personality.

Planktonne 14 hours ago

> Why does it matter who or what wrote a thing

The purpose of writing is to communicate. The person communicating is an important part of the message.

Consider the sentence "I'm waiting for you at home." It really matters if it's said by your loving wife or an evil clown. You can extrapolate from this.

its-summertime 15 hours ago

Imagine a future where 99% of text is written by 1 unpassionate person. Reading the same patterns, the same tropes, the same flow across paragraphs, over and over, would be unpleasant. It already is unpleasant.

supermatt 14 hours ago

The problem is that some people think all AI-assisted writing is prompting "write me a post about X", so they see LLM prose and assume there has been no thought or effort put into it.

jastanton 15 hours ago

Because my time is valuable and if the person who sent me something didn't care enough to write it, then I don't care enough to read it.

Bragging about it is weird, but I will use it like I use 'RTFM'.

And detectability - My AI-DAR (radar), is fairly fined tuned but not perfect, so if I make a mistake, oh well, the point is I'm protecting my time.

ModernMech 15 hours ago

So how much time do you deem a minimum amount for someone to spend on some unit of work before you're willing to read it? And what technologies are allowed -- are word processors allowed or does it have to be done with a writing instrument like a pencil? What about spell check? Do you care if they had done their research with a Wikipedia or do you prefer card catalog for the really important work?

robrtsql 14 hours ago

layman51 15 hours ago

In one case, I could tell because the tone of the piece sounded exactly like the kind of stuff I would read after prompting an LLM and I had never heard of the author before, but I knew that they were like an intern or a new college grad and for some reason their piece was trying to persuade employees in a certain field about how they had to use AI itself. It just rubbed me the wrong way because if they did use AI, then they didn't even bother to rewrite the repetitive instances of "it's not X; it's y", and also "This isn't X".

krelas 15 hours ago

The shape of Claude’s writing style is horrible to read and easy to spot, and that’s a ground truth.

rfgplk 14 hours ago

A belt-and-braces approach.

VeninVidiaVicii 15 hours ago

Maybe you haven’t seen enough coworkers send you pages and pages of slop.

xboxnolifes 14 hours ago

> If you didn't read it, then why brag about it with an "AI;DR"?

It's a reference to TL;DR. If you can understand that, you can understand AI;DR.

bigstrat2003 14 hours ago

> Why does it matter who or what wrote a thing?

Because what the clanker produces is almost always bad output compared to what a capable human would produce. Furthermore, even an incapable human is better than a clanker, because at least humans have intrinsic value that they bring to the table. Finally, it's just plain disrespectful to refuse to take some time to answer a question and hand it off to the clanker.

supermatt 15 hours ago

I submit pretty much the opposite of this, but it didn't gain any traction: https://news.ycombinator.com/item?id=49332291

Planktonne 15 hours ago

You submitted thoughtless pap; of course it didn't get any traction.

Why would you think it would?

danielodievich 11 hours ago

Fascinating seeing you get irate with people who are giving you feedback that your own thoughts are far superior to the regurgitated "cleaned up" version which is absolute garbage indeed.

You have some solid ideas there but they are very poorly organized. I think you would benefit from a class in writing. I had a month-long technical writing workshop back a couple of decades ago that my company sponsored and it helped me tremendously with starting with wall of consciousness, progressing to writing plan, outline and then editing. It had a very positive impact on my career in professional services where clear communication via documents is an essential part of value prop.

supermatt 6 hours ago

> Fascinating seeing you get irate with people who are giving you feedback that your own thoughts are far superior to the regurgitated "cleaned up" version which is absolute garbage indeed.

That is not the part I take issue with at all! In fact many (if not all) of my comments to those people are thanking them.

I think you need to go and double check exactly what I have replied! Feel free to link to anywhere you think I have been irate in response to someone stating their preference! I think you will find my only grievance is where people have called the INPUT thoughtless or zero effort.

I’m finding it fascinating how people are commenting on what they think they have read rather than what they have actually read - both in relation to the post and in my replies.

I do appreciate your advice on following a writing course. I did exactly that to great effect in the early 2000s. Unfortunately it is of little help these days

meindnoch 15 hours ago

Yeah, I wonder why! /s

supermatt 15 hours ago

Because some people are just ignorant and downvote anything they either aren't willing or able to understand :)

a2ff6eeb0 15 hours ago

Eventually, AI will be a far better writer than a human is, and then nobody will want to read the human generated subpar writing.

AI writing is rapidly improving. Human writing, on average not so much.

platevoltage 14 hours ago

I'll take "subpar" human writing, music, art, or whatever any day of the week.

a2ff6eeb0 11 hours ago

People say this, but AI artists keep getting listens on music platforms, doing at least as well as human artists if the listener is making a blind choice.

https://www.promarket.org/2026/05/04/consumers-prefer-ai-mus...

platevoltage 9 hours ago

eddieroger 15 hours ago

>However, I have a new policy.

>If you’re not bothered enough to review and edit it...

>...then I’m not going to bother reading it.

Just playing Devil's Advocate here, but we've had copywriters and editors for generations now. Not reading something because AI did the post-writing work feels kinda weak. Skip stuff started from AI, fine, but this is just because it's AI, not because the author didn't do the task. And I do get the point is that if an AI did /most/ of the work, ok to that, too, but not post-write processing alone.

afr0ck 14 hours ago

I think the main reason many people (including me), very often, lack the motivation to read content that is likely generated by AI is the suspicion that it comes from a place of intellectual laziness. Another reason, based on personal experience, is that AI content may suffer from too much verbosity, too much jargon and over-confidence, which makes the reading experience feel fake and border-line irritating. In many cases the content may have very little to no nuance, which is ultimately a waste of time.

As an anecdote, someone posted a blogpost on Linkedin on using agents to implement a driver to access PCIe devices over TCP/IP. I was intrigued because that's not an easy task for several reasons, like handling PCIe interrupts and DMA. For exmaple, how does the remote machine map the device's PCIe BARs? And when it issues I/O to the devices registers, how are these reads and writes transferred to the remote device. In the end, this is just some virtual memory. In a local machine, this is either directly mapped to the PCIe physical addresses or some IOMMU virtual address space which is then translated by the hardware upon CPU/device/VM access.

After reading the long verbose promising article, in the end, the guy (with the help of the agent) only managed to implement access to the PCIe config space so that lspci on the remote machine works and shows the remote PCIe device, but that's all. It never addressed the issues above nor even mentioned them. The code was AI generated. The article was AI-written. The article never made a reference to DMA, interrupts, MSIX-X, IOMMU, IOTLB, virtual memory, etc, but it made big claims on next-gen datacenter disaggregated architecture, boosting GPU utilization, reducing large scale inference costs, etc.

Anyway, you get my point: big long beautiful words, but zero nuance.

nancyminusone 15 hours ago

>But if you’re my colleague and we’re in a Slack discussion and you post a wall of Claude output

did you formerly hire copywriters for this task?

jere 15 hours ago

And how could you possibly distinguish those scenarios without wasting all your time?

AnimalMuppet 15 hours ago

The problem with copywriters is that they wrote "copy" - which turns out to be writing that I don't want to read. And the problem with AI is that much of what it trained on is copy, so it trained to write stuff that I don't want to read.

So in the end, I don't care if a human wrote it or an AI, I don't want to read it either way.

What's wrong with copyrighters? They write like corporations, not like humans (see the Cluetrain Manifesto for more on this). They sound like nobody - literally inhuman. I don't want to read that. I want to hear a human voice. If I can't hear that in your writing, I don't need to read it.

het25 15 hours ago

that is load bearing information, and i won't tiptoe around it.

rfgplk 14 hours ago

It's an ego issue for most people. For one, part of it comes from genuine intimidation or fear, the notion that a machine can be smarter than you, or at least produce answers that are more knowledgeable than you could. But I think the more striking issue is what LLMs do to the perceived value of expertise. Especially in engineering there's this weird pecking order hierarchy, where someone should be listened to just "because they have the YOE/Experience/Other meaningless metrics" under their belt. Now all of a sudden, someone with relatively little (or no) background in a given subject is capable of just entering a prompt and within seconds obtaining an answer that is expert or near expert level. (You can see the results of this with engineers just hopping between different fields with ease)

The implication is that expertise is being devalued in real time, and in a sense it really is, but I think that most people really do need to face the reality of their emotions and where it comes from. For myself personally, I have no qualms about reading or even engaging with AI content, as long as the content itself is of quality and truthful.

thatjoeoverthr 14 hours ago

Example from work.

I described a problem to a new hire. Symptoms, how to reproduce, etc. and asked him to go investigate it, pin down the problem and solve it. It was a non-trivial and hard to reproduce bug.

Instead of doing any of that, he sent back very quickly a wall of text. Generic advice. Nothing relevant. Along with this he sent a PR that would have broken prod.

It was useless, and basically amounted to throwing the assignment back in my face. Since I, like literally everyone else, already have Claude Code, having an expensive person use it for me (slowly and badly) is worthless. In fact, it's negative value, and a huge waste of time. ChatGPT would have given me the same wall of text for pennies.

In the end I got rid of him.

I'm sure he thought I was "intimidated", and had "ego" issues. But he's actually just redundant.

jeremyjh 14 hours ago

No, that’s not it. Its easy as competent engineers for us to forget how terrible most people are at prompting AI, or reviewing and correcting AI output. Raw output from typical prompts is garbage. If I start reading something that no one even bothered to edit well enough to tone down the AI speak, odds are its garbage and I don't need to spend more time engaging with it than the author did.

rfgplk 14 hours ago

But the point is that it's garbage because of the low quality of the information, and not necessarily because an LLM made it. I do agree that most people don't know how to prompt.

jeremyjh 14 hours ago

spelk 14 hours ago

Admittedly a controversial take, but I think some of the AI skepticism I see is driven by status anxiety, alongside the perfectly legitimate complaints about verbosity, low-effort output, lack of a human voice, etc.

The bar for what counts as expertise is shifting. If someone with relatively little background can use an LLM to get to a reasonably informed answer much faster than before, then experience and credentials alone carry a bit less signalling power than they used to. That obviously doesn't mean the inexperienced person suddenly has the judgement, context or intuition of an actual expert, but I do think some of the hostility toward AI comes from discomfort with that change.

AI is still wrong, goes in weird circular loops, and doesn't solve the fundamental human problems around judgement, organization, learning curves, accountability, etc. But it does seem to be raising the baseline expectation for what a competent knowledge worker should produce, and I feel that shift is genuinely uncomfortable for a lot of people who based their identities around being rigorous abstract problem solvers.

AloysB 8 hours ago

Ironically, some of the AI 'trustism'[1] is very much driven by anxiety the fear of being left behind if one does not jump on the train.

I agree that it shifts the notion of what is expertise, but for the worst. It's very hard to tell who is actually an expert, and who is mimicking the expert.

The consequences vary from annoyance to downright catastrophe. e.g.: a confidently wrong medical advice

On the other side, sometimes the expertise is not a requirement for the user: "If it works and does what it says on the box, that's all I care".

I like the fact that you use the word "some", awesome to see some nuance. It's a tricky situation.

---

[1] I am being an idiot on purpose, I think the word skepticism was completely derailed from its origin and meaning.

A minimum amount of skepticism is very healthy, especially for software engineering. Most software engineers, and science-based professions for that matter, are skeptics at heart. And it's a good thing.

Skepticism is the base of science; science thrived when we admitted ignorance and became skeptic towards our own knowledge.

hatthew 14 hours ago

Reading a copy-pasted AI response feel the same to me as reading a massive wall of text with no punctuation. It may contain valuable information, but it's harder to extract the signal out from among all the noise, and the writing style is correlated with a lack of valuable information, so I generally give up and decide to spend my time reading something else.

Is that an ego issue? Doesn't seem like it to me.

intended 14 hours ago

Nah its just bad writing.

Plus I’ve been seeing where AI productivity is highest and it’s been when leveraged by an expert.