API implementation tools with PHP


Now a days web applications are focused on single page web applications by using applications like AngularJS,HandleBars,Mustache. So it will be better to improve our skills in generating RESful APIs if you are working on server side PHP. SlimFramework Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs. […]

Read More API implementation tools with PHP

Methods for loading your Jquery script


jQuery offers two powerful methods to execute code and attach event handlers: $(document).ready and $(window).load. The document ready event executes already when the HTML-Document is loaded and the DOM is ready, even if all the graphics haven’t loaded yet. If you want to hook up your events for certain elements before the window loads, then […]

Read More Methods for loading your Jquery script

Git Best Practices


Commit Related Tips A commit should be a wrapper for related changes. For example, fixing two different bugs should produce two separate commits. Avoid mixing whitespace changes with functional code changes. Avoid mixing two unrelated functional changes. Avoid sending large new features in a single giant commit. Resist the temptation to commit something that you […]

Read More Git Best Practices