420
Linus Torvalds is OK with vibe coding as long as it's not used for anything that matters
(www.theregister.com)
A community for everything relating to the GNU/Linux operating system (except the memes!)
Also, check out:
Original icon base courtesy of lewing@isc.tamu.edu and The GIMP
Except vibe coding is not an abstraction in the way that word is usually used in the software context. Abstractions are deterministic. They may be leaky, but they can be fully understood and properly debugged if you have the skill. A chat bot that gives you a completely different result each time you give it the exact same task is something very different from that.
I agree with all you said but it's still a (bad) abstraction.
By and large, the original market for VBScript or Cobol were people who did not have the means to understand - nevermind debug - their own output. Then actual professionals were hired to fix their broken pile of shit.
Vibe coding is arguably worse in many areas (such as determinism), but I'd argue it's a difference of degree not nature. The idea and target audience are largely the same, and the results will be as well, which is why I am not worried for my job security, quite the contrary.
I think that's a very valid point and I had to check my assumptions to see that you are largely right. However, I'm not sure your last sentence is necessary relevant, as the output of vibe coding is typically deterministic code, not code that is itself dependent on LLM (although that can happen as well but it can be considered as a special case).
Yes, but if you send the same promt to the same LLM n times, you'll get n different versions of the same thing.
When compiling the same C code (for example) with the same compiler and the same settings n times, you'll end up with n copies of exactly the same binary.
That's just a weird comparison though, why are you comparing implementation to compilation? If I ask you (or a cohort of developers) to implement the same thing, I will get different versions of the same thing.
The argument was about deterministic abstraction.
A bunch of devs can hardly be considered an abstraction layer imo.
My argument was that a C compiler is an abstraction tool that deterministically turns the description of a program (in the C language) into machine code. That way people don't have to write machine code by hand.