this post was submitted on 25 Aug 2024
65 points (97.1% liked)

Web Development

3413 readers
3 users here now

Welcome to the web development community! This is a place to post, discuss, get help about, etc. anything related to web development

What is web development?

Web development is the process of creating websites or web applications

Rules/Guidelines

Related Communities

Wormhole

Some webdev blogsNot sure what to post in here? Want some web development related things to read?

Heres a couple blogs that have web development related content

CreditsIcon base by Delapouite under CC BY 3.0 with modifications to add a gradient

founded 1 year ago
MODERATORS
 

Matt Garman sees a shift in software development as AI automates coding, telling staff to enhance product-management skills to stay competitive.

top 27 comments
sorted by: hot top controversial new old
[–] Ephera@lemmy.ml 60 points 2 weeks ago (1 children)

Fucking hell, 80% of my job is finding out what the requirements are. 20% is then using a specialized language to write down all these requirements and the thousands of decisions I make on how to meet them.

If AI somehow replaces those 20% coding,

  • I still have to do 80% of my job, and
  • I still have to tell the AI all this shit, just this time in natural language, which is awful for codifying requirements.

How is this guy a manager, but has no idea what a software engineer does all day?

[–] astrsk@fedia.io 24 points 2 weeks ago (1 children)

This is why engineering managers need to come from engineering. If they couldn’t help out in the codebase in an emergency situation, they shouldn’t be making decisions like this. It’s not unreasonable for ELT to ask questions about this but if their reporters are not telling them the truth, the whole structure is broken.

[–] Angry_Autist@lemmy.world 10 points 2 weeks ago

But without ignorant, self-congratulating MBAs to artificially reduce productivity to maintain the illusion of constant growth, companies would make safer products with greater care and understanding of the entire process holistically, and you can't pay your shareholders in understanding.

[–] superb@lemmy.blahaj.zone 58 points 2 weeks ago (1 children)

Local boss doesn’t understand what his employees do all day

[–] TrumpetX@programming.dev 2 points 2 weeks ago

Lemmy... or Reddit, but probably Lemmy.

[–] JoMomma@lemm.ee 34 points 2 weeks ago (2 children)

All these CEOs and CIO have been huffing too much paint

[–] mozz@mbin.grits.dev 16 points 2 weeks ago (1 children)

The prospect of cutting out all those $130k salaries is a hell of a drug

[–] Angry_Autist@lemmy.world 13 points 2 weeks ago

Frankly, AI is FAR more suited to replace the C-Suites than it is competent devs at this point. Can't wait till the first company nominates an expert system as the CEO.

[–] Angry_Autist@lemmy.world 1 points 2 weeks ago

Paint? No, self-generated Jenkem.

[–] probableprotogen@lemmy.dbzer0.com 32 points 2 weeks ago (1 children)

I would personally adore seeing amazon's infastructure ignite in flames over this terrible idea

[–] LoamImprovement@beehaw.org 7 points 2 weeks ago

God, please let Amazon crumble under the weight of its hubris in my lifetime.

[–] NoForwardslashS@sopuli.xyz 25 points 2 weeks ago

Project manager tells coders that project management is a much more important and irreplaceable job

[–] ericbomb@lemmy.world 25 points 2 weeks ago (2 children)

I'm dying to know what AI model he has that can maintain code XD

[–] Ephera@lemmy.ml 11 points 2 weeks ago (1 children)

Why maintain code? Just describe the program you want in a query and then every time it might need maintenance, you just tell it to generate anew.

[–] floofloof@lemmy.ca 23 points 2 weeks ago

You can add "Don't have bugs" to the prompt to ensure the application continues to run smoothly.

[–] n3m37h@sh.itjust.works 4 points 2 weeks ago

Oh most definitely GROK™ as our Lord and saviour the Humble master of the greatest vehicle on the planet and in space Eron Musky will have it done by the end of the year!!!

In a leaked recording, Amazon cloud chief admits he doesn’t understand software development, also doesn’t understand the current AI offerings’ capabilities, and just wants the Amazon stock price to rise so he can buy a bigger boat.

[–] Zacryon 13 points 2 weeks ago* (last edited 2 weeks ago)

Doubt that for the next decade at least. Howver, we can already replace CEOs by AI.

A chinese company named NetDragon Websoft is already doing it.
https://www.independent.co.uk/tech/ai-ceo-artificial-intelligence-b2302091.html

If you want to play with fire, Mr. Amazon Guy, don't be surprised to get burned. :]

[–] mashbooq@infosec.pub 11 points 2 weeks ago (3 children)

The only person in my company using AI to code writes stuff with tons of memory leaks that require two experienced programmers to fix. (To be fair, I don't think he included "don't have memory leaks" in the prompt.)

[–] Repelle@lemmy.world 16 points 2 weeks ago* (last edited 2 weeks ago) (2 children)

I’m amazed how overstated llm ability to program is. I keep trying, and I’ve yet to have any model output so much as a single function that ran correctly without modification. Beyond that it has made up APIs when I’ve asked about approaches to problems, and I’ve given it code to find bugs and memory issues I think are fairly obvious and it fails every time.

[–] kippinitreal@lemmy.world 4 points 2 weeks ago* (last edited 2 weeks ago)

Could it be prompts by devs are different from lay folk? For example, "write a website for selling shoes" would give a more complete result compared to "write a single page app with a postgres back end with TLS encryption" (or whatever), which would add more constraints & reduce the pool of code the AI steals from.

[–] FizzyOrange@programming.dev 2 points 2 weeks ago (1 children)

It really depends on the domain. E.g. I wrote a parser and copilot was tremendously useful, presumably because there are a gazillion examples on the internet.

Another case where it saved me literally hours was spawning a subprocess in C++ and capturing stdin/out. It didn't get it 100% right but it saved me so much time looking up how to do it and the names of functions etc.

Today I'm trying to write a custom image format, and it is pretty useless for that task, presumably because nobody else has done it before.

[–] Repelle@lemmy.world 1 points 2 weeks ago (1 children)

This makes sense, I’ve largely been trying to use it for things I do regularly, and I’m pretty senior, having been in the industry for some time, so I tend not to be asking the questions that will have a million examples out there. But then again, these are the sorts of things that it will need to be able to do to replace people in industry.

[–] FizzyOrange@programming.dev 2 points 2 weeks ago

I’m pretty senior, having been in the industry for some time, so I tend not to be asking the questions that will have a million examples out there

Me too, but this was C++ where there isn't a strong culture of making high quality libraries available for everything (because it doesn't have a proper package manager, at least until very recently), so you do end up having to reinvent the wheel a fair bit.

And sometimes you just need things a bit different to what other people have done. So even though there are a gazillion expression parsers out there (so the LLM understood it pretty well) there are hardly any that support 64-bit integers. But that's a small enough difference that it can deal with it.

[–] okamiueru@lemmy.world 10 points 2 weeks ago

The quality of code available for LLMs to learn from is normally distributed with the peak around "shouldn't pass code review".

What experienced developers write code at would be on the top 5 percentile, and are used to their colleagues to do the same. The effort put into reviewing code, also takes that into account.

If a team member starts using LLMs to write chunks of code, the quality will at best have the same normal distributed peak as the learning data. Which is a incredibly waste of resources, as you now have to spend 10x more time on reviewing the code, regardless of how often it ends up being ok

[–] Mirror Giraffe@piefed.social -1 points 2 weeks ago (1 children)

I find that my programming speed is up 15-20 percent since I started using supermaven copilot. I also have become better at naming functions as it increases the odds of the copilot understanding what I'm trying to do.

Also writing tests go way faster.

[–] mashbooq@infosec.pub 2 points 2 weeks ago

Are you able to share what kinds of applications and what languages you write in? I'm still trying to grasp why LLM programming assistants seem popular despite the flaws I see in them, so I'm trying to understand the cases where they do work.

For example, my colleague was writing CUDA code to simulate optical physics, so it's possible that the LLM's failure was due in part to the niche application and a language that is unforgiving of deviations from the one correct way of writing things.