When is a 'core' library a bad idea?
- by Alex Angas
When developing software, I often have a centralised 'core' library containing handy code that can be shared and referenced by different projects.
Examples:
a set of functions to manipulate strings
commonly used regular expressions
common deployment code
However some of my colleagues seem to be turning away from this approach. They have…