I Quit. The Clankers Won
346 points
8 hours ago
| 51 comments
| dbushell.com
| HN
Waterluvian
4 hours ago
[-]
Improving developer skills is not valuable to your company. They don't tell a customer how many person-hours of engineering talent improvement their contract is responsible for. They just want a solved problem. Some companies comprehend how short-sighted this is and invest in professional development in one way or another. They want better engineers so that their operations run better. It's an investment and arguably a smart one.

Adoption of AI at a FOMO corporate pace doesn't seem to include this consideration. They largely want your skills to atrophy as you instead beep boop the AI machine to do the job (arguably) faster. I think they're wrong and silly and any time they try to justify it, the words don't reconcile into a rational series of statements. But they're the boss and they can do the thing if they want to. At work I either do what they want in exchange for money or I say no thank you and walk away.

Which led me to the conclusion I'm currently at: I think I'm mostly just mourning the fact that I got to do my hobby as a career for the past 15 years, but that’s ending. I can still code at home.

reply
pfisherman
4 hours ago
[-]
This is going to catch some heat, but what if the most important professional “developer skill” to learn or improve is how to effectively use coding agents?

I saw something similar in ML when neural nets came around. The whole “stack moar layerz” thing is a meme, but it was a real sentiment about newer entrants into the field not learning anything about ML theory or best practices. As it turns out, neural nets “won” and using them effectively required development and acquisition of some new domain knowledge and best practices. And the kids are ok. The people who scoffed at neural nets and never got up to speed not so much.

Edit: as an aside, I have learned plenty from reviewing coding agent generated implementations of various algorithms or methods.

reply
MetaWhirledPeas
3 hours ago
[-]
> what if the most important professional “developer skill” to learn or improve is how to effectively use coding agents?

Well, it's not. There's a small moat around that right now because the UX is still being ironed out, but in a short while able to use coding agents will be the new able to use Excel.

What will remain are the things that already differentiate a good developer from a bad one:

- Able to review the output of coding agents

- Able to guide the architecture of an application

- Able to guide the architecture of a system

- Able to minimize vulnerabilities

- Able to ensure test quality

- Able to interpret business needs

- Able to communicate with stakeholders

reply
rkapsoro
3 hours ago
[-]
I think you're agreeing with him. All of the things you just listed are key senior developer skills.
reply
SoftTalker
1 hour ago
[-]
None of those things will be necessary if progress continues as it has. The AI will do all of that. In fact it will generate software that uses already proven architectures (instead of inventing new ones for every project as human developers like to do). The testing has already been done: they work. There are no vulnerabilites. They are able to communicate with stakeholders (management) using their native language, not technobabble that human developers like to use, so they understand the business needs natively.
reply
array_key_first
1 hour ago
[-]
If this is the case then none of us will have jobs; we will be completely useless.

I think, most likely, you'll still need developers in the mix to make sure the development is going right. You can't just have only business people, because they have no way to gauge if the AI is making the right decisions in regards to technical requirements. So even if the AI DOES get as good as you're saying, they wouldn't know that without developers.

reply
bobthepanda
1 hour ago
[-]
Humans are still in the loop as the final signoff responsible for liability, and to do an audit you’ll need someone who knows what they’re looking at.
reply
SoftTalker
1 hour ago
[-]
Liabilty will be waived in the terms of use.
reply
lelandbatey
1 hour ago
[-]
> They work

For some definition of work, yes, not every definition. Their product is not without flaw, leaving room at for improvement, and room for improvement by more than only other AI.

> There are no vulnerabilities

That's just not true. There's loads of vulnerabilities, just as there's plenty of vulnerabilities in human written code. Try it, point an AI looking for vulns at the output of an AI that's been through the highest intensity and scrutiny workflow, even code that has already been AI reviewed for vulnerabilities.

reply
jnovek
3 hours ago
[-]
> Able to review the code output of coding agents

That probably won’t be necessary in a few years.

reply
circlefavshape
3 hours ago
[-]
It's necessary for devs right now, no matter how good they are, and it's those devs' code the models are trained on
reply
prewett
2 hours ago
[-]
Even worse, the training set probably includes a lot of code that needed review but didn't get it...
reply
keeda
47 minutes ago
[-]
If we know the outcome of that code, such as whether it caused bugs or data corruption or a crappy UX or tech debt -- which is potentially available in subsequent PR commit messages -- it's still valuable training data.

Probably even more valuable than code that just worked, because evidently we have enough of that and AI code still has issues.

reply
rafterydj
3 hours ago
[-]
I see this line of thought put out there many times, and I've been thinking: why do people do anything at all? What's the point? If no one at all is even reviewing the output of coding agents, genuinely, what are we doing as a society?

I fail to see how we transition society into a positive future without supplying means of verifying systemic integrity. There is a reason that Upton Sinclair became famous: wayward incentives behind closed doors generally cause subpar standards, which cause subpar results. If the FDA didn't exist, or they didn't "review the output", society would be materially worse off. If the whole pitch for AI ends with "and no one will even need to check anything" I find that highly convenient for the AI industry.

reply
ndriscoll
3 hours ago
[-]
You could e.g. write specs and only review high level types plus have deterministic validation that no type escapes/"unsafe" hatches were used, or instruct another agent to create adversarial blackbox attempts to break functionality of the primary artifact (which is really just to say "perform QA").

As a simple use-case, I've found LLMs to be much better than me at macro programming, and I don't really need to care about what it does because ultimately the constraint is just that it bends the syntax I have into the syntax I want, and things compile. The details are basically irrelevant.

reply
surajrmal
2 hours ago
[-]
Code quality will impact the effectiveness of ai. Less code to read and change in subsequent changes is still useful. There was a while where I became more of a paper architect and stopped coding for a while and I realized I wasn't able to do sufficient code reviews anymore because I lacked context. I went back into the code at some point and realized the mess my team was making and spent a long while cleaning it up. This improved the productivity of everyone involved. I expect AI to fall into a similar predicament. Without first hand knowledge of the implementation details we won't know about the problems we need to tell the AI to address. There are also many systems which are constrained in terms of memory and compute and more code likely puts you up against those limits.
reply
ndriscoll
1 hour ago
[-]
I don't disagree that code quality is currently more important than it's ever been (to get the most out of the tools). I expect that quality will increase though as people refine either training or instructions. I was able to get much better (well factored, aligned to business logic) output that I'm generally happy-ish with a couple months ago with some coding guidelines I wrote. It's possible that newer models don't even need that, but they work well enough with it that I haven't touched those instructions since.
reply
rafterydj
2 hours ago
[-]
I mean, sure, for programming macros. Or programming quick scripts, or type-safe or memory-safe programs. Or web frontends, or a11y, or whatever tasks for which people are using AI.

But if you peel back that layer to the point where you are no longer discussing the code, and just saying "code X that does Y"... how big is X going to get without verifying it? This is a basic, fundamental question that gets deflected by evaluating each case where AI is useful.

When you stop being specific about what the AI is doing, and switch to the general tense, there is a massive and obvious gap that nobody is adequately addressing. I don't think anyone would say that details are irrelevant in the case of life-threatening scenarios, and yet no one is acknowledging where the logical end to this line of thinking goes.

reply
falkensmaize
2 hours ago
[-]
They will still be turning out the same problematic code in a few years that they do now, because they aren’t intelligent and won’t be intelligent unless there is a fundamental paradigm shift in how an LLM works.

I use LLMs with best practices to program professionally in an enterprise every day, and even Opus 4.6 still consistently makes some of the dumbest architectural decisions, even with full context, complete access to the codebase and me asking very specific questions that should point it in the right direction.

reply
stevepotter
2 hours ago
[-]
I keep hearing “they aren’t intelligent” and spit out “crap code”. That’s not been my experience. LLMs prevented and also caught intricate concurrency issues that would have taken me a long time.

I just went “hmmm, nice” and went on. The problem there is that I didn’t get that sense of accomplishment I crave and I really didn’t learn anything. Those are “me” problems but I think programmers are collectively grappling with this.

reply
rekrsiv
3 hours ago
[-]
The endgame in programming is reducing complexity before the codebase becomes impossible to reason about. This is not a solved problem, and most codebases the LLMs were trained on are either just before that phase transition or well past it.

Complexity is not just a matter of reducing the complexity of the code, it's also a matter of reducing the complexity of the problem. A programmer can do the former alone with the code, but the latter can only be done during a frank discussion with stakeholders.

A vibe coder using an LLM to generate complexity will not be able to tell which complexity to get rid of, and we don't have enough training data of well-curated complexity for LLMs to figure it out yet.

reply
trollbridge
2 hours ago
[-]
No kidding. So far the complexity introduced by LLM-generated code in my current codebase has taken far more time to deal with than the hand-written code.

Overall, we are trying to "silo" LLM-generated code into its own services with a well-defined interface so that the code can just be thrown away and regenerated (or rewritten by hand) because maintaining it is so difficult.

reply
tpdly
1 hour ago
[-]
Yeah, same. I like the silo idea, I'll have to explore that.

I'm relieved to hear this because the LLM hype in this thread is seriously disorienting. Deeply convinced that coding "by hand" is just as defensible in the LLM age as handwriting was in the TTY age. My dopamine system is quite unconvinced though, killing me.

reply
dspillett
3 hours ago
[-]
> This is going to catch some heat, but what if the most important professional “developer skill” to learn or improve is how to effectively use coding agents?

If it does go as far that way as many seem to expect (or, indeed, want), then most people will be able to do it, there will be a dearth of jobs and many people wanting them so it'll be a race to the bottom for all but the lucky few: development will become a minimum wage job or so close to that it'll make no odds. If I'm earning minimum wage it isn't going to be sat on my own doing someone else's prompting, I'll find a job that involves not sitting along in front of a screen and reclaim programming for hobby time (or just stop doing it at all, I have other hobbies to divide my time between). I dislike (effectively) being a remote worker already, but put up with it for the salary, if the salary goes because “AI” turns it into a race-to-the-bottom job then I'm off.

Conversely: if that doesn't happen then I can continue to do what I want, which is program and not instruct someone else (be it a person I manage or an artificial construct) to program. I'm happy to accept the aid of tools for automation and such, I've written a few of my own, but there is a line past which my interest will just vanish.

reply
falkensmaize
2 hours ago
[-]
What the people excited about the race to the bottom scenario don’t seem to understand is that it doesn’t mean low skill people will suddenly be more employable, it means fewer high skill people will be employable.

No one will be eager to employ “ai-natives” who don’t understand what the llm is pumping out, they’ll just keep the seasoned engineers who can manage and tame the output properly. Similarly, no one is going to hire a bunch of prompt engineers to replace their accountants, they’ll hire fewer seasoned accountants who can confidently review llm output.

reply
ArnoVW
1 hour ago
[-]
And those that do have not yet understood what will happen when those seasoned workers retire, and there are no juniors or mid that can grow because they have been replaced by AI
reply
bonoboTP
3 hours ago
[-]
I also remember a similar wave around 10-15 years ago regarding ML tooling and libraries becoming more accessible, more open source releases etc. People whose value add was knowing MATLAB toolboxes and keeping their code private got very afraid when Python numpy, scikit learn and Theano etc came to the forefront. And people started releasing the code with research papers on github. Anyone could just get that working code and start tweaking the equations put different tools and techniques together even if you didn't work in one of those few companies or didn't do an internship at a lab who were in the know.

Or other people who just kept their research dataset private and milked it for years training incrementally better ML models on the same data. Then similar datasets appeared openly and they threw a hissy fit.

Usually there are a million little tricks and oral culture around how to use various datasets, configurations, hyperparameters etc and papers often only gave the high level ideas and math away. But when the code started to become open it freaked out many who felt they won't be able to keep up and just wanted to keep on until retirement by simply guarding their knowledge and skill from getting too known. Many of them were convinced it's going to go away. "Python is just a silly, free language. Serious engineers use Matlab, after all, that's a serious paid product. All the kiddies stacking layers in Theano will just go away, it's just a fad and we will all go back to SVM which has real math backing it up from VC theory." (The Vapnik-Chervonenkis kind, not the venture capital kind.)

I don't want to be too dismissive though. People build up an identity, like the blacksmith of the village back in the day, and just want to keep doing it and build a life on a skill they learn in their youth and then just do it 9 to 5 and focus on family etc. I get it. But wishing it won't make it so.

Talented, skilled people with good intuition and judgements will be needed for a long time but that will still require adapting to changing tools and workflows. But the bulk of the workforce is not that.

reply
poody
2 hours ago
[-]
This is so true... I am having issues with the change right now.. being older and trying to incorporate agentic workflow into MY workflow is difficult as I have trust issues with the new codebase.. I do have good people skills with my clients, but my secret sauce was my coding skilz.. and I built my identity around that..
reply
dgb23
1 hour ago
[-]
The cure for me has been to write an agent myself from first principles.

Tailored to my workflow, style, goals, projects and as close as possible to what I think is how an agent should work. I’m deliberately only using an existing agent as a rubber duck.

It’s a very empowering learning experience.

reply
tonyedgecombe
3 hours ago
[-]
Using a coding agent seems quite low skill to me. It’s hard to see it becoming a differentiator. Just look at the number of people who couldn’t code before and are suddenly churning out work to confirm that.
reply
bachmeier
3 hours ago
[-]
> Using a coding agent seems quite low skill to me.

I agree if that's all you can do. Using a coding agent to complement a valuable domain-specific skill is gold.

reply
nunez
1 hour ago
[-]
Thus why many technical business-facing people are super excited about AI (at the cost of developers)
reply
veidr
1 hour ago
[-]
It absolutely is, but the fundamental misunderstanding around this seems to be that "effectively using coding agents" is a superset of the 2023-era general understanding of "Senior Software Engineer".

At least when you're talking about shipping software customers pay for, or debugging it, etc. Research, narrow specializations, etc may be a different category and some will indeed be obsoleted.

reply
mcdeltat
4 hours ago
[-]
I think your argument is predicated on LLM coding tools providing significant benefit when used effectively. Personally I still think the answer is "not really" if you're doing any kind of interesting work that's not mostly boilerplate code writing all day.
reply
dasil003
3 hours ago
[-]
Define interesting. In my experience most business logic is not innovative or difficult, but there are ways to do it well or ways to do it terribly. At the senior levels I feel 90% of the job is deciding the shape of what to build and what NOT to build. I find AI very useful in exploring and trying more things but it doesn’t really change the judgment part of the job.
reply
xeromal
2 hours ago
[-]
How much of software programmer work is interesting? A fraction of a percent? I'd argue most of us including most startups work on things that help make businesses money and that's pretty "boring" work.
reply
windward
3 hours ago
[-]
Many of those skills have temporary value before they're incorporated into the models/harnesses
reply
ozozozd
3 hours ago
[-]
There was a moment we thought JS had won. And then crypto. I personally believed low-level development was done.
reply
nunez
1 hour ago
[-]
Claude Code is written in TypeScript, which compiles to JS, so I think JS _did_ win...
reply
underlipton
3 hours ago
[-]
Crypto did win, just not where you're looking.
reply
MrDarcy
3 hours ago
[-]
Not sure why this would catch heat rationally speaking. It is quite clear in a professional setting effective use of coding agents is the most important skill to develop as an individual developer.

It’s also the most important capability engineering orgs can be working on developing right now.

Software Engineering itself is being disrupted.

reply
anticorporate
3 hours ago
[-]
I'd offer an edit that the most important skill may be knowing when the agent is wrong.

There's so much hand wringing about people not understanding how LLMs work and not nearly enough hand wringing about people not understanding how computer systems work.

reply
nunez
1 hour ago
[-]
> This is going to catch some heat, but what if the most important professional “developer skill” to learn or improve is how to effectively use coding agents?

Doing so will effectively force a (potentially unwanted) career change for many people and will lead to the end of software engineering (and software as a career), assuming AI continues to improve.

"Effectively" using agents means that you're writing specs and reading code (in batches through change diffs) instead of writing code directly. This requires the ability to write well (or well enough to get what you want from the agent) and clearly communicate intent (in your language of choice, not code; very different IMO).

The way that you read code is different with agents as well. Agents can produce a smattering of tests alongside implementation in a single turn. This is usually a lot of code. Thus, instead of red-green-refactor'ing a single change that you can cumulatively map in your head, you're prompt-build-executing entire features all at once and focusing on the result.

Code itself loses its importance as a result. See also: projects that are moving towards agentic-first development using agents for maintenance and PR review. Some maintainers don't even read their codebases anymore. They have no idea what the software is actually doing. Need security? Have an agent that does nothing but security look at it. DevOps? Use a DevOps agent.

This isn't too far off from what I was doing as a business analyst a little over 20 years ago (and what some technical product managers do now for spikes/prototypes). I wrote FRDs [^0] describing what the software should do. Architects would create TRDs [^1] from those FRDs. These got sent off to developers to get developed, then to QA to get bugs hammered out, then back to my team for UAT.

If agents existed back then, there would've been way fewer developers/QA in the middle. Architects would probably do a lot of what they would've done. I foresee that this is the direction we're heading in, but with agents powered by staff engineers/Enterprise Architects in the middle.

> Edit: as an aside, I have learned plenty from reviewing coding agent generated implementations of various algorithms or methods.

People learn differently. I (and others) learn from doing. Typing code from Stack Overflow/Expertsexchange/etc instead of pasting it, then modifying it is how I learned to code. Some can learn from reading alone.

[^0]: https://www.modernanalyst.com/Resources/Articles/tabid/115/I...

reply
mxkopy
3 hours ago
[-]
I don’t think it could be the most important skill to have. The most common, and the most standardized one for sure, but if coding agents are doing fundamental R&D or running ops then nobody needs skills anyway.

> As it turns out, neural nets “won”

> The people who scoffed at neural nets and never got up to speed not so much.

I get the feeling you don’t know what you’re talking about. LLMs are impressive but what have they “won” exactly? They require millions of dollars of infrastructure to run coming around a decade after their debut, and we’re really having trouble using them for anything all that serious. Now I’m sure in a few decades’ time this comment will read like a silly cynic but I bet that will only be after those old school machine learning losers come back around and start making improvements again.

reply
shmerl
2 hours ago
[-]
I'd say viewing it as most important is pretty unprofessional. But isn't it the point of this extreme AI push? To replace professional skills with dummy parrots.
reply
simonw
4 hours ago
[-]
> Improving developer skills is not valuable to your company

Every company I've ever worked at has genuinely believed in and invested in improving developer skills.

reply
Supermancho
4 hours ago
[-]
I've worked for 35ish companies (contract and fulltime), largely on the west coast of the US. I have experienced the lip service, from the vast majority. I have experienced maybe 2 or 3 earnest attempts at growing engineer skills through subsidized admission/travel to talks, tools, or invited instructors.
reply
tasuki
4 hours ago
[-]
> I've worked for 35ish companies

It seems they were correct not to invest in your skills.

I've worked for six companies over almost 20 years. The majority invested in my skills, and I hope that investment has paid off for them!

reply
dspillett
3 hours ago
[-]
I've worked for five companies, on the same products (well, variations there-of over time), for 25 years, due to take-overs (I nearly left ~10 years ago due to management numskullery, but a timely buy-out of the bit I worked for fixed my problems while the rest of the company died off).

Hanging around for a while (a long while) doesn't necessarily mean dedication worth investing in, it could just be that I have a shocking lack of ambition :)

reply
ojbyrne
3 hours ago
[-]
Perhaps the lack of investment in their skills was the cause for the commenter’s job hopping, not the effect.
reply
shagie
2 hours ago
[-]
Consider the rate of job hopping that would be evident on that resume. I'm not sure how many companies would be willing to invest in sending a FTE who stays somewhere for likely less than a year to a conference or say "Ok, you an spend 20% of your time improving your skills."

What is more likely with the 35 number is that these are multiple simultaneous contracts. When working as a contractor you're fixing that problem or that project. The company isn't going to have you around for longer than a month after it's been fixed and documented.

There's no reason to spend company resources on training a person any more than there's reason for you to pay a plumber to be reading "learn to be an electrician in 10 days" while they're supposed to be working on fixing the sink or doing the plumbing for new construction.

reply
kjksf
2 hours ago
[-]
It's all so vague. "lack of investment in their skill".

You just spent $250k and 5 years in college learning stuff.

You get hired to do a job for money.

What "investment" do you expect company to do?

Give me number of weeks and amount of dollars per year and tell me how it stacks against $250k and 5 years that you just spent?

If you want to learn on the job, shouldn't YOU be paying the company for teaching you, like you pay college to teach you?

reply
mixmastamyk
1 hour ago
[-]
Continuing education is recognized and required in many fields.
reply
rafterydj
1 hour ago
[-]
This argument falls apart if you consider what field we're talking about. At what point would going to school for 5 years give you the whole education you actually needed? Does learning C in 1995-2000 prepare you for Rust in 2026? No, and it shouldn't, but work needs done, so _yes_ there is a dollar amount of value for educating your workforce that has already been vetted and already knows the context for your business goals. Asking what that number is completely misses the point.
reply
ndriscoll
1 hour ago
[-]
Actually I found that if you have a pretty good understanding of the core parts of the C standard (e.g. the idea of the abstract machine, storage durations, unspecified vs undefined behavior, etc.) and working experience with the language, Rust is then quite natural. To first approximation, Rust basically makes lifetime management/ownership semantics that would be "good practice" in C into mandatory parts of the type system.
reply
rafterydj
1 hour ago
[-]
I agree - I was mostly trying to think of an example against OP's rather facetious attitude towards the time and effort required to maintain engineering performance.

In my experience, a lot of the Rust fighting with the borrow checker is really just enforcing better quality code I should've been writing anyway.

reply
SoftTalker
1 hour ago
[-]
If all you got out of a Computer Science undergrad program was "learning C" you were severely shortchanged. An 8-week bootcamp could have done that.
reply
rafterydj
1 hour ago
[-]
Point still stands. You're going to take up the mantle for suggesting a computer science degree from 2000 completely qualifies someone for work in 2026? No further education needed?
reply
oblio
3 hours ago
[-]
If you include consulting that could easily be 10 companies a year...
reply
lsaferite
3 hours ago
[-]
Why would a company you are consulting for invest in training you up exactly? They are paying a consultant with the expectation that they are bringing the knowledge.
reply
21asdffdsa12
3 hours ago
[-]
Eh, consultants are brought in not for the knowledge or advice! Management already knows what todo and where to go- they just want somebody external sanctify the decision!
reply
tasuki
3 hours ago
[-]
Could easily be, yes. And they'd be right not to invest in OP's skills.

(To explicitly state the obvious: I'm not saying OP's a bad person for doing this, just saying the employers were right not to invest in them...)

reply
ndriscoll
4 hours ago
[-]
What exactly do you have in mind? The large companies I've worked at had book subscriptions, internal training courses, and would pay for school. Personally I don't see the point of any of it. For software engineering, the info you need is all online for free. You can go download e.g. graduate level CS courses on youtube. MIT OCW has been around for almost a quarter century now. IME no one's going to stop you from spending a couple hours a week of work time watching lectures (at least if you're fulltime). Now at least at my company, we have unlimited use of codex, which you can ask for help explaining things to you. I also don't really see how attending conferences relates to skill improvement. Meanwhile, I've been explicitly told by managers that spending half my time mentoring people sounds reasonable.

I can't understand what people are looking for when they talk about lack of investment into training for engineers. It's not the kind of job where someone can train you. It's like an executive complaining they aren't trained. You're the one who's supposed to be coming up with answers and making decisions. You need to spend time on self-motivated learning/discovering how to better do your work. Every company I've been at big or small assumes that's part of the job.

reply
adrianN
40 minutes ago
[-]
Putting people on projects they’re only partly qualified for, ideally with mentoring, and letting them learn even though it takes longer than having the mentor do it by themselves. Allowing people to fail and try again without risking their ratings or their career.

Book subscriptions and conference travel are quite cheap in comparison.

reply
PurpleRamen
2 hours ago
[-]
> For software engineering, the info you need is all online for free.

Guided learning with instant feedback can be much more efficient than just consuming and tinkering on your own. Depends on the topic, the teacher and situation of course. The quality of available material is also all over the place, and not every topic has enough material, or anything at all.

reply
ndriscoll
2 hours ago
[-]
For foundational knowledge, there's been high quality information for free from MIT, Harvard, Stanford, Yale, etc. out there for years. Just look there first. If you're beyond that, you're beyond the canon that you can "learn" and closer to needing to follow/participate in SOTA R&D. And if you need a more structured environment, that's why people go to school. Engineering jobs expect you're at the level of someone who's completed undergrad, minimum. Part of an undergrad degree is getting used to seeking out resources yourself and learning from them instead of having a teacher spoon-feed it.

Again I just don't have any idea of what training people expect. The entire job is basically "we might have some idea of what we want to do, but no one here knows the details. Go figure it out."

What kind of guided learning would you want? How to solve problems? That's what 16 years of school was for!

reply
mixmastamyk
1 hour ago
[-]
Often doesn’t matter. Fancy degree gets an interview in this job market. Not, “I read a bunch for free.”

The explosion of stacks means it’s hard to keep everything in your head at once. Lookup is routine but will sink you as a candidate.

Personally not great under the gun in adversarial interviews, so my extensive self learning is not well highlighted.

reply
kjksf
2 hours ago
[-]
What is your expectation, exactly?

In US you go to college for 4-5 years and pay $50k per year. Or more.

You pay to learn. A lot of money, a lot of time.

Then you get a job, where the idea is that you get paid for doing work and you expect the employer to do what?

You seem to expect that not only you won't be doing the things you're being paid to do but the employer will pay for your education on company's time.

How many weeks per year of time off do you expect to get from a company?

You'll either say a reasonable number, like 1 or 2, which is insignificant to the time you supposedly spent learnings (5 years). You just spend 250 weeks supposedly learning but 1 or 2 weeks a year is supposed to make a difference?

Or you'll say unreasonable number (anything above 2 weeks) because employment is not free education.

reply
PurpleRamen
3 hours ago
[-]
Care to explain a bit more?

With 35 companies, that would be around 1-2 years per company on average if you are retired or near retirement. I doubt any company is seriously investing in a worker who would likely be gone the next year. Getting lip service seems already good deal at that point.

reply
Supermancho
57 minutes ago
[-]
> I doubt any company is seriously investing in a worker who would likely be gone the next year.

There is a mismatch between how you would expect industry to work and what my last 30 years has taught me.

> With 35 companies, that would be around 1-2 years per company on average if you are retired or near retirement.

I have been at 4 companies for around 2 years or more. The rest of the positions were either contract or startup or contract-to-hire. The vast majority of engineers seem to settle in and suffer at terrible companies, rather than make moves to better jobs. They also tend to settle at whatever they are assigned and grow their skillsets by their employer's needs, rather than on their own.

Over the last 2 decades, if you stayed somewhere for over 2 years, you better have added concrete skills to your resume and have increased your compensation by over 10%. If that's not on track, look for another job, imo.

Contract-to-hire has been very popular. ie JPMC, credit, medical, adtech, games, big retail, subcontractor shops, to startups (4 of which were acquired). All initiatives to progress the careers of developers is applied more or less company wide because the line between contract-to-hire and fulltime is considered an engineering issue if there is more than hub. If you are a sole contributor, on some satellite project or still considered in training, you might not participate due to scheduling that had already been arranged, but the idea that contractors are excluded is more a possibility than a certainty. Most of the initiatives are little more than maybe someone talking with you every quarter, anyway.

> Getting lip service seems already good deal at that point.

It's strange that people are assuming engineers are treated special because of a resume that nobody looks at after an offer is made - having conducted hundreds of interviews. This must be a very rare thing some people may do.

reply
pc86
2 hours ago
[-]
I mean the comment says "contract" right there; you can easily be on a contract with multiple companies simultaneously. When I was freelancing full-time ca. 2010-2013 or so I often had 5-6 active contracts running simultaneously. I probably worked for 15-20 different companies total in that 3-4 year span.
reply
PurpleRamen
2 hours ago
[-]
Yes, likely, but make even less sense, as you can't except support for education as a freelancer. I mean a freelancers whole purpose is to sell skill and be gone when the job is finished. You are from the beginning just an expendable tool they don't want to polish outside the scope of the job.
reply
threetonesun
3 hours ago
[-]
These two statements go hand in hand though. While I do believe companies could take the altruistic take of training people whether or not they stay, and some places do, they're certainly not going to make the effort for someone who has clear markers of being someone who will leave anyway.
reply
Supermancho
44 minutes ago
[-]
That's not how these initiatives are executed, unless the shop is very small. In which case, there's no concrete training offered anyway. If it's large, they don't want to allocate a lot of budget rather than starting a new hiring round. I would say the lack of in-job developer training (or resourcing) is due to multiple factors that results in a consistency rather than specifically targeting individuals.

It's not like I don't speak with ex-coworkers or run into them at times - eg one guy I taught Java to (at a position where java wasn't required except for a tiny tool), is the team lead at blizzard now. If I was made a pariah, I would hear about it over the years.

reply
bdangubic
4 hours ago
[-]
This percentage is probably right on the money!
reply
aduwah
4 hours ago
[-]
Hard same over 20 years
reply
tonyedgecombe
4 hours ago
[-]
Every company I worked for didn’t give a shit about my skills. They just wanted to solve the problem in front of them and if they couldn’t then they would hire someone in with the right skills. Improving my skills was seen as a risk as I might leave.
reply
catlifeonmars
4 hours ago
[-]
I’ve had both experiences, sometimes at the exact same company.
reply
Waterluvian
4 hours ago
[-]
That’s been my experience, too. But now I get a sort of, “I dunno. Maybe don’t use AI on Fridays?”

There doesn’t seem to be a plan for maintaining that culture.

reply
jasomill
3 hours ago
[-]
Given the rest of the paragraph, I believe the parent is trying to say that merely improving developer skills is not valuable to the company, not that improving developer skills cannot provide value in terms of improved work product, morale, retention, etc.
reply
kajaktum
3 hours ago
[-]
You must be lucky then.
reply
simonw
2 hours ago
[-]
Realizing now that I've been both lucky and selective - I've always picked the kind of employers where this culture is baked in.
reply
01284a7e
4 hours ago
[-]
The opposite is true in my case - though 1 organization that had a small budget for things like AWS certs. I remember almost everyone who would get those certificates would never really learn anything from it either. They would just take the exams.
reply
KronisLV
2 hours ago
[-]
> Improving developer skills is not valuable to your company. They don't tell a customer how many person-hours of engineering talent improvement their contract is responsible for. They just want a solved problem.

Doesn't credentialism kinda throw a spanner in that - where it's not enough to have people with a good track record of solving issues, but then someone along the way says "Yeah, we'd also like the devs who'll work on the project to have Java certs." (I've done those certs, they're orthogonal to one's ability to produce good software)

Might just be govt. projects or particular orgs where such requirements are drawn up by dinosaurs, go figure (as much as I'd love software development to be "real" engineering with best practices spanning decades, it's still the Wild West in many respects). Then again, the same thing more or less applies to security, a lot of it seems like posturing and checklists (how some years back the status quo was that you'll change your password every 30-90 days because IT said so) instead of the stuff that actually matters.

Not to detract from the point too much, but I've very much seen people not care about solving problems and shipping fast as stuff like that, or covering their own asses by paying for Oracle support or whatever (even when it gets in the way of actually shipping, like ADF and WebLogic and the horror that is JDeveloper).

But yeah, I think many companies out there don't care that much about the individual growth of their employees that much, unless they have the ability to actually look further into the future - which most don't, given how they prefer not to train junior devs into mid/senior ones over years.

reply
lopsotronic
54 minutes ago
[-]
Pour yourself a drink, as I have a longish story that might be a useful metaphor.

Back in the day, there were more or less two consumer flight sims: MS Flight Simulator and XPlane. MSFS was and has always been the much prettier one, much easier to work with; xplane is kludgy, very old-school *NIX, and chonky in terms of resource usage. I was doing some work integrating flight systems data (FDAU/FDR outputs) into a cheaper flight re-creation tool, since the aircraft OEM's tool cost more than my annual salary. Hmm, actually, ten years of my salary.

So why use xplane at all, then?

The difference was that MSFS flight dynamics was driven from a model using table-based lookup that reproduced performance characteristics for a given airframe, whereas xplane (as you might be able to tell from the company name, Laminar Research) does fluid and gas simulation over the actual skin of the airframe, and then does the physics for the forces and masses and such.

I caught some flack for going with xplane: "Why not MSFS!? It's so much prettier!"

Unless the airframe is in a state that is near-equivalent with tabular lookup model, the actual flight is not going to be actually re-created. A plane in distress is very often in a boundary state- at best. OR you might be flying a plane that doesn't really have a model, like, say, a brand new planform (like the company was trying to develop). Without the aerodynamic fundamentals, the further away you get from the model represented by the tabular lookups, the greater the risk gets.

And how does this relate?

Those fundamentals- aerodynamic or mathematical or electrical- will be able to deal with a much broader range than models trained on existing data, regardless of whether or not they are LLMs or tabular lookups. If we rely on LLMs for aerodynamics, for chemistry, for electrical engineering, we are setting ourselves up for something like the 2008 Econopalypse except now it affects ALL the physical sciences; a Black Swan event that breaks reality.

I am genuinely worried we're working outselves into just such an event, where the fundamentals are all but forgotten, and a new phenomenon simply breaks the nuts and bolts of the applied sciences.

As for my xplane selection, it helped in other ways. Because often the FDR data is just plain wrong, but with xplane you could actually tell, because a control surface sticking out one way, while the flight instruments say another, lights up a "YOU GOT PROBLEMS" light in the cockpit as the aircraft inexplicably lurches to the right.

reply
SpaceNoodled
44 minutes ago
[-]
Ah, but it's no longer "inexplicably!"
reply
v3xro
3 hours ago
[-]
> I think I'm mostly just mourning the fact that I got to do my hobby as a career for the past 15 years, but that’s ending. I can still code at home.

It could hardly have been a hobby if people were willing to pay you for it (and good rates too)?

I will rephrase it like this - the market has shifted away from providing value to the customers of said companies to pumping itself instead and it does not need to employ people for that. Simple as.

reply
coldtea
3 hours ago
[-]
>Improving developer skills is not valuable to your company

What's valuable to a company is not necessarily what's valuable to the customers or even more so, to a civilization at large.

reply
TomasBM
1 hour ago
[-]
I agree with the sentiment, but I think the problem is much wider.

Managers at companies are just doing what they've optimized their careers for: maintaining some edge over some competition, at some cost. What is pure FOMO to you or me, is good strategy to anyone trying to win [1]. In other words, FOMO was always the strategy.

This self-reinforcing loop is also not going away. There hasn't been any real evidence that any part of knowledge work, including coding, cannot be automated [2]. Even if human-level quality or cost-effectiveness takes 10 more years, all tasks are functionally solved or about to be. I don't like it, but it's true.

The big problem is that the people who are removed from this loop, who have the time to understand its effects and the power to make changes, are doing fuck-all.

So, whether the loop stops for a while or speeds up even more, we're fucked until we figure out how to detach full-time employment from survival.

[1] I believe this is called meta in PvP games; even if you want to subvert the meta, you gotta know it well first.

[2] Although it could just be my impression, and I'd be happy to be proven otherwise.

reply
ModernMech
1 hour ago
[-]
The evidence that software development cannot be automated is we already tried to do it in the 90s with OOP, UML, and outsourcing. It didn’t work out for the same reasons vibe coding isn’t working out — because building the system is the same as specifying it, and that is a creative iterative process.

We are at the point where sure ai can write code, but we could always do that; lack of code writing ability was not what killed the OOP automation efforts. There was plenty ability to code back then as well. The distinction of whether it’s an offshore team in India or Claude writing the code doesn’t change things as far as the larger picture of building the software.

reply
catlifeonmars
4 hours ago
[-]
Maybe I’m just getting extremely lucky, but I don’t use AI to code at work and I’m still keeping up with my peers who are all Clauded up. I do a lot of green field network appliance design and implementation and have not felt really felt the pressure in that space.

I do use Claude code at home maybe a couple hours a week, mostly for code base exploration. Still haven’t figured out how to fully vibe code: the generated code just annoys me and the agents are too chatty. (Insert old man shaking fist at cloud).

reply
lioeters
2 hours ago
[-]
We're witnessing a divergence between Coders and Clauders, with the latter dominating the market at a lower cost of labor + subscription fee to the almighty AI providers. Coders may be called in, hopefully with better renumeration, to review and debug the massive amount of code being generated. Either that or they will also be replaced by specially trained/prompted language models doing the review.
reply
Izkata
44 minutes ago
[-]
> + subscription

With how much some people spend on tokens that they've shared on here, and concerns about raising prices, I've kind of been wondering if we're actually heading to a point where seniors who don't use AI are going to be cheaper than juniors who do.

reply
Bridged7756
2 hours ago
[-]
In the future Claude will keep a tight ship on dissenters. If your monthly quota doesn't exceed the 10k worth of tokens your employer will be notified and you will be flagged as a "dissenter". Your lease will be cancelled, because who would trust someone ignorant enough to not use LLMs in their daily life, and you'll be vetoed from the field for life, for clanker companies will proclaim that anyone who doesn't use LLM-assisted coding should be culled and so they'll run a tight ship.

And executives will get millions in bonuses for figuring it out, and the remaining programmers, probably one or two, will raise their necks over who's the best prompter and how everyone else was dumber than them for not figuring it out.

reply
ej88
2 hours ago
[-]
ai skeptic fanfic evolves in fascinating ways every day
reply
catlifeonmars
2 hours ago
[-]
Take it a step further: AI generated AI skeptic fanfic :D
reply
bigstrat2003
1 hour ago
[-]
Yeah, the AI productivity gains are a myth in my experience.
reply
jmmv
3 hours ago
[-]
> the generated code just annoys me and the agents are too chatty

I’ve eyerolled way less with Codex CLI and the GPT models than with Claude.

reply
catlifeonmars
1 hour ago
[-]
I haven’t spent much time with Codex+GPT, will definitely give it another look
reply
clvx
3 hours ago
[-]
There's a catch. Do not break customer trust. Many people are just tinkering with solving the problem but the indirect effects have not been tackled either by the tool, processes or just some human thinking.
reply
stingraycharles
4 hours ago
[-]
> Improving developer skills is not valuable to your company.

Yet every company does it, except the worst sweatshops.

reply
bluecheese452
2 hours ago
[-]
What about a company with high security reqs that do bot alloellms? Like gov type work.
reply
titzer
4 hours ago
[-]
The irony is that the vast deskilling that's happening because of this means that most "software engineers" will become incapable of understanding, let alone fixing or even building new versions of the systems that they are utterly dependent on.

There should be thousands or tens of thousands people worldwide that can build the operating systems, virtual machines, libraries, containers, and applications that AI is built on. But the number will dwindle and we'll ironically be unable to build what our ancestors did, utterly dependent on the AI artifacts to do it for us.

God I hope it doesn't all crash at once.

reply
tuvang
4 hours ago
[-]
There is a deadly game of chicken going on. Junior recruiting already stopped for the most part. Only way this doesn’t end in a catastrophe is if AI becomes genuinely as good as the most skilled developers before we run out of them. Which I doubt very much but don’t find completely impossible.
reply
theshrike79
4 hours ago
[-]
And the irony is that AI usage should make onboarding juniors easier.

Before it was "hey $senior_programmer where's the $thing defined in this project?", which either required a dedicated person onboarding or someone's flow was interrupted - an expected cost of bringing up juniors.

Now a properly configured AI Agent can answer that question in 60 seconds, unblocking the Junior to work on something.

And no, it doesn't mean Juniors or anyone else get to make 10k line PRs of code they haven't read nor understand. That's a very different issue that can be solved by slapping people over the head.

reply
bragr
3 hours ago
[-]
The problem is that juniors given access to AI don't seem to learn as much. AI just gives them fish over and over instead of learning how to fish.
reply
andrekandre
2 hours ago
[-]

  > The problem is that juniors given access to AI don't seem to learn as much.
i see this first-hand; they don't even know what they don't know so they circle over and over with ai leading them down rabbit holes and code that breaks in weird ways they cant even guess how to fix... stuff that if you were a real programmer you would have wrote in a few minutes let alone hours or days...
reply
theshrike79
2 hours ago
[-]
Yea, giving people a blank Claude with no setup will get you that.

What you could do is encourage (or force with IT's assistance) them to use a prompt (or hook or whatever) that refuses to do work for them, but instead telling them where to change and what without actually doing the work.

reply
flir
4 hours ago
[-]
Or if code quality stops mattering, in a kind of "ok, the old codebase is irretrievably sphagettified. Lets just have the chatbot extract all the requirements from it, and build a clean room version" kind of way. It's also not impossible we go that route.
reply
turlockmike
3 hours ago
[-]
How many kernel devs does the world need? A dozen or two?

It will be the same with software. AI will be writing and consuming most software. We will be utilizing experiences built on top of that, probably generated in real time for hyper personalization. Every app on your phone will be replaced by one app. (Except maybe games, at least for a short while longer).

Everyone's treating writing code as this reverent thing. No one wrote code 100 years ago. Very few today write assembly. It will become lost because the economic neccesity is gone.

It's the end of an era, but also the beginning of a new one. Building agentic systems is really hard, a hard enough problem that we need a ton of people building those systems. AI hardware devices have barely been registered, we need engineers who can build and integrate all sorts of systems.

Engineering as a discipline will be the last job to be automated, since who do you think is going to build all the worlds automation?

reply
rafterydj
1 hour ago
[-]
How wildly dismissive of the foundation of the X$ billion dollar software industry. You think humans just stumbled into writing code by accident or something?

How does building agentic systems, a "really hard" problem, not just end up a "regular code" problem? Because that is what it is. A distributed systems problem with non-deterministic run lengths. How do you switch agent contexts? Similar to how you solve regular program context switching. How do you search tool capabilities and verify them? How do you effectively manage scheduled tasks?

Oh, look, you've just invented the operating system kernel. Suddenly, those 'dozen or two' experts don't seem so archaic after all!

reply
vdqtp3
2 hours ago
[-]
> How many kernel devs does the world need? A dozen or two?

You're low by several orders of magnitude. "The 2025 development cycle saw 2,134 developers contribute to [Linux] kernel 6.18" [1]

[1] https://commandlinux.com/statistics/linux-kernel-contributor...

reply
oblio
42 minutes ago
[-]
Does it even make sense to build everything on top of machines that are 70% reliable? The sheer orchestration and validation overhead at scale risks being more expensive than just keeping most software engineers and having them manage a few AI agents.

Also, 200 years ago we didn't have bike mechanics. Car mechanics. Boat mechanics. Plumbers. Electricians. Not all new professions fade away.

reply
qsera
3 hours ago
[-]
Trust me. All those people do it for the love of doing it, so I don't think they will outsource the jobs to some automation....

I have been coding long before internet and before there were huge demand for software devs..and I would be coding even after there is no demand for the same.

reply
nicksergeant
4 hours ago
[-]
I feel I've upskilled in so many directions (not just "ability to prompt LLMs") since going all in on LLM coding. So many tools, techniques, systems, and new areas of research I'd never have had the time to fully learn in the past.

I have a hard time believing any tenured developer is not actually learning things when using LLMs to build. They make interesting choices that are repeatable (new CLIs I didn't even know existed, writing scripts to churn through tricky data, using specific languages for specific tasks like Go for concurrently working through large numerous tasks, etc.)

Anyone not learning things via LLM coding right now either doesn't care at all about the underlying code/systems, or they had no foundational knowledge or interest in programming to begin with (which is also a valid way to use these tools, but they don't work very well without guidance for too long [yet]).

reply
titzer
3 hours ago
[-]
Learning calculus by watching the professor solve integrals on the board for an hour doesn't result in the same level and depth of understanding as working through homeworks every week for a semester. If you ran off to your TA to solve every problem in your homework, you just won't learn calculus.

I've vibe coded plenty. I mostly don't look at the crap coming out. Don't want to. When I do I absorb a tiny bit, but not enough to recreate the thing from scratch. I might have a modicum more surface-level knowledge, but I don't have deep understanding and I don't have skills. To the extent that I've fixed or tweaked AI-generated code, it's not been to restructure, rearchitecture, or refactor. If this is all I did day in and day out, my entire skillset would atrophy.

reply
nicksergeant
3 hours ago
[-]
"I mostly don't look at the crap coming out."

This is pretty much my point. I use LLMs to code _and_ to learn. I read everything that comes out. Half of it is wrong or incomplete. The other half saved me a bunch of time and taught me things.

reply
Waterluvian
4 hours ago
[-]
I think there's a considerable difference in its ability to help with breadth vs. depth of expertise.
reply
tripledry
3 hours ago
[-]
For me both are true at the same time.

I vividly remember understanding how calculus works after watching some 3blue1brown videos on youtube, but once I looked at some exercises I quickly realized I was not able to solve them.

Similar thing happens with LLMs and programming. Sure I understand the code but I'm not intimately familiar with it like if I programmed it "old school".

So yes, I do learn more but I can't shake the feeling that there is some dunning kruger effect going on. In essence I think that "banging my head against the wall" while learning is a key part of the learning process. Or maybe it's just me :D

reply
mwigdahl
3 hours ago
[-]
It's not just you. I feel the same thing, and I saw it in practice helping my son study for a chemistry test just last night. He had worked through a bunch of problems by following the steps in his notes and got the right answers, but couldn't solve them without the notes because his comprehension of why he was taking all the steps wasn't solid.

Once we addressed that, he did great solo. Working the mechanics of the problems with the notes helped, but it was getting independent understanding of the reason for each step that put everything together for him.

reply
zozbot234
4 hours ago
[-]
What do you mean by "LLM coding"? That's not a very meaningful term, it covers everything from 100% vibe coded projects, to using the LLM to gradually flesh out a careful initial design and then verifying that the implementation is done correctly at every step with meticulous human review and checking.
reply
nicksergeant
3 hours ago
[-]
The latter.
reply
agentultra
3 hours ago
[-]
> Anyone not learning things via LLM coding right now either doesn't care at all about the underlying code/systems

How many bytes is a pointer in C? How many bytes is a shared pointer in C++? What does sysctl do? What about fsync?

What is a mutex lock? How is it different from a spin lock?

You want to find the n nearest points to a given point on a 2-D Cartesian plane. Could you write the code to solve that on your own?

Can you answer any of these questions without searching for the answer?

I don't use LLMs and I learn things fine. Always have. For several decades. I care deeply about the underlying code and systems. It annoys me when people say they do and they cannot even understand how the computer works. I'm fine with people having domain-specific knowledge of programming: maybe you've only been interested in web development and scripting DOM elements. But don't pretend that your expertise in that area means you understand how to write an operating system.

Or worse: that it prevents you from learning how to write an operating system.

You can do that without an LLM. There's no royal road. You have to understand the theory, read the books, read the code, write the code, make mistakes, fix mistakes, read papers, talk to other people with more experience than you... and just write code. And rewrite it. And do it all again.

I find the opposite is true: those who use LLM coding exclusively never enjoyed programming to begin with, only learned as much as they needed to, and want the end results.

reply
nicksergeant
2 hours ago
[-]
Agree with pretty much everything you wrote here, I guess with the addendum that LLMs can be a part of the learning experience you're describing. It's as easy as telling the LLM "don't write a single line of code nor command, I want to do everything, your goal is to help me understand what we're doing here."

There are always going to be people who just want the end result. The only difference now is that LLM tools allow them to get much closer to the end result than they previously were able to. And on the other side, there are always going to be people who want to _understand_ what's happening, and LLMs can help accelerate that. I use LLMs as a personalized guide to learning new things.

reply
tpdly
59 minutes ago
[-]
I know it sounds extreme to dismiss that workflow, but I don't think people are talking enough about the subtle psychological consequences of LLM writing for this kind of thing.

In the same way that googling for an SEO article's superficial answer ends up meaning you never really bother to memorize it, "ask chat" seems to lead to never really bothering to think hard about it.

Of course I google things, but maybe I should be trying to learn in a way that minimizes the need. Maybe its important to learn how to learn in way that minimizes exposure to sycophantic average-blog-speak.

reply
agentultra
1 hour ago
[-]
Best of luck in your journey!

To those reading this thread though, be wary of the answers LLMs generate: they're plausible sounding and the LLM's are designed to be sycophants. Be wary, double check their answers to your queries against credible sources.

And read the source!

reply
anovikov
4 hours ago
[-]
This. I never had patience to figure how to build a from-scratch iOS app because it required too much boilerplate work. Now i do, and i got to enjoy Swift as a language, and learned a lot of iOS (and Mac) APIs.
reply
JustResign
3 hours ago
[-]
But it isn't "from scratch", is it? It's "from Claude".
reply
nicksergeant
2 hours ago
[-]
If you build a house from scratch but you didn't mill the lumber, did you build it from scratch?

If you make a pizza from scratch but you used canned sauce was it from scratch? What if you used store bought dough? What if you made the sauce and the dough but you didn't grow the tomato?

reply
hnthrow0287345
4 hours ago
[-]
>But the number will dwindle and we'll ironically be unable to build what our ancestors did, utterly dependent on the AI artifacts to do it for us.

That's only a brief moment in time. We learned it once, we can learn it again if we have to. People will tinker with those things as hobbies and they'll broadcast that out too. Worst case we hobble along until we get better at it. And if we have to hobble along and it's important, someone's going to be paying well for learning all of that stuff from zero, so the motivation will be there.

Why do people worry about a potential, temporary loss of skill?

reply
doctorwho42
4 hours ago
[-]
Because they may have studied history... There are countless examples of eras of lost technology due to a stumble in society. Where those societies were never able to recover the lost "secrets" of the past. Ultimately, yes, humans can rediscover/reinvent how to do things we know are possible. But it is a very real and understandable concern that we could build a society that slowly crumbles without the ability to relearn the way to maintain the systems it relies upon, fast enough to stop it from continued degradation.

Like, yeah, you have the resources right now to boot strap your knowledge of most coding languages. But that is predicated on so many previous skills learn through out your life, adulthood and childhood. Many of which we take for granted. And ultimately AI/LLM's aren't just affecting developers, they are infecting all strata of education. So it is quite possible that we build a society that is entirely dependent on these LLM's to function, because we have offloaded the knowledge from societies collective mind... And getting it back is not as simple as sitting down with a book.

reply
hnthrow0287345
3 hours ago
[-]
And we're still here right? We have more books and knowledge and capabilities than ever. Despite theoretically losing knowledge along the way, we're okay (mostly).

Society can replace the systems it relies on. The replacement might not be the best, but it'll probably handle things until we can reinvent a newer, better system. It probably won't be easy, but you can't convince me that humanity suddenly cannot adapt and fix problems right in front of them. How long does history have us doing that?

These are extraordinary claims that all of society will just become dumb and not be able to do any of this. History is also littered with people fretting about the next generation not being smart enough or whatever, and those fears rhyme pretty closely with what we're talking about here.

reply
Tomis02
2 hours ago
[-]
You could have lived 200 years. But instead, people decided they'd rather invest in crypto or LLMs instead.

Maybe humans will still be here in a century. But you won't be. It didn't have to be this way.

reply
bit-anarchist
2 hours ago
[-]
I don't see how they are actually exclusive in the long-term. Crypto investment isn't that big, and LLMs, or AI in general, may provide support for better treatments, thus possibly allowing people to reliably live onto 200 years.
reply
Waterluvian
4 hours ago
[-]
I imagine it being a "does anybody know COBOL?!" but much sooner than sixty years rom now.
reply
RhysU
4 hours ago
[-]
COBOL also came to mind.

The COBOL thing seems to be working out just fine last I heard. Today a small number of people get paid well to know COBOL's depths and legacy platforms/software. The world moved on, where possible, to lower cost labor and tools.

Arguably, that outcome was the right creative destruction. Market economics doesn't long-term incentivize any other outcomes. We'll see the arc of COBOL play out again with LLM coding.

reply
jerf
3 hours ago
[-]
I've been waiting for the article talking about how AI is affecting COBOL. Preferably with quotes from actual COBOL programmers since I can already theorize as well as the next guy but I'm interested in the reports from the field.

While LLMs have become pretty good at generating code, I think some of their other capabilities are still undersold and poorly understood, and one of them is that they are very good at porting. AI may offer the way out for porting COBOL finally.

You definitely can't just blindly point it at one code base and tell it to convert to another. The LLMs do "blur" the code, I find, just sort of deciding that maybe this little clause wasn't important and dropping it. (Though in some cases I've encountered this, I sometimes understand where it is coming from, when the old code was twisty and full of indirection I often as a human have a hard time being sure what is and is not used just by reading the code too...) But the process is still way, way faster than the old days of typing the new code in one line at a time by staring at the old code. It's definitely way cheaper to port a code base into a new language in 2026 than it was in 2020. In 2020 it was so expensive it was almost always not even an option. I think a lot of people have not caught up with the cost reductions in such porting actions now, and are not correctly calculating that into their costs.

It is easier than ever to get out of a language that has some fundamental issue that is hard to overcome (performance, general lack of capability like COBOL) and into something more modern that doesn't have that flaw.

reply
jlokier
1 hour ago
[-]
I know it's just anecdotal, but I looked for COBOL salaries a couple of years ago, curious about this "paid well".

The salaries were ok but not good for COBOL.

Here's an anecdotal Reddit thread about it. https://www.reddit.com/r/developpeurs/comments/1ixfpsx/le_sa...

reply
FpUser
4 hours ago
[-]
>"That's only a brief moment in time. We learned it once, we can learn it again if we have to. "

Yes we can but there is a big problem here. We will "learn it again" after something breaks. And the way the world currently functions there might not be a time to react. It is like growing food on industrial scale. We have slowly learned it over the time. If it breaks now with the knowledge gone and we have to learn it again it will end the civilization as we know it.

reply
hnthrow0287345
4 hours ago
[-]
>It is like growing food on industrial scale.

How many people do you think know how to do that today? It's in the millions (probably 10s to 100s), scattered all across the globe because we all need to eat. Not to mention all of the publications on the topic in many different languages. The only credible case for everyone forgetting how to farm is nuclear doomsday and at that point we'll all be dead anyway.

>If it breaks now with the knowledge gone and we have to learn it again it will end the civilization as we know it.

I don't think there is a single piece of technology that is so critical to civilization that everyone alive easily forgets how to do it and there is also zero documentation on how it works.

These vague doomsday scenarios around losing knowledge and crashing civilization just have zero plausibility to me.

reply
kingkawn
4 hours ago
[-]
If a catastrophic failure occurs we will have to return to first principles and re-derive the solutions. Not so bad, probably enlivening even to get to spin up the mind again after a break.
reply
cdetrio
3 hours ago
[-]
We found 500 zero-days in ten year old widely used open-source projects. Was that not a demonstration of the catastrophic failure of human debugging capability?
reply
kingkawn
1 hour ago
[-]
And yet the world keeps turning we’ll figure it out
reply
anon291
3 hours ago
[-]
I mean there should be. But there's not. Despite the millions of CS grads produced many people could not reasonably be expected to produce many 'standard' parts of a software stack
reply
qsera
4 hours ago
[-]
> I got to do my hobby as a career for the past 15 years, but that’s ending.

Frankly I don't think so. The AI using LLMs is the perpetual motion mechanism scam of our time. But it is cloaked in unimaginable complexity, and thus it is the perfect scam. But even the most elaborately hidden power source in a perpetual motion machine cannot fool nature and should come to a complete stop as it runs out.

reply
Waterluvian
4 hours ago
[-]
I love the perpetual motion machine / thermodynamics analogy.

It kind of feels like companies are being fooled into outsourcing/offshoring their jr. developer level work. Then the companies depend on it because operational inertia is powerful, and will pay as the price keeps going up to cover the perpetual motion lie. Then they look back and realize they're just paying Microsoft for 20 jr. developers but are getting zero benefit from in-house skill development.

reply
colechristensen
4 hours ago
[-]
This is silly. I can build products in a weekend that would take me a year by myself. I am still necessary 1% of the time for debug, design, and direction and those of not at all a shallow skill. I have some graduate algebra texts on the way my math friend is guiding me through because I have found a publishable result and need to shore up my background before writing the paper...

It's not perpetual motion, it's very real capability, you just have to be able to learn how to use it.

reply
qsera
3 hours ago
[-]
No one is saying that it cannot do what you say now.

What I am saying is that once the high quality training data runs out, it will drop in its capabilities pretty fast. That is how I compare it to perpetual motion mechanism scams. In the case of a perpetual motion machine, it appear that it will continue to run indefinitely. That is analogous to the impression that you have now. You feel that this will go on and on for ever, and that is the scam you are falling for.

reply
WarmWash
3 hours ago
[-]
>What I am saying is that once the high quality training data runs out, it will drop in its capabilities pretty fast.

That's more a misunderstood study that over time turned into a confidently stated fact. Yes, the model collapses if you loop the output to the input. But no, that's not how it's done.

The reality is that all the labs are already using synthetic training data, and have been for at least a year now. It basically turned out to be a non-issue if you have robust monitoring and curation in place for the generated data.

reply
qsera
2 hours ago
[-]
>using synthetic training data

yea, look up how it is done.

It is exactly how a perpetual motion machine scam would project an appearance of working like using a generator to drive a motor, and the motor driving the generator..something that would obscure the fact that there is energy loss happening along the way....

reply
WarmWash
2 hours ago
[-]
I'm confused with the point you are trying to make, because they are using synthetic data, and the models are getting stronger.

There is no "conservation of fallacy" law (bad data must conserve it's level of bad), so I'm struggling to connect the dots on the analogy, unless I ignore the fact that training on synthetic data works, is being used, and the models are getting better.

reply
qsera
1 hour ago
[-]
If the training that did not use synthetic data failed to capture some aspect of the information contained, then using data synthesized from the original data could help to capture it, thus it could result in the models getting better.

But that is because the synthetic data helped the model capture what was already there in the training data.

But after all such information has been extracted, then it would not be possible to use synthetic data or anything that is derived from the original data to create "new" information for training....

reply
dgb23
1 hour ago
[-]
Better by which metrics?
reply
_aavaa_
3 hours ago
[-]
Why would the capabilities drop instead of stagnate?
reply
qsera
3 hours ago
[-]
Because technologies, programming languages, best practices, won't stay frozen. If LLMs cannot catch up with it, I think it can be considered as a drop in capability. No?
reply
coldtea
3 hours ago
[-]
Close, but no. What will happen is that "technologies, programming languages, best practices" will stay frozen because human innovation will drop, and the whole field will stagnate.
reply
californical
2 hours ago
[-]
This is the biggest fear! I don’t see an easy fix.

Will the developer of a new programming language be able to reach out to model companies to give a huge amount of training data, ensuring that the models are good at that new language? I don’t think a small team can write enough code, the models already struggle in medium-popularity languages that have years of history. They hallucinate lua functionality sometimes, for example, even though I’m sure there is lots of lua code out there.

So if most people use coding agents, we’re stuck with the current most popular languages because no new language will get past the barrier of having enough code that models can write it well, meaning nobody adopts the new language, etc.

Same thing with libraries and frameworks - technical decisions are already being made based on “is this popular enough that the agents can use it well?” Rather than a newer library that meets our needs perfectly but isn’t in the training data

reply
askafriend
4 hours ago
[-]
You can see their ego trying to protect itself.
reply
coldtea
3 hours ago
[-]
>This is silly. I can build products in a weekend that would take me a year by myself

Is the world any better for them existing? The decline of coding and sw engineering skills in humans from outsourcing the practice of it to AI is it worth it and sustainable long term?

reply
colechristensen
2 hours ago
[-]
>Is the world any better for them existing? The decline of coding and sw engineering skills in humans from outsourcing the practice of it to AI is it worth it and sustainable long term?

The world is going to be no worse than it was when humans transitioned from writing assembly to writing compilers for high level languages. Assembly is still necessary, but not that often. In the same way writing code is going to become less necessary as tools are going to be written in higher level language in standards and requirements documents instead of code most of the time, with more specific exact coding only occasionally.

Programmers were mostly solving the same plumbing problems over and over in secret because of "proprietary" needs to hide your code, but one million separate integrations of your billing backend with Stripe didn't really add to humanity. We're cutting out the boring middle drudgery and human effort is going to be freed up to work on the edges of human knowledge instead of tromping around in the middle.

reply
coldtea
1 hour ago
[-]
>The world is going to be no worse than it was when humans transitioned from writing assembly to writing compilers for high level languages

When I open some Electron apps I wish we stopped right about there.

reply
tpdly
4 hours ago
[-]
You're fooling yourself.

People yeating a (shitty) Github clone with Claude in a week apparently can't imagine it, but if you know the shit out of Rails, start with a good a boiler plate, and have a good git library, a solo dev can also build a (shitty) Github clone in a week. And they'll be able to take it somewhere, unlike the llm ratsnest that will require increasingly expensive tokens to (frustratingly) modify.

reply
mikkupikku
3 hours ago
[-]
You're fooling yourself. It's very easy to get demonstrably working results in an afternoon that would take weeks at least without coding agents. Demonstrably working, as in you can prove the code actually works by then putting it to use. I had a coding agent write an entire declarative GUI library for mpv userscripts, rendering all widgets with ASS subtitles, then proceeded to prove to my satisfaction that it does in fact work by using it to make a node editor for constructing ffmpeg filter graphs and an in-mpv nonlinear video editor. All of this is stuff I already knew how to do in practice, had intended to do one day for years now, but never bit the bullet because I knew it would turn into weeks of me pouring over auto-generated ASS doing things it was never intended to do to figure out why something is rendering subtly wrong. Fairly straightforward but a ton of bitch work. The LLM blasted through it like it was nothing. Fooling myself? The code works, I'm using it, you're fooling yourself.
reply
zozbot234
3 hours ago
[-]
> Demonstrably working, as in you can prove the code actually works by then putting it to use.

That's not how you prove that code works properly and isn't going to fail due to some obscure or unforessen corner case. You need actual proof that's driven by the code's overall structure. Humans do this at least informally when they code, AI's can't do that with any reliability, especially not for non-trivial projects (for reasons that are quite structural and hard to change) so most coding agents simply work their way iteratively to get their test results to pass. That's not a robust methodology.

reply
mikkupikku
1 hour ago
[-]
> That's not how you prove that code works properly

Yes it is. What do you expect, formal verification of a toy GUI library? Get real.

> and isn't going to fail due to some obscure or unforessen corner case.

That's called "a bug", they get fixed when they're found. This isn't aerospace software, failure is not only an option, it's an expected part of the process.

> You need actual proof that's driven by the code's overall structure.

I literally don't.

> Humans do this at least informally when they code, AI's can't do that with any reliability

Sounds like a borderline theological argument. Coding agents one-shot problems a lot more often than I ever did. Results are what matters, demonstrable results.

reply
coldtea
3 hours ago
[-]
>That's not how you prove that code works properly and isn't going to fail due to some obscure or unforessen corner case.

So? We didn't prove human code "isn't going to fail due to some obscure or unforessen corner case" either (aside the tiny niche of formal verification).

So from that aspect it's quite similar.

>so most coding agents simply work their way iteratively to get their test results to pass. That's not a robust methodology.

You seem to imply they do some sort of random iteration until the tests pass, which is not the case. Usually they can see the test failing, and describe the issue exactly in the way a human programmer would, then fix it.

reply
zozbot234
3 hours ago
[-]
> describe the issue exactly in the way a human programmer would

Human programmers don't usually hallucinate things out of thin air, AIs like to do that a whole lot. So no, they aren't working the exact same way.

reply
coldtea
3 hours ago
[-]
>Human programmers don't usually hallucinate things out of thin air

Oh, you wouldn't believe how much they do that too, or are unreliable in similar ways. Bullshiting, thinking they tested x when they didn't, misremembering things, confidently saying that X is the bottleneck and spending weeks refactoring without measuring (to turn out not to be), the list goes on.

>So no, they aren't working the exact same way.

However they work internally, most of the time, current agents (of say, last year and above) "describe the issue exactly in the way a human programmer would".

reply
qsera
2 hours ago
[-]
That is not hallucinating...

LLM hallucinating is not an edge case. It is how they generate output 100% time. Mainstream media only calls it "hallucination" when the output is wrong, but from the point of view of a LLM, it is working exactly it is supposed to....

reply
coldtea
2 hours ago
[-]
>LLM hallucinating is not an edge case. It is how they generate output 100% time

If enough of the time it matches reality -- which it does, it doesn't matter. Especially in a coding setup, where you can verify the results, have tests you wrote yourself, and the end goal is well defined.

And conversely, if a human is a bullshitter, or ignorant, or liar, or stupid, it doesn't matter if they end up with useless stuff "in a different way" than an LLM hallucinating. The end result regarding the low utility of his output is the same.

Besides, one theory of cognition (pre LLM even) is of the human brain as a prediction machine. In which case, it's not that different than an LLM in principle, even if the scope and design is better.

reply
bachmeier
3 hours ago
[-]
> Fairly straightforward but a ton of bitch work. The LLM blasted through it like it was nothing.

One might argue that this is a substitute for metaprogramming, not software developers.

reply
trollbridge
2 hours ago
[-]
It's interesting more people haven't talked about this. A lot of so-called agentic development is really just a very roundabout way to perform metaprogramming.

At my own firm, we generally have a rule we do almost everything through metaprogramming.

reply
colechristensen
2 hours ago
[-]
I also did a native implementation of git so I could use an S3 compatible data store, your rails guru can't do that.

Objectively, my GitHub clone is still shitty, BUT it got several ways github is shitty out of my way and allowed me to add several features I wanted, no small one of which was GitHub not owning my data.

I don't know the shit out of Rails and I don't want to, I know the shit out of other things and I want the tools I'm using to be better and Claude is making that happen.

It's a little odd the skepticism to the level that people keep telling me I'm delusional for being satisfied that I've created something useful for myself. The opposition to AI/LLMs seems to be growing into a weird morality cult trying to convince everybody else that they're leading unhappy immoral lives. I'm exaggerating but it's looking like things are going in that direction... and in my house, so to speak, here on HN there are factions. Like programming language zealots but worse.

reply
tpdly
1 hour ago
[-]
Hey I understand you've gotten something out of it. You hired a robot to 3d-print a mug that fits your hand. There's a place for that. You understand that it might poison you a little bit? You understand that this doesn't make ceramics irrelevant?

Hobby-project vibe coding is pretty cool (if I'm being honest, its fucking miraculous; this tech is wild) but isn't it clear that there's a problem with the linkedincels, the investors, the management that are all convinced this will remove say 50% of programming jobs? I understand these things have legitimate uses, but I'm at my wits end hearing about how deep understanding, craftsmanship, patience and hard work aren't "results oriented".

There's definitely zealotry developing against AI, but I suspect it is a proportional (if unhelpful) response to the hype machine. Is it really zealotry to insist on the value of your mind and your competence? These people saying you should never "hand write" your code-- how the fuck did the discourse move so much that this isn't a laughably stupid thing to say? "I'm a CEO, and if you aren't using consultants to make your decisions you've already lost"

reply
colechristensen
43 minutes ago
[-]
>isn't it clear that there's a problem with the linkedincels, the investors, the management that are all convinced this will remove say 50% of programming jobs

These people have always been doing this. Starting in the 90s it was outsourcing programming jobs, they were right then, they got more work for less money and you could have less expertise on staff farming out work somewhere else that was cheaper. You also got worse results sometimes. So it goes.

LLMs are making people more powerful and sucking a lot of income off to the people who provide them. Yup. It makes idiot shysters more powerful just the same as it makes experts more powerful.

People are acting like the software engineering industry is full of fine artistry building the finest bespoke tools instead of duct taping rocks to sticks. I'm sorry but there is a tremendous amount of crap out there by people who barely know what they're doing.

Yes new technology empowers idiots, but it also empowers smart people and if you use it well it'll lead to more quality. Yes you're going to have the same problems you had before of someone doing something cheaply competing with someone trying to be careful to build something well. There also will continue to be idiots spouting off about it.

Nothing changed but the tools got more powerful and people are whining complaining about this change this time ruining everything. Like they always have forever.

reply
bitmasher9
5 hours ago
[-]
Picking out my favorite idea out of many: we do need ways to stay mentally sharp in the age of AI. Writing and publishing is a good one. I also recommend stimulating human conversations and long-form reading.

More and more the bar is being lowered. Don’t fall to brain rot. Don’t quite quit. Stay active and engaged, and you’ll begin to stand out among your peers.

reply
cfiggers
4 hours ago
[-]
> we do need ways to stay mentally sharp in the age of AI.

Here's my advice: if there's someone around you who can teach you, learn from them. But if there isn't anyone around you who can teach you, find someone around you who can learn from you and mentor them. You'll actually grow more from the latter than from the former, if you can believe that.

I think there's a broad blindness in industry to the benefits of mentorship for the mentors. Mentoring has sharpened my thinking and pushed me to articulate why things are true in a way I never would have gone to the effort of otherwise.

If there are no juniors around to teach, seniors will forever be less senior than they might have been had they been getting reps at mentorship along the way.

reply
theshrike79
3 hours ago
[-]
A long-standing truth in martial arts circles has been that you can't advance beyond a certain belt before you teach classes.

It's purely because of the fact that if you can't teach something, you really don't understand it.

And the act of having to simplify and break down a skill to explain it to others improves your knowledge of it.

reply
efromvt
4 hours ago
[-]
I haven't heard this benefit for mentors clearly articulated before (probably just missed it), but definitely felt it - I guess it's a deeper version of how writing/other communication forces clarity/organization of thoughts because mentorship conversations are so focused on extracting the why as well as the what.
reply
johnathandos
1 hour ago
[-]
See one, do one, teach one.
reply
cfiggers
20 minutes ago
[-]
Yes—and the key is, you do not leave the category of "how to learn a thing" between steps 2 and 3.
reply
ramon156
5 hours ago
[-]
I can confidently say that, yes, reading helps a lot. My mental model has shifted a bit that words are cheap (printing -> writing -> typing -> generating) and that we should accept there is something like high quality text.

I haven't really been a reader, but I can definitely notice when a book/text is "hard". I'm currently reading the old testament, and I understand very little (even the oxford one that has a lot of annotations is hard for me). I like this, because its a measurement of what I don't know (if that makes sense).

reply
CoastalCoder
4 hours ago
[-]
For the first time in quite a while, I've started reading a challenging, non-computer book ("The New Testament in its World").

I'm trying to decide if my attention span has atrophied, or if I'm just more aware now of my ADD.

Either way, I'm hopeful that my attention span for this kind of reading will grow with practice.

reply
AnimalMuppet
4 hours ago
[-]
I too have noticed my attention span having atrophied. It was pre-AI, at least for me. Post-internet, though.
reply
rkomorn
4 hours ago
[-]
I think browser tabs and screen (the terminal multiplexer) did it for me.
reply
tayo42
4 hours ago
[-]
If you you haven't read a book in a while, I noticed it's like a thing you need to practice.
reply
haspok
3 hours ago
[-]
I tried reading Proust's In Search Of Lost Time some time ago, in which the first 10-20 pages are about a guy lying in his bed at night and observing his own thoughts (roughly). And I quickly realised how I was reading the words and even sentences, but couldn't grasp the meaning of them - I couldn't produce a "mental model" or image of what it was about. It was a very humbling experience.

I used to be an avid reader as a child, even as a teenager. That was a long time ago. I'm looking forward to that time when I will have the mental capacity to read long prose again.

reply
DiscourseFan
4 hours ago
[-]
There are many things the AI can't do.
reply
sodapopcan
4 hours ago
[-]
Or, you know, writing some code every day.
reply
cyanydeez
5 hours ago
[-]
I'm pretty sure all this AI is built on top of Silicon valley's technobabble of "permanent underclass" which seems to have zero introspection as to why we're just going to accept the feudal overlords of technology.

But besides that, it's interesting so many people are willing to tailor their entire workflow and product to indeterminate machines and business culture.

I recommend everyone stop using these infernal cloud devices and start with a nice local model that doesn't instantly give you everything, but is quite capabable of removing a select amount of drudgery that is rather relaxing. And as soon as you get too lazy to do enough specifying or real coding, it fucks up your dev environment and you slap yuorself a hundred times wondering why you ever trusted someone else to properly build your artifaces.

There's definitely some philosophy being edged into our spaces that need to be combatted.

reply
flir
5 hours ago
[-]
I'm pretty sure the -as-a-service stage is only temporary.

The local models are only going to get better, and the improvement curve has to top out eventually. Maybe the cloud models will still give you a few extra percentage points of performance, especially if they're based on data sets that aren't available to the public, but it won't make much difference on most tasks and the local models will have a lot of advantages too.

reply
cyanydeez
3 hours ago
[-]
It's definitely not temporary from POV the billionaires trying to carve out a worker-free lifestyle.
reply
EdgeNRoots
5 hours ago
[-]
I agree on the over-reliance part, but I don’t think it’s AI itself .It’s how people choose to use it.

Most people are outsourcing thinking instead of using it to go deeper. The tools aren’t the problem, the default behavior is.

reply
mday-edamame
4 hours ago
[-]
True, but the tools make the default behavior so tempting.

I have a friend who uses Google Maps to find places, then memorizes the route there and closes the app to navigate because he wants to build a better mental map of our city. Meanwhile, I just check the app every five seconds like a dummy, and my hippocampus stays small.

reply
draxil
4 hours ago
[-]
This is a good parallel. In the 90s when I learned to drive I was quite good at navigating. Now google maps is on a screen in my car telling me where to go whenever I drive beyond my most common routes.

Really all the research telling us about AI skills atrophy.. We should have guessed from previous experience.

reply
guzfip
4 hours ago
[-]
Old people my entire life have made fun of younger people for “not being able to read maps” or something.

But I’ve never seen anyone follow a GPS so religiously into so many obvious dead ends than elderly Uber drivers.

reply
qsera
4 hours ago
[-]
Your friend use google maps, while google maps uses you.
reply
guzfip
5 hours ago
[-]
> which seems to have zero introspection as to why we're just going to accept the feudal overlords of technology.

You’ve let them in and given them power in many aspects of your life without even a whimper of resistance. Of course you’ll accept them as your lords.

reply
keybored
4 hours ago
[-]
Do you want a Stairmaster with that elevator? Life is for living, ostensibly. This Inevitabilism drone choir[1] may be correct that it will take my current job and after that maybe there will nothing fruitful in that department left. But I can’t imagine a life situation where I’m both surviving and using thinking-with-my-brain as some retirement home pastime/ “brainrot”-preventer.

> Stay active and engaged, and you’ll begin to stand out among your peers.

Here’s how the rat race looks in the age of AI and how you can stay ahead.

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

reply
jpfromlondon
4 hours ago
[-]
hoped for something useful in your link, found drivel.
reply
keybored
3 hours ago
[-]
Given your shattered hope and the fact that you came to it from the same author must have meant that something in this latest comment appealed to you. Sorry to disappoint! Can I interest you in some of my other musings instead? To salvage that hope of yours.
reply
jpfromlondon
3 hours ago
[-]
Oh absolutely, I'll have a poke around.

For the record I'm not an ai doomer, but I am pragmatic, and the lack of hope is merely a foundation.

reply
RALaBarge
3 hours ago
[-]
its drivel all the way down, act accordingly
reply
Thanemate
4 hours ago
[-]
Funnily enough I saw this post as I was placing my HN account on hiatus, because I'm tired pretending that the quality of discourse is on par with what I've been used to read and participate in.

We're obviously in an era where "good enough" is taken so far that, what used to be the middle of the fictional line is not the middle point anymore but a new extreme. You're either someone who cares for the output or someone who cares how readable and easy to extend the code is.

I can only assume this is done on hopeful purpose, with the hope that the LLM's will "only keep improving linearly" to the point where readability and extendability is not my problem by it's "tomorrow's LLM" problem.

reply
inanutshellus
4 hours ago
[-]
Ok but if you're a person that likes HN discourse but thinks "eternal september" has happened ... what's your plan?

You'll still come here, read the comments, see something engaging and want to reply and... feel sad because shakes fist at [datacenter] clouds it's all just bots talking to each other anyway.

Seems lame. Keep talking anyway.

reply
latexr
3 hours ago
[-]
You’re making a lot of assumptions. They could just stop visiting HN. They don’t even need a “plan” or an alternative, they can just stop.
reply
7777332215
3 hours ago
[-]
I thought the same as the person you replied to. For me, the solution is to stop coming here as often and instead read traditional literature.

Soon to remove my access entirely to this website.

reply
moron4hire
3 hours ago
[-]
There is a lot more "yngmi" and "have fun being poor"-style attitude around here regarding LLM boosterism.
reply
trollbridge
2 hours ago
[-]
That attitude is particularly galling. Along with the "lock in now or become part of the permanent underclass".
reply
malwrar
4 hours ago
[-]
I do find it hard to tolerate the feeling of being watched online. The second-most trending dataset on huggingface right now is a snapshot of HN updating at a 5 minute interval. It makes me not want to really comment at all, just like how I don’t really publish any software I write anymore.

Turns out it sucks to produce original works when you know that, whereas previously a few people at best might see your work, now it’s a bunch of omniscient robots and maybe half of those original people are using the robots instead.

reply
niek_pas
3 hours ago
[-]
This is really interesting to me, because it never occurred to me to feel this way. Why would I care whether my comments are ending up in some dataset somewhere that's being used to train some model? My comments are boring and mostly uninformed. Have at it.

I'm curious: would you say the feeling of being watched online is making you afraid of some repercussion, or is it something else?

reply
TeMPOraL
3 hours ago
[-]
Dog in the Manger.

I get a feeling from overall anti-AI sentiment online that a lot of people feel they're entitled to 100% of value created by anything even tangentially related to their person, whether that's some intentional contribution or a random brain fart that happened in the vicinity of someone else doing something useful - and then become resentful they're not "getting their share".

There's hardly any other way to read all the proclamations of quitting to do anything because "cognitive dark forest" (itself a butchering of the original idea of "dark forest" across so many orthogonal dimensions in parallel, that it starts to look like a latent space of a transformer model).

reply
chromacity
2 hours ago
[-]
Conversely, some people feel entitled to 100% of the value created by others. Oh, you wrote a book? Too bad, it's a part of my training data set now.

Downloading public stuff off the internet with no regard for the creator's wishes or license is bad enough, but we have many people here who defended AI companies seeding models with pirated content.

The internet is a social contract. AI is not the first thing to try and erode it for profit, but it's by far the most aggressive one.

reply
pc86
1 hour ago
[-]
Putting a book into a training data set does not take 100% of the value created by the author. You could make a convincing argument that since the LLM was never going to purchase the book, and the number of people who would have purchased the book but now won't because it's included in the training data is effectively zero, that no value was lost at all.

Licenses are legal documents and are usually treated as such, but "the creator's wishes" are irrelevant without case law, legislation, or licensing to back it up. And jurisdiction - show me a license that doesn't stand up in court in my home jurisdiction and I'll show you a license I won't care if I break or not.

reply
trollbridge
50 minutes ago
[-]
I don't like the idea that I'm restrained by intellectual property laws, but that other powerful entities are not. That is fundamentally unfair.
reply
coldpie
1 hour ago
[-]
> I get a feeling from overall anti-AI sentiment online that a lot of people feel they're entitled to 100% of value created by anything even tangentially related to their person

Rather, I don't like that the terms I released my work under aren't being respected. I believe LLMs are derivative works of the pieces they are trained on. I spent more than ten years working on open source code, and now the models that were trained on my GPL'd code are being used to make proprietary code against the terms of the license. I find this reprehensible.

While it wasn't an explicit term of release, generally I did not expect anyone to get any kind of financial value from the blog posts I wrote. I just wrote them for fun & maybe others would find them interesting. Now, LLMs have been trained on my blog posts and are generating financial value for some of the worst human beings on the planet who are using their money to murder, demean, and maim other humans.

I now know that blog posts I wrote for fun are putting money in some sociopath's bank account, and the GPL'd code I wrote is being used to create software to exploit me & other users. If I continue to create things publicly, it will be used against me and other people, and there's nothing I can do to stop it except to stop creating things. It's all very disrespectful & demoralizing.

reply
malwrar
3 hours ago
[-]
There’s definitely a fear of repercussions (I’ve been commenting on this site for over a decade now! Who knows what’s in my history...) but importantly I actually take some pride in many of the comments I write. What drew me to this site originally was how high quality everyone’s perspectives and articulation was, and I suppose I view the writing voice I’ve nurtured here as unique and special to me. It’s not about compensation, I’d just hate to see some future chatbot sound 1/1,000,000th like me I guess? Hard feeling to describe, but I’d rather just not be globbed in and instead express myself in ways that aren’t profitable or feasible to copy.
reply
simianwords
2 hours ago
[-]
HN always offered the data to anyone, what changes now? How does it matter if it is LLM's that is consuming your data. What a strange attitude.
reply
satvikpendem
1 hour ago
[-]
HN comments have always been public, I don't really understand this thought process. The robots also aren't going to care about some individual user, it'd be more of an agglomeration of everyone's comments.
reply
philipwhiuk
4 hours ago
[-]
I think the immediate term action is to viciously block all crawlers.

Writing a blog yes, feeding the beast no.

reply
ArcHound
4 hours ago
[-]
This sounds like a nice principled stance, but you won't get any traffic with this approach. That's demotivating - to me blogging is a tight balance of exploration, learning, improving and feedback. I'm not able to write without considering how this impacts the reader - removing all readers breaks the process for me.
reply
lstodd
3 hours ago
[-]
Yeah, everyone went on "blocking all crawlers" end result being half of internet inaccessible over vpns. Good job, people.
reply
kstenerud
4 hours ago
[-]
> The giant plagiarism machines have already stolen everything. Copyright is dead. Licenses are washed away in clean rooms.

Isn't this what the free software movement wanted? Code available to all?

Yes, code is cheap now. That's the new reality. Your value lies elsewhere.

You can lament the loss of your usefulness as a horse buggy mechanic, or you can adapt your knowledge and experience and use it towards those newfangled automobiles.

reply
probably_wrong
3 hours ago
[-]
> Isn't this what the free software movement wanted? Code available to all?

But this is not that. The current situations is closer to "what's yours is mine and what's mine is mine".

I have been releasing my writings under a Creative Commons Attribution-ShareAlike license which requires attribution and that anything built upon the material to be distributed "under the same license as the original". And yet I have no access to OpenAI's built-upon material (I know for a fact they scrape my posts) while they get my data for free. This is so far legal, but it's probably not ethical and definitely not what the free software movement wanted.

reply
lmm
4 hours ago
[-]
> Isn't this what the free software movement wanted? Code available to all?

Available to all yes. Not available to the giant corpos while the lone hobbyist still fears getting sued to oblivion. In fact that's pretty much the opposite of what the free software movement wanted.

Also the other thing the free software movement wanted was to be able to fix bugs in the code they had to use, which AI is pulling us further and further away from.

reply
mmustapic
4 hours ago
[-]
No, the free software movement wants that the source code of the software you use be available to you to modify it if you wish. AI does not necessarily do that.
reply
kstenerud
4 hours ago
[-]
AI makes the entirety of the software engineering profession available to you. All you have to do is ask the right way, and you can build in days what once took months or years.

Decompiling and re-engineering proprietary code has never been easier. You almost don't even need the source code anymore. The object code can be examined by your LLM, and binary patches applied.

Closed source is no longer the moat it was, and so keeping the source code to yourself is only going to hurt you as people pass you over for companies who realize this, and strive to make it easier for your LLM to figure their systems out.

reply
mmustapic
4 hours ago
[-]
But I can't have the weights of the LLM model I'm using for this.
reply
satvikpendem
1 hour ago
[-]
Open weight models exist.
reply
doctorwho42
1 hour ago
[-]
Reengineering from scratch is different than being able to form an existing software.
reply
Arkhaine_kupo
4 hours ago
[-]
> Decompiling and re-engineering proprietary code has never been easier. You almost don't even need the source code anymore. The object code can be examined by your LLM, and binary patches applied.

Jesus christ.

"The people who wanted everyone to have a home should be happy with the invention of the lockpick. You can just find a nice house and open the lock and move in. Ignore the lockpick company charging essentially whatver they want for lockpicks or how they got accesss to everyones keyfob, or the danger of someone breaking into your house"

That is basically your argument. Like AI is a copyright theft machine, with companies owning the entire stack and being able to take away at will, and comitting crimes like decompiling source code instead of clean room is not a selling point either...

The open source community wants people to upskill, people become tech literate, free solutions that grow organically out of people who care, features the community needs and wants and people having the freedom to modify that code to solve their own circumstances.

reply
Supermancho
4 hours ago
[-]
> That is basically your argument. Like AI is a copyright theft machine, with companies owning the entire stack and being able to take away at will, and comitting crimes like decompiling source code instead of clean room is not a selling point either...

Stop trying to make this into some abstract argument. It's not an argument anymore. It's already happened.

How one might choose to characterize the reality, is irrelevant. A vast (and growing) amount of source code is more open, for better or worse. Granted, this is to the chagrin of subgroups that had been pushing different strategies.

reply
simoncion
3 hours ago
[-]
> It's already happened.

Agreed.

> Stop trying to make this into some abstract argument.

As you mentioned, it's not an abstract argument. It's statements of fact.

> A vast (and growing) amount of source code is more open...

No, not at all.

1) If you honestly believe that major tech companies will permit both copyright- and license-washing of their most important proprietary code simply because someone ran it through an LLM, you're quite the fool. If someone "trained" an LLM on -say- both Windows 11 and ReactOS, and then used that to produce "ReactDoze" while being honest about how it was produced, Microsoft would permanently nail them to the wall.

2) The LLMs that were trained on the entirety of The Internet are very, very much not open. If "Open"AI and Anthropic were making available the input data, the programs and procedures used to process that data, and all the other software, input data, and procedures required to reproduce their work, then one could reasonably entertain the claim that the system produced was open.

reply
kstenerud
3 hours ago
[-]
This is looking at the current situation through the old lens.

That ship has sailed. The revolution is happening. We live in a new reality now, one where we're still trying to figure out what rules should even be.

And there will be winners and losers, and copyright and patent law will be modified in an attempt to tame the chaos, with mixed results because of all of the powerful players on both ends.

You can live on the front of it for high risk/reward, or at the back for safety. But either way, you're going to exist in this new reality and you need to decide your risk appetite.

reply
simoncion
2 hours ago
[-]
Your set of statements and their surrounding context reminds me very much of the mass grave scene in Kubrick's Vietnam War movie Full Metal Jacket: <https://www.youtube.com/watch?v=670Y3ehmU74>
reply
Arkhaine_kupo
3 hours ago
[-]
> Stop trying to make this into some abstract argument. It's not an argument anymore. It's already happened.

yes and lockpicks also exist. Promotting the ability to break into homes when people are talking about the housing crisis is a crazy, short sighted and frankly embarrasing position to take.

And mischaracterising the people in the open source community as belonging to that ideology is insulting.

> A vast (and growing) amount of source code is more open

You are missusing the word open here, for accesible. Having an open house, and breaking into someone's home are not the same thing, even if the door ends up open either way.

> Granted, this is to the chagrin of subgroups that had been pushing different strategies.

Taking unethical shortcuts that ultimately lead to an even worse outcome is not a cause of chagrin, its a cause of deep and utter terror and embarrasment.

Wanting people to own their skills and tech stack and be informed, smart and engaged is a goal that "just ask the robot you dont control to break into a corporate codebase and copy it" is not even remotely close to helping get close to.

reply
satvikpendem
1 hour ago
[-]
This argument commits the same fallacy as the argument against piracy; copying is not stealing, because the original still remains. A lockpicked and squatted house means someone else does not have that house, it's a zero sum game which information which is freely copyable does not align with.
reply
Arkhaine_kupo
15 minutes ago
[-]
That only works if you assume that the exclusive value is in the object and not the labour.

The reproduction of the object is essentially free in the internet, but the labour to produce it isn't.

If I spent 3 years making my codebase, and you copy paste the git repo, yeah your access to the information is not going to replace the original. But your labour cost is 0 and you can undercut the 3 years of expense, loans or debt I adquired to produce it.

Btw the FBI murdered Aaron Swartz for attempting to open access to research papers, Mark Zuckemberg admitted to stealing those ssame papers through libgen and showed off the results of Llama and his stock price went up.

I think the piracy argument falls apart when the class warfare and 2 tier justce system is openly weaponised towards open access

reply
satvikpendem
9 minutes ago
[-]
Labor doesn't have value inherently, it's about what is produced by said labor. These days even the labor to create something falls to zero via LLMs so I'm not sure the point is valid these days.
reply
sdevonoes
4 hours ago
[-]
Progress is good. But why on earth should we support Anthropic/OpenAI/etc? What the planet needs is less multibillion corporations, not more
reply
kstenerud
4 hours ago
[-]
You don't have to. Just like you don't have to support Amazon for web services and file stores.

Or Oracle for databases.

Or Microsoft for operating systems.

Or DEC for computers.

There are perfectly good open source LLMs and agents out there, which are getting better by the day (especially after the recent leak!)

reply
farfatched
4 hours ago
[-]
I want to support local models and compute over SaaS models.

I want to support RISC V over Intel.

I want other things too, and on balance, Intel+Anthropic is most compliant with my various preferences, even if they're not perfect.

reply
toofy
2 hours ago
[-]
i can say with a pretty high confidence level that few people in the free software movement want the closed off black boxes these companies are locking away.

they’re not free in any sense of the word. from price to openness of the models. would openai cry if every bit of their models were wide open for us to use however we see fit? if so, then it’s not free, again, in any definition of the word.

reply
staminade
4 hours ago
[-]
Anti-AI articles like this seem to be the new "Doing my part to resist big tech: Why I'm switching back from Chrome to Firefox" genre that popped up on HN for a decade or so. If it makes you feel better, great, but don't kid yourself that your actions will make any difference whatsoever to the overall trajectory of AI adoption in IT or society.
reply
beej71
3 hours ago
[-]
I love it if it would affect the trajectory, but I don't think it will. I do think it will affect my trajectory, though.
reply
raincole
2 hours ago
[-]
This genre has always been very prevalent on HN. Move from cloud to on-premise. Move away from US-based services. Move away from Gmail. Move away from Github.
reply
simianwords
2 hours ago
[-]
Was there one for memory managed languages like C# vs self managed like C/C++?
reply
raincole
2 hours ago
[-]
Rust.
reply
simianwords
2 hours ago
[-]
bit of an edge case because the support was not for the incumbent
reply
BeetleB
1 hour ago
[-]
While it's relevant to the particular submission, this type of comment is thrown around way too often.

Me boycotting some company's product due to bad practices (slavery, etc).

Response: You know your boycotting isn't going to change anything, right?

Me: Yes, and ....? I'm not trying to change the world.

I don't use FF as some form of protest. It's just a browser I like more.

I'm not anti-AI the way much of HN is, but let's pretend I am. If I ban AI generated content on my site[1], I'm not trying to change the world. Just controlling my site.

Getting more to your sentiment: The world/Internet is a vast place. If even 1000 people think like me, it's more than enough. For a number of years I had valuable online interactions via BBS's with a population < 1000. As long as I get 1000 people, let the rest of the world burn!

It's like the constant "Emacs is dying" threads we used to have on HN, because the percentage of SO users using it kept dropping. When in reality, the absolute numbers kept increasing. Who cares if the world has moved on to VS Code? Emacs as an ecosystem was/is thriving!

[1] Assuming I live in a fantasy world where I can classify content accurately...

reply
simianwords
1 hour ago
[-]
I think much of current day neuroticism can be attributed to insincere comparisons of genuinely normal trade offs (like AI) to slavery in the past.

I think people are so afraid to do a hecking racism that they start comparing any normal thing to racism. I also think there’s an incentive here: by comparing to racism they potentially gain some social status points like - I’m more morally superior to you because I didn’t do a hecking racism like you.

But it can backfire, like with your comment. People are catching up to how ridiculous this comparison is

reply
dmix
3 hours ago
[-]
Plus many of these articles seem maximized to attract attention on social media, which is its own machine.

Posting your most provocative and strong opinions in reaction to the latest controversy-of-the-week is what fuels the internet and culture more than anything these days. The attention economy demands hot takes mixed with preaching about every new thing.

reply
simianwords
2 hours ago
[-]
see: purity spiral politics
reply
farfatched
5 hours ago
[-]
> The AI industry is 99% hype; a billion dollar industrial complex to put a price tag on creation. At this point if you believe AI is ‘just a tool’ you’re wilfully ignoring the harm.

> (Regardless, why do I keep being told it’s an ‘extreme’ stance if I decide not to buy something?)

> The 1% utility AI has is overshadowed by the overwhelming mediocracy it regurgitates.

This sort of reasoning is why you might have been called extreme.

It's less extreme to say "many people see and/or get lots of benefit, but it's wrong to use the tool due to the harms it has".

There's nothing wrong with extreme, but since you asked.

reply
xnorswap
5 hours ago
[-]
Yes, declaring AI to be 99% hype just turns away people like me from what the author has to say.

I was an AI sceptic for a long time until toward the end of last year when I seriously evaluated them, and came to realise it could add tremendous value.

When someone comes along and declares that it's all hype, it goes against my experience that it's getting things done.

I can also see the harm it does, and I hope the tooling improves to reduce that harm. For example, there's a significant lack of caching in the tooling. It's constantly re-reading the same files every day, and more harmfully, constantly fetching the same help pages and blog-posts from the web.

If it had a generous built in HTTP cache, and instruction to maximise use of the cache, then it could avoid a lot of re-fetching of content, which would help reduce the harms.

Declaring my experience to be invalid and based on nothing but hype doesn't engage people like me at all.

And it's the people like me, the middle-of-the-road developer working on enterprise software, that either need convincing to not use the tools, or for our habits to change to minimise the harm.

Because otherwise we're quietly getting on with using it, potentially destroying forests and lakes as we do.

reply
kasey_junk
5 hours ago
[-]
It’s worse than that, in the linked “I’ve done my research” they make the tired claim that ai hallucinates api calls. Which while true has not been a practical problem since tool calling was added.

I think the position that ai is morally troubling enough that the downsides out way the positives is perfectly defensible. But the entire argument becomes a joke when you can’t accurately catalog the positives.

reply
thepasch
4 hours ago
[-]
At this point, I’m pretty sure saying “I’ve done my research” is more of an indicator that someone hasn’t done their research but would like to be taken seriously anyway by pretending they did. The kind of person who’s both smart enough to realize that an issue might be more nuanced than they present it, as well as intellectually dishonest enough to… not care.
reply
draxil
4 hours ago
[-]
I think the fact you need tool calling to stop it doing that, shows the underlying issue with trusting it to do anything without a human
reply
SirHumphrey
4 hours ago
[-]
Amara’s law: “We tend to overestimate the effect of a technology in the short run and underestimate the effect in the long run.”
reply
ch4s3
3 hours ago
[-]
>If it had a generous built in HTTP cache, and instruction to maximise use of the cache, then it could avoid a lot of re-fetching of content, which would help reduce the harms.

While this is a great idea, the harms are somewhat overblown. The big scare number for water consumption includes water used in power generation which itself includes evaporation from hydroelectric power.

reply
muskstinks
5 hours ago
[-]
One problem writing does have: we grew up in a massive changing and progressing software writing area. A golden area.

Now i still show clean code videos from bob and other old things to new hires and young collegues.

Java got more features, given but the golden area of discovery is over.

The new big thing is ai and i'm curious to see how it will feel to write real agents for my company specific use cases.

But i'm also seeing people so bad in their daily jobs, that I wish to get their salary as tokens to use. It will change and it changes our field.

Btw. "Is there anything, in the entire recorded history of human creation, that could have possibly mattered less than the flatulence Sora produced? NFTs had more value." i disagree, video generation has a massive impact on the industry for a lot of people. Don't down play this. NFTs btw. never had any impact besides moving money from a to b

reply
flir
5 hours ago
[-]
> But i'm also seeing people so bad in their daily jobs, that I wish to get their salary as tokens to use.

Oof. The modern "Go away or I will replace you with a very small shell script"

reply
sd9
4 hours ago
[-]
At least have the grace to show new hires Rich Hickey lectures or something. Uncle bob is nonsense.
reply
muskstinks
3 hours ago
[-]
I'm giving them a lot more but I assumed people know uncle bob. Like the Open Source Architecture Books, Googles SRE Books, 1:1 mentoring every week.

But yeah there is one person made of teflon. Nothing sticks. And i could tell you that teflon person in every company i worked so far.

reply
sd9
3 hours ago
[-]
I know what you mean. Tbh I just think this isn’t for everyone. I’ve been in your position before, you can try everything but some people just can’t get it. And maybe they do and they become a little more productive, but they can’t produce production quality stuff that isn’t brittle.

I’ve never found a way around it, and I don’t want to believe that some people can’t grok this field, but that is what I’ve experienced. Maybe other people can educate better.

I’ve just found that at some point you have to limit the blast radius and move onto more productive uses of your own time.

reply
keiferski
3 hours ago
[-]
I think it's probably accurate to say that the vast majority of writers throughout history were writing for an extremely tiny or nonexistent audience. My favorite example of this is Nietzsche, who basically had zero readership during most of his life, beyond a few close friends, and even had to personally pay to get his books published. He only posthumously became one of the most influential thinkers of the 20th century.

So while I do worry about AI's impact on blogging/writing/etc., I do think to some extent, you either love the process or you don't. If you only write in order to have readers, you're in the wrong game.

reply
justonceokay
3 hours ago
[-]
There are a lot of arts that were funded for a short time in our recent history that previously were absolutely not funded at all under almost any circumstance. Centralized media created centralized stars with centralized incomes

For the vast majority of history it was all community theater, carnies, and “that guy in the square guy who knows the lute”.

Fun fact, in medieval Europe acting was considered a sin so great you could not get a Christian burial, as you were channeling the spirit of others. Realpolitik it was probably because actors were mostly queer in the cities and Roma in the countryside. What’s old is new…

reply
OJFord
4 hours ago
[-]
Paha, I thought this domain was 'D-Bus Hell' until I clicked in. (It's D. Bushell's blog.)
reply
pklausler
2 hours ago
[-]
> First let’s accept the realities. The giant plagiarism machines have already stolen everything. Copyright is dead. Licenses are washed away in clean rooms. Mass surveillance and tracking are a feature, privacy is a bug. Everything is an “algorithm” optimised to exploit.

Suppose that I have discovered a novel algorithm that solves an important basic problem much more efficiently than current techniques do. How do I hide it from the web scrapers that will steal it if I put it on GitHub or elsewhere? Should I just write it up as a paper and be content with citations and minor glory? Or should I capture AI search results today for "write me code that does X", put my new code up under a restrictive license, capture search results a day later, demonstrate that an AI scraper has acquired the algorithm in violation of the license, and seek damages?

reply
saulpw
1 hour ago
[-]
Isaac Newton tried to keep his Calculus secret and almost got scooped by Leibniz. IMO trying to hoard knowledge is not a great look; we all (mostly) have a sense that knowledge belongs to humanity as a whole.
reply
keeda
30 minutes ago
[-]
I think what you're looking for is patents. I've said it before, but I think patents are the only protection left for innovative software and "the little guy." It always was, really, but it's blindingly apparent today.

Unfortunately, that would be considered heresy on forums like HN, and people will continue to rail against AI and whatever it's causing and patents, instead of realizing that one is the only available leverage against the other.

reply
pklausler
18 minutes ago
[-]
I have a few patents, including one for a novel machine instruction, and I recall the attorney telling me that one cannot patent mathematics, only methods and systems.
reply
runningmike
36 minutes ago
[-]
Love the one-armed code bandit on the home page of this blog! Nice UX experience! See: https://dbushell.com/
reply
alfanick
4 hours ago
[-]
I quit. The clankers won.

I don't see any proof that software development is not dead. Software engineering is not, and it's much more than writing code, and it can be fun. But writing code is dead, there is no point of doing it if an LLM can output the same code 100x faster. Of course, architecture and operations stays in our hands (for now?).

Initially I was very sceptic, first versions of ChatGPT or Claude were rather bad. I kept holding to a thought that it cannot get good. Then I've spend a few months evaluating them, if you know how to code, there is no point of coding anymore, just instruct an LLM to do something, verify, merge, repeat. It's an editor of some sorts, an editor where you enter a thought and get code as an output. Changes the whole scene.

reply
catlifeonmars
4 hours ago
[-]
I think it’s really context dependent. I haven’t found LLMs to increase my productivity in coding in my field because the quality of the output matters much more than the quantity. I don’t think it’s the same across the board though, and there are plenty of domains where code generation is a force multiplier. Sometimes you need a chainsaw and sometimes you need a scalpel and in my own experience I have found that using coding agents as scalpels is not a very efficient use of my time. shrug
reply
chasd00
3 hours ago
[-]
i think these are great for people who already are senior developers with years of coding experience. I can use claudecode and then walk through the output and spot fix small mistakes or notice when it's going in the wrong direction and prompt it to fix. I think people without years of development experience using these tools can really screw themselves. The problem is every new grad is going to use claudecode right from the start without a decade of hand coding to develop that wisdom.

on the other hand, i can't help but think about ASM coders lamenting C and especially C++. Also, god help you if you tell an embedded developer you use micropython instead of C. Maybe a current chapter is closing and a new one is beginning and my part was in the last chapter just like them.

i'll end with saying i really like using AI for code, it's got me excited about technology again. So many projects that were out of reach due to time ( i have a family + stressful career ) are now back on the table like when i was in college with nothing but time on my hands.

reply
zozbot234
4 hours ago
[-]
LLM's don't really output the same code quality as a human, even on the smallest scale. It's not even close. Maybe you can guide them to refactor their slop up to human-written quality, but then you're still coding. You're just doing it by asking the computer to write something, instead of physically typing the whole thing out with a keyboard.
reply
mcdeltat
3 hours ago
[-]
Yeah I also keep thinking this. I don't see LLMs reliably producing code that is up to my standards. Granted I have high standards because I do take pride in producing high quality code (in all manner of metrics). A lot of the time the code works, unfortunately only for the most naive, mechanical definition of "works".
reply
phpnode
3 hours ago
[-]
This just isn’t true at all, with guidance and guard rails they produce much better code than the average developer does. They are only going to get better.
reply
bigstrat2003
1 hour ago
[-]
That is completely false in my experience. I have never once seen an LLM produce code that would be acceptable. It certainly is worse than what a human can do.
reply
phpnode
10 minutes ago
[-]
Have you seen the kind of code an average developer writes?

I agree that LLMs produce code that is less good than what a good developer could write, but most developers are not good developers, and even the good developer gets tired and must sleep eventually.

Arguments against LLMs are like the old arguments against high level languages like C. People argued that the compiler wrote trash code, that humans could do better, that the costs weren't worth it. None of that mattered and it's the same story here.

reply
saulpw
56 minutes ago
[-]
I don't know what model you're using or how you're prompting it, but for me some 60-80% of the time the results require only a little bit of steering to be 'acceptable' (like at least what I would expect from a junior engineer and I'll approve the PR even though it's not quite how I would do it), some 30% of the time the results are pretty much what I would do, and some 10% of the time the results are better than what I would do ("huh, good idea, okay let's do it that way").

They're not perfect by any stretch but if they're being likened to slot machines for code, I'll take those odds almost every day.

reply
draxil
4 hours ago
[-]
Useful tool, and if you're just scratching a small itch it's great.

For any serious system you still need to understand and guide the code, and unless you do some of the coding.. You won't. It's just novelty right now is skewing our reasoning.

reply
giancarlostoro
3 hours ago
[-]
I find it funny how clanker took off and everyone uses it. It was edited in a video where someone was otherwise saying something extremely racist (the more offensive version of the n-word). For those curious it involves a burger king hat, schizophrenia and an airplane, someone edited the n-word out and put clanker with AI (because why not insult AI by using AI?). I do wonder if the AI uprising will involve robots killing anyone who used clanker in a derogatory way and sparing everyone else.

Also, yes, I know the origin is Star Wars, but it went viral recently a very specific way.

The power of edgelord memes.

reply
damnitbuilds
3 hours ago
[-]
Years until we are forbidden from writing Clanker and have to write C***r: 3
reply
giancarlostoro
3 hours ago
[-]
I had Claude write me some lyrics about Clankers after that one guy had an AI write a hit piece about him over denying his PR.
reply
simianwords
2 hours ago
[-]
This person gives me the vibe that they are so attached to their craft that they can't seem to do anything about LLM's ubiquity rising but scold and vaguely sloganeer.

Was this how other professionals dealt with their grief? Like a translator in the advent of ML based translations? Like a lift man?

reply
justonceokay
1 hour ago
[-]
I’m reminded of the Douglas Adams quote

I've come up with a set of rules that describe our reactions to technologies: 1. Anything that is in the world when you’re born is normal and ordinary and is just a natural part of the way the world works. 2. Anything that's invented between when you’re fifteen and thirty-five is new and exciting and revolutionary and you can probably get a career in it. 3. Anything invented after you're thirty-five is against the natural order of things.

A lot of the dissonance on this forum is probably age based.

reply
jjk7
1 hour ago
[-]
"I used to be with it, but then they changed what it was. Now what I'm with isn't it, and what's it seems weird and scary to me, and it'll happen to you, too." - Abe Simpson
reply
abeppu
3 hours ago
[-]
I think the "Leave them Behind" section at the end sort of ignores the whole "they will ruthlessly copy your material, and put aggressive extra load on your server while repeatedly stealing your work" dimension.

You can try to avoid consuming AI-generated material, but of course part-way through a lot of things you may wonder whether it is partly AI-generated, and we don't yet have a credible "human-authored" stamp. But you can't really keep them from using your work to make cheap copies of you, or at least reducing your audience by including information or insights from your work in the chat sessions of people who otherwise might have read your work.

reply
gkoenig
5 hours ago
[-]
Man I love the design of your site, and that goldfish made my day.

For the article it was nice, but the font is really what got me.

reply
Havoc
4 hours ago
[-]
> The only winning move is not to play.

Alas I think tech crowd have collectively painted humanity into a corner where not playing is not an option anymore.

The combination of having subverted copyright and enabled cheap machine replication kills large swaths of creativity. At least as a viable living. One can still do many things on an artisanal level certainly and as excited as I am about AI it’s hard not to see it as a big L for humanity’s creative output

reply
doctorwho42
1 hour ago
[-]
The problem is worse than that though, yes you can do most things on an artisanal level... But who is going to pay for that? What happens when head count drops, you get less capital in the hands of working class... And no matter your opinions on the wealthy, they don't have the need or desire for 5% of the population doing artisanal level work for them at a living wage.
reply
niek_pas
3 hours ago
[-]
Interestingly, Ireland just launched a Basic Income for the Arts scheme. Many caveats (I think it's only like 300 euros a month, for a small group of people, etc.) but an interesting development nonetheless.
reply
cl0ckt0wer
5 hours ago
[-]
Just because they invented cars doesn't mean you stop jogging.
reply
bicx
5 hours ago
[-]
When they invented cars (and cars became popular and affordable), people did stop walking everywhere. Jogging wasn’t popularized until the 1970s, when we all realized we needed to be intentional with fitness in our car-based society.
reply
rglynn
3 hours ago
[-]
This is a US-centric take, in Europe, particularly in cities, we walk everywhere.

There is perhaps some relevance to the analogy however, because the US is designed in such a way that makes walking difficult to impossible. I am already seeing this pattern in vibe-coded areas where engineers will just use AI because it's too difficult to parse and edit by hand.

reply
tasuki
3 hours ago
[-]
> people did stop walking everywhere.

I didn't. Yesterday I walked 11 km for errands. Today I took a detour when walking to work, a more scenic route with less traffic.

For me walking is not much slower than using public transport (you need to get to it, then from it to the point of your destination), and not much slower than a car (stuck in traffic, finding parking, not to mention the road rage). I'd be faster on a bicycle but I'm not in a hurry and enjoy my walks.

reply
saulpw
50 minutes ago
[-]
Have you been walking since you were a child? Or were you raised in a car-centric culture, and discovered as an adult that you prefer walking?
reply
simgt
5 hours ago
[-]
They did make it very hard for people to do anything else but use a car in many, many places though...
reply
OJFord
4 hours ago
[-]
In the US, perhaps, which has had perhaps the bulk of its growth post-automobiles.
reply
jordanb
5 hours ago
[-]
> Just because they invented cars doesn't mean you stop jogging.

They literally made it a crime to walk down the street.

reply
bombcar
5 hours ago
[-]
across the street, no?

It's also a crime to jog on the railroad tracks.

reply
nunez
1 hour ago
[-]
Down the street also.

"Fighting Traffic" by Peter D. Norton talks about this at length.

The suburbs didn't exist when automobiles hit the market. Most people lived in cities because that's where the jobs were and transportation (outside of whatever public transportation options the cities provided) was limited. Kids and adults used the streets freely (which were for horses, though they were widened as automobiles started growing in popularity).

This changed as cars killed kids (and adults) who didn't know that cars were much faster than cars and didn't react in time. Traffic deaths were so numerous, cities invested lots of money in "safety parades" that were kind of gruesome, actually (like showing tombstones of the future deceased). [^0] Jaywalking was a crime that was invented to deal with exactly this phenomenon.

People fought HARD to keep the streets free (where else are kids going to play). People lost that battle, as we know.

[^0] https://www.bloomberg.com/news/features/2022-06-10/how-citie...

reply
jordanb
1 hour ago
[-]
Prior to cars walking anywhere in any street was completely normal. You can watch movies filmed before the 1920s and city streets are full of people walking around or congregating.

If a wagon or trolley hit someone that was considered the fault of the driver, every time.

When cars started arriving and being driven around by people who were wreckless and bad at it, you started getting manufacturers and "motorists" lobbying for the concept and laws around jay-walking. Even the word was a way to delegitimize what used to be normal. "Jay" was negative slang for country-person (think red-neck). The idea was "modern city people stay out of the streets!"

reply
beeflet
4 hours ago
[-]
If it's a crime to jog on railroad tracks, and the avalibility of rail makes it so that everything you need is only accessible by rail, I conclude that rail prevents you from jogging.
reply
bombcar
4 hours ago
[-]
I'm sorry for all the people who lived in my original SimCity towns. They must have been nearly spherical.
reply
mmustapic
4 hours ago
[-]
The one I like better is: software is great at playing chess, doesn't mean you cannot play too
reply
ramon156
5 hours ago
[-]
Read the post, it's a gotcha ;P I was scared too
reply
guzfip
5 hours ago
[-]
No but everyone has gotten real fat since then.
reply
pitched
5 hours ago
[-]
I really like the sentiment and will quote this in the future! My own thoughts line up a bit closer to the article though, with this quote being a good summary of it:

> The 1% utility AI has is overshadowed by the overwhelming mediocracy it regurgitates.

reply
rickcarlino
3 hours ago
[-]
LLMs can produce text information but they cannot have experiences. Writing about authentic experience is still a worth while endeavor. Expression of a preference is also an experience when framed correctly.
reply
justonceokay
3 hours ago
[-]
I think about Irish and British writing of dialogue, where is is extremely common for characters to only just now realize the importance of something their interlocutor said, and backtrack the conversation. Often this is done for humor. (Think about characters correcting each other with the use of “exacerbate” in Shaun of the Dead)

The only way to write like that is to have a real theory of mind for the two characters and understand that they are four processing speeds: that of both speakers, that of the narrator, and that of the reader.

reply
rtpg
4 hours ago
[-]
Old web stuff is still around. RSS feeds are out there. Some parts of masto are generally chill and filled with people having interesting convos.

You don't have to give up on everything to participate, but it can be a space to go to if you're tired of every social interaction being mediated by (I'm being glib) hustlers

reply
zetanor
3 hours ago
[-]
>One upside of this looming economic and intellectual depression is that the media is beginning to recognise gate keepers are no longer the hand that feeds them.

In what world is "the media" not an integral, tightly-bound part of the ratchet mechanism that seeks to suppress all distinction?

reply
yabutlivnWoods
2 hours ago
[-]
Such a bizarre sentiment the web and internet as we know/knew them is some bastion of freedom and future for humanity.

According to the author AI is 99% hype.

That 1% of AI utility can unlock more for humanity than 99.999% of blogs; static text hosted from a laptop in a closet.

Odd ball position that cheap publishing via the web is a path to The Next Generation for humanity is 100% hype.

Other than feeding dopamine addiction humanity has not improved greatly since we read all those insipid posts on GeoCities no one remembers today.

It's all been 99%+ hype to feed Wall Street. Young GenX and older Millennials with tech jobs were temporary political pawns and gonna end up bag holders like may older GenXers and Boomers who lived through the car boom, the housing boom, the retail boom.

Same old human shit, different hype.

reply
coldtea
3 hours ago
[-]
>It’s never been more important to blog. There has never been a better time to blog. I will tell you why. We’re being starved for human conversation and authentic voices

The supposedly starved don't seem to care much for such food. Blogs are kind of a wasteland.

reply
Spacecosmonaut
5 hours ago
[-]
"Generative AI is art. It’s irredeemably shit art; end of conversation."

I think most people cannot destinguish between "genuine" creativity and an artificial almalgamation of training data and human provided context. For one, I do not know what already exsists. Some work created by AI may be an obvious rip off of the style of a particular artist, but I wouldnt know. To me it might look awesome and fresh.

I think many of the more human centric thinkers will be disappointed at how many people just wont care.

reply
none2585
4 hours ago
[-]
Further I'd argue we KNOW people don't care if you look at the music industry.

Pop music is often composed by dozens of people who specialize in a thin sliver of the track - lyrics, vocals, drums, &c. - and then it's given a pretty face and makes the charts. That's really no different than something like Suno.

I think AI is forcing people who thought that THEIR thing was too nuanced or too complex to be replaced by technology to reckon with what makes them special.

reply
apples_oranges
4 hours ago
[-]
The question is how subtle AI can be. I feel like art sometimes seems to communicate A, and the artist intended to communicate A and perhaps some B, but clearly, it also hints at another C (and maybe also D, E, ..), which was not intended by the artist or recognised by many viewers, while to some people it's clearly there. Now where did that come from?

And can or will AI create it?

reply
chii
4 hours ago
[-]
most people are just utilitarian and do not care for "art" (in the high art sense).

AI is perfect for that. It reveal, perhaps to the dismay of those who revel in high art, that it might be an illusion that art has genuine creativity, if most people find ai to produce acceptable output.

reply
esafak
4 hours ago
[-]
People have been having this debate with popular art forever. Some people do not even believe in taste, and that everyone's artistic opinions have equal merit.
reply
prplfsh
2 hours ago
[-]
I honestly don't get it - how isn't everyone having a blast with AI? Every one of those side projects you never had time for you can build in a weekend. You can explore five ideas at once. You can do big refactors/cleanups you'd never be able to dream of in the past. As a software engineer it's been fantastic.
reply
DrinkyBird
10 minutes ago
[-]
Because some of us actually enjoy programming. For some people those side projects aren't about the destination, but the journey of learning how something works by making it with your bare hands.
reply
tenahu
2 hours ago
[-]
That has been my feeling too. I have completed soo many personal projects (or improvements) that were collecting dust on my 'mental shelf'.

Without AI I would probably never get to them because realistically, I do not have dozens, or hundreds of personal hours to devote to fun, but unnecessary projects.

reply
nunez
45 minutes ago
[-]
I've been using Claude for a side project I've been trying to write for some time. Seeing it generate features at a much faster clip than I can (that actually compiles) has definitely been addictive. However, the joy I used to get from seeing something that I wrote work is all but gone, and it sucks big time to lose that.

The back and forth is more annoying now as well. Instead of trying different approaches to code to produce an outcome, I'm prompting "this is broken; can you fix it?" or "this almost works! can you do $x instead" and doing stuff in another window while Claude churns. This isn't fun or stimulating at all for me. It's like carrying a dog to a ball instead of making them run for it.

Using it also reminds me that a big part of the experience I've spent years accumulating is (or feels) no longer useful. That everyone can "write" (produce) code now is a good thing, but SO MUCH TIME AND ENERGY was spent on putting writing and understanding code on a pedestal (especially on this site), and seeing that get torn down while gaslighting us into thinking that this never happened has been affecting my psyche for sure.

There's also the dirty feeling I get from abdicating more and more of my skills to a big company that is probably salivating at the idea of developers not being able to write code without Claude Code anymore.

I have a handful of projects I'd like to work on, but I'd rather leave them on the shelf until I can hand-write them than use agents to finish them and, in doing so, create a codebase that I'm less likely to be able to maintain without agents.

I guess I can turn the question back at you: how aren't you not losing your mind at becoming a glorified spec writer?

reply
prplfsh
7 minutes ago
[-]
The part I enjoy is I get to spend more time working on the things I enjoy. For example, data modeling and workflow orchestration. And really, that comes down to spending a lot of my time just thinking really hard - because once I have a clear plan, it's actually not that hard to build it. Not only that, but I can build something, react to it, rebuild it, react to it, and come up with something I think is much better than I would have been able to build myself. Not to mention much faster.
reply
glouwbug
2 hours ago
[-]
Some of us work on critical systems
reply
drchickensalad
2 hours ago
[-]
You do know that there's many different personalities that people can have right? A lot of people love writing code and don't care about those things at all.
reply
code_for_monkey
3 hours ago
[-]
I work for a bank and Im basically just an ai user now. Honestly its like pulling teeth to get anyone to look at your code here. Im just on hackernews lol
reply
rglover
3 hours ago
[-]
Major or regional? This is alarming beyond words.
reply
code_for_monkey
2 hours ago
[-]
Major, big big major, not just me either. How is it alarming beyond words? If I said "Im an emt and I just ask the AI everything" now that would be alarming beyond words.
reply
Eextra953
2 hours ago
[-]
I have a buddy who is a cop and he tells me that they use AI to write reports and even to check if their reason for pulling someone over will hold up later. As annoying as it is in SW, people using AI outside of SW is much more alarming.
reply
code_for_monkey
1 hour ago
[-]
Now thats alarming!
reply
rglover
2 hours ago
[-]
Because it's a bank and apparently a big one.
reply
code_for_monkey
1 hour ago
[-]
do you think the other big banks arent doing this? Bank jobs are pretty broad, theres a ton of code getting written here.
reply
bigstrat2003
1 hour ago
[-]
It's alarming because AI produces crappy software, and I would rather not lose money because banks are turning out slop with AI.
reply
code_for_monkey
49 minutes ago
[-]
well I have bad news for you about probably every bank by now
reply
danesparza
3 hours ago
[-]
I just chased a few interesting rabbit holes because of the links to other articles in this article. Thank you for that. ;-)
reply
ceplabs
5 hours ago
[-]
This might be the coolest personal website theme I've ever seen.
reply
sublinear
1 hour ago
[-]
If writing code was the only value your employer ever saw in you, it's for the best that you're forced to find a better job now. You would have eventually hit this point in your career anyway regardless of "AI".

The broader corporate world has never wanted code monkeys. They want "boring" reliability and pay a reasonable wage for it. On the other hand, they also won't tolerate contrarians who can't deliver, so maybe some of the fear from people posting this sort of thing really is justified.

reply
Bridged7756
2 hours ago
[-]
I just don't see it. What's truly sad is that a field allegedly filled with technically proficient people is filled with trend chasing and FOTM trends. To this day, people with nuanced takes are far and between and most people either go full force into LLM evangelism or LLM denial, the first more annoying, by far.

I'm really getting tired of the programming obituaries. As if LLMs didn't fail at any complex task, as if they didn't vomit shit code and as if they didn't just copy patterns surrounding the new code, and as if they didn't hallucinate and downright write wrong code or made up libraries. Yet for some reason, every time you bring it up, someone will come along and say "You're not using it right then.", Is it that, or is it just that they're only doing toy projects? I'm led to believe the latter.

At this point I don't know what's organic and what's not. Reddit is filled with astroturfing for big LLM. Maybe this place is too? Even if that was not the case, I'm led to believe that it isn't uncommon for people to swallow up all of the big LLM propaganda and fall into despair, or fall into unrealistic expectations, and just parrot it everywhere else. One thing is for certain, LLM evangelism has all the money of the world, and LLM denial doesn't. It's only natural to think that the balance is tilted in terms of media presence.

Even at the best, or worst, LLMs can't do anything you couldn't do yourself better with a scaffolding prompt + manual editing, and at the end of the day, you still need the cognitive energy to review, veto, come up with, the implementation. What does this exactly do anyways other than saving you a bunch of keypresses? I wonder if the people touting it to be all that really didn't think before LLMs, of just switched their brain off on them.

I used to really like this site, but I think that just consuming the RSS feed is enough for me. I think that lobster.rs has less "trend chasing" point of views these days, and I do wonder if it might be on here there's larger amounts of non technical people jumpy to call for the funeral of things.

reply
butlike
3 hours ago
[-]
A non-sequitur, but I really like the style of the blog. Good job.
reply
juleiie
3 hours ago
[-]
Yeah well I just don’t care about „AI dark forest”

You seriously need to go outside and touch grass if you are so defeated by another chess winning machine

Nobody wants to Watch AI play chess, nobody wants to read ai blogposts

AI makes human writing more valuable, not less.

I will pay good money for pure human made books certified as made without a single word auto generated whether in original or during process of Translation.

reply
aaa_aaa
3 hours ago
[-]
On the copyright stuff, I say good riddance.
reply
titzer
4 hours ago
[-]
I laugh jollily in the face of AI. I know the coming shit pile, its nature isn't going to be surprising, only the speed and utter surrender of the vast majority of humanity to mediocrity.

What AI represents to me is a teacher! I have so long lacked a music teacher and musical tools. I spent my entire career doing invisible software at the lowest levels and now I can finally build cool tools that help me learn and practice and enjoy playing music! Screw all the haters; if you're curious about a wide range of topics and already have some knowledge, you can galavant across a vast space and learn a lot along the way.

AI is a bit of a bullshitter but don't take its bullshit as truth, like you should never take anything your teacher says as gospel. How do we know what's true? The truth of the universe and the world is that underneath it all, it is self consistent, and we keep making measurement errors. The AI is an enormous pot of magic that it's up to you to organize with...your own skills.

You have to actively resist deskilling by doing things. AI should challenge you and reward you, not make you passive.

Use AI to teach yourself by asking lots of questions and constantly testing the results against reality.

For me right now, that's the fretboard.

reply
cynicalpeace
1 hour ago
[-]
People don't care what bots have to say

Therefore, things like writing, film, sales, etc are less productively scalable by bots

And things like code, where people don't care how the sausage is made as long as it "works" are more productively scalable by bots

And even in the situation of code, the job description leans more on defining what "works" which requires the human touch

reply
Lerc
4 hours ago
[-]
Blog posts are an interesting case, they are a very good example of something where abundance of supply outstrips any demand so much that it cannot be realistic to expect a median level contribution to receive any significant attention.

Setting aside the self delusion that makes a considerable number to erroneously rate themselves above average, the reason you create blog posts should not be for the attention you might gain, there simply are not the eyeballs. You create as a form of self expression, to organise your thoughts, to create a record of them.

AI can never challenge in those areas because it is, as it has always been, the act of creation is the goal.

reply
throwaway743
1 hour ago
[-]
The footer rules
reply
okokwhatever
2 hours ago
[-]
When will we understand that not everybody works in a FAANG? Assuming that the way to put some food in the table for all software developers is always a matter of creating a new magical algor. in a mystical programming language deployed in an unicorn architecture is so childish. 99% of all software development today is simply creating a crud or refactoring a codebase because React guys decided to change everything again.
reply
LunicLynx
4 hours ago
[-]
This feels weird somehow. It feels like: Damn we can’t train our AI any better as everything regurgitated slop now. How can we get people to create new content for us, hopefully with new ideas …

Might be just me though, but I definitely don’t get why blogging should be the solution.

reply
__s
3 hours ago
[-]
misleading title. MODS?
reply
deadbabe
4 hours ago
[-]
I’ve decided the only way I’ll adopt a full automated agentic AI workflow the way companies want, is if I am allowed to hold multiple jobs at multiple companies.

Imagine having 6 software engineering jobs, each paying maybe $150k a year, all being done by agents.

Hell, I might even do this secretly without their consent. If I can hold just 10 jobs for about 3 or 4 years, I can retire and leave the industry before it all comes crumbling down in 2030.

The problem of course, is securing that many jobs. But maybe agents can help with applying for jobs.

reply
randallsquared
3 hours ago
[-]
> to put a price tag on creation.

I mean, to put a price tag on enabling vastly more creation than would otherwise have occurred!

reply
bombcar
5 hours ago
[-]
You have to write for yourself. People have said this for years, decades, millennia even - but nobody really believes that writing to an audience of zero (or one, if Mom is still around) is worth it.

Everyone wants to be a famous author, or at least a published/somewhat acknowledged one; few are willing to write their novel and be satisfied with zero or near-zero sales/readings.

But that is exactly what you need to do, especially in the age of AI. Everyone who was "in it to win it" (think linkedinslop which existed before AI) is going to certainly use AI - because they do not give a shit about the quality of themselves - they just want the result.

And you can only become a writer (unpublished, unread, or no) by doing the writing - it takes time (10,000 hours?) that cannot be replaced by AI, just like you can't have the body of a marathon runner without running (yes, yes, the joke). You may be able to get 26 miles and change away, even very fast, but unless you personally do the running of that distance without cheating, you will not get the inherent benefits.

And if you instruct an AI, or another human even, to write for you, you may get some of the results you want, but you won't have changed to become a writer.

We shouldn't celebrate the successful blogs; they're already rewarded enough. It's celebrating the unsuccessful blogs that is needed - even if, frankly, the vast majority of them are sub-AI levels of crap it is still a human changing and progressing behind them.

Babies fall over a lot but unless you take them out of the stroller and let them do so, they'll never progress to crawling, walking, running.

reply
fragmede
4 hours ago
[-]
Do people who journal exist in your world view?
reply
erelong
5 hours ago
[-]
"You can just blog things"
reply
dare944
5 hours ago
[-]
"Let them write blogs!"
reply
bjourne
5 hours ago
[-]
Fucking hilarius domain name . David is unfortunately not announcing a rewrite of the Linux IPC stack!
reply
bombcar
5 hours ago
[-]
Ha I read it as the DBU Shell but I guess dbus hell is more natural.
reply
CrzyLngPwd
4 hours ago
[-]
How did I miss DBUS Hell haha
reply
moron4hire
3 hours ago
[-]
Real PenIsland.com vibes.
reply
marknutter
4 hours ago
[-]
> I’m not protective over the word “art”. Generative AI is art. It’s irredeemably shit art; end of conversation. A child’s crayon doodle is also lacking refined artistry but we hang it on our fridge because a human made it and that matters.

More pretentious gatekeeping from luddites who like to yell at clouds. This is someone who would love a piece of artwork created using ai tools right up until someone told them it was created using ai tools.

reply
zzzeek
5 hours ago
[-]
rants about AI from people who have already decided up front to never actually attempt to use the tools (which seems to be the case here from the post and the other one it links) are not really providing any value to the discourse.

There is nothing new about using machinery to automate boring / repetitive tasks, including the wall of resistance that comes up. But it should be clear that genuinely useful tooling and automation tends to become a normal part of life, from the plow, to the printing press, to the dishwasher, to digital video editing, to autocorrect, and now to large language models.

There's a lot that has to be worked out with LLMs in particular as they are now encroaching heavily upon human creativity and thought. This is an extremely important topic. But rants like these with terms like "the plagarism machine" and "the solution is that we all must vow to never use AI in any shape or form" are not really contributing.

reply
gruntbuggly
3 hours ago
[-]
We're starting to rethink what an over reliance on plow based tilling has done for soil health. The point being that technologies are tradeoffs and it's helpful to understand the tradeoffs we are making.
reply
nodra
4 hours ago
[-]
Trying to understand why it would matter if their hosting provider used ai or not. Genuine question so I can understand your take.
reply
kasG
4 hours ago
[-]
You are a good employee! Python people always shill for their employer's opinions.
reply
oompydoompy74
4 hours ago
[-]
Good lord I’m going to have to figure out some way to filter Hacker News. I’m so tired of this same sort of article (and the opposite) being posted every day. AI isn’t going away. AI is better than you think it is. AI is probably also worse than you think it is. The world has nuance, so can we please all chill?
reply
mchaver
3 hours ago
[-]
These conversations can add to the nuance. Anyway, you can just vibe code the filter you want and be done with it.
reply
oompydoompy74
3 hours ago
[-]
I disagree that this adds anything new to the conversation, but fair enough.
reply
jdefr89
4 hours ago
[-]
Sort of hard to do because AI it shoved down your throat in one form or another virtually everywhere you go. I also think a lot of us Hackers are mourning the fact we spent many years mastering machines and programming just to have the skill devalued (at least from the publics perspective) nearly over night. I personally think it is more important now more than ever to understand technology. To be able to write code, understand how a CPU works etc. Tech literacy will help prevent doom scenarios. A future where virtually everyone depends on AI and Computers but lacks people who actually understand them from a low level perspective seems bleak. I know thinking itself seems to have gone out of fashion and its given rise to misinformation and/or political nonsense like the rise of fascism etc... I think a lot of us just feel "empty" and are trying to express it.
reply
oompydoompy74
4 hours ago
[-]
I get it. I’ve been doing this for 11 years. I use agents everyday at work now and deal with all the benefits and problems of that. The craft is certainly changing and it will take years for everything to shake out and settle. I understand the desire to publicly wax poetic, but nobody actually knows shit about where we will land, so it gets a bit tiresome to see over and over.
reply
mchaver
3 hours ago
[-]
I agree that humans should continue to value various forms of literacy even in the face of AIs that can do everything better than us. I too will continue to dig deeper into tech literacy. There was a Terence Tao paper recently that mentioned we are in a shift similar to the end of heliocentrism. It made clear that Earth is not the center of the universe, but Earth is still deeply valuable and important for humans. Much the same way that AI may supersede our understanding and intellect and make the are limitations more apparent, but our human intellect is still important to humans. Plus, what are you going to do when the price of LLM tokens are through the roof or you get messages like "burn an extra 1,000,000 tokens for a better implementation!".
reply
oompydoompy74
3 hours ago
[-]
I have some amount of hope that local open models with sufficient quantization are the future as hardware becomes more powerful and models become more optimized. I don’t think we will be living in thin client land forever. Human expertise and intelligence will continue to be important and anyone who says otherwise is being disingenuous.
reply
mchaver
1 hour ago
[-]
Agreed. I am crossing my fingers that local open models can catch up in the future. Otherwise the big LLM companies will have everyone by the balls.
reply
btreecat
5 hours ago
[-]
"No AI" right above a robot voice playback button.

Mixed messages fr

Hot take, folks packing it in because of AI probably were not difference makers before AI, and wouldn't be difference makers after it either.

I agree with the author, keep writing. It helps hone your ability to communicate effectively which we all need for some time to come (at least until we become batteries).

reply
pitched
5 hours ago
[-]
> folks packing it in because of AI probably were not difference makers before AI

Anecdotal but I’ve been seeing a lot of the opposite. Some of those leaning in strongly are being propped up by the tools. Holding onto them like a lifeboat when they would have fallen off earlier.

reply
keybored
5 hours ago
[-]
What does a synthesized audio playback button have to do with AI as commonly and hotly discussed?
reply
btreecat
3 hours ago
[-]
> sythansized audio playback

Thats generated audio. It may not be LLM generated but it's not read by a human.

To draw an arbitrary line between _this kind_ of generated content but not _that kind_ is seemingly a matter of perspective and preferences.

reply
sdevonoes
4 hours ago
[-]
Can’t we just sabotage AI? We have the means for sure (speed light communication across the globe). Like, at least for once in the history of software engineering we should get together like other professionals do. Sadly our high salaries and perks won’t make the task easy for many

- spend tons of tokens on useless stuff at work (so your boss knows it’s not worth it)

- be very picky about AI generated PRs: add tons of comments, slow down the merge, etc.

reply
bendmorris
4 hours ago
[-]
I think you should be very picky about generated PRs not as an act of sabotage but because very obviously generated ones tend to balloon complexity of the code in ways that makes it difficult for both humans and agents, and because superficial plausibility is really good at masking problems. It's a rational thing to do.

Eventually you are faced with company culture that sees review as a bottleneck stopping you from going 100x faster rather than a process of quality assurance and knowledge sharing, and I worry we'll just be mandated to stop doing them.

reply
doctorwho42
1 hour ago
[-]
It really is the albatross around the neck of software and software adjacent professionals... How you don't see the value of collective action is wild to me. Most of you are still working class, you can't survive that many years unemployed...

But the Kool aid has been drunk, and the philosophy of silicon valley cemented in your field. It will take a lot of pain or work to get it to change.

reply
zozbot234
4 hours ago
[-]
> be very picky about AI generated PRs: add tons of comments, slow down the merge, etc.

But that's the opposite of sabotage, you're actually helping your boss use AI effectively!

> spend tons of tokens on useless stuff at work (so your boss knows it’s not worth it)

Yes, but the "useless" stuff should be things like "carefully document how this codebase works" or "ruthlessly critique this 10k-lines AI slop pull request, and propose ways to improve it". So that you at least get something nice out of it long-term, even if it's "useless" to a clueless AI-pilled PHB.

reply
xyzal
3 hours ago
[-]
Generate hundreds repos of plain old spaghetti code and put it on github. Easiest thing you can do.
reply