Nasga - 2011-08-24 03:18:38
Hello,
Sorry, but i just discover this post, and i really like your point of view about software coding.
With some experience, it become easy to split each functionality into separate classes / modules but on the other side, on complex application, you can have evil dependencies.
For exemple, in an application, you have :
- user management
- right management (depend of user)
- stats (depend of user / right / userdata)
- userdata (depend of user / right)
With such application it's really hard to pickup a module and use it into another one...
Do you have any tips about this ?
At work, i have dozen of mysql foreign key / php modules and i really feel to loose modularity.