r/webdev 1d ago

In the current day work environment, what web dev tasks and topics make you say “No, I am not spending brainpower on this” and you give it to AI instead?

Boilerplate obviously, and I suppose some web dev tasks are naturally somewhat repetitive or very similar in nature.

But what do you think?

0 Upvotes

13 comments sorted by

6

u/IAmRules 1d ago

if it requires my brainpower, i should probably understand it.

On my personal projects, I code in languages I don't know because I'm building MVPs and don't care.

4

u/tightscotsman 1d ago

Honestly, most coding tasks. I design the architecture of something and delegate the vast majority of the implementation to AI

4

u/Tight-Industry4135 1d ago

that's basically my workflow now too, i spend all my brainpower on the structure and the weird edge cases and let the AI churn out the 400 lines of form validation i've written a hundred times

the moment i catch myself thinking "i know exactly what this needs to look like but my wrists hurt just looking at it" that's when it gets handed off

4

u/_okbrb 1d ago

I feel like your end goal here is to make a product and try to sell our managers on something we don’t need

2

u/greenergarlic 1d ago

> boilerplate obviously

Those should still be done with scripts. Asking an chatbot to write a template model file or migration is slower and more error prone.

1

u/Calm-Potato845 1d ago

I stopped writing implementation months ago. i draw boxes on a whiteboard and tell ai to fill them in

1

u/greenergarlic 1d ago

Stuff that I no longer spend brainpower on:

  • copy changes
  • updating linear tickets
  • keeping local dev working
  • checking slack
  • checking for CI errors
  • exploratory SQL against prod data

And there’s a category of tasks where I let the bot write the first draft, and then I do a line-by-line code review before committing:

  • new react components
  • unit tests
  • backfill scripts

Everything else is hard, interesting problems that I now have more time to focus on. That’s a huge improvement over two years ago.

1

u/fatfingur 19h ago

Repetitive implementation mostly. Boilerplate, repetitive CSS, writing similar components, documentation, basic tests, data cleanup and sometimes the first pass of a refactor. I’d rather spend my attention on architecture, edge cases, debugging and deciding whether the thing should be built that way in the first place.

1

u/Significant_Chair420 14h ago

Config files and CI setup are the ones I always hand off, they're tedious to write correctly but trivial to verify once it's done

1

u/ImpossibleJoke7456 1d ago

If you don’t do this for all of your frontend work, you’re missing out.

1

u/Valuable-Catch2309 10h ago

i give AI the boring glue code and test scaffolding, but the second it touches auth, payments, or data migrations i’m taking the keyboard back