Pleasure on deletion
Have you ever wonder how difficult is to delete some code in your service? Recently I watched The art of destroying software by Greg Young which is a good starting point to think about something that have been ringing around my current work place: "delete code is good". Nowadays micro-services and distributed systems are trending topic in software development. It seem like if you are doing the micro-services way then you are in the right path or at least in the modern path. In my opinion is more about: Know well enough the responsibilities of each part of you system Keep good balance of coupling and cohesion As consequence be able to Delete Code Because when you have those then you can go and delete part ( or complete) of a service because: is not need anymore, want to kill some technical debt or even for the fun of recreate it from scratch with different approaches. At the end you are going to have the same system from business perspective but with less code...