this post was submitted on 10 Feb 2025
136 points (89.5% liked)
Technology
62073 readers
5473 users here now
This is a most excellent place for technology news and articles.
Our Rules
- Follow the lemmy.world rules.
- Only tech related content.
- Be excellent to each other!
- Mod approved content bots can post up to 10 articles per day.
- Threads asking for personal tech support may be deleted.
- Politics threads may be removed.
- No memes allowed as posts, OK to post as comments.
- Only approved bots from the list below, to ask if your bot can be added please contact us.
- Check for duplicates before posting, duplicates may be removed
- Accounts 7 days and younger will have their posts automatically removed.
Approved Bots
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I've seen it mainly used to assist with python scripts which work well not sure on how well it does shell scripts
Python is my primary language. For the way I write code and solve problems, it's the language where I need the least help from an LLM. Python lets you write code that is incredibly concise while still being easy to read. There's more of a case to be made for something like Go, since it seems like every single god damned function call ends up being
variable, err := someFuckingShit()
and then aif err!=nil
and manually handling it instead of having nice exception handling. Even there, my IDE does that for me without requiring a computationally expensive LLM to do the work.Like, some people have a more conversational development style and I guess LLMs work well for them. I end up constantly context switching between code review mode and writing code mode which is incredibly disruptive.