Live data from Hacker News

Ask HN: How do you learn with LLMs?

news.ycombinator.com

1–10 of 10 posts

Ask HN: How do you learn with LLMs?

#1
I am not happy about GenAI progress affecting my career though I am excited about its application for personalized learning. How do you use LLMs to learn advanced technical stuff better?

e.g., socratic method

Re: Ask HN: How do you learn with LLMs?

#2
I've had a bit of success building little games. Not exactly what you'd consider "advanced technical stuff", but I used AI to help me get better at reading the water for fly fishing.

For more technical stuff, like deep database expertise, I used it probably like you do, just tons of follow-ups, ELI5 commands, etc.

Re: Ask HN: How do you learn with LLMs?

#4
post #2

I've had a bit of success building little games. Not exactly what you'd consider "advanced technical stuff", but I used AI to help me get better at reading the water for fly fishing. For more technical stuff, like deep database expertise, I used it probably like you do, just tons of follow-ups, ELI5 commands, etc.

tnx. can you share more about your game experiment?

Re: Ask HN: How do you learn with LLMs?

#5
I love the question. I haven't been too intentional in LLM driven learning but for code I do like to get the LLM to make the code and then I review it closely making sure I understand it. Question it etc.

Socratic method seems like a good idea maybe there are skills out there for it.

Re: Ask HN: How do you learn with LLMs?

#6
post #5

I love the question. I haven't been too intentional in LLM driven learning but for code I do like to get the LLM to make the code and then I review it closely making sure I understand it. Question it etc. Socratic method seems like a good idea maybe there are skills out there for it.

[dead]

Re: Ask HN: How do you learn with LLMs?

#7
I don’t typically use AI when programming.

When putting my perf tests behind a setTimeout I found I could push my WebSocket message send speed from 3,250,000 messages per second to about 3,250,000 messages in about 0.002 seconds. I did not believe the numbers so I asked about this on IRC. People said my perf must be broken and I should use AI to find the error. After a few factual corrections about the code Claude confirmed the numbers as valid.

Re: Ask HN: How do you learn with LLMs?

#9
Learn by doing. Even more true nowadays, I think the best way to learn and understand how LLM and advanced topic like agent harness works is by, get your hands dirty and start building one. Trust me, it will pay off, one day.

Re: Ask HN: How do you learn with LLMs?

#10
I generally outline the problem first that I would like to solve, then ask for best practice approaches and industry standards that apply to situations. Next, I ask to summarize the pros and cons of the various possible solutions and how they apply to my particular situation.