this post was submitted on 12 Apr 2025
123 points (96.9% liked)

Programming

19432 readers
272 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 5 points 1 day ago (1 children)

Not really for writing yet either. Its an assistant. It can write code sections and comments that then have to be reviewed and edited a bit. Rather than a coder having to go back and forth between a search engine as they write they are more likely to be able to stay in the ide.

[–] [email protected] -3 points 1 day ago (1 children)

If you google stuff all the time you have serious problems.

[–] [email protected] 6 points 1 day ago (1 children)

Have you actually worked in a programming role before? Googling things is absolutely the norm. Most people don't know every single in and out of every library/framework they're using, especially when learning new ones. This goes double for more complex or sprawling frameworks where it may be less than obvious how to perform a particular task from the documentation alone or when running into undocumented limitations or bugs (although admittedly an in-IDE assistant won't be too useful for that anyway).

[–] [email protected] -1 points 22 hours ago* (last edited 22 hours ago) (1 children)

I've been coding for more than 20 years. Googling things is the norm but not the job. You should have all your docs and API stored offline anyway.

The guy said going back and forth with a search engine. That's what juniors do, not software engineers.

[–] [email protected] 1 points 15 hours ago (1 children)

what have you worked in the same language for twenty years? I don't have all the libraries memorized and not only do new ones get created but formats change. Unless I have been using something recently I always check.

[–] [email protected] 1 points 14 hours ago* (last edited 14 hours ago) (1 children)

There are a lot of offline doc downloaders, man pages, books, even raw repositories to make sure that you're independent and can work offline or without a VPN to the company.

And again, I was only saying that only juniors do google searches all the time. When you get some experience, you have broader tasks like adding features, debugging, handling the architecture, or refactoring that require less google stuff.

[–] [email protected] 0 points 9 hours ago

I mean debugging and adding features is coding and debugging im even more likely to look up the things im looking at since I did not write it myself. I honestly rarely use man pages except for linux commands when im at the command line atm. Architecture usually is usually has its own team outside of the lowers.