0
Definition of ergonomic
How can you judge a code ergonomic ?
1 ответ
+ 1
Bonne question, rare sur Solo
There are at least two aspects
First: human - code interaction:
1. simplicity and elegance of the solution
2. coding style making it easy to understand by others
3. intelligent commenting and loads of it
4. Internal module strength (difficult to explain on the forum)
5. code entities never exceeding 15 lines
6. problem focused
7. TDD focus
9. special features and tricks free
10. clarity of paradigm
11.etc.
Second: code - code interaction:
1. easy interfacing
2. portability
3. error handling
4. (same as above)
5. machine efficiency
6. dependability
7. and you name it 😀