207 comments

  • ryandvm an hour ago

    100%

    We're already seeing this at the enterprise level. Companies have dictates from leadership that "if you're writing code manually, you're doing it wrong."

    Okay, that kind of works for a while. We are indeed producing a shit-ton of code, but the reality is that engineers are pumping out code faster than the humans can understand and (honestly) review it. That sounds great until you realize that "hey Claude, read this Jira ticket and implement the feature in this code base" isn't really worth $200K/year.

    This is all complicated by the fact that we're also losing our grasp on reality from the other direction because we have leadership air dropping AI generated manifestos on the product owners and product owners having to use AI to transmute all that shit into 1,500 word Jira tickets that are 10% necessary feature work and 90% LLM boilerplate.

    So now you have software engineers whose job has changed radically to the point that the hardest part about being a software engineer is just filtering through AI generated artifacts from all directions just to try to get a feature out the door.

      everdrive 4 minutes ago

      People are fundamentally short-term thinkers. Just imagine spraying neurotoxins on your lawn. You're "saved" from the "terror" of noticing more than one kind of grass, but of course you're incrementally increased the cancer risk for yourself, your children, and who knows who else. This is just one example; people do this constantly. Plastic fleece puts an untold amount of poison into the environment, but "I need to be warm RIGHT NOW." etc. Or lead paint. "It's only toxic when it breaks down, and that won't be for decades!"

      Why would programming be any different?

      jgilias 33 minutes ago

      We have a product guy on the team who was in a deeply not technical role before AI who is trying to do the “hey Claude, read this Jira ticket, implement” thing.

      It doesn’t work for the vast majority of tickets he attempts because he doesn’t have the necessary understanding to even start thinking about if the solution that the autocomplete generates is even remotely workable. And that’s with fancy dev loops and whatnot.

      The spacer between the keyboard and the chair still matters in my experience.

        ahussain a minute ago

        But isn't it only a matter of time before the AI generated autocomplete will contain the correct solution? What then?

        dd8601fn 15 minutes ago

        Not everyone has this, but I always felt that a significant percentage of the value I bring is in immediately recognizing what you shouldn’t do.

        I have a hard enough time explaining why “yet another bespoke application on some unmanaged azure resources” is a bad idea when they have more reasonable alternatives at hand.

        Now these goofs can (very nearly) press a button and do it anyway, with no comprehension of the consequences. It’s high fives and pats on the back, until I’m cleaning up the mess.

      ben_w an hour ago

      > That sounds great until you realize that "hey Claude, read this Jira ticket and implement the feature in this code base" isn't really worth $200K/year.

      Nor even €50k/year.

      Two things are true:

      1) The coding part of my career is over. LLMs are capable of doing everything I've ever been paid to *write*.

      2) My actual job also included non-coding work: Does this attempted solution even work at all? Is this solving the right problem? Even if it's a valid solution to the right problem, is it the best solution given the time constraints?

      That last one, "given the time constraints", is a place where my experience is still useful. The AI is as lazy (or as optimised for fast wins) as the humans whose examples it was trained upon; but an LLM costs so little that the answer is always "do it right" rather than "do it fast". A lot of people don't know what "do it right" even looks like, having only ever known e.g. websites that take 5 seconds to load because of all the adverts and analytics, and never the world where machines with 1% of the CPU and no GPU at all could fit a fully playable first person shooter in the same memory footprint as that page.

      At least, I hope this "is a place where my experience is still useful"; I may just be telling myself a nice story, same as all the other people through history who have found themselves obsoleted when the automation came for them.

        matsemann an hour ago

        Before, if I would start working / thinking on a problem and discover it was harder than anticipated, that often was a signal that the feature may not be worth it. Because implementing it doesn't fit the current model of how things work or similar. Then it was back to the drawing table and find a better way of solving the underlying issue.

        But an LLM just happily chugs along and does it, no one feels the friction, which means you never stop up to think if you're solving the right problem, or in the right way. I'm already seeing this bite us in the ass, as you get hacks upon hacks.

          kypro 7 minutes ago

          I first brought this up late last year – that there used to exist a kind of selection pressure against both developers and against features which would prevent certain functionality from ever being shipped, specifically:

          - Functionality which exceed the technical ability or knowledge of the developer which built it; and

          - Functionality which would require an excessive number of changes that time/cost became a constraint (likely because it wasn't an incremental change but a significant rework, or just a bad fit with the existing product).

          Sometimes I had the displeasure of joining a company where you could see developers hit these blockers and tried to fight through them (likely under pressure from management) rather than avoid them. And in the process they created a mess of buggy, half-functional spaghetti code which someone else later had to resolve.

          Today however, people can use agents to smash through these blockers and ship an incomprehensible amount of crap. And what's worse is they're celebrated by management who don't know any better and see this all as a productivity win with no downside.

          I suppose there are two ways to look at this – some would argue that engineers don't need to understand what they're building in detail anymore so non of this matters. Instead they can always use agents to explain what's going on and prompt them to fix any issues that come up.

          Then there's another camp which might argue that agents will fundamentally have all the same limitations as humans, and that at some point a codebase will grow too complex that it exceeds even the limits of an agent's knowledge retention or intelligence. Or a codebase may just grow so large that it costs 1 million tokens to make even a simple change.

          Unless agents start saying, "there's no way I'm shipping that" like humans used to I don't really see how we avoid the latter scenario... Complexity simply must have limits even if agents allow the bounds of those limits to grow.

          At some point models will have to take control or we risk hitting these limits in irrecoverable ways since complexity far exceed that of what a human can reason about well.

          If this wasn't true then "build me all the software" would be a reasonable prompt. Because why wouldn't we just get an agent to build everything we could ever possibly need? It's obvious that in the limit there will be limits in knowledge, intelligence and cost.

          Whether it's humans or agents, someone needs to manage complexity. That is the most important thing a good SWE used to do. It's why technology selection mattered, it's why good architecture mattered, it's why clean code mattered.

        warmedcookie an hour ago

        I feel like there is also the "Nerd Factor" to consider which is this unrelenting passion to type away at a screen all day, whether that is yesterday's code or tomorrow's prompt. Few non-technical people have the attention span to suffer such monotony. (Even most devs don't have that to varying extents)

          skydhash 33 minutes ago

          It's only monotone from someone looking, not from someone doing. If you look at digital painting tutorial, you'll see a lot of timelapse, because it's a very slow process where you spend the majority of time correcting stuff. But if you're the one doing it, each individual brush stroke is the result of a conscious decision.

            orangedog 29 minutes ago

            I'm not sure; I find the job pretty boring.

              emodendroket 2 minutes ago

              Working on a passion project or working through the hairy details of a complex algorithm or whatever can be fun. But that's not really what the job is like most of the time.

        roncesvalles 24 minutes ago

        >My actual job also included non-coding work: Does this attempted solution even work at all? Is this solving the right problem? Even if it's a valid solution to the right problem, is it the best solution given the time constraints?

        This is not non-coding work. This is coding.

        winocm 12 minutes ago

        I really didn't want to get into computing only to be relegated to a declarative sentence writer. If I wanted to do that as a career, I'd have gone into literature.

        enraged_camel an hour ago

        FWIW: The highest paid devs I know excel at 2, and aren't even that good at 1.

          finaard 43 minutes ago

          I guess that somewhat describes me - and guess what, that also transfers to "should we even throw AI at that specific problem, or are there other solutions?". Early curiousity in figuring out the limits of LLMs now is turning into revenue by customers with problems that didn't exist a few years ago at all - which currently is quite an exciting field to work in as a lot of things just don't have pre-established solutions yet.

          It's a similar level of excitement as when we started doing devops stuff before devops even was a thing (which has been one of our main things for a very long time now).

        tayo42 an hour ago

        Ai can work through all of those questions in number 2 and design around it.

        I was just doing that yesterday designing a game demo lol

          matsemann an hour ago

          Works for a demo, but quickly stagnates. Future models may of course push the limits further, but right now it quickly goes sideways without someone knowledgeable at the helm.

            tayo42 40 minutes ago

            You don't design things with never ending details though. If your developing a feature there's a limited scope to it. If your designing the direction of a large project you're working with higher level concepts.

            The point is that AI is aware of constraints and can manage a round it. You've got to keep in mind the size of a typical software project and plan. Most people aren't writing a kernel. They're writing some backend tool and need a project that fits into a couple of quarters with a handful of people at most involved.

              addandsubtract 15 minutes ago

              > The point is that AI is aware of constraints and can manage a round it.

              Only if you instruct it with constraints. Otherwise, it's happy to implement whatever workaround it needs. But it still takes a dev to know what those constraints are and why they're needed.

          nevertoolate an hour ago

          Are you an AI?

            tayo42 44 minutes ago

            Your right to push back on that...

              lee_ars 21 minutes ago

              > Your right to push back on that...

              Human test passed. AIs make giant flashy mistakes. They don't fuck up basic grammar.

                dofm 7 minutes ago

                I have found it intriguingly difficult in my own tests to make LLMs deliberately fuck up grammar in any way similar to how humans do. I suppose this is actually an architectural limitation.

      javcasas an hour ago

      My job improved significantly since I managed to get into their (managers) thick skulls to tell Claude to not be verbose. I'm tired of 1200-word tickets for "put the totals in the automated emails".

      doctoboggan an hour ago

      > That sounds great until you realize that "hey Claude, read this Jira ticket and implement the feature in this code base" isn't really worth $200K/year.

      When you factor in overhead and benefits, many companies were regularly paying that much for someone (many someones) to "read this Jira ticket and implement the feature".

      We are currently in the "centaur" phase where a human-AI combination produces the best output, but I think some people are betting on the fact that the AI only product will eventually outperform the centaur. And with the cost of tokens falling thanks to fierce competition from the Chinese open weight models, it's definitely possible that those that bet on AI early will reap payoffs in lower expenditures for more output.

      Honestly not sure which side I land on that bet but I definitely can't rule it out.

        emodendroket a minute ago

        Yes, but aren't you just restating the premise in more words?

        svachalek 40 minutes ago

        We've gone through this with chess, and the days when a human can do anything to help AI there are long past; the human can only drag it down. It seems to me to be a form of the bitter lesson. I expect this will happen in every field where we don't add guardrails to require humans in the network. I have a hard time seeing regulation happening around this in the US but vanity may also serve, will CEOs be satisfied ruling armies of virtual assistants, or do they need big buildings full of human thralls?

          emodendroket a few seconds ago

          Well, maybe. But most fields of human endeavor aren't very much like a board game with clear, unchanging rules and a single, unambiguous objective.

          LPisGood 31 minutes ago

          At some point the whims of the CEOs don’t win. The shareholders demand more growth.

            dotancohen 8 minutes ago

            Demand from whom, if not the CEO?

      sandeepkd an hour ago

      I think there are two parts to it

      1. Execution of engineering task - Companies happen to focus on this mostly and this is the metric to measure easily. Using LLM tools gives a impression of improvement on this area which is what everyone is chasing

      2. Growth of the Engineer - This is the one which was always a side product of company culture, individuals interest, work being done, time being spent to understand, learn from failures. A job being executed perfectly for the first time itself does not gives the opportunity for learning, no memories/experiences are built up mind of the person executing the job after a while.

      The second part is the one which is under appreciated in current scheme of things since it was a by product. There is a concept of muscle memory which pretty much applies to everything.

      mohamedkoubaa 6 minutes ago

      Decades ago, enterprises said, "If you're writing assembly you're doing it wrong".

      That led to a reduction in knowledge of assembly in the average programmer but the people who specialize in it haven't gotten any worse at it.

      The result was a generation of programmers who make useful software while very few of them understand the machine they program. You could easily make either a positive or negative value judgement about that result.

      risyachka an hour ago

      Maybe some day, not in the short term. I've seen output of bad developers using Fable and after that I sleep safe.

      A bad or below average dev with AI will run your product and company into the ground in a matter of weeks.

        switchbak 23 minutes ago

        It's like a tool that has caused a fan out of both good and bad outcomes.

        Good: you can refactor your codebase at will, throw out legacy cruft by the megabyte, improve build/CI time, and simplify ruthlessly. Not to mention kick out new features in simple and consistent ways that align with what a user actually wants.

        Or you could add megabytes of vibe coded crap, solutions that add a ton of mass but don't actually solve the problem at hand (seriously!), implement abstractions that are logically inconsistent with the rest of the system, etc.

        Both of these are happening right now, and I think the latter is happening at a rate far higher than the former. But our fundamental dynamics are still at play - the ball of mud is still a ball of mud, even if AI lets you make it 100x bigger. The problem just gets more entrenched.

        Eventually AI will learn how to simplify code, understand coupling, etc - and hopefully it will just iron out problems as it goes. I think we're a long way away from that. But this is uncharted territory, and I don't think anyone really knows. I certainly don't hear anyone focusing on that as a target of optimization however.

        My hope is that we'll see a number of companies collapse as they scale - with basically no hope of rescue, and perhaps we can re-learn these lessons yet again. It kind of feels like GitHub might be the first example of this.

  • LunicLynx 2 minutes ago

    In my company the knowledge is starting to be devalued.

    People are distrusting whole swaths of concepts because they do not understand how things actually work.

    Like going away from zerotrust architecture to holding open a long polling connection.

    At least I seem to remember that long polling wasn’t that great, but i start to even doubt myself.

    Anyone wondering how the Roman Empire was wiped out? I guess we will find out soon

  • TonyAlicea10 7 minutes ago

    As a tech educator I 100% agree. LLMs are not going to become a "new compiler" where we don't have to worry about the code any more. There's a reason we trust deterministic systems.

    I've been worried about this a lot, I even created an agent skill called do-i-understand that's designed for novice devs (and experienced too, because atrophy) where the LLM asks you questions about the PR you're about to submit. I've found it helps a lot: https://github.com/AnthonyPAlicea/skills/blob/main/skills/do...

    One way or another, there will be a skill reckoning.

  • znnajdla 6 minutes ago

    This happened before with “real” engineering. Engineers a hundred years ago used to be proficient with slide rules and mental math and 3D assembly by hand. Products designed in that era often lasted a hundred years, like Singer sewing machines and Lada cars and 500 year old churches. Now things aren’t built like they used to be, and few people can rebuild civilization by hand like they did. But the world moves on fine!

  • LandoCalrissian an hour ago

    The snake eating it's own tail for llm software development has really been met with a shoulder shrug whenever it gets brought up. At best you might have a small cohort of developers that don't cook their brains with AI and their reward for that appears to be having to review terrible AI code written by people who have cooked their brains.

    Completely unsustainable.

  • aledevv an hour ago

    I strongly agree with the concept that cognitive friction is the engine of learning.

    First and foremost, it's an issue of "dependency": if you stop training the "muscle" of logic and reasoning, it gradually atrophies, just like unused physical muscles. You become dependent on external tools that replace a capability you once had yourself.

    A historical example that brought about a similar shift is this: when the production process moved from the craftsman's mind and hands to the Fordist factory (and the assembly line), the skill of building things shifted from human craftsmanship to anonymous, structured processes.

    Bit by bit, traditional artisans lost their knowledge and "know-how." Today, having a piece of furniture in our home depends on a massive production and supply chain; the "average" person no longer has the ability to build it themselves.

    The exact same thing is happening to software.

    We are the (now "former") software craftsmen.

      ksd482 an hour ago

      > cognitive friction is the engine of learning. I agree 100% too.

      This is why in order to understand new codebase or to ramp up to new projects, I use AI to generate a textbook style reading material for me along with "verify yourself" types of exercises along the way. Then I print them on a paper and read it using a pencil/pen and take notes.

      Because of my math training, I am in the habit of slowing down to read textbook style texts which helps.

        larsfaye 38 minutes ago

        Exactly the type of usage I would hope to see advocated for in the future. As I wrote, when leveraged with Socratic methods and a sort of "interactive documentation", they can really boost one's understanding. Of course, this is predicated on the individual having enough information to know the right questions to ask.

        GPerson 37 minutes ago

        I also do this. It would be better I think to generate exact references to primary and canonical sources to avoid learning LLMisms, or to feed it these and have it ensure its material is anchored to those good references.

      ThrowawayR2 14 minutes ago

      > "...if you stop training the "muscle" of logic and reasoning, it gradually atrophies, just like unused physical muscles. You become dependent on external tools that replace a capability you once had yourself."

      For a bit of extra unease, consider that these people will retain their right to vote, both in making business decisions as employees, in shareholder meetings as shareholders, and in government elections as voters, despite their atrophied reasoning abilities. Who will wind up whispering what to vote for in the ears of these reverse centaurs?

      Carrok 10 minutes ago

      > Today, having a piece of furniture in our home depends on a massive production and supply chain; the "average" person no longer has the ability to build it themselves.

      Tangential, but this is one of many reasons that I (and I suspect many others here) have taken up wood working.

      pixelpoet an hour ago

      Another example is autocorrect absolutely destroying the world's ability to spell even the most basic words. Ever since mobile phones came along and removed the friction of walking to the dictionary, everywhere I look people write as if they have extremely serious brain trauma - grown adults struggling to write as well as we used to as children!

  • 01100011 an hour ago

    TBH it was already pretty bad. There is a stark difference between the best and the average in my experience. The top, say, ten percent of coders are vastly better than anyone else when it comes to anything but boilerplate glue code(which is still needed and is better done by average coders anyway).

    This is speaking from my experience as a systems/c/c++ guy. If you are a js web frontend guy, python, or whatever I have no idea if this applies to you.

  • xyzelement an hour ago

    // The need for ongoing friction in long-term skill formation.

    The subtitle of the story tells it all.

    There are some people who seek out friction. Think about an athlete or a hardcore nerd.

    The best engineers are ones who were fascinated with computers and learning as kids and persued it at every opportunity. Found their own friction in other words.

    For those kinds of people, friction-seeking is the constant and what LLMs did is moved the point of where the friction occurs.

    For example - the best engineers I've worked with didn't necessarily have lots of experience coding in assembly because that kind of friction was no longer necessary. But they could solve hard problems (and if a problem really required assembly they could go learn it)

    What I think will be hit much harder by AI is the low tier engineer. Someone who was never truly curious and committed to it, for whom it was just a job. For example a typical offshore ticket pusher kind of person. That kind of person never went out to find friction and that's the kind of thing that's never going to fly again - if I want mediocre or average, the LLMs are sufficient

      massagedpelican an hour ago

      I think this expresses what I've been trying to form in my mind.

      I've been trying to map the LLM advancements and the current state of software development onto prior technological improvements. History is littered with similar cases where the abstraction layer ends up getting lifted, and people struggle with getting accustomed to working at that higher abstraction level.

      For the people that fall in love with a single abstraction layer or don't have an interest in learning new paradigms, when their known pattern is abstracted away, they're condemned to being left behind, either unwilling or unable to adapt.

      I don't think any industry is free from this, any person in any industry/profession over a period of 20 years or more has likely had to undergo massive adjustments as technology changed their field.

      We're not unique, but that doesn't stop it from feeling so jarring when it happens to us

        skydhash 24 minutes ago

        > History is littered with similar cases where the abstraction layer ends up getting lifted, and people struggle with getting accustomed to working at that higher abstraction level.

        But there's no abstraction layer that ends up getting lifted. When I use a library like SDL or a standard like POSIX, I don't tend to look at the underlying implementation. Instead I work with the high level concepts that they come up with. There's no such things with AI tooling. The most similar is when fully vibing software and everyone knows the quality of the result.

        I've learned something at every abstraction layer in computing from electronics (hardware), theory of computation (software) to high level programming languages with their paradigms. Same with several domains embodied by libraries. LLM tooling is more like shamanic ritual than engineering.

      chasd00 an hour ago

      I think coding experts who are only experts at writing code will also be hit pretty hard. Every problem given to them is solved by writing code, and only code, their way and only their way. I think people like that are having a very hard time relinquishing control regardless of the quality and correctness of the LLM output. If it didn't come from them, or conform to their conventions and style, then it's wrong. These are the people that seem to be terrific developers but then when asked to be a team lead and bring a group of developers to their level completely fail.

      larsfaye 44 minutes ago

      Curiosity is really key, and I find that LLMs diminish curiosity in people that might otherwise have it because the allure of the answer is often a lot stronger than the allure of the friction. I guess that's just the distilling of the industry over time, but that could certainly lead to a shortage of expertise.

      hypfer an hour ago

      I mean if you think about it, that sounds like a miserable existence to begin with. I would not rule out that some people will use this.. uh.. disruption, to start pursuing something that actually brings them joy.

      Of course, bills need to be paid and it's not all that simple. But at least there might be such a silver lining.

  • kaashmonee 6 minutes ago

    Substantiveness of this article notwithstanding, I do want to point out that the author also runs (or is planning on running) a programming course which to me may be a slight conflict of interest. I think the author may altogether be well-intentioned, but it IS something that I'm going to keep in the back of my mind as I consume this content.

  • chris_money202 an hour ago

    Most computer science programs don't teach "coding" though. There is pretty heavy emphasis on datastructures, algorithms, and system design. I don't think AI atrophies those skills / knowledge as much as the coding language and I think in many cases actually improves them, especially if you are reading the code that is produced and at least understanding the flow of it.

    I agree that AI reliance is hurting engineer's language understanding, but I don't know how much we should care.

      pimlottc 18 minutes ago

      I don't think that's quite correct; every CS program I've seen involves writing code, quite a lot of it. What they don't teach is /software engineering/: working large codebases, maintaining code, dealing with legacy code, long-term collaboration, working with product managed and designers, etc. That's stuff that you mostly end up having to pickup in the real world outside school.

        chris_money202 7 minutes ago

        Writing code and being formally taught a coding languages syntax and toolchain are quite different.

      francisofascii an hour ago

      > especially if you are reading the code that is produced and at least understanding the flow of it.

      This is the key point. Should we stay vigilant and review all the code, ensuring we have a decept grasp of what it does. Or just green light everything and treat the code itself as a black box. I would hope we do the former, but many are pushing for the latter.

      skydhash 17 minutes ago

      > Most computer science programs don't teach "coding" though. There is pretty heavy emphasis on datastructures, algorithms, and system design

      Those skills are often taught in an idealized situation like very small projects. In the real world, there are a lot more practices and techniques to develop software in a pragmatic way. Those "engineering practices" are much more useful than the above, unless you're in some specific domains.

  • jameson 9 minutes ago

    It appears to be a pattern where I work "expert novice" eventually causes serious incident but is unable to root-cause on their own.

    They've become a meat proxy[0] prompting LLM to root cause for them and the ability to fix is capped by LLMs ability, not the engineer's.

    I've tried to convince management before this happened and yet here we are.

    [0] https://gruhn.me/blog/2026-08-03/

  • doctoboggan 22 minutes ago

    I often think back to the early GPT days before agents. I think that was when I actually learned the most as I had to stay completely in the loop. I recently started a new job and had to work with k8s for the first time. Using GPT to help me implement new services and help me diagnose and fix issues with kubectl taught me so much.

    Now with agents I don't have any insights into what its doing with kubectl and would have no reason to learn how it works (other than my own curiosity).

    I agree that the human no longer gains expertise, but I am not sure that will matter in the long run.

      larsfaye 17 minutes ago

      The end result is a total and complete reliance on AI providers. It's not really a secret; that's why I started the article with the direct quote from Altman. They would love to see a world where nobody is able to do any type of development work without an LLM subscription enabled...even though they also admit that these models perform best when they are steered by someone who is highly capable and knowledgeable in the first place. They're powerful, but they are also VERY fallible.

      Local AI would thwart this vision (which is why they're desperately also trying to ruin the hardware market at the same time), but the effort it would take to get local models to run as well as these frontier models is an odd thing to pursue just to avoid learning the fundamentals and gaining direct experience.

        doctoboggan 9 minutes ago

        > Local AI would thwart this vision

        While I agree Local AI would be a good goal, even the huge open weight models that can't be run locally are already thwarting the US AI lab's duopoly. Other companies can and do serve up these open weight models, and without having to amortize R&D they are able to serve the tokens at a pretty cheap rate.

  • GPerson 22 minutes ago

    I don’t think there’s a big societal problem here, except that the agentic programming developers may be out of a job like the rest of us. If AI continues improving it will just keep taking over whatever skills are involved in the current AI coding meta are. If it stops improving then the meta will stabilize and after 10 years everyone will have longevity in it.

    I also see no evidence that AI programming is a difficult skill that cannot be learned by any intelligent person in much shorter amounts of time than previous professional skills required.

      lrvick 9 minutes ago

      Depends on what you are programming. I have been using it to build things that have never existed before, that I have wanted for over a decade. Experience gives one more imagination.

  • chojeen an hour ago

    I'm looking forward to having the same experience as COBOL engineers did after retirement: companies backing up the brinks truck to anyone with the skills to keep the lights on.

      superdisk 32 minutes ago

      If you actually look at Cobol job listings, they pay like 50k and want a master's degree. The myth of them being paid really well is not true at all.

      xdavidliu an hour ago

      > backing up the brinks truck

      now that's a phrase I have only heard in one other context: as an alleged quote from former Boston Celtics player Isaiah Thomas (who was really about 5'7 despite his official listed 5'9; yes, professional basketball player in NBA). This was around 2017 when he had just come off a career year and was soon due for a contract extension in the low 9 figures. He got injured and bounced around for a few years before eventually leaving the league, and never got that payday.

        snapetom an hour ago

        It’s commonly used in college sports where one school’s fan base argue for poaching a coach at another school. “Back up the Brinks truck” == throw money at him.

      bigmattystyles an hour ago

      It's like I said in another article, I've spent my life in C# and JavaScript. I'm a low-level programmer now, did even have to learn C or assembly.

      spogbiper an hour ago

      that would be nice, but unfortunately I think the supply vs demand situation is quite different this time

  • azakai 17 minutes ago

    > LLMs can detect patterns at a scale that no human ever could, but patterns only get you so far.

    This is asserted without evidence, and from a scientific standpoint, unjustified.

    First, "detect patterns" makes it sound like a classification task, "is this a picture of a cat". But LLMs transform the input.

    For example, an LLM can translate text between two languages while properly handling the names of the people described, no matter what those names are. That shows they are representing the text in a somewhat abstract way, that they can perform operations on that representation, and also convert it to useful output.

    And, what I just described is the most general form of information processing algorithm. Science is not aware of any limitations in principle on such systems.

    I am not saying LLMs have no limits, but "they only recognize patterns, and that is a true limit" is not a good argument.

  • yipinwong 24 minutes ago

    I do understand the sentiment of applying "constraints" over AI usage to certain scopes of our development work.

    This has an issue in practice.

    As an example, Function Programming (FP) has a high constraint on programming, where some don't even have loops (gotta use recursions all the way), and almost no state mutation (Exlixir I believe have a mutable state? forgot).

    FP sounds great with all those constraints. But what about the adoption?

    It's hard to switch your mindset, and not as natural, thus long leraning curve, and not as wide adopted <- productivity goes down as all others need to know and use it well. That's why still imperative and OOP languages are ruling the world.

    Same for these constraints. The author promoting using AIs only to subsets (no coding? wtf) is something the majority won't follow. Yes, the constraints sound great, but at what cost? By the time one learns everything, and everyone moves along with AI building stuff fast and cheap, they will be left behind.

    ---

    I do not like the author trying to make his points authoritative by using Halo effect using quotes from the industry and could have had been taken out of context (That's where AIs mess up the most, they only get chunks of text and lost context of before and after exerpts).

      switchbak 13 minutes ago

      Your inclusion of FP is interesting in an unintended way: LLMs actually thrive in a highly constrained system like you describe. "It's hard to switch your mindset" - isn't nearly as true for an LLM, it can usually adopt those languages quite readily.

      LLMs don't particularly care how hard the type system or borrow checker is (as long as it has good error messages that can guide it to a solution), they can grind away at these things, and what you describe as a negative actually becomes a strong positive. I think we'll see strongly typed systems plus some level of formal verification become popular as an AI-preferred language.

      When the burden of review is lowered because you have purely functional building blocks, with lots of formally verified chunks - people will choose that simply out of (productive, beneficial) laziness. Not to mention we're in a ram crunch, and being able to run your stuff far cheaper has an immediate financial incentive.

  • schopra909 17 minutes ago

    I think this is more “gray” than this. I feel like I can rip through ideas more quickly then ever before and as a result get a lot better at designing systems and (for my work) get a lot better at designing data/model experiments.

    But I empathize with the author. I think the frustration comes from the fact that other folks in your organization use these tools to “get by” more effectively then before. In the past, a disinterested engineer might ship less under the umbrage of a difficult engineering problem. With the pressure to “ship more” now that there’s AI, the same engineer is using AI to spam PRs to prove they’re working, even the quality of work is low (because quality of thought is low).

  • linuxhansl 13 minutes ago

    Yep.

    In my experience human design -> agent code -> agent review -> release -> agent observer, does not (at all!) work. One absolutely has to be understand what is going on, how the system works, how the H/W works, etc, to catch agent errors.

    The proposition of us losing those skills is terrifying.

    Maybe AI will get better and we truly won't need a human in the loop. Then please also have all PRs signed by whatever model wrote them, and do not come to me for trouble-shooting.

  • causal an hour ago

    So far I think I have learned far more from LLMs than I've lost to them. I forget some syntax, definitely. But I now reach for a much wider range of tools that I have become familiar with because of LLMs.

    So, partly agree, partly disagree.

      lanstin an hour ago

      Yeah, I have to say some of this deskilling argument sounds like Socrates complaining about the invention of writing ruining people's ability to truly own the text. I really don't mourn my lost assembly skills or my lost C skills. And I'm not missing the details of whatever web framework du jour my Claude is vibing for me on my extremely useful dataviz internal tools; and I have learned how to rein the agents in to not ruin my high-performance Go code and yet debug concurrency issues. Maybe coding qua coding is what some people find their summum bonum, but for me programming is instrumentive - to build real things in the world that do things to make something better. When I want pure virtuosity of intellectual construction, I read maths papers in arxiv.

      (Not to say that the current state of the art with LLMs merits borrowing money for a multi-trillion spend on hardware that will be obsolete in 5 years, but for me that is a different issue).

      The master decrying the invention that resulted in more wisdom for more people than anything prior:

      "For this invention will produce forgetfulness in the minds of those who learn to use it, because they will not practice their memory. Their trust in writing, produced by external characters which are no part of themselves, will discourage the use of their own memory within them. You have invented an elixir not of memory, but of reminding; and you offer your pupils the appearance of wisdom, not true wisdom, for they will read many things without instruction and will therefore seem [275b] to know many things, when they are for the most part ignorant and hard to get along with, since they are not wise, but only appear wise." (quoting from https://www.historyofinformation.com/detail.php?id=3439)

        larsfaye 15 minutes ago

        I posted this elsewhere, but that story has a lot more nuance.

        Plato (who actually wrote these quotes, because Socrates only spoke) wasn't against just "writing" in a general sense, or that he felt it was going to hold humanity back. He was against treatises and felt that someone could "memorize facts" without having to actually think about them on a deep level. Which I think, ironically, is not all that off the mark especially in the age of the internet and now LLMs, right? He also felt that memory could decay if we relied on written facts instead of having dialogues, which again, not all that off the mark, either. He underestimated the compounding capability of technology and our ability to record data and information, but people remember a lot less these days than they used to because we'd largely given up that ability in exchange for the instant information machines.

        Of course, he's just one man (or two, if you consider he was conveying Socrates' thoughts, as well) who lived in ancient times and couldn't possibly foresee how technology would evolve...but when I went back and read his concerns, it was ironic to admit that much of what he warned about still applies to this day. People are far less informed despite having access to more information than we've ever had because we've exchanged the ability to remember for the ability to just look things up. And, we also have less meaningful dialog than ever before; people just sit on social media, copying and pasting "facts" to each other, instead of having actual productive discourse. When I look around, the world doesn't seem brimming with mindful critical thinkers and there's reasons for that (many reasons, of course).

        AI tooling can be a boon to learning, but it requires us to stop using them for code generation as a primary purpose (at least for juniors) and instead advocate for Socratic workflows that still require manual coding practices. When someone decides to code something, it's not just learning syntax; it engages a variety of mental disciplines from critical thinking to planning to creative problem solving to logic and math, even.

        causal 17 minutes ago

        Yeah. Thought in Socrates' defense I think the jury is still out on writing, in the scale of human existence it's still very new. Give it a hundred thousand years or so.

      larsfaye 16 minutes ago

      May I ask how many years experience you have?

        causal 13 minutes ago

        20ish. What's your hypothesis?

          larsfaye 3 minutes ago

          It's basically laid out in the article: the reason that you are able to gain so much from LLMs is because of your decades of experience that predated their existence. Ability begets ability, but if that ability doesn't take root, these more advanced toolsets don't yield the same outcome (and are likely to do harm).

          To be clear, I feel the same way as you. I have been doing this for about twenty-five years, and I have developed a keen sense of taste and judgment to know how to properly scrutinize and utilize these systems. I definitely feel like I am able to learn things faster, but that is directly correlated to having experienced a lot of friction over the years that cultivated said taste and judgment in the first place.

          I imagine it's sort of similar to someone who's just getting started in mathematics, but is introduced to WolframAlpha, versus someone with decades of experience in the field and what they learn with it.

  • kodoman 44 minutes ago

    I think we now entering this state where code is cheap but good well made programs will be rarer then ever, a lot of crap can be made and a lot of programs made without ever thinking the problem through properly will occur.

    It might be like how an archeologist since the invention of plastic can date the period of the soil as post plastic, if one could cut open the software stack of the coming systems that will be built in the near future one would could data that code as post agentic LLM as programs are going to be mostly bloated ad-hoc, poorly thought-out and patched in a way that does not concern it's self with the correctness of the algorithms or data structures chosen.

    I am not Anti-AI but I think it's going to be interesting and I am surprised at how bad a program ends up when one tries to "vibe code", though often ends up working, though in isolation and when used with discipline (that the tools themselves psychologically make it harder to do) can produce some very good code and being able to use loops to solve difficult problems or problems that simply would have require banging ones head against the problem many times is very profitable.

      mentos 37 minutes ago

      How many programs can dispense with 50% of their complexity by just offering an API for LLMs to execute?

      By way of example I use Kdenlive 90% less and just use Codex to issue the ffmpeg CLI commands directly when I want to crop/format video on my PC.

        QuercusMax 34 minutes ago

        All those crazy complicated CLIs are now super useful for LLMs!

          kodoman 22 minutes ago

          Yes every time I tried to understand ffmpeg I got a little of it for a little bit and then lost it by 2 days or so. Just getting LLM's to do their thing for ffmpeg is great. the other one is socat an utility I used before but LLM's can do magic with it.

  • not_the_fda an hour ago

    Writing code was never the job. It was a small part of the job that can now be delegated to AI.

    Eliciting the right requirements and user needs. Creating a sound architecture and design. Validating final product meets the requirements. Ensuring there is good test coverage. You know `Engineering`. Mechanical and Electrical engineers didn't go away because of CAD.

      greenowl an hour ago

      > Eliciting the right requirements and user needs. Creating a sound architecture and design. Validating final product meets the requirements. Ensuring there is good test coverage.

      Besides your first point, the rest can be delegated to AI as well. And you don't need to be a "software engineer" to spec out requirements and user needs.

      larsfaye 42 minutes ago

      Literally all those skills are the result of decades of friction, challenge, and deep domain knowledge...all of which are circumvented when LLMs are utilized early in the process.

      CAD is also useless to Mechanical and Electrical engineers who didn't learn fundamental the skills that it streamlines.

      chasd00 an hour ago

      > Mechanical and Electrical engineers didn't go away because of CAD.

      that is a very good point! I'm going to use it in the future.

  • hypfer an hour ago

    > This applied friction is directly what builds "developer intuition" (or "taste"). The Germans have a great word for this: Fingerspitzengefühl (fingertip feeling). It’s the muscle memory that triggers when a developer looks at something and thinks, “yeah...this is probably going to cause problems.”

    No, we do not have that word for that.

    Yes, we have that word. No, it does not mean that.

    Any LLM proofreading could've told the author that, for that matter.

    __

    What Fingerspitzengefühl actually means could be described as "tact", a precise approach to something and general attention to detail that leads to success. Or.. the lack of all of that leading to blunt failure.

    __

    I would of course comment with more Fingerspitzengefühl for the emotional needs of the author if the writing wasn't just a sales funnel for their courses and whatever else (+ posted by them themselves.)

  • js8 36 minutes ago

    Fair enough, let's say that happens.

    But what we're gonna manage the codebase in, then? What kind of language?

    Will it be a natural language, or a formal one?

    I feel that "coding" cannot collapse. Coding is just translation from natural to formal language. Somebody needs to write the specs. And writing/maintaining them in natural language brings a lot of fun - shifting interpretation, inconsistency, missing specification, etc.

    I don't think it's progress for the field of SW engineering. But at least more "shareholder value" will be created.

  • vitalnodo an hour ago

    Saw a quote comparing pre-LLM code to pre-WWII steel, low-background steel, essentially.

      sixothree an hour ago

      No matter how robust my code is and however many eventualities I considered, it certainly feels like AI can find and address issues.

        dan_ggggg 37 minutes ago

        > it certainly feels like AI can find and address issues.

        LLM chatbots are good at making you feel good. Facts don't care about your feelings.

  • jstummbillig 12 minutes ago

    A list of things, that were supposed to lead to our intellectual demise:

    - Writing (starting from Platos Phaedrus)

    - Printed books

    - Photography

    - Typewriters, keyboards

    - Telephones

    - Recorded music

    - Television

    - Wikipedia

    - GPS navigation

    - Smartphones

    - Automation in aviation, medicine, industries

      rf15 9 minutes ago

      If current trends are anything to go by, who's to say that these aren't stepping stones towards it?

  • phyzix5761 an hour ago

    I'm still waiting to see how LLMs have made the world a better place because it honestly feels like its done the opposite.

      ksd482 an hour ago

      I think a lot of good might come from medical sciences or chemistry, where LLMs will be used in coming up with new medicines, methods or synthesis.

      bigstrat2003 41 minutes ago

      They haven't. They have made the world significantly worse.

  • randusername an hour ago

    Does anyone else feel like the web has become so "readable" it is illegible?

    I have such a hard time quickly reading pages like TFA. Headings, bullets, line-spacing, width, link hover animations, even the font. Even reader mode defaults aren't great for me.

    Compared to, for example, https://www.paulgraham.com/best.html

  • chrsw 38 minutes ago

    At some point it won’t be realistic to ask a human to solve a technical problem any more. I’m not suggesting it will happen soon but I can at least imagine that day coming. Whereas before modern “AI”, that possibility wasn’t even on my radar.

  • Zigurd an hour ago

    Coders should be treated as as well as as other software users. Tools like Claude code, Antigravity, and others are applying AI to solving that problem.

    I know how to create a multi year P&L projection from scratch. It gives me some insight into how much capital a startup will need to get to breakeven. A good AI tool that creates that same spreadsheet in minutes should also be able to explain why different businesses have different shaped cash flow troughs. I don't think people using tools like that is bad even if they don't gain deep insight.

  • fedpost an hour ago

    Something I noticed trying to learn rust through models, they're inherently tuned to just finish everything with even the slightest provocation so it's very hard to use them to actually learn anything, they kinda just want to do everything themselves.

      chasd00 43 minutes ago

      just add to your prompt or to an agents.md "don't write any code, just present me the solution so i can learn from it". that should do it.

  • hombre_fatal 33 minutes ago

    While true, I'm not sure it matters.

    It kinda seems like wishful thinking on our part as software engineers that one day we'll be able to go "Hah, miss me now?" but that just isn't the writing that I see on the wall.

    Over the past year, I've AI-generated two large pieces of software over 2000 commits without having much depth in either domain, and my ability to deliver value as a veteran software engineer has only shrunk over the months or it can be trivially extracted into a reusable markdown file like "design bar: ensure things 'by construction' where possible", a lesson I learned viscerally over decades.

      _dwt 23 minutes ago

      > without having much depth in either domain

      I don't mean to pick on you, but to present this in the service of this kind of fatalism... you know the inevitable follow-up question, right?

        hombre_fatal 19 minutes ago

        Is it: "How do you know the solution is good?"

        Because I can still reason and dig into things and ask questions and have the domain explained to me out of curiosity, the same way I could build anything that was originally out of my depth.

        But what I've noticed is that the need for any corrective power has gone or is going to nil and I'm mainly doing directional work. And even then, I can constantly have sota models "rank the top options and recommend one", and it's almost always the right way forward.

        I used to read every line of every plan that LLMs generated, but over time I've realized I have less and less to correct or, more impressively, the LLM had foresights I never considered. The same thing happens with implementation.

        Periodically I can spawn a bunch of agents to evaluate the system adversarially to find improvements, and the findings have been so good that it's evident that soon I can just automate that too.

        In other words, the skills I need to excel here are more curiosity and patience than tech expertise -- the things that got me into software engineering in the first place since that was the only way to build things.

  • efavdb 32 minutes ago

    look to past examples. when the greeks developed writing, people complained that the youth were losing the ability to memorize much content. and that is true, but with writing they were able to do better still and that old skill -- though useful -- was lost.

      larsfaye 23 minutes ago

      Plato wasn't against just "writing" in a general sense, or that he felt it was going to hold humanity back. He was against treatises and felt that someone could "memorize facts" without having to actually think about them on a deep level. Which I think, ironically, is not all that off the mark especially in the age of the internet and now LLMs, right? He also felt that memory could decay if we relied on written facts instead of having dialogues, which again, not all that off the mark, either. He underestimated the compounding capability of technology and our ability to record data and information, but people remember a lot less these days than they used to because we'd largely given up that ability in exchange for the instant information machines.

      Of course, he's just one man (or two, if you consider he was conveying Socrates' thoughts, as well) who lived in ancient times and couldn't possibly foresee how technology would evolve...but when I went back and read his concerns, it was ironic to admit that much of what he warned about still applies to this day. People are far less informed despite having access to more information than we've ever had because we've exchanged the ability to remember for the ability to just look things up. And, we also have less meaningful dialog than ever before; people just sit on social media, copying and pasting "facts" to each other, instead of having actual productive discourse.

      AI tooling can be a boon to learning, but it requires us to stop using them for code generation as a primary purpose (at least for juniors) and instead advocate for Socratic workflows that still require manual coding practices. When someone decides to code something, it's not just learning syntax; it engages a variety of mental disciplines from critical thinking to planning to creative problem solving to logic and math, even.

  • greenowl 14 minutes ago

    Of course it will. Doesn't matter though. Coding expertise is no longer valuable.

    What is valuable now is productivity. Which in today's day and age is the ability to quickly and efficiently drive AI.

    Hence the never-ending growth and spewing out of tooling: harnesses, TUIs, multiplexers, agent frameworks, software "factories", etc, etc.

    Software engineers are chasing opportunity and expertise in the only thing that's left.

  • epolanski 8 minutes ago

    I personally write lots of code manually and use AI to review it.

    Best code I've ever wrote.

  • game_the0ry 32 minutes ago

    I believe it. I haven't written code since March.

  • kylepomykala an hour ago

    This seems right to me, but I think that it's likely that we haven't fully figured out how to integrate AI into coding imo. I think there is user side thing that we haven’t fully worked out yet.

  • nautilus12 38 minutes ago

    I think the hope of the business end is that coding expertise will at some point no longer be needed at all.

  • deadbabe an hour ago

    I used to think this was a problem. But now? I don’t think it matters.

    Why? Because people are going to get so much more ambitious about the stuff they build with AI, that code expertise for the stuff they are building is already scarce anyway. People will choose difficult and less popular languages, and will replace open source packages with stuff built entirely in-house by AI.

    Going forward, there is no choice except for AI to fully replace the need for code expertise. Depending on humans won’t be scalable.

      pandemic_region 41 minutes ago

      Do we even need to get LLMs to create code in the end then? Can we imagine a future where the thing simply does it all, you deploy the LLM like a docker image and have it process all requests directly. Sounds far fetched today, coming to your cluster in five years.

        deadbabe 18 minutes ago

        In theory yes, but you would need LLMs that basically have frontier level capabilities but with zero latency, meaning you enter a prompt and as you type the prompt is regenerating instantly like some kind of autocomplete.

        I think that would feel like crack for some people who are addicted to using or building stuff with LLMs.

  • _doctor_love 28 minutes ago

    We're all posers - unless you can implement square root in machine code, you're not a Real Programmer™

  • micromacrofoot an hour ago

    Very few people know how to hand set typography anymore, but many of the conventions still exist and people don't have to understand the origin of a lot of them to use them properly.

  • romanovcode an hour ago

    To be fair nobody codes in ASM and things are fine for decades.

      rhdunn 35 minutes ago

      ASM is still used in some areas, such as:

      1. function trampolines, such as in libraries like ATL (Microsoft's COM template library);

      2. hand-optimized encoders/decoders for things like ffmpeg;

      3. niche applications such as Ben Eater's 6502 breadboard computer (using a modified WozMon and Microsoft BASIC);

      4. reading ASM output from C/C++ code in things like the GodBolt site for performance comparisons/analysis;

      5. reverse engineering old DOS games;

      6. people working on things like compilers (generating optimized assembly), JIT engines, or other code generation -- though this will typically be machine code, possibly with assembly instruction comments;

      and other performance critical places where assembly can speed up that part of the code.

        romanovcode 14 minutes ago

        Absolutely, by 1% of developers. So analogy would be that those 1% would understand the code fully in the coming years.

  • toenail an hour ago

    And math skills are going to collapse from calculator reliance.

      larsfaye an hour ago

      Actually, they have for a large majority of the population. And fun fact: that debate is still going on, and the Mathematical Association of America (MAA) enacted a rule prohibiting calculator use in AMC.

      https://ivyleaguecenter.org/2024/03/12/over-reliance-on-calc...

      Math fosters critical thinking, and we've been in a critical thinking deficit for decades and decades. I don't think we can afford to sink even deeper...

        hypfer an hour ago

        > Math fosters critical thinking

        I kinda agree, but I also kinda disagree.

        My question would be if "math" is the right tool for that. It can achieve that as a side-effect, but how we express it and talk about it is full of legacy cruft, cargo-culting and general bullshit that makes it not exactly snap into place for all kinds of brain wirings.

        Math I believe is not an end in itself. Maybe with that perspective, solutions that satisfy our needs there can be found

        lanstin an hour ago

        Because the 1890s and 1930s were famous for their population wide critical thinking, of course. Good heavens, what do they teach in the schools these days.

          gustavus an hour ago

          I mean you may be trying to make a point but the counterpoint is Einstein, Bohrs, Planck, Shannon, Turing, Von Nuemann, Feynman, Bohr and most of the other big names all came out during that time.

          In contrast since then we've had almost not noteable physicists or Computer Scientists that I'm aware, we've got a couple, Hawking and Knuth. But apart from that I don't know if there is a single scientist I could point out today that has revolutionized our understanding or even done any real breakthrough work in the field of Physics since Einsteins era.

      Ekaros an hour ago

      I have heard stories of cashiers being incapable of giving correct change. So yes it has happened.

      musebox35 an hour ago

      A more apt analogy is the diminishing understanding of assembly language and machine instruction sets. I love programming and something got lost in both transitions, first to high level languages and now to coding agents. I am quite sure some contexts will require programming by hand for a long while as there are still people who are writing amd64/avx512/sass by hand. I hope in time we will find new ways to enjoy solving problems with this new programming modality. By now, I am pretty sure it is here to stay and evolve from its current crude form.

        petcat an hour ago

        > the diminishing understanding of assembly language and machine instruction sets

        This is true and nobody complains that GCC or LLVM is making programmers dumber. They are code-generation tools from higher-level source code. Much like LLMs are code-generation tools for higher-level language/prompting.

      3qs12g5 an hour ago

      Math skills had never anything to do with arithmetic. Maybe Ramanujan discovered a couple of theorems by dealing with numbers themselves. That is it.

      Online discourse though is collapsing under dumb AI talking points.

        lanstin an hour ago

        Man, Usenet had the best online discourse - hardly any angry personal flaming because people dared to disagree. And Twitter, wow that was just pure rationality. slashdot - practically a masters program.

        Now, they all did have gems of interaction that would could find by sifting thru the dumb stuff, but I find that property of discourse to be pretty steady. I've even found some interesting comments on YouTube videos and newpaper websites.

      tikhonj an hour ago

      Arithmetic skills. And they probably have?

      dosisking an hour ago

      > And math skills are going to collapse from calculator reliance.

      People can no longer drive a stick-shift car, whereas it used to be that a valet would always be able to drive one to park it.

        lanstin an hour ago

        I also can't make butter by churning or soap from lye and animal fat or what ever.

        However, I can use mathematica to demonstrate the criteria for various forms topological stability of solutions to many types of differential equations. I'd rather live now.

      Terr_ an hour ago

      Not really the same, since your average calculator doesn't take over executive function. The user thought and decided what needs to happen, down to one extremely well-specified task, which is so unambiguous that it can be completed by rote and without context.

      This is more like paying someone else to read your math homework, generate answers, and maybe even submit them on your behalf. If that had been the (average) student experience, math skills really would have collapsed.

        lanstin an hour ago

        I think we'll find that the people doing that, like the people spending all their time and energy reading slasher pulp fiction in the 1950s, won't be doing as well as the people learning to enhance the power of their education and their expertise via LLMs and strategic alternating between GenAI and thinking about problems. And eventually, if society ever steadies up a bit, people will learn the useful ways of using technology in school and youth; and we'll be glad to be alive to see such marvels.

        Assuming we can re-establish the will for democracy and taking care of the whole group.

          Terr_ 3 minutes ago

          [delayed]

          Terr_ 5 minutes ago

          [delayed]

          svachalek 28 minutes ago

          Those are some big ifs and assumptions unfortunately, and the use of AI unfortunately has an isolating effect that is only likely to move the needle in the wrong direction.

      gdulli an hour ago

      That's a very good point. People don't pull out their calculator in the grocery store to do analysis of unit costs or whatever, it's too much of a hassle for that small kind of analysis. But calculators have robbed us of the need to be good at doing that math in our heads. So the math doesn't get done.

        johsole an hour ago

        Many grocery stores will already give you a per oz or per unit price so you can compare pricing for different brands that have different sizes. It's a very handy feature.

          oasisaimlessly 44 minutes ago

          And it's so often wrong that you better be doing sanity checks if you use it for anything.

            Terr_ 42 minutes ago

            Is it often flat-out wrong where you live?

            My most-common frustration with it is when products I want to compare don't have the same quantity-denominator. (Either a different unit, or sometimes a different dimension like weight versus volume.)

              gdulli 9 minutes ago

              I've many times seen it wrong but more often the same item will have some tags expressed on cost per ounce, others per lb, etc. To discourage comparison. But I dont think people are paying much attention to those numbers anyway. Math has become a scary topic for them altogether.

          shimman an hour ago

          That's mandated by law, not because the grocery story wants to.

      tired_and_awake an hour ago

      This is exactly the right analogy. Granted LLMs are a more sophisticated calculator and engineering is still adapting to this wonky/evolving technology. But to pretend it's a coming catastrophe is to ignore every past parallel development - where this has not happened.

      miltonlost an hour ago

      "Mental math skills" literally did collapse tho??? "Math skills" to write proofs (which a calculator cannot do) is a fundamentally different skill set than that "math skills" of mechanically doing arithmetic (which a calculator does do).

      Seems like critical reading skills have already collapsed.

      VCFundedGenYer an hour ago

      No.

      With a calculator you still need to understand the fundamentals of mathematics. You also need to understand how to operate a calculator and know its functions.

      Even when removing numbers and manual calculation, being a function or formula oriented mathematician still requires you to know the theory and functionality.

      With an LLM, you don't even need to know anything other than asking the robot to perform. You don't understand the output, nor can an unskilled person explain it.

      what an hour ago

      They probably have though.

        jckahn an hour ago

        Seems like we're doing fine though, yeah?

          larsfaye an hour ago

          Could be a doing a whole lot better. Do you think there's an abundance of critical thinking in society? Because math skills aid in that.

            r_lee an hour ago

            I honestly can't tell what reward there is for this "critical thinking" since the entire world is bathing in "AI will replace you"

            what point is there to be a human calculator if nobody rewards you for it?

            and I'm not talking about wealthy Bay Area tech workers doing it so that they can write their substack blogs but rather the average person

          __MatrixMan__ an hour ago

          When I look at the state of software engineering, "fine" is not the word that comes to mind https://xkcd.com/2030/.

          If we're going to be the last generation that understands code at this level, we need leave it in a much better state before we die.

          bigstrat2003 38 minutes ago

          Not really, no. It's embarrassing how many people lack the ability to do basic arithmetic.

            jckahn 13 minutes ago

            Do they necessarily need to? We have ubiquitous tools for this.

      EGreg an hour ago

      This is the same kind of analogy people make when they "poo-pooh" any sort of technological advance, especially with AI.

      "Oh, that old simple device didn't displace anything, so this one which is now quickly taking over every job will be just like that simple one". So I guess people today know how to sew and knit and bake bread?

      "Oh, humans were always needed, so it'll be the same this time." Is that true of horses and oxen after cars and tractors were invented?

      Forgeties79 an hour ago

      Your calculator isn’t designed to keep you addicted to it and doesn’t have baked in orders like “be humorous and irreverent when appropriate.”

      Also, yes I am dependent on a calculator.

      catchnear4321 an hour ago

      1) have they not? 2) not a level comparison

  • dan_ggggg an hour ago

    That's the whole scam. It's a ransom with more steps.

    First they fuck up your codebase with so much slop that no human does (or could) understand it.

    Now if you want to keep making bug fixes, you're on the hook for whatever Anthropic wants to charge you.

    The solution is to make AI developers the scapegoat. Fire the people at the top of the AI leaderboards, with malice. Otherwise, lazy AI-addict developers are going to destroy what remains of your company's IP.

  • waffletower an hour ago

    Coding expertise is going to collapse from compiler reliance (1985 Turbo Pascal detractors)

      larsfaye an hour ago

      Do you think LLMs and compilers have a lot of overlap?

        sampullman an hour ago

        In an abstract sense, yes. Compilers let programmers work at a higher level of abstraction. LLMs bring it to an even higher level, though the abstraction is much leakier.

        For the time being, a good understanding of programming and domain knowledge gets you much farther than without it. There might not be room for as many (professional) programmers as before, though.

        Daishiman 41 minutes ago

        Almost nobody knows how to program in assembly but we're doing fine.

          larsfaye 30 minutes ago

          That's because the institutional knowledge was passed along through the act of coding. Skills that I learned in Assembly and FORTRAN are applicable to even modern programming languages...but not to "natural language."

            svachalek 25 minutes ago

            It really wasn't. Ask the average young coder these days how many registers their CPU has, or even the difference between the stack and the heap.

  • deaton an hour ago

    Going to? It already is.

  • j45 an hour ago

    It may bifurcate the average skill from the skill of figuring out new solutions.

      causal an hour ago

      Yeah I'm not convinced people are just going to give up solving problems

  • VCFundedGenYer an hour ago

    I'm seeing it happen in real time. I've seen several folks claim they "vibe-coded" something and upon review it's some seriously low quality garbage. Unfortunately it's just "functional enough" where it's encouraging the one who talked to the robot to continue thinking they can code for some reason.

    It is important to ensure that any LLM code is named and shamed.

      dan_ggggg 43 minutes ago

      > It is important to ensure that any LLM code is named and shamed.

      You need to take it further.

      We need to shame and mock the people (read: delusional imbeciles) who think this is acceptable if we want it to stop.

      AI users need to fear for their careers and reputations if we want to get software development back on the right track.

  • ex1fm3ta 15 minutes ago

    Keep in mind also that LLMs are currenctly heavily subsidized. Once VCs money are gonna run out, you will see the real price, and your 200K per year dev is probably nothing.

  • fechols an hour ago

    "Assembly expertise is going to collapse from compiler reliance".

      yoyohello13 an hour ago

      Did this not happen?

        MattDamonSpace 29 minutes ago

        It did, it’s just a question of “would it have been worth preventing compiler adoption/usage to attempt to preserve assembly knowledge”

  • rvz an hour ago

    Ah yes. Selling courses is the oldest grift in town, which is what the author here is doing.

  • feverzsj an hour ago

    Except sloppy experts.

      dan_ggggg 38 minutes ago

      You gotta suck to get that sloppy expertise.

  • add-sub-mul-div an hour ago

    I'm also concerned about people asking an opaque machine for an answer and stopping there instead of going to different sources, evaluating their credibility, exercising their own ability to construct their own worldview from disparate facts and opinions.

      dan_ggggg 38 minutes ago

      Flagged for the expressing the most obvious and legitimate concern about LLM-backed "research".

      "I use AI to generate a summary which I print out and read slowly every time I use a new codebase" is the new propaganda line pushed by Anthropic and OpenAI. They cannot tolerate this rebuttal.

  • paul7986 an hour ago

    Are engineers still making 100s of thousands a year still just for vibe coding while a nurse and other skilled / highly trained medical professionals working their butt off make half of that?

    Do we think there is going to be a correction for the vibe coders?

    Pardon I know such question is controversial but thinking ahead.

      nemomarx an hour ago

      There's something weird about nurse pay where it doesn't seem to raise even during large shortages of qualified nurses. I think it's artificially lowered by hospital admin, with temporary traveling nurses acting as "scabs" to avoid the normal wage increasing

        Ekaros an hour ago

        It is weird how it works with anyone there but the doctors... Do they have some type of cartel or mafia that nurses and other staff don't have?

          claytonjy an hour ago

          They do, it’s called the AMA, American Medical Association. Very tight control of who can be a doctor, how many new doctors per year, etc. which ensures salaries stay high. They also fight against other roles like nurses doing too much doctor-like work, helping doctor pay while harming nursing pay.

          Agingcoder an hour ago

          At least where I live there’s a shortage of doctors so you can’t negotiate with them . There’s a shortage of nurses too, but if you lose 1 nurse because they’re striking it’s bad but things don’t collapse. With 1 fewer doctor who also knows and is allowed to do things nurse don’t / can’t things get really bad. They also have access to power, are often elected, and are respected.

          Nurses need to unionize I think and strike to get something .

      agileAlligator an hour ago

      The Labor Theory of Value was defeated decades ago, get with the times

        harimau777 an hour ago

        Unfortunately, we haven't found a better alternative.

      swader999 an hour ago

      I'm solving harder and harder problems for real users/customers than I was a year ago and our sales are increasing as a result.

        paul7986 an hour ago

        Are you saving lives?

          ok_dad an hour ago

          Is it my job to make sure that nurses are paid more than I am?

          I'll readily admit that they deserve it, I'm a lazy dickhead and they help people, but I think your blame is misplaced if you're insinuating that software engineers are to blame for nurses being paid less than ourselves.

      kxyvr an hour ago

      While it depends on the market, job, and hours, but the bedside nurses I know make in the low $100k range. Typical shift structure at the hospital is three 12 hour shifts in a row and then four days off. Most of the time, they are union jobs, so they receive many benefits from collective bargaining such as increased holiday and overtime pay in the range of 1.5-2x normal rate. A nurse practitioner tends to make something in the 180-220k realm.

      Again, to be clear, this is highly dependent on the market, job, and hours and one needs to understand the difference between a CNA, RN, NP, etc. However, it's a regulated typically union job that's very secure and in high demand. It probably pays more than what you expect.

      ksd482 an hour ago

      Yes, they are still making that much. I am. I don't fully understand why yet but I think it is because of a few reasons:

      1. We still need to keep the lights on. If things go wrong, which they still do, humans have to debug it.

      2. Jevon's paradox: now the expectation is that we ship stuff faster and there is still a LOT of stuff to do, not less.

      3. We are still in the very early days of this and it is too soon for corporations to make a dramatic call like laying off 80% of engineering. We just don't know how that would look like.

      encoderer an hour ago

      I think nurses in the Bay Area make like 200k a year

      lifestyleguru an hour ago

      Don't you worry about salaries of any trained medical professionals:)

      teaearlgraycold an hour ago

      The effort/pay ratio never made sense though.

  • GiorgioG 2 hours ago

    I learned BASIC, Pascal and x86 Assembly language by the age of 14-15. None of which I remember (nor care to). The strict instructions (aka language) we gave the compiler was not the point. Those experiences taught me how to think logically, and over time develop a taste/structure for how software should be built, as well as foot guns to avoid. I don't know how you teach that without coding, but the "coding expertise" was always a means to an end. LLMs are just another abstraction layer above programming languages, machine language, etc.

      larsfaye an hour ago

      > I don't know how you teach that without coding

      That's the neat part: you don't!

      Even Robert "Uncle Bob" Martin, who's as AI pilled as they come and doesn't read code any longer, says that junior developers shouldn't even look at AI tooling for the first three years:

      https://www.youtube.com/watch?v=RxxxGkFIUJ0&t=1356s

        GiorgioG an hour ago

        Robert Martin has caused me so much frustration over the years, but he's spot on. "Young people with power tools tend to lose fingers"...I like that!

      Zigurd an hour ago

      In contrast with Pascal, I could see in my mind the PDP-11 instructions behind my C code. By the time I started running code on x86, there were debuggers that could step through source code, and I didn't really want to think like an i386.

      nemomarx an hour ago

      We don't teach kids math with access to calculators, and so on. Making students code by hand at first is a very moderate proposition

        philote an hour ago

        Yeah I was taught coding in a fake programming language so it couldn't be compiled or run. It really was "by hand" coding since we had written tests.

      alexjplant an hour ago

      > LLMs are just another abstraction layer above programming languages, machine language, etc.

      Programming languages are (largely) deterministic. LLMs are not. The boundary between an abstract concept and something executable sits comfortably in the mind of the programmer in non-LLM contexts. This boundary shifts when using an LLM and becomes shared between the programmer and the matrix multiplication machine.

      The "layer of abstraction" analogy is therefore technically true but essentially false. "Just another" papers over how seismic of a paradigm shift all of this is.

        GiorgioG an hour ago

        Sure, you're right - at the end of the day, LLMs are non-deterministic code generators. I certainly wouldn't trust one for a medical device manufacturer's software. For line of business apps it's totally adequate. And to be clear, I don't love it. I'm just coming to terms with the fact that these LLMs have gotten good enough, that with enough instruction and guidance, they can generate code/features at speeds we can only dream of if we were to code them by hand.