this post was submitted on 18 Apr 2025
52 points (87.1% liked)
Asklemmy
47600 readers
914 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!
- Open-ended question
- 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.
- Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
- Not ad nauseam inducing: please make sure it is a question that would be new to most members
- An actual topic of discussion
Looking for support?
Looking for a community?
- Lemmyverse: community search
- sub.rehab: maps old subreddits to fediverse options, marks official as such
- !lemmy411@lemmy.ca: a community for finding communities
~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~
founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I find they're pretty good at some coding tasks. For example, it's very easy to make a reasonable UI given a sample JSON payload you might get from an endpoint. They're good at doing stuff like crafting farily complex SQL queries or making shell scripts. As long as the task is reasonably focused, they tend to get it right a lot of the time. I find they're also useful for discovering language features working with languages I'm not as familiar with. I also find LLMs are great at translation and transcribing images. They're also useful for summaries and finding information within documents, including codebases. I've found it makes it a lot easier to search through papers where you might want to find relationships between concepts or definitions for things. They're also good at subtitle generation and well as doing text to speech tasks. Another task I find they're great at is proofreading and providing suggestions for phrasing. They can also make a good sounding board. If there's a topic you understand, and you just want to bounce ideas off, it's great to be able to talk through that with a LLM. Often the output it produces can stimulate a new idea in my head. I also use LLM as a tutor when I practice Chinese, they're great for doing free form conversational practice when learning a new language. These are a just a few areas I use LLMs in on nearly daily basis now.
I use LLMs to generate unit tests, among other things that are pretty much already described here. It helps me discover edge cases I haven't considered before, regardless if the generated unit tests themselves pass correctly or not.
Oh yeah that's a good use case as well, it's a kind of a low risk and tedious task where these things excel at.