What is micro-optimization?

Sometimes, there are chances that if you make a bit of changes in your source code, it performs faster by a fraction of a second. This does not seem always logical for small projects to spend time in optimization. But when several users load your website at once, micro-optimization can contribute to the speed.

Continue reading


XDebug: Optimal Personal Configurations

I initiate XDebug on demand, via URL parameters. But XDebug configurations in php.ini has to be configured accordingly to accept those requests and obey them. Thus, only the scripts that need debugging or tracing or profiling will request the particular service. Keeping memory and CPU free is also important.

Continue reading


List out all MySQL Tables by their prefix names

Filtering on numerous list of MySQL tables is often fun, not just tedious. I am explaining here how to get a list of tables within a database by their prefix names. This method can be further useful when you want to operate an action on list of those tables; like changing their storage engine or, […]

Continue reading