←back to thread

Focus on decisions, not tasks

(technicalwriting.dev)
293 points kaycebasques | 2 comments | | HN request time: 0s | source
Show context
simonw ◴[] No.41883461[source]
This fits the way I like to use LLMs: I always ask them for options, then I decide myself which of those options makes the most sense.

Essentially I'm using them as weird magical documentation that can spit out (incomplete but still useful) available options to guide my decision making at any turn.

replies(2): >>41883780 #>>41886486 #
A_Venom_Roll ◴[] No.41886486[source]
Would you be willing to give an example of this?
replies(4): >>41887412 #>>41888251 #>>41888320 #>>41891978 #
1. setopt ◴[] No.41888251[source]
Not exactly the same… But recently I wanted to pick a library in Python or Julia for simulating differential equations using a GPU. So I asked ChatGPT which libraries exist for this (JAX, CuPy, etc.), asked it to generate code to solve e.g. the 2D heat equation on a 1000x1000 grid for 100 time steps using each of those frameworks. Then I stepped in and verified that each code appeared to do the same thing, and proceeded to benchmark their performance on my hardware. Afterwards I had an informed choice of which framework to use for my project, even though ChatGPT gave me the benchmark code instead of the answer.
replies(1): >>41889217 #
2. nuancebydefault ◴[] No.41889217[source]
Similarly I find Bing copilot very handy for exploring problem spaces and their solution spaces. Then i dig/ask deeper and deeper until i understand the solution. It is a quick way to brainstorm without diverting too much, and hence converging, since that tech knows a lot details about a lot of things.