alt.hn

5/29/2026 at 12:12:16 PM

We should be more tired than the model

https://vickiboykis.com/2026/05/28/we-should-be-more-tired-than-the-model/

by tosh

5/29/2026 at 1:01:38 PM

Something I've been trying recently for non-throwaway code is extensive refactoring, without typing any code myself but by closely directing the coding agent.

Prompts like "move the code relating to SQL query analysis into a new file", "look for opportunities to use pytest parametrize to remove duplication in that test", "rename method X to Y".

Early indications are that this is helping a lot with the problem where it's easy to churn out thousands of lines of code and not really have it stick in my head, even if I review every line of it.

Reviewing code and actively refactoring it is less tedious and more mentally engaging than reviewing code without changes.

If this was a human collaborator I'd be worried that I'm just creating busywork for them, but I don't care about busywork for LLMs!

The goal is to produce code that I understand and that I can remember just well enough that I get an updated mental model to help me productively make future decisions about the codebase.

by simonw

5/29/2026 at 1:12:24 PM

>Prompts like "move the code relating to SQL query analysis into a new file", "look for opportunities to use pytest parametrize to remove duplication in that test", "rename method X to Y".

There’s a lot of overlap there with the sorts of things traditional automated refactoring tools can do approximately instantly, locally, and for free.

by thfuran

5/29/2026 at 1:45:53 PM

Yea, when I read about people using AI with prompts like that, my first thought is, "Wow, that's like copy/paste, but instead of Ctrl-C/Ctrl-V, it's round-tripping to a server and using GPUs to do it." What's next? "Claude, rename the function doFoo() to performBar()"?

by ryandrake

5/29/2026 at 5:43:50 PM

Sometimes when I'm in the CLI and don't have a code editor open, I do this. Yes, it's lazy. But I also trust the model to check and update related things (tests, etc., while applying some judgement).

It's not unlike some managers who tell their teams to do something trivially easy that they could have done themselves.

(I'm not saying this is ideal and I'm not defending my laziness. It's just the current state of things.)

by jannyfer

5/29/2026 at 4:44:40 PM

Yes, it's copy pasting but it's tedious and it adds up fast.

Even the doFoo to performBar is tedious because you need to catch all instances and your find/replace script strategy might have unintended victims.

In this case indeed, it's just much more convenient.

by RealityVoid

5/29/2026 at 6:06:38 PM

The languages I use the IDE literally does this for you, perfectly, deterministically.

And instantly, certainly when compared to AI.

by mattmanser

5/29/2026 at 9:37:51 PM

That doesn't update documentation or comments referring to the function. I prefer search-and-replace.

by Kiro

5/29/2026 at 10:42:26 PM

Sure it does. IntelliJ will do that just fine.

by thfuran

5/30/2026 at 6:55:25 AM

Sounds like it doesn't catch everything and they recommend search-and-replace. From their docs: "For example, if you want to replace a variable name with a new name for a large project, use the Replace in path instead of the Rename refactoring since your variable can appear in the config files as well."

by Kiro

5/29/2026 at 7:32:17 PM

If IDE can do it, a custom tool can do it to. IntelliJ even have a built in MCP server ready to help any agent with such tasks.

by miroljub

5/29/2026 at 6:32:14 PM

Which languages, just out of interest?

by simonw

5/29/2026 at 7:08:59 PM

That should be most? Unless you do very weird stuff like using strings in JS to call functions, or reflection in C# and similar very special cases, any IDE can handle that.

by Semaphor

5/29/2026 at 7:54:00 PM

Kotlin, Java, Python, C#, Typescript. Anything that has a trustworthy and consistent pointer between code.

Ruby would be the one exception I’ve worked on in my head, and for they language, ctrl+f *usually* (but not always) finds the rest.

Ruby is particularly magical with being able to evaluate methods from dynamic strings into running, production code[0]; but otherwise, languages and capable IDEs, like IntelliJ and Visual Studio just support that. I don’t happen to use VS Code, but I assume it has basic refactor, too.

[0] Devise. https://github.com/heartcombo/devise/blob/main/lib/devise/co...

by t-writescode

5/29/2026 at 7:24:44 PM

Java has very good refactor support. I use jdt.ls which is eclipse based, but I've heard intellij is even better. I've wished for similar refactor actions in other langs.

by rustyminnow

5/29/2026 at 8:56:24 PM

Yeah, VSCode will rename functions and vars perfectly, using the language semantics. It'll handle changing imports in python if you change file names.

Like you said, it's basically instant.

by habinero

5/29/2026 at 4:55:48 PM

don't LSPs and IDE's help with that?

by fridder

5/29/2026 at 6:20:28 PM

I'm right there with you - prefer classic, deterministic tools wherever possible - but there's a limit. E.g. it's easy to rename a single getter from classic enterprise java `Foo getFoo() {..}` to a modern style `Foo foo() {..}` ... but to rename dozens of getters/setters across hundreds of classes is still tedious.

Even harder would be to update your setters from `void setFoo(Foo f) { this.foo = f; }` to fluent-style `Parent foo(Foo f) { this.foo = f; return this; }` - I'd be surprised if there's an LSP action for that at all. (I'd love to be proven wrong though)

by rustyminnow

5/29/2026 at 9:15:13 PM

Not sure about LSP, but IntelliJ has had a "structural search and replace" feature for many years, and it can easily handle changes like the one in your second paragraph. It's conceptually like a regex search, but it matches language-specific AST subtrees instead of character sequences.

by teraflop

5/29/2026 at 11:03:41 PM

I've found that for super large but simple refactors, codex and Claude struggle and will just quietly stop doing what you asked it if it's a long running task.

I actually had better luck asking codex to write temporary sed scripts based on the requirements then apply them.

by yonaguska

5/29/2026 at 7:14:58 PM

Perhaps, but do they handle all the other aspects of refactoring, too?

by christoff12

5/29/2026 at 8:58:47 PM

Yes, LSPs can supply a variety of refactoring commands (rename, extract to, inline, etc.) that the LSP server can implement directly, deterministically, locally.

by deathanatos

5/29/2026 at 1:55:16 PM

Here's the loop for a successful small refactor (anything beyond a rename that could be handled entirely by an IDE):

1. Find the code you want to change

2. Run the tests to confirm that test coverage is good for the starting point

3. Track down everywhere else that might call or interact with that code

4. Update the tests (red/green TDD)

5. Alter the code

6. Update the things that call the code

7. Run the tests again

8. Apply linters/formatters

9. Address any feedback from linters

10. Check to see if any documentation needs updating and do that

11. Land a commit with a descriptive commit message

I can get all of that done with a coding agent with a single sentence prompt - especially if it's already in a session where it knows that I do "red/green TDD".

... and then I can work on something else while the agent is churning through those steps.

by simonw

5/29/2026 at 2:15:31 PM

My point is that all these steps can be done very quickly by even a junior developer who knows emacs or their IDE, in a codebase with existing lint/format/test automation, without even taking their hands off the keyboard. You're already in your IDE, you can probably do it just as fast there. I don't see the cost/benefit of spending tokens and hitting a server for this kind of work.

I guess the difference may be in people's mode of AI working: Do you primarily develop in your IDE or a bunch of terminals running vim, and occasionally fire up claude to do more complex things? Or do you primarily develop in a long-lasting claude terminal, and occasionally tab over to the IDE to watch/codereview? In other words: What dev tool is on your primary monitor and what's on your secondary monitor? It's getting hard for developers in one camp to discuss coding and see eye-to-eye with developers from the other camp.

by ryandrake

5/29/2026 at 2:24:02 PM

Those 11 steps would probably take me 15 minutes.

There are a lot of small refactorings that I wouldn't consider to be worth 15 minutes of my time, so I wouldn't do them.

Outsourcing those to an agent means I don't have to make that tradeoff, which means I can get better quality code.

But yes, for a lot of my work I'm now a Claude Code / Codex first developer. I run Zed so I can navigate the code and occasionally make small edits.

by simonw

5/29/2026 at 4:33:01 PM

When you make the change on an IDE, you:

1 - Find the code

4 - Move the code

10 - Change the documentation

You don't do the other steps because it's deterministic and always correct.

by marcosdumay

5/29/2026 at 4:40:36 PM

Presumably you're talking about statically typed languages? I mainly work in Python and JavaScript.

I don't trust any refactors until I've seen the test suite pass.

(OK, sure, "rename method" might be OK, but most of my refactors and design changes are more interesting than that.)

by simonw

5/29/2026 at 8:13:54 PM

Shift-F6 (rename refactor) is my goto, and what I miss most in a code editor (maybe LSPs support that today for most languages).

It also takes away the mental tax burden of thinking up good names for things when writing out code quickly on the first pass.

Works very well with PHP (in PHPStorm), and I'd expect somewhat similar reliability in PyCharm on a Python project with some type annotations (or maybe even with none?).

With the advent of LSPs and treesitter parser approach I wished to see higher level refactorings possible by now, but innertia in tooling space died down as most focus switched to LLMs.

by mhitza

5/30/2026 at 3:12:10 PM

The point of good names is not just readability but also to sharpen your cognitive model of the solution. That moment when you realize you don’t know what to name a thing is a valuable prompt to deepen your thinking a bit.

And I sometimes prefer searching for the method names and changing them one by one (find-grip-dired followed by query replace) just to see where all the code is being used, if anything looks bad, if there is some opportunity for code reduction, etc. not that I don’t also prompt Claude to rename things, or better yet make sure all the SQL commands log enough etc.

by lanstin

5/29/2026 at 10:02:00 PM

Use the Python type hints. You don't need to be specific, they help a lot even when you have some 'anys' inside composed types.

Anyway, Python tools are usually capable of refactoring any code that isn't reflective or self-rewriting. There are places for those two, but those are very few and the AI won't have any idea how to work at those places either.

JavaScript is a problem.

by marcosdumay

5/29/2026 at 8:37:05 PM

100% agreed

by steine65

5/29/2026 at 3:55:27 PM

I develop with a very custom neovim using only the keyboard. Over the years I've become really fast. And yet I'm doing it less and less myself and ask the LLM even small things. In my case the switch happened naturally as I moved to local AI and fully integrated the coding harness into my tmux + neovim workflow. Neovim becomes more of a project and file explorer, together with lazygit to diff review the changes.

by regexorcist

5/30/2026 at 6:55:42 AM

Yes, and ideally in this case LLM would be translating your intent into a series of invocations of specific APIs or scripts to do the transformations, and correcting for unexpected failures or realizations.

Because it's often not just Ctrl-C/Ctrl-V. It's Ctrl+C/Ctrl+V, except today paste is Shift+Insert, and in the other project it's usually C-y, and you actually need to check one more place for full list of things to copy, and then you discover one case needs a minor transformation, ...

LLMs can handle such annoying details intelligently.

> What's next? "Claude, rename the function doFoo() to performBar()"?

Yes. Such prompt can be issued in many equivalent ways, and works across environments, contexts and tool stacks. I can issue it from the phone, in form of "also doFoo -> perform... reame", and it will work even on Lisp code inside Word documents it accesses through Google Drive.

by TeMPOraL

5/30/2026 at 8:53:55 AM

For one function, yes. I used Copilot to do massive refactoring on my project recently - switch to a new JSON library, completely switch web frameworks, etc. The stuff I needed to do but was putting off forever.

And even with small things, it's just toil. You can start a small update and then realize with all the back and forth of edit/test/edit/test that you've been stuck in the OODA loop for 40 minutes you will never get back.

by renegade-otter

5/29/2026 at 9:02:22 PM

It is indeed. At individual level thinking folks like yourself can think and do better of course. But all these AI companies are now heavily leaning on enterprises. And there I see function renaming via AI, or extracting column from excel sheet is not rhetorical but normal day to day task.

by geodel

5/29/2026 at 9:29:00 PM

> What's next? "Claude, rename the function doFoo() to performBar()"?

As an engineer: of course not, keyboards are more efficient.

Also as an engineer: of course, “tea, Earl Grey, hot”, or what are we even working for?

by bonesss

5/30/2026 at 3:15:40 PM

My son bought a Japanese water heater to keep a liter of water at just below boiling at all times. For my 4 pm Ceylon tea break, milk no sugar, I refuse to use the prefab water; preferring to stick with my routine of boiling the water, to a rolling boil, adding it to the tea bag in the cup, and letting it steep. One doesn’t take tea to maximize efficiency but to pause and plan, or just let go the reins on attention and see what happens.

My son loves the always ready hot water.

by lanstin

5/30/2026 at 11:39:21 AM

"Pft, you use an entire IDE inside an electron web browser eating 16GB of memory to rename a function instead of a simple regex? What a waste"

by vitally3643

5/31/2026 at 7:05:27 AM

Firstly, yes, software bloat is a waste.

Secondly, no, it's not even comparable with AI basically delaying electricity decarbonization on entire continent-sized countries, requiring entire coal-fired power stations and stealing all the ram and storage of the planet to build specific and short-lived hardware that will last few years and will be thrown away very fast.

by jraph

5/29/2026 at 1:52:40 PM

Sure, and sometimes the coding agent will even use one of those refactoring tools on my behalf.

Getting them to run ast-grep is really fun, especially when it saves me from having to memorize that syntax myself.

by simonw

5/29/2026 at 1:19:49 PM

What are some traditional automated refactoring tools that can do stuff like those tasks from the example?

by mattacular

5/29/2026 at 1:36:16 PM

???

Mature workflows for those kinds of tasks have been mostly ubiquitous across professional-grade engineering tools like those from JetBrains or Visual Studio itself for longee than many people here have even been working in the trade.

It's clearly not the case for simonw, but much of what many people task AI tools to do foe them are only a novelty for the "VS Code"-type users who stubbornly refused to explore more professional-grade paid tools in the past.

Yet for many tasks, those mature paid tools provided reliable and efficient features that make the AI approach look like an expensive, slow, and dangerously nondeterministic regression.

by swatcoder

5/29/2026 at 1:56:50 PM

Oh I'd definitely classify myself as a "'VS Code'-type users who stubbornly refused to explore more professional-grade paid tools in the past."

I've never liked the larger IDEs - VS Code only won me over because it was indistinguishable from a lighter text editor at first, and the IDE tools then emerged slowly as I used it.

by simonw

5/29/2026 at 4:48:37 PM

I used JetBrains IDEs for years. The refactoring tooling was fancy find-replace as far as I recall? Pretty cool in 2015, though.

by duggan

5/31/2026 at 7:50:13 AM

It goes deeper than this, you have features like rename function / change method signature that will update your whole code base and even suggest applying such changes to related(-looking) functions.

by jraph

5/29/2026 at 6:26:53 PM

https://www.jetbrains.com/help/idea/refactoring-source-code....

This has a list, but some of them that I've used extensively:

- Rename anything, can also do smart renames that apply patterns, deal with capitalization differences, pluralization, etc

- Move function, constant to a different file

- Change function signature, including adding, removing, reordering, and renaming arguments

- Turn a chunk of code into a constant, variable, or function, including replacing other similar patterns or calculations with the new constant/variable/function

- Inline any of the above.

- Replace a class with an interface, have the class implement the interface... same with field accesses

- Move functions up/down the type hierarchy

I'm sure there's others. This has all been there for at least a decade.

by rendaw

5/29/2026 at 1:40:03 PM

Eclipse IDE since like 2001

by hack1312

5/29/2026 at 1:23:03 PM

Literally any IDE or decent text editor?

by iLoveOncall

5/29/2026 at 1:24:43 PM

Yeah I do find myself leaning back into those tools. For awhile I’d just prompt to rename something. But when it’s my own tokens I’m paying for, I prefer the fast and free option :)

by cautiouscat

5/30/2026 at 12:35:15 AM

Traditional automated refactoring tools cannot read multiple functions and, in one go, determine what subsets of all of those functions relate philosphically to the SQL queries (not just the actual queries themselves) and pull those out into a new coherent interface in a new file.

by quietbritishjim

5/29/2026 at 9:43:27 PM

> traditional automated refactoring tools

any recommendations?

by NooneAtAll3

5/29/2026 at 10:45:17 PM

Whatever the most popular IDE is for any given language, probably.

by thfuran

5/29/2026 at 1:37:38 PM

You just went too far. Go back to the subscription.

by keybored

5/30/2026 at 10:28:38 AM

which tools?

by sharts

5/29/2026 at 1:11:23 PM

I think the best approach is active code review as the agent does small batches. Or letting it come up with a solution, testing if it passes or fails the desired outcome, then creating a separate fresh project and asking it to rewrite in small parts, and have it explain to you what and why it's doing to achieve each part.

by docheinestages

5/30/2026 at 3:19:57 PM

Yeah my main current work repo I have five clones of it (de1.main, de2.main etc) each with an agent in a tmux session. The main priority change I will have up in my emacs gui with editing the files and reading and so on, but the side ideas that used to just get a line in the ideas or todo section of daily.org now sometimes get a claude working on it. As POC at the least.

by lanstin

5/29/2026 at 1:05:32 PM

Interesting idea.

It’s almost like a buffer space would be useful for code.

I’ve been using tuicr for agent code reviews and have been enjoying that. I think I’ll try your idea as part of my workflow.

by j_bum

5/29/2026 at 1:16:36 PM

I don't know. I find that I'm moving up a level and improving my product-management skills while delegating most of the code to the agents. I'm still very much hands-on with the design and requirements, and I'm asking questions like, "What's our security story for XYZ?", "Are we accounting for colour-blindness?", etc. Not being down in the code allows me to prairie-dog a bit more and see the landscape better.

by paulmooreparks

5/29/2026 at 2:00:48 PM

One thing I've noticed is that LLMs have allowed middle managers trapped inside the role of a developer to finally self actualise.

by xantronix

5/29/2026 at 11:43:06 PM

Funnily enough, my LinkedIn feed is full of managers who are ecstatic at being able to "code" again, so it applies to developers trapped in the role of a manager as well!

by keeda

5/29/2026 at 2:31:18 PM

chef's kiss

by ryandvm

5/29/2026 at 1:25:28 PM

I'm about 50% that way. However when the AI is done coding I then step back and review to find places the code quality is unacceptable. I also have to stop the AI once in a while because it forgets the point and does something stupid. Junior engineer learn, AI does not.

by bluGill

5/29/2026 at 2:53:08 PM

I don't abandon the code to the agent entirely. I have my own... I wouldn't call it a harness as such, but rather a shared Kanban board, and it'll be the subject of a "Show HN" soon. It suffices to say that I define Kanban cards for each feature or bug, and I have clearly defined review points for each card, post-spec and post-code, where I step in. On top of that, after my review, there is an agentic review, and agents can and do catch things that I missed. The quality of the software has improved quite a bit since I instituted that flow.

by paulmooreparks

5/29/2026 at 1:31:21 PM

> Junior engineer learn, AI does not.

This is technically true, but lets not act like we haven't seen immense improvement of both models are harnesses for these models in the past years. They may not be learning, but they are getting better

by dpoloncsak

5/29/2026 at 1:47:37 PM

They are getting better at historical data, not at the fundamental issue.

As a recent example, I recently had to abandon the multiple LLM reviewer/verifier model I was using because zig 0.16 was released with major changes.

I actually reverted back to full self hosted because the foundation models we’re trying too hard to revert to the older versions of the language.

It is going to be a balancing act and there is fundamentally no way for LLMs to get around this.

We will have to develop methods to do so, most likely by focusing agents on problems that are more static.

by nyrikki

5/29/2026 at 3:11:27 PM

Question for you, since I also use Zig 0.16: how do you get it to use Zig idioms? I use Kimi 2.6, and I feel like whenever I try to get my agent to write modern Zig based on a C reference it decides to start writing everything in a C style (doesn't use defer, doesn't use opaque enums even when I explicitly tell it to, doesn't use Zig's error unions, swallows errors instead of asserting, and some more). It's quite frustrating, and a lot of catchable errors crop up until I've beat modern practices into it.

by smj-edison

5/29/2026 at 4:51:51 PM

I don’t, it is mostly used for ideas, review, etc…

Getting the agent to grep std, example code, comments that reference inaccessible security or bugs etc.. help a little.

But for my needs, not refactoring would just be stepping over dollars to pick up pennies.

But yes it is a problem.

by nyrikki

5/29/2026 at 1:52:14 PM

I find great success in not relying on LLM's built-in knowledge, but giving it links to necessary docs/manuals and have it read that before doing anything.

by askonomm

5/29/2026 at 5:19:19 PM

Currently, with zig 0.16 the agent has to have access to the zig compiler and std library to even produce code that will compile.

If you have zig installed, you can run ‘zig std’ to see that.

You still have the limitations of attention etc…

Even zed’s agent will leverage that built in tarball, but it doesn’t solve the problem, especially as some of the languages killer features are unavailable in C and other languages.

by nyrikki

5/29/2026 at 2:15:26 PM

Also, add "no assumptions or guesses" and if you use a model with really strong prompt adherence (most SOTA models), they'll figure out the right version first, then look up docs, then implement.

by embedding-shape

5/29/2026 at 10:24:49 PM

Pretend? I don't have to pretend, I haven't seen any real improvement. I wouldn't let the models of today write code one bit more than the models of several years ago, because they still suck at it.

by bigstrat2003

5/30/2026 at 3:25:33 PM

I find that is the case for production code that will be running 24x7 unattended, but also Claude lets me build a lot more highly specific dashboards or visualization tools that I really don’t give a fig what the code is, as long as the numbers sum up and the links work. So my batch job I am careful with, the dashboard I check every morning to see what batches and lambdas failed eh I can wait the two minutes it takes to populate all the data; better to have time to top off coffee than having to understand modern JavaScript, canvas, D3 etc and web frameworks. I do force it to use python and flask for the web serving and SQLite for caching/ memoization, but everything else carte blanche.

by lanstin

5/29/2026 at 1:27:19 PM

Unless you log its mistakes and how they were solved in decisions.log

by seunosewa

5/30/2026 at 1:19:48 AM

I think the right comparison is AI models versions, not intra-AI-model growth (although even that can 'learn' with persistent memory & contexts).

by gameshot911

5/29/2026 at 5:34:40 PM

> What's our security story for XYZ?

lmao I hope I never use your products with anything sensitive ever

by slopinthebag

5/30/2026 at 5:40:23 AM

I think you missed the point. I don't abandon security to whatever the agent decides to write.

by paulmooreparks

5/29/2026 at 8:00:42 PM

[flagged]

by tamaz_entalpa

5/29/2026 at 1:25:19 PM

[flagged]

by ctdinjeu7

5/29/2026 at 12:58:09 PM

I clearly identify with the problem the author raises, which is: the bottleneck is understanding.

I don't go along with their mitigations though.

In programming we have one tool for this: abstraction. Decomposition, pattern recognition, even data structures and algorithms are all down stream of abstraction. Collectively, we've never truly mastered abstraction, but it's what we have and we collectively wield it well enough that it's usually somewhat effective.

We are in dire need of a better abstraction.

by CraigJPerry

5/29/2026 at 1:49:21 PM

The "right" abstraction seems like quite an art. Sometimes it's not obvious, or it takes multiple rounds of exploration and testing (I'm thinking here of the mental shift moving from HTML + JS, via jQuery, Backbone, Knockout and up to React/Vue or Angular). At all points, we thought we had reasonable abstractions for a while. Vue and Svelt, or NextJS, now are so far from the mental model of early 00s "DHTML".

And I'm not sure how this relates to TFA's point. Are you saying we collectively need to get better at abstraction so that LLMs get better at abstraction (either by training, or our prompting), so that their code is easier to read?

by the_other

5/29/2026 at 3:03:27 PM

>> I’m losing control over the code I write when I work with agentic code generation

> Are you saying we collectively need to get better at abstraction so that LLMs get better at abstraction (either by training, or our prompting), so that their code is easier to read?

No - our current abstraction for coding agents is a loop where we express some freeform specification of a goal, then a sub loop kicks off where an llm takes a stab at what good looks like for the next step (make an edit, search for info, run a command to cause some side effect etc etc), it iterates in this loop and when it's finished its sub loop, it declares end of turn and the loop returns to the user for steering input.

That inner agent loop can make it quite hard to stay in control.

What if instead of only these low level free form prompts we additionally had some higher level primitives to work with?

by CraigJPerry

5/29/2026 at 8:23:53 PM

[flagged]

by khunjua

5/29/2026 at 7:56:17 PM

[flagged]

by tamaz_entalpa

5/29/2026 at 1:03:09 PM

Yes. And indeed, abstraction is not what LLMs are offering.

by repelsteeltje

5/29/2026 at 1:05:53 PM

It very much is. But it's a non-deterministic, more-lossy-than-usual abstraction: english to code.

by coldtea

5/29/2026 at 7:52:56 PM

2 different meanings of abstraction at work here.

by eikenberry

5/29/2026 at 9:54:14 PM

Nope, the same single meaning.

English to program is the same kind of abstraction as going from assembly to program to C to program to high level scripting to "4G languages" and so on, and hiding all kinds of details behind a much terser layer. It's just that it's a qualitative jump at it.

Here's a ChatGPT provided answer asked to "define abstraction in programming, like when going from assembly to C to scripting, etc":

"Abstraction in programming is the process of building layers where each layer hides the details of the layer below".

by coldtea

5/29/2026 at 10:31:27 PM

In math/computers abstraction has a technical meaning that requires deterministic behavior for the abstraction to work. It isn't a proper abstraction if it doesn't always do the same thing underneath.

Abstraction as a layering idea without regard to how it works is like the pop-pych version in that it is "right" but misses nuance.

by eikenberry

5/29/2026 at 12:55:27 PM

> We should be more tired than the model

I understand the rationale behind this, but can't help feeling that this is a downward spiral. The software industry has always been a hard place to build and sustain a career because of the pace of change. With these tools, the pressure to increase output is going to grow, jobs are going to be axed - so software devs need to work harder to stay relevant. Weren't these tools supposed to make our lives easier?!

by sam-cop-vimes

5/29/2026 at 12:57:12 PM

That’s only true if companies give some of the productivity gains back to the employee, but most companies don’t do that. They keep the profits purely for themselves. There are some exceptions.

by mettamage

5/29/2026 at 1:09:16 PM

In general without unions and workers saying "that's enough", any productivity savings never go back to workers.

But of course AI is also making union/worker pressure matter even less, since it's function is to cheapen the cost/leverage of workers.

So the only solution is fighting that at the political/legal/social level. Which I ain't see happening anytime soon.

by coldtea

5/29/2026 at 1:21:05 PM

There's only one way to eat an elephant: one bite at time. Putting some energy into organizing, even if only on the level of deliberately building solidarity with your coworkers and never mentioning the word "union", can and will pay dividends to somebody down the road -- possibly even you -- and also has immediate benefits in that it feels better than looking over your shoulder all the time.

by ElevenLathe

5/29/2026 at 1:28:55 PM

>There's only one way to eat an elephant: one bite at time.

Maybe, but to eat it you need to kill it first or it will stomp you. And this can only happen all at once :)

by coldtea

5/29/2026 at 2:50:47 PM

Of cause there are some who see boost in productivity and other advantages of AI, but I'm questioning the current AI models ability to produce code (and text). If all the promises were true, we'd see an increase in code quality, but we mostly don't. AI tools do help find interesting bugs code bases like Curl, but commercial vendors doesn't seem to be delivering any fast or better than before. In fact some, like Microsoft, seems to produce worse code now.

If there's this huge productivity boost what is it being spend on? I know, many have been laid off, but that's not universally true. So we have a productivity boost that doesn't really deliver anything and overall quality a lot of products/code/writing/communication is going down, yet we spend an ungodly amount of money on datacenters... for what, just spinning the wheels?

by mrweasel

5/29/2026 at 1:08:36 PM

Choosing speed today is going to cost you tomorrow. Leaning on these tools degrades your actual abilities. You are making yourself less valuable to future employers. So while it might be in the best interest of the company to force you to work faster it is in your own best interest to resist that.

by poszlem

5/29/2026 at 2:19:03 PM

What form can that resist realistically take if lots of companies are monitoring your LLM usage, demanding more usage, and fire bottom "performers"?

by gib444

5/29/2026 at 6:01:26 PM

They do, though, through rising salaries.

by esafak

5/29/2026 at 1:31:38 PM

I'm not convinced jobs will be axed in the long-term - All the big tech companies frequently staff teams on projects that basically go nowhere to spread bets on multiple projects in case one has legs. Once LLMs reach the point of commoditization and drop in price, it seems like the natural next step is more teams with smaller structures to spread bets even more. A 5 person team that is LLM-assisted is going to move faster and be more cohesive than an 10 person team that ends up stepping all over each other.

by regular_trash

5/29/2026 at 1:08:06 PM

>Weren't these tools supposed to make our lives easier?

In a late stage capitalism market economy, their only actual requirements were to make profit for the shareholders and VCs.

If that means making our lives harder, firing most of us, making us stupider, being addictive, being used for surveillance to sell us shit or control us, or even being used to kill people, all of those are fine, if they fulfil that requirement.

by coldtea

5/29/2026 at 9:07:56 PM

I try to counteract this "comprehension-debt" by having the code-agent quiz me, Socratic-style, about the core problems, possible solutions, why certain approaches wouldn't work, and why the specific approach was implemented. When I don't answer correctly, the agent drills down and asks more questions, until I am led to the answer myself.

I find this surprisingly useful. The quiz forces me to put in effort in thinking through the problem and solutions. And this effort likely helps in learning, understanding and retention. I also find frontier LLMs are very good at this type of Socratic quiz; they give a very good semblance of having a "theory of mind".

I made a Socratic Quiz skill as part of suite of code-agent productivity tools:

https://pchalasani.github.io/claude-code-tools/plugins-detai...

by d4rkp4ttern

5/29/2026 at 8:42:13 PM

I'll point out that this presupposes that skill retention is necessary, as opposed to something like "taste" retention. I'm not arguing against this, just pointing out that it carries a supposition that may or may not be true.

I am not yet convinced that the skill loss is as bad as people make it out to be, nor am I convinced that "taste" degrades like "skill" does. After all, it's easy to teach someone a framework. It's very hard to communicate why something is not as functional or why the UX isn't as good as it could be.

All this to say, I believe these are valuable questions, but we should be careful what presuppositions we bring into the equation. My value has never been my ability to write code. It's been my ability to make people's problems elegantly go away. I do not believe AI is making that worse (yet).

Side-note: If it IS making my skills worse... I'll just sharpen them later. It's not like experimenting with AI for a few years is going to permanently disable me.

by adamtaylor_13

5/29/2026 at 11:08:40 PM

To your other point, skill retention is important for me, the person typing this, because we live in a society where if I don't develop my skills I become unemployed and die in a ditch

by xgulfie

5/29/2026 at 11:23:17 PM

As a library maintainer, skill and taste are almost equally important. If I can’t recognize inefficiencies, difficult to maintain code, or generally unpleasant code smells, then people lose trust in my libraries/products and it’s no better off than some recently generated slop.

Years of production experience, wisdom, and using something in anger matters for both skill and taste.

by sorentwo

5/29/2026 at 11:05:45 PM

I anticipate that heavily using AI to do the dev work for you for a few years could very well be worse than just taking the years off, since you're training your brain that you can just reach for the AI

by xgulfie

5/29/2026 at 2:58:05 PM

The point about the UI affordances strikes me as very relevant. I find that the way I want to use LLMs in coding is not available.

We have chatbots in a sidebar that will just generate code for you or, more helpfully, answer your questions. We also have inline LLM code completion, which I've turned off completely because they're incredibly noisy.

What I want is something between those. My ideal use of LLMs while coding would be, i start writing a function and need to act on some data. I don't know what method to use, maybe I'm in an unfamiliar language/framework and don't know what my options are. I want the AI to explain what methods I can call to do X in this specific place, no more, no less. It would need to know what outcome I want, which would be hard to do without jumping out of the code and typing into the chat, but I basically want it to function like Intellisense on steroids. Something that doesn't break my focus.

Current LLMs are anti-flow. For me, that's poison.

by soiltype

5/29/2026 at 8:11:32 PM

I've seen editors configured similar to how you describe. Varying from simple shadow-text style completion generated on command/keybind to more complex setups where you ask an external AI agent for a solution with it generating code that appears as shadow-text in editor with chat in the sidebar giving the reasoning behind it.

I agree the tools in general a big problem with current generation AI tools but there are options if you look around enough. Though you can burn a lot of time figuring out which ones are useful.

by eikenberry

5/29/2026 at 1:04:28 PM

Lately I've been thinking about this a lot. I've slightly shifted my use of Claude from implementing tool to scaffold generator for me to actually do the hard parts. It's frustrating at first, because the impulse always is "I could get Claude to do this in minutes", but that's just the brain trying to spare some energy.

I've found that it's much more rewarding to use LLMs as an aid to deep work instead of a substitute for it, and it's even helped me feel more optimistic about my place in this field after a couple of days of getting used to the mental friction again.

by yondys

5/29/2026 at 1:52:31 PM

This sounds like something I'd enjoy. Do you have a blog post or guide on your approach?

by the_other

5/29/2026 at 9:48:58 PM

This post reminds me of a conversation I had with my dad in the late 90s when I was mostly using VB6 and he was encouraging me to learn C++. Even back then, the syntax and ceremony of the language repulsed me, and my admittedly arrogant reply was that if I ever needed C++, I'd just hire someone to do that part for me.

For what it's worth, I still stand by that strategy 30 years later. Delegation is one of the most powerful tools we can use, and developers are usually really bad at it. I speculate that this is because we have egos and some part of my reptile brain feels like bringing in people who are better at something than I am is some kind of intellectual defeat. In reality, the opposite is true.

The lens that folks [who are anxious about forgetting how to program when using LLMs] should use is to ask themselves if they have the same existential crisis when hiring someone or working as part of a team. Does delegation make you dumber, smarter or something else?

In my case, I'm rarely as smart as when I effectively delegate things I'm less good at. In a universe where time is infinite, I could perhaps decide that it makes sense to be good at everything. In this reality, I'm more aware of how finite time is every morning when I wake up. It makes no sense for me to learn C++ for the few moments when arguably it would be handy if I knew it.

Ironically, it was ultimately video games - specifically, some hobby Unity development - that led to me learning just enough C++ to embarrass myself. And my dad never approved of video games, either.

Anyhow: if hiring someone to work on parts of your project doesn't make you less good at programming, I highly doubt that using an LLM makes you less good at programming either. In my experience, I'm actually feeling like a better developer these days because I'm getting so much more done in a shorter amount of time.

by peteforde

5/30/2026 at 10:21:05 PM

You can't talk about delegation without talking about what and who you're delegating. Delegating a demo or an exploration to a junior is fine if you can help them with feedbacks and make them grow and the business is not on the line. Delegating a critical development to a senior engineer you've vetted on previous delivery is fine too. Delegating a critical development to a junior is a recipe for disaster.

Now, I'm still trying to figure out what I can fully delegate to an agent and what I can't. Right now, LLM feel like a senior on technical stuff and a junior on decision/taste. One thing is sure, I can't delegate a critical development to it, not without review. For that review, I need programming skills. Maybe in the future that won't be the case, but I am not seeing that right now. (Using Claude code)

by gjadi

5/31/2026 at 6:44:52 PM

I'd say we're on the same page with all of that.

One thing I've noticed in my own behaviour is that the more tired I am, later in the day, the less rigorous I am about auditing what Opus suggests for me. This specific detail is a blind spot for many, I suspect.

The problem is always going to be the 2% of the time it does something horribly wrong on an architectural scale. You don't know when the poison pill might come.

Conclusion: if you wouldn't drive after drinking, smoking weed or staying awake too long, perhaps you shouldn't commit code generated by an LLM that is really amazing 98% of the time.

by peteforde

5/31/2026 at 7:55:37 PM

Yup, the unpredicable nature of their unreliability is what makes it very tiresome to work with LLMs sometimes. With people, you kinda learn their strength and weakness. With LLMs I haven't yet.

by gjadi

5/29/2026 at 12:42:49 PM

> Using the agent to keep asking questions about pieces of the code I don’t understand instead and pull up relevant documentation and PRs.

I like to do the opposite, asking the LLM to give me relevant follow-up documentation, like the actually docs, where I can read and understand things myself. Data structures, techniques, etc. I still like to read that from the authors, much easier and trustworthy to grasp.

by Aldipower

5/29/2026 at 12:53:15 PM

I do this too. LLMs are amazing at finding weird trivia deep in the docs. But you have to go check the original. The machine is often correct-ish.

by coffeefirst

5/29/2026 at 1:08:03 PM

Skill atrophy is a real issue when it comes to creative skills. But I argue that not all of what we call coding belongs to these skills. I consider lots of it chores due to inefficiency of the languages and abstraction layers. Problem solving, hypothesizing, researching, running experiments, and designing solutions all require critical thinking and creative skills. If you're worried about losing coding skills, ask yourself this question: what are you trying to achieve?

by docheinestages

5/30/2026 at 10:15:34 PM

Interesting as I reach a similar pov. I just started with experimenting with the following workflow with Claude Code: - get a plan for whatever I want to do, iterating in plan mode until I am satisfied with the solution - before execution, I mark each phase that I want to do/learn about with /tutor-mode

Tutor-mode is a SKILL I made to have the LLM guide and teach through questions and hints.

So I delegate completely the boilerplate/build system/CI and switch to manual+aided by AI for specific implementation part of the code.

I also keep a final validation step to me because I've experimented a few too many "sorry I told you I passed the test suite and I did, but the build failed and I didn't told you".

by gjadi

5/29/2026 at 1:03:54 PM

https://web.stanford.edu/class/ee384m/Handouts/HowtoReadPape...

I think this is how we should be reading code as well.

First understand the top level. Then the next level of detail and so on. I treat my understanding as graph of interconnected black boxes. If I don't understand a particular black box or a node in the graph. I click expand on it, grok the details and then collapse the node. Here's the grokking details of a particular sub-node also follows the same structure as understanding the root node. You don't need to understand everything from the get-go, expand your understanding on the need-to-know basis.

by Npovview

5/29/2026 at 1:05:52 PM

This kind of structure is also important when writing. You guide the reader through stages of awareness and understanding.

by HPsquared

5/29/2026 at 3:24:44 PM

[dead]

by Npovview

5/29/2026 at 12:55:26 PM

> adding friction back into development

I'm really trying to do this too. The problem is it's *so easy* to let your standards slip, even for just a moment, and that piece of code suddenly becomes foreign.

I find more mental energy is spent on restraint than execution these days.

by stantonius

5/29/2026 at 1:07:05 PM

So many efforts out there to alter the usage of the tool to regain control, when it's clear to me that the tool is the problem?

By which I mean, we should -- as software engineers -- be insisting on tools that put us in the driver's seat more.

Instead we're letting the agent drive. (I'm as guilty as this as anybody). But really we're letting Dario, Sam, Boris, etc. drive. And it should be clear from their public pronouncements and emissions that they don't have the best interests of our profession -- or the quality of software engineering generally -- in mind.

Yes, certainly, alter how you use the tools. But we need to fix the tools themselves.

by cmrdporcupine

5/29/2026 at 1:16:11 PM

>By which I mean, we should -- as software engineers -- be insisting on tools that put us in the driver's seat more.

And the company says "fuck you then, I'll fire you, and keep fewer coders, willing to keep the AI dance".

The role of AI as a tech is to put you out of the drivers seat as much as possible. All the way to job elimination.

Solution?

by coldtea

5/29/2026 at 1:36:11 PM

And by doing that said companies are devaluing their own IP and creating an organizational knowledge debt. Companies that work that way will in long run get outcompeted by shops that figure out (I don't know how) how to manage this better.

by cmrdporcupine

5/29/2026 at 8:20:34 PM

I think the opposite, as agents approach human levels of coding and multiple agents work together as a team to code, and check that code in an adversarial manner, companies that do not adopt them will put out less code, of lower quality, for far more money.

There is no mitigation for that situation which would allow human coders to retain their place in the ecosystem.

A man can dig a ditch in a week for £500. 7 men can dig a ditch in a day for £700. 1 man and a digger can dig a ditch in a day for £250.

"But I use knowledge and my brain to do my job, my job is special!"

Not any more it isn't...

by My_Name

5/29/2026 at 3:47:44 PM

What's worse, companies might be fine with "devaluing their own IP", since companies are not deciding, execs are.

And those execs will get their bonuses anyway, and will be drinking their champagne far away from their executive roles and the company by the time that's felt.

by coldtea

5/29/2026 at 1:13:45 PM

That's an interesting idea, but if the tools are really the problem, is there an actual way that we can solve this? How?

by yondys

5/29/2026 at 5:52:30 PM

the tools are in their infancy, and very little out of the power the coding model provides has actually been tried yet

by 8note

5/29/2026 at 6:18:20 PM

Agreed.

They're crude, and also implemented as a sidecar to the actual coding process. Just "hey go do this" which.. I mean... fine, it works, but it's not exactly helping with knowledge acquisition and maintenance.

by cmrdporcupine

5/29/2026 at 8:31:18 PM

Ultimately, what is the point of knowledge acquisition and easy maintenance?

To make the work easier for humans to do.

What is the point of knowledge acquisition by humans and easy maintenance if an AI is doing the work?

Some people paint, but if you want to record a scene instantly you press a button on a camera. You don't need to know what the camera does to record the image, you don't need to know how to paint, or anything to do with image manipulation. The tool takes care of that for you. Humans have always offloaded work to machines any chance they get. Other humans have always cried that those tools are the end of human ability, from just writing in 370BC to the smartphone in 2007.

by My_Name

5/29/2026 at 1:05:22 PM

>>In some ways, we’ve replaced the social media feed with a stream of tokens, and I look forward to reading those papers in ten years.

Second this. This is why zuckerberg is dying to spend as much as he can to make meta an AI company.

by dwa3592

5/29/2026 at 1:06:46 PM

Not a programmer, but I'm beginning to discover a rhythm similar to the author's that doesn't save time and effort as much as it fragments and redistributes them both.

Being conscious of what type of memory you're working in (or need to engage) may be the trick to building rhythm or flow, or whatever. Depending on the case the LLM may not even be necessary. Use something else.

The trap could be in trying to depend on and work with a model the same way we would work by ourselves, as the author describes, letting every type of memory unconsciously operate.

by tolerance

5/30/2026 at 9:07:29 PM

For people who couldn’t code at all before, AI coding tools don’t replace skill, they create access. My ability to build and retain the skills isn’t less because I didn’t have them to begin with pre-AI for coding. I can certainly say I’ve developed judgment. Knowing when the input is right, when to push back, when to rewrite. Maybe that’s the skill agentic coding builds for non-engineers?

by k_plankenhorn

5/29/2026 at 12:56:05 PM

> particularly because its UX affordances are reminiscent of a slot machine’s: you pull the lever, you get a reward (a solution to your coding problem.)

I hope the field moves out of the TUI with prompt + pull the lever paradigm soon‚ when it comes to agentic programming. And the Markdown paradigm too, tbh.

There hasn't been anything that really sticks yet for a shift to happen.

by helloplanets

5/29/2026 at 12:53:18 PM

This is how I treated LLMs from the beginning, maybe because of my impostor syndrome of not knowing if my understanding of _anything_ is correct, and going down the rabbit hole of the concepts that are presented there...

Now the question to the round: in your opinion, are LLMs ok to learn in this way? At least on the theoretical side of things?

by trklausss

5/29/2026 at 1:09:14 PM

Not the author, but one way you could mitigate some of the LLMs problems while learning (authoritatively stating wrong facts, reward hacking, ...) is to have it give you testable code exercises to teach you facts. So you can get the benefits of the LLM AND deterministically verify its claims. I've been trying this lately and recovering some of the lost joy of learning CS nowadays.

by yondys

5/29/2026 at 12:58:42 PM

I agree with the article, though I will say with an agentic workflow I feel more tired at the end of it than I would doing it by hand. Maybe it’s the constant reading and digging in the generated code, or the constant context switching while waiting for it to think/generate. Or it’s both.

by cautiouscat

5/29/2026 at 2:03:17 PM

I’ve been noticing the same thing. I’m getting roughly 2-3x more done, but I’m also at least 1.5x more exhausted at the end of the day.

by mock-possum

5/29/2026 at 3:36:25 PM

Reading all the code the model generates will tire you out pretty quickly

by sceptic123

5/29/2026 at 1:10:30 PM

For human in the loop to be effective, the human needs to actually be performing some substantive action, giving real guidance and critique and pushback. If the human only ever accepts the default plans then not only is there no understanding but the agent should learn to stop asking. It is not learning anything from the human, after all.

One thing that I look at is pushback rate: what percentage of the agent's proposals are rejected or critiqued? If it's below 5% I have found I have gotten too credulous and I am no longer closely following. Danger! If it's above 50%, I have clearly not given the agents sufficient context to perform the task and need to update my harness and instructions.

Who watches the watchers? I can imagine a guard dog process that halts the session to yell at the human if it detects complacency: if the human is providing too few tokens per minute of new context relevant to the task.

by dweekly

5/29/2026 at 1:34:33 PM

“Using the agent after trying for 20 minutes”

This made me chuckle a bit.

There’s no point in fooling ourselves about our own skill retention if this is the case.

by wolttam

5/29/2026 at 1:01:38 PM

All of these posts are a replay of what Marx wrote about machinery and alienation from work and intensification of the workday.

by zawaideh

5/29/2026 at 8:10:12 PM

[flagged]

by My_Name

5/29/2026 at 7:58:08 PM

I honestly don’t understand what people are on about.

As a dev with 40+ years behind me, I apply the same skills and tools to LLMs as I would to a small team of junior devs, except with a higher degree of rigor. I don’t feel that my skills are atrophying, in fact I’ve learned a bunch of new stuff in the process.

Depending on the work, I’m producing about 4x what I would have with a small team, and it is better code, better documented, more modularity, and less bugs than I was shipping with humans.

You have to keep a tight OODA loop, and write the code in specifications, protocols, interfaces, and implementation plans before the first executable line is put down. Iterate the code and docs together to minimize and document drift.

Treat a context window as a session. When it’s full, you start over with a new session, bring in the onboarding documentation, and go to work. I never cross context boundaries midstream, it’s always a disaster. 1m context is critical, I burn 150k just onboarding and orienting a new session.

Still shipping 4x at 1/10 the cost, and less bugs in the field (greenfield firmware development)

by K0balt

5/29/2026 at 1:07:02 PM

OP’s approach is one in a thousand.

Imho most of professional coders trade their time for oblivion.

The problem is that you really don’t remember anything about the code. It is not your creation.

It’s like a monkey in front of a slot machine, just pulling the lever and waiting to see if it hits the jackpot.

At the end of the day, it remembers that it pulled the lever. And how many times it won :)

Agentic-based coding with /goal and multiple agents coding together is another level…

But the issue remain imho - if there is an error, who is going to repair it?

by sixtyj

5/29/2026 at 1:14:27 PM

>The problem is that you really don’t remember anything about the code. It is not your creation.

The next problem is few care about that, at any level: coders, managers, execs. Just want their feature churn.

The even worse problem (or maybe, a positive) is that most of that code and the products powered by it aren't needed either.

by coldtea

5/29/2026 at 9:13:43 PM

Code generation isn't antithetical to high level reasoning skills and even with "vibe coding" you can still exercise way finer control than the slot machine analogy.

I typically prompt the AI with a detailed plaintext description of the algorithm and have a firm grasp on the time complexity. Perhaps my low level implementation skills are atrophying, but now I have greater bandwidth to think about the higher level goals now that I don't need to worry about the nitty gritty stuff.

It's kinda like how we went from handwriting machine code to programming in FORTRAN, and then going to a higher level language like Python. To me, using AI is just another level higher. Skill retention of understanding machine code and assembly went away in the majority of software engineers, but we gained a lot more than we lost.

by porphyra

5/29/2026 at 7:34:31 PM

As someone who absolutely is…

Thanks for this insight and validation

by bozhark

5/29/2026 at 1:07:04 PM

Another option is just not using an LLM at all.

by Trasmatta

5/29/2026 at 8:24:34 PM

Go to a town 1000 miles away as part of your job without using a travel device at all, like a car or a train.

I mean you can, sure, and doing so will produce a journey filled with experiences, but no business would operate like that and stay in business.

That is the future of jobs where thinking is the work.

by My_Name

5/29/2026 at 9:27:56 PM

Businesses are going to regret going all in on AI. It'll take a couple more years before the cracks start to show.

by Trasmatta

5/29/2026 at 12:58:03 PM

I don’t know about being more tired than the model, but when I’ve had a particularly productive session, I feel more tired (brain fog) than during a coding session. Probably because I’ve replaced brainless typing with the cognitive load of decision-making and weighing plan approaches.

by timeisapear

5/29/2026 at 1:09:04 PM

The solution is to move slower, not faster.

by nullbio

5/30/2026 at 8:52:50 PM

People are still letting LLMs generatr code for them?

Clankers are for reading code, not for writing it.

by LAC-Tech

5/29/2026 at 2:23:12 PM

I encourage you to crack open a dependency tree for any project and ask: how many of these do I understand? Then open one and ask: do you really understand whats happening? How much of the code there do you even use?

The experience will feel uncannily similar to AI generated code. So treat slop the same way. Give it a good, well tested API, and file an issue or PR when something breaks.

by fny

5/29/2026 at 1:00:08 PM

The struggle here for many is expectation. We can certainly be more productive with these tools.

Can we be 10x more productive though? Or is it more like 1.25x? Is it AGI or is it more like an advanced compiler?

Unfortunately the world is betting on 10x when the reality on the ground feels more like 1.25x.

by wxw

5/30/2026 at 2:51:26 AM

The author is 100% right. I can feel myself just "wanting the job done" with agentic AI, and not understanding/knowing how the code works.

That being said, I have deadlines I have to meet.

by lenerdenator

5/30/2026 at 5:53:24 AM

[flagged]

by Natalia724

5/29/2026 at 1:25:56 PM

[flagged]

by lucamark

5/29/2026 at 1:09:18 PM

[flagged]

by mikdan