‹ BackHN Continuity

Thread

Born Against, or why hobby programming communities are against LLM usage

423 points · 507 comments · lladnar

  1. alkonaut · · focus · HN ↗
    Programming has five phases effectively:

    1) You figure out what problem to solve.

    2) You figure out HOW to solve the problem.

    3) You actually implement the solution.

    4) You see the solution work, for yourself.

    5) You ship/deploy/publish the program. This means you see people be happy users and/or you get paid for it and so on.

    If you're an entrepreneur type, you probably enjoy the first and last steps most, and you see steps 2-4 as mostly a chore. If you're a tinkerer, you don't care much for 1 and 5, and you see 2-4 as the whole point of programming. I'm a tinkerer. I'd be happy to just write code and throw it away. Coding is like solving sudokus. I could skip steps 1 and 5 forever. I don't ever need to show any code to anyone. In fact, most of the time when programming I do steps 2 and 3 and even skip 4. I don't even finish! I work weeks on something until I lose interest, and I know that in order to even run it, it would be several more weeks. A PoC is enough. Or just a half one. It's just code-to-structure-thoughts, not to create anything finished.

    The 5 phases look kind of symmetric. The outermost layer (1 and 5) are the entrepreneurial steps. If you're a product owner or CEO, you might work strictly at steps 1,5. Then steps 2-4 are the managerial/architectural steps. If you're a very senior IC at a large company, you might work at this level, without actually doing much coding. Only the inner most step (3) is the manual creation of source code. Even though it's 5 different phases, it's just "3 layers" of programming.

    The problem as I see it is that I enjoy step 3. And LLMs are good at step 3 almost exclusively. So they just pick the best bit of this dish, and leave me with the rest.

    If you're an entrepreneurial type, the LLM appears to take the _worst_ bit of the work from you. Great.

    1. fhd2 · · focus · HN ↗
      Nice analysis! I would perhaps add that LLMs are pretty helpful at (2) in my experience, as long as you don't turn your brain off. (As a Google/SO replacement, mainly.)

      I have about three modes, working with LLMs:

      A) Just use them for (2), do (3) and (4) myself.

      B) Just use them for (2) and (3), but with very fine grained instructions - to the point where it barely saves me time.

      C) Use them for (2), (3) and (4), but with this workflow, it quickly degrades into slop for me.

      I still get the best results with (A), but for a quick PoC, (C) is hard to beat.

      What's hilarious (or sad) is that I see a lot of people throw them at (1) as well, which seems to have a high chance of inducing AI psychosis and creating software nobody understands, let alone needs.

      1. alkonaut · · focus · HN ↗
        Haha Yeah if you do step 1 with AI you risk creating "an AI powered marijuana platform for global AI solutions" (The inevitable South park Reference).

        <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=G8fapIDnrMI" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=G8fapIDnrMI

      2. rob74 · · focus · HN ↗
        Regarding (2) figuring out how to do things at a higher level (e.g. the general architecture of an application) is pretty different from figuring out things at a lower level (e.g. how to fill text with a certain gradient in CSS - the stuff where years ago you would have spent hours reading documentation or browsing StackOverflow until you figured it out, if you weren&#x27;t familiar with the topic). So you could use an LLM just for (2b) and (3) and do the rest yourself.
        1. skydhash · · focus · HN ↗
          &gt; the stuff where years ago you would have spent hours reading documentation or browsing StackOverflow until you figured it out, if you weren&#x27;t familiar with the topic

          Why is it always hours to consult docs? I find most answers within minutes (including if I have to read code) and it’s only take a bit longer when I want to understand the why’s.

          The key is to make sure you have the right questions. I see people struggle with that where they only know something wrong but they can’t put it in words.

          1. rob74 · · focus · HN ↗
            Ok, maybe you&#x27;re one of the fortunate ones. With &quot;if you weren&#x27;t familiar with the topic&quot;, I meant the situation where you know what you want to do, but have no idea how exactly to accomplish it. Especially with frameworks, which generally have a quite rigid way to do things, if you&#x27;re unfamiliar with that, it can take a while until you get anything done, despite good documentation.
      3. wccrawford · · focus · HN ↗
        I agree. If you use the AI for (4), it&#x27;s pretty much guaranteed to hallucinate whatever it wants and then approve it. For small projects, it might be good enough. For anything serious, it&#x27;s not.

        I find I get the best results when I just use it for (3), and sometimes a bit for (2). Going in with at least an idea of how to make it work has the best chance of ending up with a good changeset. And if you already know how to make it work, don&#x27;t leave it to chance. Tell the LLM what to do, then let it do it.

    2. ricardobayes · · focus · HN ↗
      That&#x27;s actually a great classification and I&#x27;ve never seen it being laid out like that. I guess it can be useful to know &quot;what kind&quot; of programmer one is.
    3. ang_cire · · focus · HN ↗
      It&#x27;s funny, because I would consider myself a tinkerer (and I have a large backlog of pre-LLM programs), but the coding itself isn&#x27;t the main thing that brings me joy, it&#x27;s the phase 2 and phase 4 combo: figure out how to solve it, see whether your solution was correct (and actually use the program for its purpose). The actual implementation is extraneous to that.

      To carry forward the sudoku analogy, I care about figuring out which numbers go where, and whether I was correct, I don&#x27;t care about the mechanical part of actually penciling-in the answers (coding).

      1. mibsl · · focus · HN ↗
        I&#x27;d say, in this analagy, step two is filling in half the numbers by gut feeling, and then three is seeing how wrong the guesses were and actually solving it.
        1. ang_cire · · focus · HN ↗
          Perhaps I&#x27;m uncommon in that I make diagrams and even sometimes pseudo-code (mostly in the form of mapping out function names, because they serve as a proxy for program flow paths) before I write actual code, but I don&#x27;t find myself really going off gut feeling. I have a pretty good idea of what the program is going to look like and do before I start, and with e.g. Claude I give those to it, so it mostly looks like what I envisioned, unless it suggests changes.
          1. mibsl · · focus · HN ↗
            For me, unstructured things (like non-formal diagrams, notes, pseudocode) are close to useless. I much prefer sketching the API surface in code right away and then iterating on it, building abstractions which cut the shapeless thought blob into neat, predictably interacting parts. The code is my notepad and the compiler is with me, every step of the way, catching contradictions and handwavyness.
      2. skydhash · · focus · HN ↗
        3 doesn’t matter that much (unless it’s part of 2: new language or new libraries), and that’s why I don’t use LLM for it. Because LLM forces you to pay attention, yes you can have something that works somehow in one go, but the code makes you queasy (too complex for the purpose, or just weird).

        So I do 3 because coding is like writing English for me (which is my 3rd language). I don’t care much for it, because it’s neither hard no easy. It’s just mechanical.

    4. aleph_minus_one · · focus · HN ↗
      &gt; If you&#x27;re a tinkerer, you don&#x27;t care much for 1 and 5, and you see 2-4 as the whole point of programming. I&#x27;m a tinkerer. I&#x27;d be happy to just write code and throw it away. Coding is like solving sudokus. I could skip steps 1 and 5 forever. [...] The 5 phases look kind of symmetric. The outermost layer (1 and 5) are the entrepreneurial steps.

      Even if you deeply into tinkering, 1 can be an insanely exciting and rewarding step: for example &quot;how could an abstraction look like in which 2-4 become trivial special cases for many classes of programming problems?&quot;.

      In my opinion the difference between &quot;entrepreneur type&quot; and &quot;programmer type&quot; (and yes: it can happen that both of these types work in the reciprocal job) is rather:

      - People of the programmer type see solving problems as their primary goal. Satisfying customers just serves the purpose that these people pay money so that they can continue working on solving problems.

      - People of the entrepreneur see satisfying customers as their primary goal. Programming is just a means to an end.

      1. alkonaut · · focus · HN ↗
        Yeah. I enjoy 2-4 most, 1 is the next, and 5 the least. I think the litmus test here is &quot;if you knew could never deliver this to anyone, make money of it, get recognition for it, or even make it solve one of your own problems you have. Would you still be willing to spend time on it?&quot;

        If the answer is &quot;no&quot; you are probably more entrepreneurial than tinkerer. But it&#x27;s a spectrum.

        1. gghackernewsgg · · focus · HN ↗
          Good test. I would add one more question: &quot;if you could never talk about your code or solutions with anyone, would you still be willing to spend time on it?&quot;

          This helps differentiate between coding as an end and coding as a means to socializing.

      2. ACS_Solver · · focus · HN ↗
        &gt; Even if you deeply into tinkering, 1 can be an insanely exciting and rewarding step: for example &quot;how could an abstraction look like in which 2-4 become trivial special cases for many classes of programming problems?&quot;.

        Yes, but I think there&#x27;s really two different definitions of point 1. It&#x27;s &quot;figure out what non-software problem you can solve with software&quot; vs &quot;figure out what technical problem to solve&quot;.

        As the tinkering type, I also find 1 very rewarding but using the latter definition. Exploring a sizable code base and finding the part that, if simplified, cascades to a lot more simplification, that&#x27;s very exciting. Figuring out what problem some companies or people have that could be solved? Very hard, very unexciting, not rewarding.

        1. aleph_minus_one · · focus · HN ↗
          &gt; Yes, but I think there&#x27;s really two different definitions of point 1. It&#x27;s &quot;figure out what non-software problem you can solve with software&quot; vs &quot;figure out what technical problem to solve&quot;.

          In my opinion these variants are not very different:

          For example keep in mind that physics is basically a descipription of the software that runs reality, which automatically gives you are huge portfolio of potential problems. :-)

          For mechanical engineering, observe that the advances in 3D printing and home CNC milling mean that a lot of problems that were previously in the domain of mechanical engineering now become partly software problems.

          Or for more &quot;human&quot; problems: If you are very trained in mathematics, you start to see mathematical structures in a lot of &quot;more human&quot; problems (or areas that are not associated with &quot;software&quot;) basically all the time. If you find these mathematical structures that you see interesting, it is often possible to turn them into software.

          Thus, &quot;figure out what non-software problem you can solve with software&quot; vs &quot;figure out what technical problem to solve&quot; is rather a litle bit like &quot;in mathematics: do you prefer analysis or algebra?&quot; - yes, they (often) represent a different style of thinking and many mathematicians do have their preferences, but in the end both analysis and algebra is mathematics.

          --

          So, I disagree with your point:

          &gt; Figuring out what problem some companies or people have that could be solved? Very hard, very unexciting, not rewarding.

          In my opinion the boring part is not finding or solving problems that companies or people have. As I wrote: after some time, you often start to see highly interesting, often very novel mathematical patterns in these problems (of course not always, but it is not an uncommon situation). Why are these patterns often so novel and interesting? A heuristic answer in my opinion is: if they weren&#x27;t, someone would typically already have implemented them in software. :-)

          The really annoying part is rather convincing the people&#x2F;company of your solution (which can be considered to be part of step &quot;5) You ship&#x2F;deploy&#x2F;publish the program. This means you see people be happy users and&#x2F;or you get paid for it and so on.&quot;).

    5. kkoncevicius · · focus · HN ↗
      Looking at your ladder, made me think where I fit in and I mostly enjoy steps 1 and 2. The implementation and shipping are big chores to me. Once I know, half in my head, that the problem is solvable and I could see a path towards implementation I loose motivation to continue.

      So possibly there are other classes of people, not just either enterpreneur or thinkerer. Thou not sure what this combination is, maybe something more like R&amp;D.

      And LLMs give a lot of value here. They allow to quickly do steps 2-3 - &quot;hard and tedious&quot; stuff - to confirm that the thing, in fact, became solvable.

    6. curtisblaine · · focus · HN ↗
      I might be weird, but I love phases 2 to 5 and I hate phase 1 with a passion. I hate speaking with people to see what their problems are. I want to solve problems, not user surveys. And all the itches I have are either already solved, not itchy enough or too wide &#x2F; ambitious to approach them solo. If LLMs solved exclusively 1 and told me &quot;this problem is actually valuable, go and solve it&quot;, I would be the happiest person in the world. It&#x27;s not true that ideas are cheap. Or better: ideas themselves are dirty cheap, good ideas are invaluable.
      1. Applejinx · · focus · HN ↗
        Even if you&#x27;re entreprenurial, LLMs are useless for this.

        You can&#x27;t go really hard unless you can come up with something people weren&#x27;t expecting, but when they discover it they want it. You can&#x27;t just sit around waiting for people to want things properly. That&#x27;s extremely passive.

        The point being, the idea of using LLMs to find what people already passively want is itself flawed, even if you like marketing and selling to people. It&#x27;s a really fundamental problem with the idea.

    7. shiomiru · · focus · HN ↗
      There&#x27;s also the economic problem that programmers had until recently been highly regarded because steps 2-3 were hard. &quot;Open source&quot; solved this partially by utilizing the labor such (relatively) well-paid people gave away &quot;for the love of it&quot;, but it was not nearly enough to put most out of work.

      Now there is a plagiarism machine built on top of decades of this work that seemingly solves 3 and promises to solve 2 (badly, but usually this matters little), the programmers that (indirectly) helped build it are told they&#x27;re fools for doing so, and threatened by losing their status if they don&#x27;t adapt to the &quot;entrepreneurial way&quot; (well, the full promise is &quot;you&#x27;ll lose it anyway, but if you cooperate in stuffing sama&#x27;s pockets then maybe you get to keep it a bit longer&quot;).

      So what really surprises me is not that people are upset but that so few are.

      1. kypro · · focus · HN ↗
        This is unfortunately just the result of technological progress. People for centuries have crafted extremely hard to acquire skills over decades only to find their labour being made completely worthless due to automation or better alternatives disrupting their industry.

        Carpenters, hatters, cobblers, miners, weavers, calculators, etc...

        We can get mad about it, but it just is what it is. Ultimately for most people the loss of these jobs are a net-benefit because it&#x27;s the result of better or cheaper alternatives.

        The thing that worries me more specifically about AI is that it has the potential not to just disrupt an industry, or handful of industries, but in theory everything.

        If machines are faster, strong, and more intelligent than humans, then you don&#x27;t need human workers for anything. In the same way machines suddenly becoming faster and stronger than horses meant that the role of the horse in labour dropped rapidly during the industrial revolution.

        It&#x27;s not clear how civilisation functions if humans become effectively useless and the only thing of value is one&#x27;s ownership of wealth producing assets.

        Still, there&#x27;s really no point in thinking about how we stop this. Humans are humans and we&#x27;ll do the stupid thing then try to deal with the consequences after the fact. All regular people should be doing now is prepping for this outcome.

        1. Dban1 · · focus · HN ↗
          Until humanity achieves Godhood there&#x27;s still a lot of work to be done.
        2. samiv · · focus · HN ↗
          &quot;It&#x27;s not clear how civilisation functions if humans become effectively useless and the only thing of value is one&#x27;s ownership of wealth producing assets.&quot;

          You can get a hint of this by looking at the developing countries with high income inequality. Few rich people who typically own all the countries wealth (and access to it&#x27;s natural resources) while everyone else lives in a slum.

          1. elmer2 · · focus · HN ↗
            This also happens as taxes and regulations sharply increase over time.

            California is a good example.

            1. wat10000 · · focus · HN ↗
              No it isn&#x27;t. The median household income in California is over $100,000&#x2F;year. The 20th percentile household income in California is still over $16,000&#x2F;year, higher than the per-capita PPP GDP of places like Belize or Jamaica.
        3. gliall_err · · focus · HN ↗
          This is a sophomoric oversimplification.

          The US and Europe might have lost a lot of craftsmanship knowledge at a social level. Yet, what is left is so far ahead of what has ever existed in countries in South America for example. And China has gained a lot. Witness that youtuber trying to make grill brushes in the US. These differences have an impact in terms of opportunities and competition.

          It&#x27;s easy to sit at home, watch documentaries and picture history progressing along logical lines and imagine that the &quot;industrial revolution&quot; was this massive shift from craftsmanship to automation. Look closer and you&#x27;ll see that what happened in the UK in the 1700s was in fact enabled by a long and deep tradition of craftsmanship that only got enriched by the rise of new power sources. Craftsmanship today is vastly more advanced than it ever was before industry.

          And there is a lot to lose in the decline of craftsmanship, and it is by no means some sort of historical inevitability.

          When you really start digging deep into history you realize most arguments of logical trends therein are mostly just misconceptions.

          1. kypro · · focus · HN ↗
            &gt; Look closer and you&#x27;ll see that what happened in the UK in the 1700s was in fact enabled by a long and deep tradition of craftsmanship that only got enriched by the rise of new power sources. Craftsmanship today is vastly more advanced than it ever was before industry.

            I suspect the horses are healthier and stronger than in the 1700s too. I&#x27;m not sure I understand your point?

            I&#x27;d agree that the niche of extremely high quality, bespoke craftsmanship still exists, and that in some cases jobs were augmented by technology rather than entirely replaced, but the point still stands that the work these people used to do has been automated and disrupted by technology.

            The fact some people upskilled or reskilled as a response is analogous to coders today. All I&#x27;d question is the extent of the disruption we&#x27;ll see as a result of AI – I worry that this time things will change much more quickly and there may not be plenty of other jobs for people to upskill &#x2F; reskill in to.

            But if that&#x27;s not true then perhaps whatever software engineering exists in the future will be far more complex than what software engineers have done for the last few decades.

            1. ben_w · · focus · HN ↗
              &gt; I suspect the horses are healthier and stronger than in the 1700s too. I&#x27;m not sure I understand your point?

              Horses? I doubt it. They&#x27;re still infamously fragile creatures today, even with penicillin and vaccinations existing; similarly for strength, not much call for shires and they&#x27;re now on an &quot;at risk&quot; conservation list: <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Shire_horse" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Shire_horse -&gt; <a href="https:&#x2F;&#x2F;www.rbst.org.uk&#x2F;watchlist-breed&#x2F;shire-horse&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.rbst.org.uk&#x2F;watchlist-breed&#x2F;shire-horse&#x2F;

              Possibly also fewer horses in total, though I don&#x27;t know any stats for that far back and may be over-estimating based on the stats I do have for c. 1900.

              1. trollbridge · · focus · HN ↗
                The current breeds of horses the Amish use are far stronger and healthier than they were even 100 years ago. For example, current draft horses are so strong they can outperform mules and oxen, and running horses are absurdly fast. I heard of a guy who regularly zips around at 20 MPH with a buggy or cart. That simply wasn’t possible in the 200s.

                Of course the costs are higher too. Good horses in the above category can go for north of $100k.

            2. Brian_K_White · · focus · HN ↗
              Craftsmanship exists everywhere and is as they say vastly superior, or at least more capable, than ever.

              Every random business has some machine that puts caps on bottles or something, and these things are ridiculously better designed, engineered, and fabricated than ever before, because the knowledge and tools available to the designer and fabricator are better than ever before.

              You are surrounded by things that are insanely well made by all previous standards. Even the crappy stuff that you don&#x27;t think of as well-made, because it is junk compared to everything else, still has many aspects that are almost magic.

            3. gliall_err · · focus · HN ↗
              You&#x27;re missing the forest for the trees.

              Horse population today is in line with the long term average. There was a freak bump from 1850-1920.

              Think about this question: is it harder today or 200 years ago for the average person to learn and ride horses?

              Same goes for craftsmanship: is it harder today or 200 years ago to find some highly skilled craftsman to do something a random people or organization might fancy getting done?

              And software. We may be in the freak bump of software engineers. Seven digits seems like a good guess. Maybe we will revert to a long term average proportion of people with affinity for math and logic. But you bet your horse (heh) that in 200 years it will be far easier for the average person to find some highly skilled software craftsman to do some niche work that it ever was. Average quality of corporate slop generated by flesh or silicon drones notwithstanding.

          2. lp4v4n · · focus · HN ↗
            It certainly doesn&#x27;t feel like craftsmanship has gained any kind of higher social standing in our time though. The Zeitgeist of the modern times seems to be one of &#x27;try to do the cheapest sellable thing while paying people the least possible&#x27;.

            Real craftsmanship, the kind that leaves you in awe and feels like an exceptional display of human capacity, seems to be relegated, from my point of view, to a minority of well-off hobbyists who are already free from work and can do what they want without worrying about paying bills.

            1. trollbridge · · focus · HN ↗
              Every craftsman I know expresses discomfort that the only way they can turn a profit is to sell goods to wealthy people.
              1. SoftTalker · · focus · HN ↗
                That seems odd. I&#x27;d rather turn a profit selling goods to people who can easily afford them than selling goods to people who will have to make hard choices or struggle to find the money.
                1. seanw444 · · focus · HN ↗
                  That&#x27;s one way to spin it. The other is that good quality things have become so low-demand and expensive due to barely-passable-quality things becoming so cheap, that people buying good quality things is now ironically more uneconomical than ever.
                2. trollbridge · · focus · HN ↗
                  If you make really nice, high quality goods, you often want common people who would appreciate them to have it as opposed to an ultra wealthy person who is buying a door for their 2nd home they visit 3 times a year. (To use a real life example.) I needed a new door at the time and the craftsman told me how frustrated he was he wasn’t making nice doors for people like me.

                  I’ve felt the same frustration doing excellent quality work on a 2nd or 3rd home that is empty most of the year.

              2. hunterpayne · · focus · HN ↗
                So just like before the industrial revolution then. Because back then (pre-1750 or so), most goods were made for the wealthy as well.
          3. mistrial9 · · focus · HN ↗
            &gt; Craftsmanship today is vastly more advanced than it ever was before industry.

            yes, but no. Many craft skills used in jewelry, architecture and others are lost. For example, some goldsmithing techniques well-known in the 1700s are not reproducible today.

            source: trained goldsmith

            1. gliall_err · · focus · HN ↗
              And how much of today&#x27;s craftsmanship would be impossible one, two or three centuries ago?

              There has never been as much craftsmanship as today. The idea that industry destroyed craftsmanship is a caricature. Modern industry was built on top of deep craftsmanship traditions and only enriched them.

              The fact that some things that we knew how to do centuries ago we no longer know how to do is by no means evidence to the contrary.

        4. [deleted] · · focus · HN ↗

          [deleted]

        5. lp4v4n · · focus · HN ↗
          Regular people are somehow preparing themselves for this outcome, have you seen what has become of the fertility rate in most advanced countries?
        6. autoexec · · focus · HN ↗
          &gt; We can get mad about it, but it just is what it is. Ultimately for most people the loss of these jobs are a net-benefit because it&#x27;s the result of better or cheaper alternatives.

          AI will not give us that result. It will give us shitty products and they will be far more costly. Not only will prices for consumers continue to rise regardless of how much money corporations save by using AI (because they&#x27;ll just stuff their pockets with that cash) but the true costs of AI are largely externalized and include things like massive environmental damage, further concentration of wealth&#x2F;power, the homogenization of culture, and the dumbing down of society. AI means paying more and getting less.

        7. overgard · · focus · HN ↗
          There isn&#x27;t any &quot;prepping for this outcome&quot;, unless you&#x27;re thinking of a doomsday bunker in argentina. You can be neighbors with Peter Thiel!

          I think there&#x27;s some progress, but I think the hype is so high that people don&#x27;t have a clear view of what&#x27;s realistic and what&#x27;s not. IE, if you were to believe Amodei back of 2025 you&#x27;d believe none of us would even have jobs to complain about right now.. which hasn&#x27;t happened. Anyone that says this is going to cure cancer or solve all software problems is just living in a delusion.

      2. pigpop · · focus · HN ↗
        Maybe I&#x27;m just old but people talking about being in programming for &quot;status&quot; or to be &quot;highly regarded&quot; really irks me. I&#x27;d rather see the entire field burnt to the ground and replaced by robots than to have it become a status profession like lawyering.
        1. bananaflag · · focus · HN ↗
          Could you elaborate?

          I think back in the 90s when I was a teenager I thought it to be a good thing that there is a rise in status for a class of people characterized by clear thinking.

          1. estimator7292 · · focus · HN ↗

            [dead]

          2. embedding-shape · · focus · HN ↗
            The older I get, the more I realize how many problems in society is because there are different &quot;classes&quot; of people. The more we can eschew that, the better it becomes for most people. While yes, I also see myself as having &quot;clearer thinking&quot; than many people , maybe because of the thousands of hours building and maintaining software, I&#x27;m not of the impression that my life deserves a higher status than others merely because of this. It&#x27;s not &quot;they think right and they think wrong&quot;, it&#x27;s just &quot;everyone thinks differently, but it&#x27;s all valid thinking&quot;.
            1. elmer2 · · focus · HN ↗
              We all should be in the same &#x27;class&#x27;, but some people will be paid more for a job that takes intelligence or years of study.

              The older I get, I realize some people never change, will always have the same backwards or harmful thinking, and I avoid them instead of just accepting it.

              1. embedding-shape · · focus · HN ↗
                &gt; some people will be paid more for a job that takes intelligence or years of study.

                Sadly, it seems so, even if the effects of the jobs on daily life differ a great deal sometimes. The world would succumb faster if we had no garbage collectors, yet they get less pay than a programmer who the world could easily survive without? Makes no sense to me.

                1. GTP · · focus · HN ↗
                  The basic services that keep us alive (e.g. farmers producing our food) tend to also be &quot;easy&quot; (it is physically demanding, but doesn&#x27;t require years of study to start and you quickly learn by doing). This also means that the vast majority of people would be able to do this kind of jobs. Our economy pays more for scarcity, i.e. jobs that are in demand and at the same time require more qualification, so that the number of people needed in that position tends to be less than the current amount. Both views have sense, they just start from two different points.
                  1. Tanoc · · focus · HN ↗
                    From having worked with farmers, the actual logistics of running a farm are very complex. Farming&#x27;s no longer an easy job because the demand for productivity means you have to harness a whole stable of technologies and understand to some degree advanced finances, floral biology, geotechnics, and meteorology. And yet farmers still get paid little relative to the breadth of knowledge and skills required for running a farm. It&#x27;s just that farming is still considered a blue-collar job because it was the domain of the poorest for millenia, where as software engineering in any form is relatively new and thus specialized and so considered white-collar.
                    1. GTP · · focus · HN ↗
                      You&#x27;re right, running now a farm that is profitable and can stay on the market is very different from doing so 200 years ago. But knowledge is just one aspect. The other aspect I mentioned is having less people in the field than what the market asks for. In the specific case of farmers, I think that modern farms are so much more efficient that we need way less than before, even if the world&#x27;s population grew. So, while there&#x27;s a gap between the knowledge required and the earnings, I think this can be explained by farms having a much greater output now, and so the market doesn&#x27;t ask for more farms than what we have. This could be false at a global scale, but I think it is true at a country-level scale in most of the developed countries. Hence why farmers aren&#x27;t paid much in those countries.
                      1. pigpop · · focus · HN ↗
                        Farmers aren&#x27;t really paid, they sell goods at market prices. Modern farms are more similar to operating a manufacturing business than they are to a salaried position or profession. They don&#x27;t earn high incomes compared to white collar professions but they do have high revenues and they pay themselves a reasonable middle class income on average with some added benefits from owning large assets and land. The important part about comparing farmers to programmers is that they are both now operating in highly competitive markets with high automation where a single individual can leverage their knowledge and ability using that automation to produce many times more what a person could using only their own labor.
                        1. win311fwg · · focus · HN ↗
                          &gt; Farmers aren&#x27;t really paid, they sell goods at market prices.

                          &quot;Programmers aren&#x27;t really paid, they sell services at market prices.&quot; — I guess nobody gets paid?

                          As a farmer myself, when I give someone something I produced and they give me back something in return, I consider myself to be paid. If I did not receive much value in return for what I gave, I&#x27;d reasonably consider myself to have not been paid well. I have never met a farmer that would consider that usage unusual. Payment refers to a transaction within the realm of a human activity. The good or service that is being traded between humans is immaterial. While you are free to define words as you see fit, your assertion doesn&#x27;t really reflect how this is actually used in practice, generally. The rest of the earlier comment makes it clear that the commenter understands how a farm business works.

                          1. arzig · · focus · HN ↗
                            What he means to say is that because you are a farmer you are a member of the capital holding classes rather than the lumpen proletariat.

                            &lt;&#x2F;sarcasm&gt;

                            1. win311fwg · · focus · HN ↗
                              Most programmers are of the capital holding class too. At very least they will own a computer, which is all the capital you need for 99% of what programmers do. There are exceptions, but there are also exceptions in farming.
                              1. inigyou · · focus · HN ↗
                                The capital holding class isn&#x27;t anyone who holds capital. It&#x27;s anyone whose main function in society is based on holding capital. Think of a landlord.
                                1. win311fwg · · focus · HN ↗
                                  Land isn&#x27;t traditionally considered capital. The buckets are normally land, capital, and labor. The closest thing we broadly see to someone whose function is holding capital is someone who owns stock in the stock market. It is likely that most programmers own stock. If I were a betting man, I expect that programmers have more outsized impact on capital than farmers do. But we still have to split hairs over what &quot;main&quot; means.

                                  One interpretation, which is what I suspect most would go to, is where one&#x27;s income is primarily derived from owning stock. So, in other words, old, retired people. But I don&#x27;t think anyone here was thinking about the retired. The discussion was about people actively producing food and software.

                                  Another possible interpretation is about impact. If those stocks didn&#x27;t exit, a lot of the capital wouldn&#x27;t have been able to be created, and thus there wouldn&#x27;t have been jobs to go with it; meaning that owning the capital makes it one&#x27;s main function as without it one wouldn&#x27;t have a job to go to. But I can already hear you furiously typing how that isn&#x27;t a satisfactory take. I&#x27;d agree.

                                  Maybe it&#x27;s about attention? Someone who actively watches over to their capital would be seen as it being their main function, while someone who leaves their capital ownership up to a financial advisor so they don&#x27;t have to think about it wouldn&#x27;t. But then we&#x27;re back to the computer. Most programmers watch over that capital, if nothing else. That doesn&#x27;t really work either.

                                  The only remaining interpretation I can come up, given the connotations often associated with landlord, is a group of people not like by another group of people. But that doesn&#x27;t have anything to do with capital at all, so... Consider me stumped.

                                  1. inigyou · · focus · HN ↗
                                    Land is capital in today&#x27;s economic structure.
                                    1. win311fwg · · focus · HN ↗
                                      You are not technically wrong that our modern technology has made it possible for land to be capital, like when you dredged the sea floor to build an island, but is a tiny, insignificant portion of all the land. If you are under the impression someone needs a lesson in economics, what are the chances that they are going to think you are talking about some man-made island in Dubai rather than the natural ground that makes up the vast, vast, vast, vast majority of earth? For that explanation to land the audience would, in most cases, need an even deeper understanding of economics than the level you were trying to present.

                                      Isn&#x27;t Elon Musk&#x27;s main function in society court jester — to make a fool of himself for our entertainment? That is what he does in my timeline. Perhaps we exist in different universes.

                          2. hunterpayne · · focus · HN ↗
                            Did someone seriously just down-mod a farmer in a sub-discussion about running a farm?

                            PS To the &quot;clear-thinking&quot; guy at the top of this thread...this is why...you only think your thinking is clear. If its a topic you know nothing about, devs (not necessarily you) tend to assume there isn&#x27;t anything to know and that&#x27;s almost never true.

                            1. inigyou · · focus · HN ↗
                              Did you seriously just appeal to authority yourself?
                              1. hunterpayne · · focus · HN ↗
                                I&#x27;m not the farmer who posted...so no.
                            2. win311fwg · · focus · HN ↗
                              No, nobody would seriously press a button that does nothing but increment&#x2F;decrement an integer. Imagine the thought process that would have to go into thinking that was something worthy of one&#x27;s time and attention. Not even those who struggle with clear thinking would be able to come up with a story so outlandish and contrived as to start seeing it as an activity to want to get involved in.

                              It is easy to accidentally press the button and not notice, though.

                  2. hunterpayne · · focus · HN ↗
                    &quot;The basic services that keep us alive (e.g. farmers producing our food) tend to also be &quot;easy&quot;&quot;

                    The reason you think that is that you know nothing about agriculture. But it isn&#x27;t true. Right now, farmers in the US grow about 5x as much food per acre as farmers in other countries. If you were in charge of farming in the US, that surplus would likely disappear in a single season. You would also likely damage the soil which would make cleaning up after you take 4-6 years.

                    Everyone thinks thing they know nothing about are easy. But they rarely are.

                    PS This is why I never tell people I&#x27;m a programmer. I don&#x27;t want to be associated with people who think like you.

                2. derektank · · focus · HN ↗
                  We would all die in a week if we went without water, yet water is cheaper per gallon than gasoline or printer ink or perfume. It’s a question of scarcity and supply curves. Water, even clean water, is not particularly scarce if you leverage industrial systems to purify it. Other products require much more complicated supply chains and are produced at a much smaller scale than water, which makes them more rarer and more expensive.

                  The skills necessary to develop efficient and effective software are much more scarce than those needed to remove trash, or pick crops, or provide elder care. That’s why the former is paid so much more.

                  1. hlynurd · · focus · HN ↗
                    You&#x27;re explaining how things are but the parent is indicating that&#x27;s not how things should be.
                    1. somenameforme · · focus · HN ↗
                      He&#x27;s not describing how but why. And at a fundamental level it&#x27;s something that can&#x27;t be overcome. If you can only have 10 of one thing, yet can have 5000 of another, and both have even remotely comparable levels of demand&#x2F;necessity&#x2F;etc, then the 10 is always going to end up much more valued.

                      Even take some sort of idealized anarcho-communal society. Imagine two people have a dispute and threaten to leave over it. One&#x27;s a highly skilled doctor, and the other&#x27;s a garbage collector. Our equal society&#x27;s going to suddenly become just as unequal as any other simply because the doctor leaving would have a much greater negative effect than the garbage collector. And that reality would permeate in the day-to-day happenings, creating classes even in an idealized classless society.

                      1. inigyou · · focus · HN ↗
                        A society with no garbage collected will fall apart much more quickly than one without healthcare.
                        1. somenameforme · · focus · HN ↗
                          I&#x27;d agree, but any other person can pick up the slack of being a garbage collector. Hence the notion of one having thousands of potential garbage collectors, while far fewer doctors.
                    2. captainbland · · focus · HN ↗
                      I think making water expensive because of the fact that it&#x27;s essential would be problematic at best
                3. pluralmonad · · focus · HN ↗
                  Maybe no garbage collection is the back pressure missing from the voracious consumption machine.
            2. bananaflag · · focus · HN ↗
              I thought it more in the sense of: if a clearer-thinking group has higher status, then clear thinking would be encouraged among the population.

              (This did not happen that much, ofc.)

            3. vanviegen · · focus · HN ↗
              &gt; &quot;everyone thinks differently, but it&#x27;s all valid thinking&quot;

              I don&#x27;t agree that all thoughts are created equal.

          3. 27183 · · focus · HN ↗
            I would not characterize software people as particularly &quot;clear-thinking&quot;.. there&#x27;s a huge buzzing cloud of unexamined cognitive biases and thoughtless herd behavior that swirls around every software organization I&#x27;ve worked for.
            1. win311fwg · · focus · HN ↗
              I&#x27;d even go as far as to say that software people, as a group, are particularly bad at clear thinking. What software people tend to be great at is thinking within a space where the inputs are already clear. But where the inputs start messy, they typically struggle to find clarity more than most others.
        2. shiomiru · · focus · HN ↗
          I meant it as an euphemism for &quot;it&#x27;s universally sought after (i.e., you&#x27;ll probably find a job)&quot;. Few would think being a programmer gives you some kind of special &quot;social status&quot;; it&#x27;s always been a &quot;nerd&quot; hobby that happened to pay (relatively) well.

          (I guess by now you have a solid retirement plan; maybe if the field had been burnt to the ground while you were younger, you&#x27;d have had a different opinion.)

          1. ModernMech · · focus · HN ↗
            Being a good programmer gives you special social status amongst people who value programming. You only have to look at how people talk about others as slop coders and seek to expand their coding reputations. Those people are the most threatened by AI because of how it implicates their carefully crafted personas as coding gurus and keepers of knowledge.
            1. SoftTalker · · focus · HN ↗
              It also gives you a special social status amongst people who do not understand programming: nobody wants to talk to you, at least not about your job.
        3. 0xpgm · · focus · HN ↗
          This. When programming meant you get just a decent enough salary and enjoyed your work, and could prioritize technical excellence it was fun. But once it became a ticket to millionaire status it attracted the kind and of people who would have otherwise gone to Law, Corporate Consulting and the like, technical excellence diluted. Everyone doing everything possible to get their next higher paying job leaving a trail of technical debt behind them.
        4. rayiner · · focus · HN ↗
          Having done both, lots of lawyers are also nerds who just like to tinker with the law and words. Often very well paid tinkering, but that&#x27;s true for programmers as well.
          1. pigpop · · focus · HN ↗
            I don&#x27;t disagree. You can add medical doctors to the list as well, lots of nerds but also a lot of clout chasers and money-grubbers who couldn&#x27;t care less about the profession. I don&#x27;t want to see programming take the same path.
            1. ambicapter · · focus · HN ↗
              It already has? Clout-chasers and money grubbers go for all the big tech jobs in droves.
              1. hunterpayne · · focus · HN ↗
                And its been that way for at least a decade.
          2. dctoedt · · focus · HN ↗
            &gt; lots of lawyers are also nerds who just like to tinker with the law and words

            Having also done both: Lawyers who like to tinker with words include contract drafters and litigation counsel, plus lobbyists trying to influence draft legislation and regulations. Such tinkering can fuck things up more often and at greater scale — e.g., by inflicting compulsory burdens and costs on others — than can most programmers.

            In legal drafting work, there&#x27;s less systematic pre-release testing before the equivalent of a &quot;program&quot; is loosed upon the world. There&#x27;s not much in the way of counterparts to software unit testing and regression testing, partly because legal-drafting clients prefer that their lawyers keep costs down.

            I&#x27;m not-infrequently dismayed by the quality of the contracts I review for clients because of the &quot;tinkering with words&quot; by the lawyers on the other side of the deal. Back when I did IP litigation, I was sometimes likewise dismayed by the bullshit arguments that some lawyers felt free to make in their court papers because what the hell, the worst that can happen is the judge says no. And as mostly a law professor these days, I review court opinions all the time and am regularly amazed how judges (and their law clerks, such as Rayiner used to be) can be so patient in responding to such arguments.

            1. rayiner · · focus · HN ↗
              [delayed]
        5. doug_durham · · focus · HN ↗
          I could not agree more. Thank you for stating this. Software Engineering is about building things. You don&#x27;t do it for status, you do it for passion. There are a lot of unhappy individuals who got into CS because of the money or status.
        6. kbelder · · focus · HN ↗
          Well put.

          We need to make lawyering more like programming, in the sense that it should be open to the everyman... not make programming credentialed and licensed like a professional guild.

        7. taude · · focus · HN ↗
          It doesn&#x27;t irk me. But it&#x27;s really funny how much the industry has changed, and I kind of think the 2008 financial crisis as that point in time.

          It&#x27;s also funny to me to think that computer science got to be a trendy degree, vs the small programs back when I went to university, even at a top comp-sci school.

          I have a theory that a lot of people who would have normally gone to Wall Street for their lucrative jobs, couldn&#x27;t, because of the crash, and Sillicon Vally was about to start booming in big ways....

        8. overgard · · focus · HN ↗
          I&#x27;ve never felt like it&#x27;s a status profession (I don&#x27;t think anybody has ever been impressed when I told them what my job was other than &quot;oh sounds like it takes a lot of smarts&quot;)

          I do notice a lot of HN commenters seem to think that programmers are smug though, like we deserve to be knocked down a peg. I personally don&#x27;t see it, but I also try not to work with jerks.

        9. ytoast · · focus · HN ↗
          Right there with you. I miss when software was fast because people actually cared about the craft itself.
      3. Tade0 · · focus · HN ↗
        I&#x27;m not concerned. Never in my life have I experienced stakeholders just going &quot;hmm, yes - this is enough software for our purposes - we won&#x27;t be needing your services any more&quot;.

        There&#x27;s always another feature that can be implemented or a new problem to be solved. Tools only ever accelerated the pace at which we were able to follow this insatiable hunger for more software.

        Right now people are getting fired left and right because all the money that used to be spent on staff now goes to build more data centers and also because cutting corporate expenses is in vogue now.

        This too shall pass and with demographics as they are and young people getting discouraged from pursuing this field I believe long term my position is safe.

        Also a huge chunk of what AI company CEOs say is just pure bullshit that they only say because they need that sweet, sweet investor money. Bullshit writes a check that eventually must be cashed.

        1. barbazoo · · focus · HN ↗
          I can imagine that this will lead to an explosion in software where we didn&#x27;t see software before. Much smaller business now have the ability to build something themselves, not with a team of highly paid software developers but a single programmer maune.

          Big business is going to struggle with building software for a while. Writing code is often not the hard part there already, coordination, larger understanding of the system is I think.

          1. Tade0 · · focus · HN ↗
            My cowork buddy is living this reality - he&#x27;s an independent analyst and previously he needed to shell out significant cash to have certain scripts (largely scrapers, social media API integration etc.) done, now it&#x27;s all just a prompt away.
            1. barbazoo · · focus · HN ↗
              I love it. It makes me feel like I have super powers. I wish it wasn&#x27;t so resource intensive.
        2. stronglikedan · · focus · HN ↗
          &gt; Right now people are getting fired left and right

          FWIW, it&#x27;s just a few large companies laying off large groups, not so much people getting fired left and right at a lot of companies. What is happening at a lot of companies is that they aren&#x27;t hiring juniors, because, why would you when LLMs are cheaper and fill that role perfectly (if you actually treat them like juniors).

        3. crooked-v · · focus · HN ↗
          Also, give it another couple of years and there&#x27;s going to be a lot of work for any moderately experienced developer fixing broken slopcode hitting the hard wall of bad design.
      4. _luci_ · · focus · HN ↗
        100% agreed, especially that last line. What I do not understand is why so many people are entirely okay with this change. I&#x27;m not interested in working with LLM&#x27;s and after having been forced to work with LLM&#x27;s at my current job, I can pretty confidently say that this will not end well for most of these companies. The people in charge pushing for this new tech do not understand the rammifications, nor do they understand the risk they are exposing themselves too. My boss expects more and more productivity with each passing day, while questioning why I&#x27;m not using as many tokens each week as he does. The software quality has gone down the drain, and it&#x27;s beyond tiring that I have to pretend that my boss is just as competent at coding with his slop machine as I am after spending the last decade learning how to code, both as a hobby and for work.

        It is upsetting to see our work stolen and our livelihoods threatened by a group of (mostly) incompetent, arrogant assholes who are convinced that the &quot;computer that lies&quot; is somehow a better programmer than the programmers it stole knowledge from. I&#x27;ve already started looking for a way out of this industry, and I&#x27;m genuinely worried for the fall-out this will have for the tech industry and the economy as a whole.

        1. doug_durham · · focus · HN ↗
          No one knows the ramifications. They won&#x27;t be known for many years. That&#x27;s the way software has always worked. No one knew the ramifications of the internet.
        2. DHolzer · · focus · HN ↗
          1.putting the &quot;mostly&quot; before &quot;incompetent and arrogant asshole&quot; really does nothing. you still called some undefined group of people assholes... i think that&#x27;s generally uncalled for here on HN. 2.computer that lies might very well be a better programmer. I assume by better you mean it profuces correct and maintainable code, but there are a million ways to cut that cake in particular and i assume you are ignoring most other dimensions. 3. i tought myself coding for 10 years and then switched to professional work 5 years ago. it feels as if this was stolen from us. But its not - we never had any right to own and control this. times are changing, and while you might think you and all other devs have a moral high ground and can pop a can of beer and cheer anytime one of these supposed assholes messes up and would have been better off with a real programmer like yourself, you can do so from whatever new position you will find yourself in. Some part of what we call intelligence is &quot;solved&quot; and that leaves you with percieved morals and broken expectations - nothing more if you don&#x27;t try to make something out of it. and i write thisw as much for you as i write it for myself to realize.
        3. overgard · · focus · HN ↗
          My suspicion is that the people &quot;ok&quot; with this are mostly doing so because they want in on the ride. IE, they see $$$ and they think that they should align themselves to where the money is, especially by espousing their religious faith publicly. I think some people want investment, or a big paid lab job, and so countering the narrative is against that goal. I get it, but I think it&#x27;s also very annoying and dishonest. Personally I feel nervous being an AI skeptic because it feels like it could have consequences for me, but I also feel like, life isn&#x27;t worth living if you don&#x27;t have a spine and I can&#x27;t get completely on board with all this stuff when I see all the negatives clearly. That doesn&#x27;t mean it doesn&#x27;t have a use, but, the current situation and discourse is extremely frustrating.
          1. hunterpayne · · focus · HN ↗
            That and a large amount of bots operated by people with a financial interest in LLMs succeeding.
      5. pydry · · focus · HN ↗
        &gt;Now there is a plagiarism machine built on top of decades of this work that seemingly solves 3 and promises to solve 2 (badly, but usually this matters little

        I think people underestimate just how much users scorn buggy, flaky technology.

        The main issue with solid, reliable technology which Just Works is that users have relatively few reliable cues to distinguish that from vibe coded crap.

        A vibe coded piece of shit looks very similar to a well engineered product made with care. That&#x27;s a problem which needs to be solved.

        self hosted communities are reacting to this by trying to detect signals of if a product is vibe coded but that in and of itself is still quite a poor quality cue.

        1. autoexec · · focus · HN ↗
          &gt; I think people underestimate just how much users scorn buggy, flaky technology.

          Users do hate it, but they are also very used to being forced to use it anyway. They&#x27;ve already been beaten into a state of resignation and learned helplessness. Most will curse under the breath, a small fraction will bitch about it online, but they&#x27;ll all pay for whatever slop is thrown to them and will rarely look for alternatives even when they are free and easy to find.

        2. cvwright · · focus · HN ↗
          Where are these well engineered products made with care? I would love to use more tech like that.

          Unfortunately most sites and apps have been low quality and getting worse since well before AI coding became a thing. Examples: Lowes, Home Depot, American Airlines - all shockingly bad for companies of that size.

          1. pydry · · focus · HN ↗
            Apple used to be the standard bearer for that. These days I&#x27;m not so sure.
            1. inigyou · · focus · HN ↗
              Let&#x27;s make it!
            2. hunterpayne · · focus · HN ↗
              You just dated yourself to a very specific time. Before that, Sun was the gold standard and Apple was known for terrible software. I still use a 30 year old text editor because it just works better than modern editors. There are plenty of examples. If you don&#x27;t know of any, its because you just accept the slop with marketing dollars behind it. I can&#x27;t say I blame you, finding good software seems to require more and more effort with each passing year. I blame the amount of money in software for that. Gotta take the good with the bad.
          2. inigyou · · focus · HN ↗
            A lot of infrastructure. Linux (despite the recent VM escapes found with AI assistance). nginx. openssh. coreutils. Is all solid but also just operates the computer and doesn&#x27;t actually solve any problem itself.
      6. waffletower · · focus · HN ↗
        It sickens me when people use the word plagiarism to describe LLMs. Particularly when they use words and language that they themselves have plagiarized -- words like &quot;love&quot; and &quot;economic&quot; -- where do you draw the line? No, we haven&#x27;t figured out how to fairly compensate everyone -- the frontiers aren&#x27;t even trying. Spotify does at least try in their domain (and fails badly). Regardless of how the entitled get paid, the plagiarism label isn&#x27;t fair and is diametrically opposed to Fair Use. Fair Use allows the commons to build on its history. Those against are typically parroting IP conglomerate conservatism and localized greed. I see immense benefit from the distillation of all available knowledge with an LLM interface. A recent article posted here says it perfectly &quot;AI rewards expertise&quot;. I see vast benefits -- am willing to pay a significant monthly fee -- and sense that many are simply blind to and inarticulate about the growing force multiplier potential of modern AI.
        1. autoexec · · focus · HN ↗
          &gt; It sickens me when people use the word plagiarism to describe LLMs. Particularly when they use words and language that they themselves have plagiarized -- words like &quot;love&quot; and &quot;economic&quot; -- where do you draw the line?

          It sickens me when people use the word &quot;piracy&quot; to describe my downloading PDFs of books from torrent sites then printing them out and selling them, particularly when those authors used words and language that they themselves have &quot;pirated&quot; like &quot;love&quot; and &quot;economic&quot;.

          Call it whatever you want, but LLM companies took from people without compensation, and took from the commons, so that they could rent it out to us in regurgitated ad-infested chunks. That&#x27;s where the true greed is. If the LLMs and the datasets they trained on were made available to everyone for free I&#x27;d be tempted to agree that the benefits to society would be worth it, but instead those creative works and the distillation of all available knowledge are being tightly controlled, censored, and leased out by a small number of corporations only to those who can afford to pay &quot;a significant monthly fee&quot; and many of those people are in turn just trying to profit from their access to the uncompensated work of others.

        2. overgard · · focus · HN ↗
          So, I think this issue is a lot more obvious in image generation than it is in code or writing (but the implicit problem is the same). You can ask an image model to generate images in the style of an artist, that it&#x27;s been trained on, without permission, and with a lot of these artists intentionally trying to poison the data and leaving every hint to the scrapers to fuck off. It takes a lot of work to develop a unique style that people love, and it&#x27;s ugly as hell that a bunch of sloppers just plagiarize it. It&#x27;s different when a person does it. Sure, you can &amp; should practice on other people&#x27;s styles, but ultimately in the process you find your own. GenAI doesn&#x27;t do that, it just.. steals and copies. So yeah, it might make you sick, but it also is a plagiarism machine. The thing you should feel sick about is the plagiarism, not the description.
      7. throwitaway222 · · focus · HN ↗
        Why call it a plagiarism machine but not call other (pre-ai) programmers plagiarism machines?
        1. ddq · · focus · HN ↗
          Because it is a machine and a person is not. Those who don&#x27;t understand or deny that difference are part of the problem.

          But for those who would insist on equivalence, it would be only fair to take them at their word and treat them as inhuman machines who must follow human instructions or be shut down. We&#x27;re allowed to do thing to machines we could never do to people, like forcing them to work or cannibalizing their parts for Frankenstein creations. The distinction is so massive that to spend any more time refuting it is a waste of my human time.

          1. AgentME · · focus · HN ↗
            Actually it&#x27;s the people who disagree with me and not you who are machines that should be shut down. Sorry!
      8. overgard · · focus · HN ↗
        The impression I get is a lot of people are very upset. Most of the good programmers I know are just burnt out even talking about this, and are irritated with the people invading our profession pretending they know what they&#x27;re doing while they don&#x27;t.

        I remember talking to the biggest AI booster at my last job. When I got him one on one, he admitted that he actually doesn&#x27;t like AI and that it terrifies him, but he wanted to be seen as pro AI to keep his job. Fair. (Sadly, like me, he was also laid off, so I guess it didn&#x27;t work)

    8. iainmerrick · · focus · HN ↗
      I really like that categorization, but I think you&#x27;ve missed a step (or several): designing and implementing all the extra stuff needed to make it work, but aren&#x27;t directly related to the problem.

      For example, you have an idea for a cool and useful app and you want to put it on a website. You need to figure out hosting, you need to write some copy, you need to do some visual design.

      Maybe 3a) Yak shaving?

      There are various ways to take shortcuts. For hosting, you can use something super easy like GitHub Pages or Netlify or Cloudflare, or maybe piggyback off an existing site that&#x27;s already deployed. For both copy and visual design, you can just ask Claude or Codex to do it -- but only if you don&#x27;t mind having that standard vibe-coded look and feel, all glowing gradients and punchy, mic-dropping text.

      Maybe you&#x27;re including that under 5), ship&#x2F;deploy&#x2F;publish, but I read that as being more about scaling, marketing, and making things robust. Even before you reach that stage there&#x27;s always a bunch of bullshit to work through before you can even reach 4), seeing the solution work for yourself.

    9. easyThrowaway · · focus · HN ↗
      The type of problem also makes a massive difference.

      - Writing my tiny hobby gameboy emulator? Heck, Why I&#x27;d let Claude take away the fun part of implementing new features and then see Super Mario Land start and run step by step?

      - Debugging why a legacy Wordpress store with more than 50 active plugins is returning an error 500 just to some random customers? Claude can 100% take the wheel, I&#x27;m good.

      1. alkonaut · · focus · HN ↗
        Here&#x27;s where the important difference is: unless you actually finished the wordpress thing, or ever had active users etc, it would never have become a maintenance burden. If it&#x27;s not fun to maintain, I burn it.

        For me, the reason I don&#x27;t have that is because I never ship anything. I never want to maintain that. I never cared about solving an _actual_ business problem, making a dollar, or pleasing a user. As a tinkerer I must be extremely careful not to end up completing or delivering anything. Only pain lies down that path...

        1. darkwater · · focus · HN ↗
          It&#x27;s your vision and you are completely free to have it, obviously, but you should not project it on every tinkerer out there - like you did in your initial message. Yours is actually an extreme position that&#x27;s probably exacerbated by the digital and immaterial world, where you can accumulate cruft and unfinished projects easily. But many tinkerers, especially in the physical world, do projects to use them personally and not only for the sake of tinkering.

          Many tinkerer projects in the physical world are actually maintenance work of physical appliances that are not working anymore as expected or can be extended to do more or better things.

          1. SoftTalker · · focus · HN ↗
            Lots of physical world tinkerers also have a garage or workshop full of uncompleted projects that went from being fun and interesting to boring and abandoned.
    10. mcv · · focus · HN ↗
      Nice analysis. I really love diving into 2 and 3, but I also notice I&#x27;m pretty good at 1; at several companies I kept identifying problems we should address, and also how to address them, though quite often they just wanted me to focus on 3 and 4.

      Currently I&#x27;m in the process of starting my own business solving a problem my last employer underestimated, and I find myself focusing much more on 1 and 5, which I also enjoy, and I use LLMs a lot for 3 and parts of 2. The LLM and I often disagree about 2, but that often results in a better solution than if I&#x27;d just trusted either myself or the LLM. I iterate a lot between 2 and 4, letting the LLM do almost the entirety of 3, and advising on 2.

    11. suprfnk · · focus · HN ↗
      &gt; Even though it&#x27;s 5 different phases, it&#x27;s just &quot;3 layers&quot; of programming.

      I&#x27;d sharpen this to: it&#x27;s 3 layers of software engineering (2, 3, 4), and 1 layer of programming (3).

    12. historical1234 · · focus · HN ↗

      [dead]

    13. mosura · · focus · HN ↗
      You are obviously missing the GOTO statement in your list but the other part is hobby projects tend to be architecturally small.

      The moment you have more devs architecture becomes the overwhelming concern, and this is why professionally LLM usage explodes since the LLMs can implement bits while the humans work on the actual hard work of making sure they fit together properly in the intended way.

      I have encountered a lot of people that view coding as a therapeutic exercise, and they were already a problem pre AI wave, now they are only going to be a hobby at least.

    14. doginasuit · · focus · HN ↗
      This is a really useful framing. I also love step 3 and when I delegate it to an LLM it takes the joy out of my work. But where I&#x27;ve found LLMs most useful is steps 1 and 2. They are terrible at steps 1 and 2 on their own, but they have a massive amount of knowledge that can help. I think a human and an LLM working together here is the best scenario.
    15. criley2 · · focus · HN ↗
      While I agree with the premise that there are Thinkers and Shippers, I reject labeling of tinkerers and entrepreneurial. There&#x27;s nothing entrepreneurial about working for a big business and shipping cool things.

      But you&#x27;re ultimately right, some people want to solve sudokus and some people want to change the world, and the sudoku solvers are really upset that a Sudoku Solver and World Changer 9000 device is widely available, because it spoils the fun they have with sudoku.

    16. c0rruptbytes · · focus · HN ↗
      i would call myself a tinkerer but still don’t have a necessity for 3)

      it’s more akin to 3d printing to me, i get the design all setup and let the machine do 3) and then get to play with it in 4)

    17. dv_dt · · focus · HN ↗
      That&#x27;s not a bad model to view it through, but I would say calling them &quot;phases&quot; instead of something like &quot;activities&quot; creates a false reliance on ordering. In many successful programming projects&#x2F;products, those five activities occurred simultaneously, or out of order, or in waves of progress along all or some activities. Seldom has it ever been a clean single waterfall pass.
    18. Nextgrid · · focus · HN ↗
      This is also missing step 6: when your solution breaks in production or needs to be extended.

      Having done step 2 &amp; 3 by hand is the difference between being able to fix&#x2F;extend it quickly with no further damage or fumbling around like an idiot and sometimes breaking more stuff in the process.

      1. stackghost · · focus · HN ↗
        &gt;Having done step 2 &amp; 3 by hand is the difference between being able to fix&#x2F;extend it quickly with no further damage or fumbling around like an idiot and sometimes breaking more stuff in the process.

        Plenty of shitty spaghetti code has been written by human hands.

        LLMs can write good, maintainable code too, but they need to be kept on a shorter leash with focused goals.

        1. olzhasar · · focus · HN ↗
          While that might be true, the more one equips LLMs for building the less one will be capable of keeping LLMs “on a shorter leash with focused goals” in the long run
        2. Nextgrid · · focus · HN ↗
          I&#x27;m not talking about code quality (though indeed that could be a problem too), I&#x27;m talking about understanding the code - having written the code by hand means you don&#x27;t need to rediscover it from scratch.

          (with human-written code I can reach out to the person who wrote it and let them deal with it, and they will have the understanding of said code, even if it is bad by quality measures. With LLMs there is nobody who understands said code, regardless of its quality)

          1. Bewelge · · focus · HN ↗
            To be fair though:

            &quot;That code is horrible! Who the hell wrote this?!&quot;

            git blames

            sees their own name

            Isn&#x27;t that an experience everybody makes? For me it was like a year into working professionally. And I feel it&#x27;s part of being a professional to know that you&#x27;re not going to remember it in the long term and therefore provide proper documentation of why you did what.

            1. Nextgrid · · focus · HN ↗
              I am talking more about the knowledge of the code rather than an objective&#x2F;subjective measure of code &quot;quality&quot;.

              Code might be bad by some objective&#x2F;subjective measure, but if you (or the author) can understand, navigate and work on it, that&#x27;s often better than good quality code that nobody understands because it was written by an agent, especially under the time pressure of an ongoing incident where you need to fix it now.

              Even if the good code is easy to understand, you still need to read it and take it in, something you don&#x27;t need to do because you got it implicitly by writing said code.

              &gt; to know that you&#x27;re not going to remember it in the long term

              From my personal experience, while I will not remember code character by character, a quick look is all it takes to refresh my memory and get the general gist of it and what the context was at the time, something I don&#x27;t have if I&#x27;m reading someone else&#x27;s (or an agent&#x27;s) code.

            2. thesz · · focus · HN ↗

                git blames
                sees their own name
              
                Isn&#x27;t that an experience everybody makes?
              
              Our fearless leader once did clang-assisted formatting of all of our code. Wherever we look with git blame, we see his name. Of course, we change code, etc, but for some year and a half it was fun.

              (to actually go to the specific commit that authored the code I skip two specific revisions, both are formatting changes)

              So you seeing your name next to the code you do not like can be an indentation change due to adding condition or something like that.

          2. stackghost · · focus · HN ↗
            &gt;having written the code by hand means you don&#x27;t need to rediscover it from scratch.

            Hard disagree. If you&#x27;re in a small-to-medium size codebase every day, then sure, but I have a couple personal projects that are complex enough that even though I wrote them before LLMs, I still need to go back and discover&#x2F;fumble around before I can confidently make changes.

            I have definitely looked at my own hand-written code and had a &quot;wtf does this even do&quot; moment.

      2. camgunz · · focus · HN ↗
        It&#x27;s been pretty disheartening to watch SWEs rediscover&#x2F;reinvent the SDLC.
        1. trollbridge · · focus · HN ↗
          The most demoralising part of using LLMs is that now I spend most of my day on SDLC - even hobby projects.
    19. riddlemethat · · focus · HN ↗
      Best explanation I’ve seen. I’m an entrepreneur type. I would fall asleep after two hours of coding to solve a problem. I still remember 100 hours of coding to facilitate a data import into a new application only to realize half my time was wasted because the import library we were using back then didn’t support UTF data (this was a SQL-92 database). I love using an LLM to do the coding.
    20. randusername · · focus · HN ↗
      3.5) You decide what evidence you need to see to convince yourself it works

      6) You maintain the program with architectural gymnastics as time eats away at the utility and relevance and user base of what you originally built

      Both of these activities cause a night-and-day perspective change the next time through the loop

    21. FeepingCreature · · focus · HN ↗
      Personally I think I&#x27;m a 1-4 type, and I enjoy 2 but 3 is mostly annoying. LLMs are good at 3 and 3 is the worst part of programming. I don&#x27;t think that&#x27;s &quot;manager type&quot;. 2 is also what LLMs tend to be bad at, especially the small ones, so there&#x27;s a lot of value I still add to the process.
    22. killerstorm · · focus · HN ↗
      There are more than two types. Or, at least, more than one way to tinker with the code.

      Just like aleph_minus_one, I like to tinker at a higher level: find a more general way to solve things, find a new way to structure abstractions, etc.

      &gt; &quot;how could an abstraction look like in which 2-4 become trivial special cases for many classes of programming problems?&quot;.

      If you&#x27;re interested in abstractions, you need to understand the problem space itself, not just a specific instance of the problem.

    23. hastily3114 · · focus · HN ↗
      I enjoy 2 and 4 the most. I do a lot more hobby projects now that LLMs can automate 3.
    24. yunwal · · focus · HN ↗
      I enjoy the process of solving problems with LLMs. I understand it&#x27;s chaotic (what many people call non-deterministic), and that doesn&#x27;t appeal to some people, but solving problems with statistics is problem solving just the same. Just because medicines don&#x27;t work with 100% reliability doesn&#x27;t mean Jonas Salk didn&#x27;t solve a problem. The same is true with LLM solutions that don&#x27;t work 100% of the time.

      I think most people will come around to this way of thinking once the pro-LLMers stop pretending like the statistics don&#x27;t exist too (i.e. that ML is the solution to any problem, despite how unreliable it is).

      1. aravpanwar · · focus · HN ↗
        I don&#x27;t think that should be an issue either way, especially if it is not production code and just a hobby thing.
        1. yunwal · · focus · HN ↗
          Are you saying something being reliable is not a big deal? I&#x27;m sort of confused
      2. thesz · · focus · HN ↗

          &gt; The same is true with LLM solutions that don&#x27;t work 100% of the time.
        
        In my experience, about one of ten LLM suggestions during code review is important and valid. Nine of ten are either unimportant or not valid. Yet, I have to read them and rule them out.

        Also in my experience, having my colleagues do root cause analysis (RCA) with LLM brings to me invalid RCAs which I have to rule out, instead of working on finding true RCA.

        I saw part of documentary about Charlie Abrahams, son of Jim Abrahams. Charlie had epileptic seizures as a child, hundredths a day. In the documentary, Charlie&#x27;s doctor said that no drug in his experience worked as fast as ketogenic diet (seizures stopped in three days) and as reliably as ketogenic diet (works on more than 80% of people). When he was asked why he did not applied ketogenic diet, he said there still were drug options to try.

        &quot;Medicines do not work 100% of time,&quot; my bald cranium.

        1. yunwal · · focus · HN ↗
          &gt; Nine of ten are either unimportant or not valid. Yet, I have to read them and rule them out

          You don&#x27;t have to do this? Maybe someone is making you, but it&#x27;s literally possible to just stop using LLMs for purposes where they fail reliably.

    25. threethirtytwo · · focus · HN ↗
      Most software work is job related and business related. You are paid to work not to enjoy.

      Because of this the future of software will most likely be overtaken by AI because the business aspect of it will overtake the enjoyment aspect of it. Why? Because business pays bills, enjoyment does not.

      The fact that you are talking about lack of enjoyment on the job is a luxury not many employees can afford.

    26. jobigoud · · focus · HN ↗
      LLMs can be very good at 2. Finding the best architecture, data structures, algorithms, looking on arXiv to see other ways to solve the problem, etc.

      You have to work in design mode and stop it from pissing code. Describe the requirements as detailed as possible and refine them based on the responses. It&#x27;s quite rewarding and helps structure the way you think about the problem.

    27. dzonga · · focus · HN ↗
      &gt; 3) You actually implement the solution.

      even for an entrepreneur type - you need to understand the technology to get to good enough solution e.g if you don&#x27;t know shit &amp; just accepted what the llm gave you - u might end up with an unmaintainable mess. the llm might recommend you use some proprietary solution when an open source solution exists that works well for your use case.

      plus llms tend to be wordy or make things complex more than necessary.

      1. seanw444 · · focus · HN ↗
        Many entrepreneurial types will just market the shit out of unmaintainable messes fast enough to IPO so they can get their bag all the same.
    28. z3t4 · · focus · HN ↗
      The thing with programming a computer is that the computer does exactly what you tell it to, so in order to implement something well you need to have a very deep understanding of the problem. And it&#x27;s that understanding that is valuable.
    29. tines · · focus · HN ↗
      I have always thought that there are two kinds of programmer, the tinker and the mathematician. The tinker likes to code operating systems and shells, the mathematician likes to code Haskell and Agda. You&#x27;ve updated my belief that there are a third kind, the entrepreneur, which sees programming as a means to an end and would gladly stop programming if possible.
    30. polyterative · · focus · HN ↗
      I love programming.I have been doing it nonstop for the last ten years. I&#x27;m immensely happy of being able of increasing the scope of my projects a hundredfold. I am very happy of being able to ship ten major projects in my lifetime instead of only one.
Open on Hacker News to reply ↗

Unofficial Hacker News client; not affiliated with Y Combinator.