Comment on Top engineers at Anthropic, OpenAI say AI now writes 100% of their codeparentComments−KellyCriterion7moyou have to give it clear statements what you are looking for, how the solution should work and what you are expecting.also insert into prompts (or in the base prompt) someting like (e.g. example from my Claude setup) >>- Configuration as data, logic as loops- Dynamic rendering (adapts to data size/content)- Single source of truth (no scattered magic numbers)- Defensive coding (null checks, division by zero)- O(1) lookups over O(n) searches where possible
Comments
you have to give it clear statements what you are looking for, how the solution should work and what you are expecting.
also insert into prompts (or in the base prompt) someting like (e.g. example from my Claude setup) >>
- Configuration as data, logic as loops
- Dynamic rendering (adapts to data size/content)
- Single source of truth (no scattered magic numbers)
- Defensive coding (null checks, division by zero)
- O(1) lookups over O(n) searches where possible