Wednesday, November 11, 2009

Thursday, July 23, 2009

Firefox plugin To view and modify the HTTP/HTTPS headers and post parameters

Use tamperdata to view and modify HTTP/HTTPS headers and post parameters. The add ons available at

Flip-A jquery plugin!

For details head over at this link

Friday, July 3, 2009

Using PHP's glob() function to find files in a directory

Here is the details to get a list of all the files in a given directory.

Wednesday, June 10, 2009

Setting cookies with jQuery

For setting a cookie in the client side we usually go for normal javascript. Here i found one article where we can use jquery plugin to do the cookie manipulation. The code is very use and easy to manipulate. For more details check it here

Monday, June 1, 2009

Fastest way to build an HTML string

There are different ways we can build an HTML string . I was going through one article which clearly gives the different ways including benchmark results. For more information head over at this link

Tuesday, May 12, 2009

MySQL: Find records in one table that are not in another

Using NOT EXISTS is much faster than using LEFT JOIN to find records in one table that are not in another. Head over at for more details on the same