this post was submitted on 13 May 2026
32 points (92.1% liked)

Asklemmy

54307 readers
484 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy ๐Ÿ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~

founded 7 years ago
MODERATORS
 

I have been reading a lot that 90% of their code is AI generated, companies are pushing developers to use AI as it makes them fast. But I am a little cautious of believing them. Is it true? Also sorry I didn't find a css career subreddit so I am asking here.

you are viewing a single comment's thread
view the rest of the comments
[โ€“] idunnololz@lemmy.world 9 points 12 hours ago* (last edited 12 hours ago)

I'm still writing 90% of my code by hand at work. I think if you have total or close to total mastery in your domain, you should probably work faster than AI.

It takes a while for AI to generate code (Opus is pretty slow) and then you have to go review it and do rounds and rounds of fixes. It might be faster to use AI if there were unknowns or if you werent quite sure how to write the code. Otherwise I just find it faster to write it myself.

That being said I do use AI under some soecific circumstances:

  1. im working in a code base or area of code im unfamiliar with
  2. Im working in a language in unfamiliar with
  3. prototyping ideas
  4. generating boilerplate heavy code

For 1. And 2. I dont usually have ai write code for me. I would just ask it questions like "how do I write X in an idiomatic way in language Y".

For 3, I have it generate code that I then toss and rewrite if the prototype works.

For 4, this is rare in a good code base. Most of the boiler plate heavy code at work is in unit tests.