'There is No Vibe Engineering'
- Reference: 0176887023
- News link: https://developers.slashdot.org/story/25/04/01/0129224/there-is-no-vibe-engineering
- Source link:
> The term caught on and Twitter quickly flooded with posts about how AI has radically transformed coding and will soon replace all software engineers. While AI undeniably impacts the way we write code, it hasn't fundamentally changed our role as engineers. Allow me to explain.
>
> [...] Vibe coding is interacting with the codebase via prompts. As the implementation is hidden from the "vibe coder", all the engineering concerns will inevitably get ignored. Many of the concerns are hard to express in a prompt, and many of them are hard to verify by only inspecting the final artifact. Historically, all engineering practices have tried to shift all those concerns left -- to the earlier stages of development when they're cheap to address. Yet with vibe coding, they're shifted very far to the right -- when addressing them is expensive.
>
> The question of whether an AI system can perform the complete engineering cycle and build and evolve software the same way a human can remains open. However, there are no signs of it being able to do so at this point, and if it one day happens, it won't have anything to do with vibe coding -- at least the way it's defined today.
>
> [...] It is possible that there'll be a future where software is built from vibe-coded blocks, but the work of designing software able to evolve and scale doesn't go away. That's not vibe engineering -- that's just engineering, even if the coding part of it will look a bit different.
[1] https://serce.me/posts/2025-31-03-there-is-no-vibe-engineering
[2] https://developers.slashdot.org/story/25/03/18/1428226/vibe-coding-is-letting-10-engineers-do-the-work-of-a-team-of-50-to-100-says-yc-ceo
I had to look through some Java recently (Score:1)
after having successfully avoided touching anything Java with a ten foot pole.
Holy shit! Abstract classes on top of interfaces just to handle datatypes where in C++ a single struct with maybe a member function or two can suffice. camelCase object and type names as far as the eye can see. Factory classes creating instances of abstract types with only one implementation that only logically fit together exactly one way.
If I didn't have deep subject-domain expertise I'd still be looking through the javadocs try
Re: (Score:2)
Your acting as if C++ codebases dont have 10 layers deep of ridiuclous abstractions, and then with incomprehensible macro hell thrown in.
Don't get me wrong C++ is a marvelous language and I use it all the time. Its ability to take ridiculously abstract code and generate rocket fast un-abstract machine code is nothing to sneeze at. But lets not pretend it doesnt have the same sorts of language problems Java has, then throws a few of its own in for good measure. I've seen codebases in C++ that have taken me l
Re: (Score:3)
That property of a programming language isn't valued nearly enough.
There are C++ applications I tried to bugfix and just gave up because it was so abstracted I could not figure out where the actual code was being executed without putting in more effort than it was worth and just hacked around the bug instead.
Re: (Score:2)
Don't forget the templates on top of the macros
Re: (Score:2)
Good man.
Re: I had to look through some Java recently (Score:1)
They do but in java this stuff is all but mandatory.
You can't split the class declaration and the class implementation across files in Java, you have to have separate interface and implementation classes, which leaves room for shenanigans.
You can't split a class implementation across multiple source files in java, so you either have a giant barely navigable mess for complex logic or you have to refactor it into separate small subclasses which adds boilerplate at write time and a little bitty bit over class
Re: I had to look through some Java recently (Score:2)
There is always time for trolling on the internets.
Well said (Score:5, Insightful)
Finally, some sanity in the whole discussion of AI coding.
No, our software development jobs aren't going away any time soon. The typing part is just going to get a little easier.
Re: (Score:3, Interesting)
> No, our software development jobs aren't going away any time soon. The typing part is just going to get a little easier.
It's pretty obvious that software engineering as we currently know it is going to be taken over by AI. There is nothing that a human software engineer can do that AI can't either currently do, or will be able to do very shortly. Same goes for a lot of different knowledge and creative professions. Yes, now you know how all the factory workers felt during the industrial revolution. It wasn't like one day all the factory workers were fired and replaced with machines - it's a process that happens over time.
Re: (Score:2)
> There is nothing that a human software engineer can do that AI can't either currently do, or will be able to do very shortly
This is highly optimistic. Here's why.
Your "creative professions" point is a good. one. AI today can generate, say, a large crowd of people in a movie, no extras required. If I were an extra, I'd be worried about my job. But what AI can't do, is write and direct and produce a movie on its own, that anybody would want to watch.
This is how AI will intrude upon software development too. It can (or soon will be able to) do the job that "extras" can do--people who create bits of software that are straightforward
I found one use for AI coding assistants (Score:2)
It does an OK job of writing javadoc for simple methods, if you name them and the parameters with descriptive enough names.
My first manager was a vibe coder (Score:2)
He likes to tell us how he was an engineer, but a real one, not a software engineer. Then would try to understand our code base by asking us about it and telling us what we should have done differently. He never logged into the source control and as far as I can tell never went into a text editor.
Re: My first manager was a vibe coder (Score:1)
You're not a real engineer unless you program in FORTRAN and refer to individual pieces or code you write by a three- or four-digit number. Only.
A question for AI crazy management. (Score:3)
Do you know why we use all those funny symbols in math and specialized languages other tthan english for programs?
Because spoken human languages are not sufficiently expressive in those domains.
On a deeper level, we DO have a name for what LLMs do to generate code: Cargo Cult Programming.
It's not a good thing.
Seems like FPGAs would be a fit here (Score:2)
Straddles the boundaries between software and hardware