Born Against, or why hobby programming communities are against LLM usage
Thread
Unofficial Hacker News client; not affiliated with Y Combinator.
Born Against, or why hobby programming communities are against LLM usage
Unofficial Hacker News client; not affiliated with Y Combinator.
alkonaut · · focus · HN ↗
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.
fhd2 · · focus · HN ↗
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.
alkonaut · · focus · HN ↗
<a href="https://www.youtube.com/watch?v=G8fapIDnrMI" rel="nofollow">https://www.youtube.com/watch?v=G8fapIDnrMI
rob74 · · focus · HN ↗
skydhash · · focus · HN ↗
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.
rob74 · · focus · HN ↗
wccrawford · · focus · HN ↗
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't leave it to chance. Tell the LLM what to do, then let it do it.
ricardobayes · · focus · HN ↗
ang_cire · · focus · HN ↗
To carry forward the sudoku analogy, I care about figuring out which numbers go where, and whether I was correct, I don't care about the mechanical part of actually penciling-in the answers (coding).
mibsl · · focus · HN ↗
ang_cire · · focus · HN ↗
mibsl · · focus · HN ↗
skydhash · · focus · HN ↗
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.
aleph_minus_one · · focus · HN ↗
Even if you deeply into tinkering, 1 can be an insanely exciting and rewarding step: for example "how could an abstraction look like in which 2-4 become trivial special cases for many classes of programming problems?".
In my opinion the difference between "entrepreneur type" and "programmer type" (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.
alkonaut · · focus · HN ↗
If the answer is "no" you are probably more entrepreneurial than tinkerer. But it's a spectrum.
gghackernewsgg · · focus · HN ↗
This helps differentiate between coding as an end and coding as a means to socializing.
ACS_Solver · · focus · HN ↗
Yes, but I think there's really two different definitions of point 1. It's "figure out what non-software problem you can solve with software" vs "figure out what technical problem to solve".
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's very exciting. Figuring out what problem some companies or people have that could be solved? Very hard, very unexciting, not rewarding.
aleph_minus_one · · focus · HN ↗
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 "human" problems: If you are very trained in mathematics, you start to see mathematical structures in a lot of "more human" problems (or areas that are not associated with "software") basically all the time. If you find these mathematical structures that you see interesting, it is often possible to turn them into software.
Thus, "figure out what non-software problem you can solve with software" vs "figure out what technical problem to solve" is rather a litle bit like "in mathematics: do you prefer analysis or algebra?" - 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:
> 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't, someone would typically already have implemented them in software. :-)
The really annoying part is rather convincing the people/company of your solution (which can be considered to be part of step "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.").
kkoncevicius · · focus · HN ↗
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&D.
And LLMs give a lot of value here. They allow to quickly do steps 2-3 - "hard and tedious" stuff - to confirm that the thing, in fact, became solvable.
curtisblaine · · focus · HN ↗
Applejinx · · focus · HN ↗
You can't go really hard unless you can come up with something people weren't expecting, but when they discover it they want it. You can't just sit around waiting for people to want things properly. That'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's a really fundamental problem with the idea.
shiomiru · · focus · HN ↗
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're fools for doing so, and threatened by losing their status if they don't adapt to the "entrepreneurial way" (well, the full promise is "you'll lose it anyway, but if you cooperate in stuffing sama's pockets then maybe you get to keep it a bit longer").
So what really surprises me is not that people are upset but that so few are.
kypro · · focus · HN ↗
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'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'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's not clear how civilisation functions if humans become effectively useless and the only thing of value is one's ownership of wealth producing assets.
Still, there's really no point in thinking about how we stop this. Humans are humans and we'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.
Dban1 · · focus · HN ↗
samiv · · focus · HN ↗
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's natural resources) while everyone else lives in a slum.
elmer2 · · focus · HN ↗
California is a good example.
wat10000 · · focus · HN ↗
gliall_err · · focus · HN ↗
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's easy to sit at home, watch documentaries and picture history progressing along logical lines and imagine that the "industrial revolution" was this massive shift from craftsmanship to automation. Look closer and you'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.
kypro · · focus · HN ↗
I suspect the horses are healthier and stronger than in the 1700s too. I'm not sure I understand your point?
I'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'd question is the extent of the disruption we'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 / reskill in to.
But if that'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.
ben_w · · focus · HN ↗
Horses? I doubt it. They're still infamously fragile creatures today, even with penicillin and vaccinations existing; similarly for strength, not much call for shires and they're now on an "at risk" conservation list: <a href="https://en.wikipedia.org/wiki/Shire_horse" rel="nofollow">https://en.wikipedia.org/wiki/Shire_horse -> <a href="https://www.rbst.org.uk/watchlist-breed/shire-horse/" rel="nofollow">https://www.rbst.org.uk/watchlist-breed/shire-horse/
Possibly also fewer horses in total, though I don't know any stats for that far back and may be over-estimating based on the stats I do have for c. 1900.
trollbridge · · focus · HN ↗
Of course the costs are higher too. Good horses in the above category can go for north of $100k.
Brian_K_White · · focus · HN ↗
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't think of as well-made, because it is junk compared to everything else, still has many aspects that are almost magic.
gliall_err · · focus · HN ↗
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.
lp4v4n · · focus · HN ↗
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.
trollbridge · · focus · HN ↗
SoftTalker · · focus · HN ↗
seanw444 · · focus · HN ↗
trollbridge · · focus · HN ↗
I’ve felt the same frustration doing excellent quality work on a 2nd or 3rd home that is empty most of the year.
hunterpayne · · focus · HN ↗
mistrial9 · · focus · HN ↗
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
gliall_err · · focus · HN ↗
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.
[deleted] · · focus · HN ↗
[deleted]
lp4v4n · · focus · HN ↗
autoexec · · focus · HN ↗
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'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/power, the homogenization of culture, and the dumbing down of society. AI means paying more and getting less.
overgard · · focus · HN ↗
I think there's some progress, but I think the hype is so high that people don't have a clear view of what's realistic and what's not. IE, if you were to believe Amodei back of 2025 you'd believe none of us would even have jobs to complain about right now.. which hasn't happened. Anyone that says this is going to cure cancer or solve all software problems is just living in a delusion.
pigpop · · focus · HN ↗
bananaflag · · focus · HN ↗
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.
estimator7292 · · focus · HN ↗
[dead]
embedding-shape · · focus · HN ↗
elmer2 · · focus · HN ↗
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.
embedding-shape · · focus · HN ↗
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.
GTP · · focus · HN ↗
Tanoc · · focus · HN ↗
GTP · · focus · HN ↗
pigpop · · focus · HN ↗
win311fwg · · focus · HN ↗
"Programmers aren't really paid, they sell services at market prices." — 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'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'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.
arzig · · focus · HN ↗
</sarcasm>
win311fwg · · focus · HN ↗
inigyou · · focus · HN ↗
win311fwg · · focus · HN ↗
One interpretation, which is what I suspect most would go to, is where one's income is primarily derived from owning stock. So, in other words, old, retired people. But I don'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't exit, a lot of the capital wouldn't have been able to be created, and thus there wouldn't have been jobs to go with it; meaning that owning the capital makes it one's main function as without it one wouldn't have a job to go to. But I can already hear you furiously typing how that isn't a satisfactory take. I'd agree.
Maybe it'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't have to think about it wouldn't. But then we're back to the computer. Most programmers watch over that capital, if nothing else. That doesn'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't have anything to do with capital at all, so... Consider me stumped.
inigyou · · focus · HN ↗
win311fwg · · focus · HN ↗
Isn't Elon Musk'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.
hunterpayne · · focus · HN ↗
PS To the "clear-thinking" 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't anything to know and that's almost never true.
inigyou · · focus · HN ↗
hunterpayne · · focus · HN ↗
win311fwg · · focus · HN ↗
It is easy to accidentally press the button and not notice, though.
hunterpayne · · focus · HN ↗
The reason you think that is that you know nothing about agriculture. But it isn'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'm a programmer. I don't want to be associated with people who think like you.
derektank · · focus · HN ↗
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.
hlynurd · · focus · HN ↗
somenameforme · · focus · HN ↗
Even take some sort of idealized anarcho-communal society. Imagine two people have a dispute and threaten to leave over it. One's a highly skilled doctor, and the other's a garbage collector. Our equal society'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.
inigyou · · focus · HN ↗
somenameforme · · focus · HN ↗
captainbland · · focus · HN ↗
pluralmonad · · focus · HN ↗
bananaflag · · focus · HN ↗
(This did not happen that much, ofc.)
vanviegen · · focus · HN ↗
I don't agree that all thoughts are created equal.
27183 · · focus · HN ↗
win311fwg · · focus · HN ↗
shiomiru · · focus · HN ↗
(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'd have had a different opinion.)
ModernMech · · focus · HN ↗
SoftTalker · · focus · HN ↗
0xpgm · · focus · HN ↗
rayiner · · focus · HN ↗
pigpop · · focus · HN ↗
ambicapter · · focus · HN ↗
hunterpayne · · focus · HN ↗
dctoedt · · focus · HN ↗
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's less systematic pre-release testing before the equivalent of a "program" is loosed upon the world. There'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'm not-infrequently dismayed by the quality of the contracts I review for clients because of the "tinkering with words" 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.
rayiner · · focus · HN ↗
doug_durham · · focus · HN ↗
kbelder · · focus · HN ↗
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.
taude · · focus · HN ↗
It'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't, because of the crash, and Sillicon Vally was about to start booming in big ways....
overgard · · focus · HN ↗
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't see it, but I also try not to work with jerks.
ytoast · · focus · HN ↗
Tade0 · · focus · HN ↗
There'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.
barbazoo · · focus · HN ↗
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.
Tade0 · · focus · HN ↗
barbazoo · · focus · HN ↗
stronglikedan · · focus · HN ↗
FWIW, it'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't hiring juniors, because, why would you when LLMs are cheaper and fill that role perfectly (if you actually treat them like juniors).
crooked-v · · focus · HN ↗
_luci_ · · focus · HN ↗
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 "computer that lies" is somehow a better programmer than the programmers it stole knowledge from. I've already started looking for a way out of this industry, and I'm genuinely worried for the fall-out this will have for the tech industry and the economy as a whole.
doug_durham · · focus · HN ↗
DHolzer · · focus · HN ↗
overgard · · focus · HN ↗
hunterpayne · · focus · HN ↗
pydry · · focus · HN ↗
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'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.
autoexec · · focus · HN ↗
Users do hate it, but they are also very used to being forced to use it anyway. They'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'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.
cvwright · · focus · HN ↗
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.
pydry · · focus · HN ↗
inigyou · · focus · HN ↗
hunterpayne · · focus · HN ↗
inigyou · · focus · HN ↗
waffletower · · focus · HN ↗
autoexec · · focus · HN ↗
It sickens me when people use the word "piracy" 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 "pirated" like "love" and "economic".
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's where the true greed is. If the LLMs and the datasets they trained on were made available to everyone for free I'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 "a significant monthly fee" and many of those people are in turn just trying to profit from their access to the uncompensated work of others.
overgard · · focus · HN ↗
throwitaway222 · · focus · HN ↗
ddq · · focus · HN ↗
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'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.
AgentME · · focus · HN ↗
overgard · · focus · HN ↗
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'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't work)
iainmerrick · · focus · HN ↗
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's already deployed. For both copy and visual design, you can just ask Claude or Codex to do it -- but only if you don't mind having that standard vibe-coded look and feel, all glowing gradients and punchy, mic-dropping text.
Maybe you're including that under 5), ship/deploy/publish, but I read that as being more about scaling, marketing, and making things robust. Even before you reach that stage there's always a bunch of bullshit to work through before you can even reach 4), seeing the solution work for yourself.
easyThrowaway · · focus · HN ↗
- Writing my tiny hobby gameboy emulator? Heck, Why I'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'm good.
alkonaut · · focus · HN ↗
For me, the reason I don'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...
darkwater · · focus · HN ↗
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.
SoftTalker · · focus · HN ↗
mcv · · focus · HN ↗
Currently I'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'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.
suprfnk · · focus · HN ↗
I'd sharpen this to: it's 3 layers of software engineering (2, 3, 4), and 1 layer of programming (3).
historical1234 · · focus · HN ↗
[dead]
mosura · · focus · HN ↗
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.
doginasuit · · focus · HN ↗
criley2 · · focus · HN ↗
But you'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.
c0rruptbytes · · focus · HN ↗
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)
dv_dt · · focus · HN ↗
Nextgrid · · focus · HN ↗
Having done step 2 & 3 by hand is the difference between being able to fix/extend it quickly with no further damage or fumbling around like an idiot and sometimes breaking more stuff in the process.
stackghost · · focus · HN ↗
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.
olzhasar · · focus · HN ↗
Nextgrid · · focus · HN ↗
(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)
Bewelge · · focus · HN ↗
"That code is horrible! Who the hell wrote this?!"
git blames
sees their own name
Isn't that an experience everybody makes? For me it was like a year into working professionally. And I feel it's part of being a professional to know that you're not going to remember it in the long term and therefore provide proper documentation of why you did what.
Nextgrid · · focus · HN ↗
Code might be bad by some objective/subjective measure, but if you (or the author) can understand, navigate and work on it, that'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't need to do because you got it implicitly by writing said code.
> to know that you'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't have if I'm reading someone else's (or an agent's) code.
thesz · · focus · HN ↗
(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.
stackghost · · focus · HN ↗
Hard disagree. If you'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/fumble around before I can confidently make changes.
I have definitely looked at my own hand-written code and had a "wtf does this even do" moment.
camgunz · · focus · HN ↗
trollbridge · · focus · HN ↗
riddlemethat · · focus · HN ↗
randusername · · focus · HN ↗
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
FeepingCreature · · focus · HN ↗
killerstorm · · focus · HN ↗
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.
> "how could an abstraction look like in which 2-4 become trivial special cases for many classes of programming problems?".
If you're interested in abstractions, you need to understand the problem space itself, not just a specific instance of the problem.
hastily3114 · · focus · HN ↗
yunwal · · focus · HN ↗
I think most people will come around to this way of thinking once the pro-LLMers stop pretending like the statistics don't exist too (i.e. that ML is the solution to any problem, despite how unreliable it is).
aravpanwar · · focus · HN ↗
yunwal · · focus · HN ↗
thesz · · focus · HN ↗
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'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.
"Medicines do not work 100% of time," my bald cranium.
yunwal · · focus · HN ↗
You don't have to do this? Maybe someone is making you, but it's literally possible to just stop using LLMs for purposes where they fail reliably.
threethirtytwo · · focus · HN ↗
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.
jobigoud · · focus · HN ↗
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's quite rewarding and helps structure the way you think about the problem.
dzonga · · focus · HN ↗
even for an entrepreneur type - you need to understand the technology to get to good enough solution e.g if you don't know shit & 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.
seanw444 · · focus · HN ↗
z3t4 · · focus · HN ↗
tines · · focus · HN ↗
polyterative · · focus · HN ↗