Your question is a very good one, and one that has answers, but so complicated that the answer is basically the experience in programming.
There are general principles to make software, but I think that here, in this short answer, I can give you one concept that you can apply. Software is a representation of a domain (such as a bank software is made to tailor the financial system, or a radar software is made to tailor the ideas and principles of radar detection). Software, therefore, is like a theory: it fits the current knowledge of your domain perfectly, allows inferences and extensions. If more knowledge becomes available, the theory should be extended, polished or made more general to accommodate this new knowledge, while still remaining valid for the previous knowledge.
Hence, all the concepts about theories apply:
- satisfy the requirements imposed by your knowledge in a unified framework that sounds homogeneous and well integrated.
- be simple, but look for patterns that you may make more general, and spotlight these patterns for better integration.
- don't be too simple. If your software does not fit the requirements, your theory is too limited and must be extended.
- allow your software to accommodate new requirements, software is not cast in stone. it mutates and evolves, accommodating the new requirements, or losing functionalities that are no longer needed.
So, software should be minimalistic but not too much, beautiful but practical.
When it comes to put into practice these directions, I suggest you to allow time for learning your domain. You can't model something that you don't understand. Learn the basics, and start from something simple, then progressively refine them. You will occasionally see that some things "feel" in the wrong place. Ask yourself questions such as
- "who is responsible to do this operation?"
- "Is this dependency logical and needed for this object to work, or is it just a spurious one due to bad code organization?"
- "Is this high-level or low-level functionality?"
- "Am I repeating this ?"
- "can I change this object/layer/subsystem internally without the code outside knowing ?"
- "can I extend this in the future without ruining or invalidating the past ?"
- "can I test and probe this functionality easily for correct behavior ?"
- "Is it easy and intuitive to understand and use ?"
- "can I recombine what I already have easily and without touching to implement new behavior?"
- "Is this functionality isolated so that I can show it to the outside world without the bulk of the rest of the code I manipulate ?"