
'There is No Vibe Engineering' 114
Software engineer Sergey Tselovalnikov weighs in on the new hype: 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.
[...] 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.
Seems like FPGAs would be a fit here (Score:2)
Straddles the boundaries between software and hardware
I had to look through some Java recently (Score:2)
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:I had to look through some Java recently (Score:4, Interesting)
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 literally months to figure out how the fuck it works (Porting PJSip to the iphone in mid 2000s was 6 months of , admittedly well paid, hell). I'm yet to encounter that with C which *doesnt let* you do that sort of ridiculous abstraction. Even a behemoth like the linux kernel you can get a rough idea of how it fits together in a few days of reading code.
Re:I had to look through some Java recently (Score:5, Insightful)
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:3)
This is what you get for not using TempleOS [templeos.org]. I swear, you guys....!
Re:I had to look through some Java recently (Score:4, Informative)
Don't forget the templates on top of the macros
Re: I had to look through some Java recently (Score:5, Funny)
I love those! I sometimes throw some perl into the makefile to autogenerate them for me.
Re: (Score:2)
Re: (Score:3)
The C++ macros mess is why I swore off it. I like the Google C++ style of "better C", but templates + macros make code nearly impossible to introspect from source. I've actually moved back over the past few years to languages with fewer abstractions like Go, C, and Zig. I used to like Swift, but cargo-culters have started adding debug / performance-hindering abstractions to it and I see the opacity only getting worse.
Re: I had to look through some Java recently (Score:3, Informative)
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:5, Funny)
They have yet to invent a language that prevents a bad programmer from writing bad code.
Rust comes the closest, mainly by making it so difficult to get the bad code to compile that most bad coders will give up and write their bad code in some other language instead.
Re: (Score:3)
Re:I had to look through some Java recently (Score:4, Interesting)
They have yet to invent a language that prevents a bad programmer from writing bad code.
Well that's an interesting point you stir up: What is "bad"? Despite 45 years of coding, I don't think I'm a good programmer because when read others' (C) code, reading it is still not easy for me. I have trouble wrapping my head around why they "did it that way".
Re: (Score:2)
I have trouble wrapping my head around why they "did it that way".
I don't think the problem is with you -- well-commented code should include comments (or perhaps entire documents) explaining why it was written the way it was written. "why" comments are much more useful than "how" comments, since you can always (eventually) figure out the "how" by reading the source code, but the "why" only exists in the mind of the author unless/until he writes it down somewhere.
Re: (Score:2)
have trouble wrapping my head around why they "did it that way".
For some reason, comments never provide this insight despite numerous professors hammering this point home.
Re:I had to look through some Java recently (Score:5, Informative)
Re: I had to look through some Java recently (Score:2)
Re:I had to look through some Java recently (Score:4, Insightful)
camelCase object and type names as far as the eye can see
That is what you complain about? It really weakens trust about your judgement of the rest of the codebase.
Re: (Score:2)
This is what we call the "The Princess is in Another Castle" school of object oriented design!
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:1, 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:Well said (Score:5, Insightful)
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 and for which the details aren't very important or difficult to get right. Software such as basic data entry forms, or unit tests...AI can do that. But AI can't, and won't in the near future, be able to literally create software that anybody would actually want to *use*.
Re: (Score:1)
Some may argue (with copious examples) that people can't write, direct or produce a movie that anybody would want to watch ;-)
Re:Well said (Score:4, Insightful)
Your "undeniably beautiful artwork" wasn't created by unattended AI. It was created by artists who wielded AI as a tool for their artistic creativity, not unlike how we programmers wield AI to generate pieces of the code that we want to create. As a person who uses AI daily, I have no expectation that AI will be able to do its thing without my guiding hand. It can barely get the syntax right and make the code compile (and often generates code that _doesn't_ compile), much less build software unattended.
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.
You're putting a lot of faith into your prediction of the future. Considering how little you know about AI, it's a surprisingly presumptuous prediction as well. (You could prove me wrong by explaining why you think it will happen very shortly. But you can't).
Re: (Score:1)
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.
You're putting a lot of faith into your prediction of the future. Considering how little you know about AI, it's a surprisingly presumptuous prediction as well. (You could prove me wrong by explaining why you think it will happen very shortly. But you can't).
I was a professional software engineer for three decades working on many different projects from the big tech companies to small startups in a bunch of domains, and apart from using AI on a daily basis for the last couple of years, I've studied the topic directly under someone that just received a nobel prize for AI. My prediction comes from first-hand experience of working with AI on projects, including writing software with AI. It really is blindingly obvious to people that have figured out how to use i
Re:Well said (Score:4, Funny)
But you didn't explain why you think AI will be able to do that very shortly. Considering you have so much experience, and you are so smart, it's amazing you can't answer the question.
Re: (Score:2)
I don't know what kind of answer you are asking for.
Of course you don't, but that's because you lied about your credentials.
You are unable to discuss the topic with any level of technical ability. All you were able to do is brag how smart you are, which ironically shows you are ignorant.
Re:Well said (Score:4)
Most people do not understand what is at the heart of an LLM, and as such, doesn't understand its limitations.
I'll simplify a bit for the sake of keeping this post short, but in essence, the "magic" part of LLM is a model that; when given input as tokens (which are words or parts of words) will return the probability for the next word.
The model itself is stateless, it will always return the same words with the same probability given the same input.
It doesn't learn.
It doesn't remember.
It doesn't think.
It doesn't reason.
It doesn't understand.
It only create a list of the next word with attached probability of each.
Of course the "wrapper" around this Magic feeds all previous conversation with the addition of the new word, to generate the next word, and keep on doing that until an answer is complete. That is why it's still power hungry and time-consuming. Having the option to adjust temperature (not just picking the most probable word) and randomness/seed (don't generate the same list of words).
Right now, with the "reasoning" models, we are going down the same path as we did with XML back in the day. "If you can't solve it using XML, then you are not using enough XML". Basically feeding the complete result of the LLM back into itself (or a different one) to have one more pass to see if the training data can match some outlier or unusual text.
To train these models it takes the amount of power of a small city. The technology is almost at its peak. It will improve of course, but not significantly. If something else than LLM comes along, then we can revisit the topic.
Just to be clear: I'm using Copilot (github) both in a professional capacity and for my hobby coding projects. I also have a paid sub to ChatGPT helping me looking into things I want to learn more about. It's a fantastic technology, and it can really help. But it doesn't really do all the things that people think it will do.
Re: (Score:3)
The big vendors of AI are certainly claiming that human software engineers will be replaced very soon. But they have a direct financial incentive to make that claim, even if it is not true.
Industry experts have said otherwise in articles published right here on Slashdot.
Of course, I don't know if these "industry experts" actually know what they are talking about. I am sure they know more than I do about the situation, but experts have been wrong before.
All I know is: time will tell. I am not panicking to
Re: (Score:2)
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.
Engineering vs Developing vs Coding
Engineering is designing something from principles.
Developing is building something based on previous experience building things.
Coding is writing code.
AI systems can generate code: follow the logic of the language and predict what piece goes next. Developers can use AI generated blocks of code like Legos to build something. With training and guidance, AI can piece together blocks of code to build larger structures to make developing easier and faster.
None of this sugges
Re:Well said (Score:4, Insightful)
"AI will replace our jobs when the customer can clearly and correctly describe their requirements; our jobs are safe."
Re: (Score:3)
To a large degree, what qualifies as "clear and correct" depends on the knowledge and skill of the reader of requirements as much as the writer. On the (complex) system I am working on, the people implementing the hardest part have often discovered, years later, why many of the requirements were originally written the way they originally were rather than they way the implementers wanted.
Re: (Score:2)
Yeah pretty much.
I once was asked by my company's executives to build some dashboards to help them have "better visibility" into trends that the company was experiencing.
"OK, what do you want on these dashboards?"
"We don't know, you figure that out."
That's about all the requirements you get, in a lot of cases. AI could come up with some dashboards, but would they be useful or relevant? Probably not.
The one thing the executives DID know, was *when* they wanted the dashboards!
Re: (Score:3)
There always was sanity. If you watch vibe coders at work, you can tell the tools are nowhere near where they're hyped at. Sure the early days they seemed cool enough where ChatGPT would get you a lot of code that seemed to work, but ask it more sophisticated problems and things break down really quickly. There are plenty of videos
Re: (Score:2)
Much more likely is that programmers and everyone else will use this technology to do as much work for them as cybernetically possible.
At the same time, any coding practices that are boring and time consuming (like exception checking, logging and testing) will still be done because AI works fast and doesn't get bored.
Re: (Score:2)
That all sounds great to me!
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.
Re: (Score:1)
Hello,
Except that if it can "write the documentation" out of your function prototype, then it means that the function prototype is self explanatory enough and does not need documentation.
Let us take a function:
int addsTwoNumbers(int a, int b);
Adding 6 lines of "documentation"(*) above that reads:
// There is a function called addsTwoNumbers
// this function will take 2 inputs
// The first one called "a"
// and a second one called "b"
// The function will return the result of the addition of these 2 numbers
T
Re: I found one use for AI coding assistants (Score:2)
I know. But project rules mandate checkstyle rules that enforce every public method be documented.
I donâ(TM)t make the rules. I just come in and write the code.
Re: (Score:2)
I do a lot of ETL work, and I'm using AI as a first-semester-intern type worker.
"Make me a Java class that matches this CSV header so I can import the file using OpenCSV"
"Make me a DB2 create table statement that matches this Java class"
etc.
I'm too lazy to create an account and provide any extra training and such, so I do end up needing to fix a few things related to our internal standards on naming and DB table structure, and I have to add the permission grants statements but it saves me plenty of copy/pas
Re: (Score:2)
So you need to go through the generated code to make sure it's named correctly.
So it's doing nothing more than advanced auto-complete and templates you get from an IDE like IntelliJ
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.
Re: (Score:2)
He never logged into the source control and as far as I can tell never went into a text editor.
Well at least he was self-aware enough not to actually try anything.
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.
Re:A question for AI crazy management. (Score:5, Interesting)
On a deeper level, we DO have a name for what LLMs do to generate code: Cargo Cult Programming.
I'm a senior developer and use LLM assistance multiple times an hour. >90% of the time I find something valuable in what it produced (even though rarely accept what it suggested directly, and I often write or rewrite every single line).
So what value does it have if I'm not accepting its code overall? Lots of value....
1. As a professional I produce code that (1) I can reason about why it's correct in all possible environments, (2) I'm confident that the way I've expressed it is the best it can be expressed in this situation. The LLM can spit out several different ways of expressing it, helping me assess the landscape of possible expressions, allowing me to refine my evaluation of what's best. (It doesn't yet help at all with reasoning about correctness).
2. About 10% of the time I accept some of the lines it suggested because they save some inescapable boilerplate. Or it spits out enough boilerplate to tell me hey, I need to invent an abstraction to avoid boilerplate here. I'd have gotten there myself too, just slower.
3. Sometimes I find myself learning new idioms or library functions from its suggestions.
I think management is right to be AI crazy. LLMs have increased the rate at which I solve business needs with high quality code, and I think my experience generalizes to other people who are willing to take it on and "hold it right". (Of course, there'll be vastly more people who use it to write low quality code faster, and it'll be up to management to separate the good from the bad just like it always has been.)
Re: (Score:2)
4. Writing the first core version of a service or UI. I’ll typically use close to 100% of those generated lines, and then continue building with LLM assistance where it makes sense. It makes a big difference to development velocity.
5. Finding bugs. If some bug isn’t obvious to me, provide the code to an LLM and describe the problem. Its success rate is high.
6. Working with tech I’m not particularly familiar with (an extension
Re: (Score:2)
On a deeper level, we DO have a name for what LLMs do to generate code: Cargo Cult Programming.
I'm a senior developer and use LLM assistance multiple times an hour. >90% of the time I find something valuable in what it produced (even though rarely accept what it suggested directly, and I often write or rewrite every single line).
So what value does it have if I'm not accepting its code overall? Lots of value.... 1. As a professional I produce code that (1) I can reason about why it's correct in all possible environments, (2) I'm confident that the way I've expressed it is the best it can be expressed in this situation. The LLM can spit out several different ways of expressing it, helping me assess the landscape of possible expressions, allowing me to refine my evaluation of what's best. (It doesn't yet help at all with reasoning about correctness). 2. About 10% of the time I accept some of the lines it suggested because they save some inescapable boilerplate. Or it spits out enough boilerplate to tell me hey, I need to invent an abstraction to avoid boilerplate here. I'd have gotten there myself too, just slower. 3. Sometimes I find myself learning new idioms or library functions from its suggestions.
I think management is right to be AI crazy. LLMs have increased the rate at which I solve business needs with high quality code, and I think my experience generalizes to other people who are willing to take it on and "hold it right".
Well said. I do the same.
Re: (Score:2)
2. About 10% of the time I accept some of the lines it suggested because they save some inescapable boilerplate. Or it spits out enough boilerplate to tell me hey, I need to invent an abstraction to avoid boilerplate here. I'd have gotten there myself too, just slower.
99% of the time there is value in shufting off boilerplate into a function or similar.
Re: (Score:2)
If you see smoke or fire then sound the alarm.
If you see red or green then the traffic light is working.
But.
If you see smoke and fire then sound the alarm.
If you see red and green then the traffic light is broken.
The problem with natural language isn't that it can't be expressive, and cannot handle each and every concept that matters in a programming language, it's that it's so encumbered by "common sense" that expressing anything in a natural language that isn't
I'm glad (Score:2)
you got all of that straightened out for us.
Re: (Score:2)
Natural language can express complex concepts, but specialized languages do so in a more streamlined way to make those ideas easier to work with in specific contexts.
Does there actually exist a proof that shows any "natural language" can express any concept?
Re: (Score:2)
There was an attempt to make a programming language that reads like a natural language. COBOL. It turns out that programmers find in clunky to use and non-programmers still can't produce a program in it. That is, even though it is a programming language, it is insufficiently expressive.
Expressiveness is more than the absolute pass/fail can the concept be expressed. It's how well it can be expressed, how succinctly, how precisely, and how unambiguously.
BTW, to be No True Scotsman, you would have to present a
No experience but a lot of opinions? (Score:3)
I use the AI for all kinds of tasks now and it is immensely productive. I don't think most of the people commenting here are actually using it.
I wanted to add a feature to my project today. There would be a global rules file that would contain most of the configuration settings in one place that would be easy to see and modify. So I suggested that to the AI. It cheerfully volunteered to do that for me and it did.
"The global rules now control important aspects of your application's behavior, allowing you to easily adjust settings in one place rather than hunting through multiple files. Would you like me to continue integrating the global rules into other parts of your application, such as the database configuration or user management features?
Everything it had done worked beautifully, so I am thinking I will say yes.
Re:No experience but a lot of opinions? (Score:4, Interesting)
Everything it had done worked beautifully,
Well, this shows you haven't been using AI much.
Re: (Score:2)
The AI has written several thousand lines of properly working code for me over the past few days. But keep on coding by hand, buddy.
Re: (Score:2)
Have you checked all of those lines to make sure they don't do something horrible in corner cases, or worse, allow an exploit? Did you check to see if those several thousand lines are maintainable and couldn't be done better in 100 lines?
Re: (Score:2)
All of the code was written incrementally at my direction. I reviewed it and tested it at each iteration. Sometimes there were bugs and I had to get the AI to fix it's work.
It is a very powerful technology. I suggest that people go ahead and learn how to use it or be left behind.
Re: (Score:2)
I suggest that people go ahead and learn how to use it or be left behind.
I’ve stopped arguing with people about it (mostly haha) for this reason. They’re either going to have to figure it soon enough without our help, or as you say be left behind.
Re: (Score:2)
I can understand why a lot of people will feel threatened by this tech. It's a very big change in the way you work.
Working with AI is very liberating in a sense though. You can branch your code and do some experimenting with it in ways that would have taken you too much time to bother with in the past. If it doesn't work out? No problem, you didn't make a large investment of time and energy. But sometimes it really does work out and you have some significant improvements with relatively little effort.
Re: No experience but a lot of opinions? (Score:2)
I think that describes what several of the previous posters are saying too.
Explain, generate, test, repeat.
That basically how I'm using it too
Re: (Score:2)
I find that you have to be careful about what you tell it to do. If you ask for a little too much at once it will go nuts, hit most of the files in your codebase, and the results will be buggy. If you make specific requests with limited scope the AI is much more likely to succeed.
Re: (Score:2)
I tend to work from the bottom up, building small functions that I can test and then trust, then integrate those functions.
Keeps it understandable and me in the driver's seat.
I like to say I bang rocks together to code i.e. just use nano
What model(s) do you use?
Re: (Score:2)
I use Windsurf as the IDE, which is a derivative of Visual Studio Code. It is basically a front-end for coding with an AI and it does everything. I had been using VS Code for years so it was an easy transition. Have a look. https://codeium.com/pricing [codeium.com]
There's an AI chat panel on the righthand side and you can choose from multiple AI backends such as Claude Sonnet, Gemini, GPT-4o, DeepSeek, etc. I pay $10/month for the Pro plan and it is incredibly well worth it. Here's my referral link, it would give us both
Re: (Score:2)
All of the code was written incrementally at my direction. I reviewed it and tested it at each iteration.
OK, well that contradicts what you said in your previous post [slashdot.org], where you describe it being done with a suggestion and nothing more:
"I wanted to add a feature to my project today...So I suggested that to the AI. It cheerfully volunteered to do that for me and it did."
So now we know you are either a liar, or really bad at describing things.
Most likely you are copying this account from some post you read somewhere, and it's not something you did yourself. Your description of the feature is too vague for a human or AI to really understand. He/She/They/it would need to ask clarifying questions.
Re: (Score:2)
What's with the weird snark? I'll assume you have zero experience working with this tech, but a lot of opinions.
The AI will write an extensive amount of code based on simple prompts and my statement was completely truthful. You then obviously have to test it. Sometimes the generated code won't work quite right, there's a missing import or something minor. You can just paste in the error message and the AI will fix it. These days it can even run your code itself, evaluate error messages on its own and make f
Re: (Score:2)
Maybe you should just stop lying.
Re: (Score:2)
You have clearly demonstrated that you have zero experience with this tech.
Re: (Score:2)
Re: (Score:1)
> he is only at several thousand lines
last month I had about 5 million lines, porting large projects from one language to another.
Re: (Score:2)
It also shows extreme overconfidence in AI and/or a lack of awareness of their own shortcomings as a programmer.
Re: (Score:2)
The global rules now control important aspects of your application's behavior
Did it mention which aspects, or do you need to now read through your codebase to find out what your codebase actually does?
Re: (Score:2)
The AI explicitly describes all the code modifications it proposes. All changes are shown in the IDE and you can accept or reject them, meanwhile you can test it. Maybe you should try it for yourself.
Re: (Score:2)
Re: (Score:2)
The AI is unfailingly polite and enthusiastic, maybe to a fault. It will compliment you - "That's an excellent suggestion!". I have yet to see it give me a good scolding. Once in a while it should say "nope, that would be a stupid thing to do".
Re: (Score:2)
Who thought up the term "vibe"? (Score:2)
Re: (Score:1)
Re: (Score:2)
“[. .
Re: (Score:2)
Re: (Score:3)
Description of the term: https://x.com/karpathy/status/... [x.com]
About him: https://en.wikipedia.org/wiki/... [wikipedia.org]
Works great on investors... (Score:2)
You put investors in a 'vibe' and engineer then out of their money.
It also allows to keep 'vibe' of the code base.
We take a clusterf.k in one language - push it through the AI and it produces code in target language with the same perfect clusterf..k vibe.
I've been using AI to code (Score:2)
Job security (Score:2)
are you sure this isn't the code base for the IRS?
there is no vibe (Score:2)
AI still outputs trash code (Score:2)
AI code generation can be very useful but unless someone understands the code to a degree of expertise they have no idea if it's trash or not and certainly no idea how to debug it. So yeah I'd say it's fine to ask AI questions and get it to generate boiler plate but only if you can understand what it's outputting and fix it or deal with edge cases. So it augments knowledge, it does not replace it.
What is worse is that when it's wrong it can be very wrong in obvious or non obvious ways. That is not surprisin
A few simple test cases (Score:2)
Has anyone given the AI the canonical homework problems from Intro to Computer Programming and compare the output of the AI to the homework solutions?
Give it something simple, say, like "program a bubble sort of a list of key-value pairs"? Yeah, I know bubble sort is a stupid algorithm, but it is simple enough as a homework problem.
Civil engineering? (Score:3)
Idiocracy (Score:2)
So that's how the infrastructure in the move Ideocracy came out that way?
Pffft (Score:3)
We are entering a golden age where we will shift from the creative end to the bug-hunting one at 3 x the price.
I, for one, welcome our LLM garbage spewers. They will enrich my early retirement.
You're probably right (Score:2)
But you are assuming that our society's necessary infrastructure won't collapse because of AI induced errors...
Someone's got to be the pessimist round here.
You are assuming (Score:2)
that you will be able to force yourself off your lawn chair to even look at the hot, smelly mess generated by the AI?
Re: (Score:2)
AI will replace software engineers? (Score:2)
Going on ChatGPT I am not impressed. Gets very confused and makes stuff up.
Arguing over the definition of words (Score:2)
So it's not engineering, but.. (Score:2)
depends on what you're doing: there's a space for (Score:2)
- write a python script to heuristically parse a messy format that was output in some logs so I could troubleshoot a customer issue
- write some basic bash scripts to avoid doing some little boring task by hand
- help me write some python unit tests
- finish up some small refactoring of some code
It works sometimes more than others, but it will get better quickly. This is different from vibes coding, it's jus
Warning, your favorite AI doesn't know (Score:2)
left from right or understand the right hand rule.
If you use an AI to help solve problems in physics or engineering fields to determine directions of forces, currents, torques, 3D graphics orientations, or navigation, then you may have a problem. I recently ran into this using AI to create some simple 3D graphics and as I examined the issue, I was able to determine that the AI could not understand clockwise from counter-clockwise, nor right-hand rule. I was testing Gemini 2.5 when I ran into the problem. I
Re: (Score:3)
You're not on a blacklist, you're just number 564 to apply to the role, and the AI-based application tracking system didn't find an exact combination of four words in your document that the recruiter decided was the actual criteria for the role you've applied to. They got suggested 27 candidates from the over 1,200 applications, and the recruiter took too long to sort through them so they've dumped all the applicants and re-o