▲ | k__ 4 days ago | |||||||
It's kinda funny that people are now taking decades of good coding practices seriously now that they work with AI instead of humans. | ||||||||
▲ | roxolotl 3 days ago | parent | next [-] | |||||||
I was talking to a coworker about how they get the most out of Claude Code and they just went on to list every best practice they've never been willing to implement when working previously. For some reason people are willing to produce design documentation, provide comments that explain why, write self documenting code and so on now that they are using LLMs to generate code. It's the same with the articles about how to work with these tools. A long list of coding best practices followed by a totally clueless "wow once I do all the hard work LLMs generate great code every time!" | ||||||||
| ||||||||
▲ | kingstnap 3 days ago | parent | prev [-] | |||||||
"Context engineering" + "Prompt Engineering": 1. Having clear requirements with low ambiguity. 2. Giving a few input output pairs on how something should work (few shot prompting). 3. Avoiding providing useless information. Be consicise. 4. Avoid having contradictory information or distractors. 5. Break complex problems into more manageable pieces. 6. Provide goals and style guides. A.K.A its just good engineering. |