Earlier quoted context omitted.
Most of the time saving time is just an illusion. When that code will needed to be changed, people will spend more than 4 days debugging and understanding it. The mental model of it was written by AI. It can make sense or not at all. You’ll figure it out after 4 days.
The code is 2 files of 80 lines each and is very clear. There's no way any software developer needs 4 days to understand what it does. Moreover Claude can explain the functions used very clearly (if you're too lazy to jump to definition in your editor) LLMs are becoming actually useful to developers new to a language. Just as Google was 20 years ago.
Google CEO says more than a quarter of the company's new code is created by AI
981–990 of 1001 posts
Re: Google CEO says more than a quarter of the company's new code is created by AI
#982Earlier quoted context omitted.
Not so sure nowadays. Given how often big tech lays off employees and the abundance of recently laid off tech talent, trying to start your own company sounds a lot more appealing than ever. I consider myself risk-averse and even I am contemplating starting a small business in the event I get laid off.
Interesting. I think the same thing but I wonder if the market is not ready for products created by the big guys, what can I offer? Have you thought in that line?
All of that said, there are a lot of products that are produced by large companies and are just bad. Don’t be afraid to go after a Goliath if you see an opportunity.
Re: Google CEO says more than a quarter of the company's new code is created by AI
#983Earlier quoted context omitted.
You think when people say AI can only write trivial code that they are writing from the perspective of AI, where trivial is actually impressive? That's is backward ass logic.
no im saying they are anthropomorphizing the capabilities of these AIs which disguises how advanced they really are.
Re: Google CEO says more than a quarter of the company's new code is created by AI
#984I work for Google, and I just got done with my work day. I was just writing I guess what you'd call "AI generated code." But the code completion engine is basically just good at finishing the lines I'm writing. If I'm writing "function getAc..." it's smart enough to complete to "function getActionHandler()", and maybe suggest the correct arguments and a decent jsdoc comment. So basically, it's a helpful productivity…
I also work at Google and I agree with the general sentiment that AI completion is not doing engineering per se, simply because writing code is just a small part of engineering. However in my experience the system is much more powerful than you described. Maybe this is because I'm mostly writing C++ for which there is a much bigger training corpus than JavaScript. One thing the system is already pretty good at is wri…
Re: Google CEO says more than a quarter of the company's new code is created by AI
#985Earlier quoted context omitted.
Because I do security audits Functional bugs in edge cases are annoying enough, and I seem to run into these regularly as a user, but there's yet another class of people creating edge cases for their own purposes. The nonchalant "if it doesn't work"... I don't know whether that confirms my suspicion that not all developers are aware of (as a first step; let alone control for) the risks
And especially if it generates bugs in ways different from humans - human review might be less effective at catching it...
Edge cases will usually be the ones to get through. Most developers don’t correctly write tests that exercise the limits of each input (or indeed have time to both unit test every function that way, and integration test to be sure the bigger stories are correctly working). Nothing about ai assist changes any of this.
(If anybody starts doing significant fully unsupervised “ai” coding they would likely pay the price in extreme instability so I’m assuming here that humans still basically read/skim PRs the same as they always have)
Re: Google CEO says more than a quarter of the company's new code is created by AI
#986Earlier quoted context omitted.
I also work at google (until last Friday). Agree with what you said. My thoughts are 1. This quote is clearly meant to exaggerate reality, and they are likely including things like fully automated CL/PR's which have been around for a decade as "AI generated". 2. I stated before that if a team of 10 is equally as productive as a team of 8 utilizing things like copilot, it's fair to say "AI replaced 2 engineers", in my…
> including things like fully automated CL/PR's which have been around for a decade I haven't seen this yet so I'm intrigued. Is this a commercial product, or internal tooling?
You don't want a single PR that does that, because that would affect thousands of projects, and if something goes wrong with a single one, the whole PR needs to be rolled back.
Re: Google CEO says more than a quarter of the company's new code is created by AI
#987Earlier quoted context omitted.
no im saying they are anthropomorphizing the capabilities of these AIs which disguises how advanced they really are.
Not really what you said. In any case, people aren't doing that, they are just pointing out that AI writes poor code beyond very basic things. That's not Anthropomorphizing.
Re: Google CEO says more than a quarter of the company's new code is created by AI
#988Earlier quoted context omitted.
> and from the public in general Don't think the public will be that concerned about people in Google's salary bracket losing their jobs.
No one cares about self checkout on supermarkets impact on their employees, until their employer does something similar.
Re: Google CEO says more than a quarter of the company's new code is created by AI
#989I work for Google, and I just got done with my work day. I was just writing I guess what you'd call "AI generated code." But the code completion engine is basically just good at finishing the lines I'm writing. If I'm writing "function getAc..." it's smart enough to complete to "function getActionHandler()", and maybe suggest the correct arguments and a decent jsdoc comment. So basically, it's a helpful productivity…
I also work at Google and I agree with the general sentiment that AI completion is not doing engineering per se, simply because writing code is just a small part of engineering. However in my experience the system is much more powerful than you described. Maybe this is because I'm mostly writing C++ for which there is a much bigger training corpus than JavaScript. One thing the system is already pretty good at is wri…