Ask HN: How have you integrated LLMs in your development workflow?
1–10 of 78 posts
Re: Ask HN: How have you integrated LLMs in your development workflow?
#2Re: Ask HN: How have you integrated LLMs in your development workflow?
#3Code autocompletion. I think it works around 60% of the cases, sometimes it saves some tipping. Performance increase: small. Additionally, I don't learn the API as good as if I were to type it, considering moving back.
Maybe some day it will be good enough but that day is not now.
Re: Ask HN: How have you integrated LLMs in your development workflow?
#4It's really useful for basic stuff, scripting, boilerplate, repetitive things, SQL. For example it's great at converting types from different languages, or generate types from API reference docs.
You gotta be careful though as it is not perfect and if you do something "not typical" it will not work well. Also sometimes it is a bit outdated, produces code with different "style", or just plain wrong stuff, so you have to tweak it a bit.
It's not going to code for you yet (unless you do very basic stuff) but it's a great tool to increase productivity. I do believe I move faster.
Re: Ask HN: How have you integrated LLMs in your development workflow?
#5Re: Ask HN: How have you integrated LLMs in your development workflow?
#6Code autocompletion. I think it works around 60% of the cases, sometimes it saves some tipping. Performance increase: small. Additionally, I don't learn the API as good as if I were to type it, considering moving back.
Re: Ask HN: How have you integrated LLMs in your development workflow?
#7Re: Ask HN: How have you integrated LLMs in your development workflow?
#8But you need to use Retrieval Augmented Generation (or bare LLMs will either invent the nonexistent or present solutions to non-proposed problems).