4
votes
What are Code Smells? What is the best way to correct them?
Lack of abstraction.
Description: the code is written such that everything happens on the same level. There is no separation between different concerns and no spli …
0
votes
What applications is Python optimal for?
Python is dynamically typed and that makes it perfect for problems where you only have a vague idea of the goal. You can slowly begin getting the ball rolling and you can see the direction of the b …
1
vote
How often do you worry about how many if cases will need to be processed?
Rather than answer the PHP question, I'll answer a bit more generally. It doesn't apply directly to PHP as it will go through some kind of interpretation.
Many compilers can convert to and …
