Group by with Order Desc in MySQL

Technical Updates

Group by with Order Desc in MySQL

Group by with Order Desc in MySQL

i recently worked on auto complete records task. They expect to show auto complete results must be unique and recent records. i use following simple query with my filter. For…
Debugging Tools for javascript libraries

Debugging Tools for javascript libraries

We know that, there are so many javascript libraries developed and customized for web developers and it give to us better UI result. Nowadays elements custom attribute played major role…
Local Storage for communication

Local Storage for communication

Local Storage for communication between browsers: There are cases, when a same page was opened in multiple tabs/browser windows and an update in a page, will be reflected in all other windows…
Introduction to Web Notifications API

Introduction to Web Notifications API

The Web Notifications API is "an API for front-end user notifications". A notification allows the user to see alerts outside the context of a web page of an occurrence such as delivery of mail, user login, chat notification, process complete etc. The notifications will be in different style on different browser and based on the device we use. In mobile we usually see the notification in notification bar.
Manage Dependency with Composer

Manage Dependency with Composer

Composer is a tool for dependency management in PHP. It allows you to declare the dependent libraries for your project needs. It will install them in your project for you.
Explore HTML5 Local Storage

Explore HTML5 Local Storage

In the dynamic web we have to keep track of user information and we need to store some data in client machine either for browser session or persistent upto a period. There are many advantages on storing data like reducing server request, increase performance and totally working offline.
FACEBOOK HACK

FACEBOOK HACK

Facebook just released a new programming language, HACK - a language based on PHP that introduces several great enhancements It allows programmers to write code faster while more easily avoiding…
Asynchronous Programming : Site Speedup Techniques

Asynchronous Programming : Site Speedup Techniques

Asynchronous programming allows developers to write faster code by running multiple parallel tasks at the same time. This contrasts with the traditional synchronous programming on which programs perform a task and do nothing else besides waiting for the task to finish before proceeding to the next task.