How to explain to my manager the importance of separation of concerns?
I’m an extremely novice web programmer working at a 2 person shop building websites, and we’re in the process of writing a simple website template system in PHP from scratch. My manager is entirely self taught. He has been insisting that we put our HTML directly quoted in variables, mixing our back end code with the front end stuff.
How to explain to my manager the importance of separation of concerns?
I’m an extremely novice web programmer working at a 2 person shop building websites, and we’re in the process of writing a simple website template system in PHP from scratch. My manager is entirely self taught. He has been insisting that we put our HTML directly quoted in variables, mixing our back end code with the front end stuff.
How to explain to my manager the importance of separation of concerns?
I’m an extremely novice web programmer working at a 2 person shop building websites, and we’re in the process of writing a simple website template system in PHP from scratch. My manager is entirely self taught. He has been insisting that we put our HTML directly quoted in variables, mixing our back end code with the front end stuff.
Should more than one function be used when they do similar, but not identical things?
For example, if I wanted to generate some HTML based on some input. Which is the preferred way out of:
Should more than one function be used when they do similar, but not identical things?
For example, if I wanted to generate some HTML based on some input. Which is the preferred way out of:
Should more than one function be used when they do similar, but not identical things?
For example, if I wanted to generate some HTML based on some input. Which is the preferred way out of:
Should more than one function be used when they do similar, but not identical things?
For example, if I wanted to generate some HTML based on some input. Which is the preferred way out of:
Should more than one function be used when they do similar, but not identical things?
For example, if I wanted to generate some HTML based on some input. Which is the preferred way out of:
Should more than one function be used when they do similar, but not identical things?
For example, if I wanted to generate some HTML based on some input. Which is the preferred way out of:
Does Exception Handling Violates “Program to Abstraction”? [duplicate]
This question already has answers here: Is rethrowing an exception leaking an abstraction? (4 answers) Is this a violation of the Liskov Substitution Principle? (12 answers) Closed 10 years ago. I am talking based on experience with Java and C#. I do not know if other language have different exception handling implementation. In order to […]