I’m very unhappy with the Content Management Systems (CMS) currently on the market; both Commercial and Open Source. Currently at this site I’m using Joomla and Word Press; both are written in PHP. I’m very unhappy with PHP to begin with; it has gone rouge; programmers have taken a lazy writing style that drives me crazy; lets face it; PHP is just a C language and should follow the rules; for example:
myFunction(pram1, pram2)
{
if (true)
{
doThis();
}
}
But what the lazy programmers of php do is this:
myFunction(pram1, pram2) {
if (true) {
doThis();
}
}
as if saving a line wrap will make the program run faster; when in fact all it does is make it harder to read.
Python is a lot better; more secure and at least it makes you format all the code so its readable.
So we are going to look at all the Python CMS and see which one is the best; I’m thinking about going to a new one called Binary Bit Flesh.
Related Articles
No user responded in this post