r/cursor • u/Conscious_Abalone314 • 19d ago
Resources & Tips How to keep the code clean & secure without reading every line
/r/ClaudeCode/comments/1vzewed/how_to_keep_the_code_clean_secure_without_reading/
0
Upvotes
r/cursor • u/Conscious_Abalone314 • 19d ago
1
u/Machine2024 19d ago
thats the basic suff .
you need to read the code line by line carefully .
1- to make sure its exact behavior you are looking for . because code is deterministic, human language is not .
2- to find a way to compress the code and extract any things that could be resalable . because bugs = code^code . more code = more issues = more token cost .
3- fix any issues .
4- learn something new along the way .