Khayrattee( @7php) of 7php.com recently published an interview with me, do read and let know your feedback.
Why PHP is So Popular on Web?
If you ever wondered why the hell PHP is so popular on the web when there are better and powerful languages available? Well, the answer is very simple, It is only language that allows even musicians to build sites for themselves. By the way that is also the reason why WordPress has become the king […]
The Pune effect on Indian Tech Events
Do you know about ‘The Pune Effect’ which influences all the Tech events in India, if not go read. And if you are an event organiser then consider Pune as venue for your next event.
Aspiring WordPress Developers Read These Articles First
If you are starting with WordPress Plugin or theme development, or want to know where to start then here is a small list of articles that you should read, some of them should be always open in your browser, and some of them in your RSS reader. Documentation and Help 1) http://codex.wordpress.org/Function_Reference: […]
How To Catch PHP Fatal Error In CodeIgniter
My last few blog post’s are result of the project that I am currently working on, and this blog is also in that series. We needed to catch PHP Fatal Errors in the production environment and notify about it to developers, also at the same time, showing our beautiful fail whale page to user instead […]
Get An Introduction To Functional Programming At TechWeekend 5
5th edition of the TechWeekend is going to be about Functional Programming and if are hearing this term for first time, or if you are like me who has heard about it, but never got time to look into the details then you should definitely attend it. Event is on 18th Dec 2010, ie this […]
PHP5 patch for FunctionList plugin of Notepad + +
As you may know Notepad++ is my preferred development tool for PHP, and two months back I found FunctionList plugin that shows list of function in a opened PHP file, and it increased my productivity almost immediately. Only drawback was that it showed just function list and not variables. And today I found this neat […]
Testing Extjs Application With Selenium : Few Pointers
On a project that I am working on we needed to create few automated tests using selenium. Our frontend is completely written in Extjs. Being new to testing using selenium, I searched the web and here are few useful advices that I found. The most comprehensive one was by Ates Goral on stackoverflow. The biggest […]
Installing PEAR and PHPUnit on WAMP and Windows 7
In the project that i am currently working on, we decided to use PHPUnit for doing our unit testing, and i found that it was not a straight forward thing to install that I had thought it would be. I had to start by installing Pear, and as soon as i type ‘go-pear’ in command […]
Simple Way To Add Global Exception Handling In CodeIgniter
I am working on a project where we needed to capture exceptions at a global level instead of doing it at every step as they were not critical, but important for us to know. The idea was that whenever such an exception occur on production we should send an email to developers mailing list so […]