ImageRecycle and Imagfy both can be used to optimise the images. And the following is my experience of using both services. File Extensions Support ImageRecycle supports JPEG/JPG, BMP, GIF, …
ImageRecycle provides APIs to add image/pdf, compress them and download them. This makes things interesting, so basically, these days, I want to shrink images to reduce the space they …
Sitemaps are useful for search bots to know better your site structures. They are particular useful if your site contains several hundred pages. You can login to Google Webmaster …
The following provides a method to get the hard drive serial number using PowerShell, VBScript and Javascript, respectively. PowerShell You can get this serial number for the first hard …
Markdown is a simple, useful markup language for text. It has very simple format annotations. The editor at stackoverflow.com uses Markdown. Markdown requires less meta characters to do the …
Question: Given an integer, write a function to determine if it is a power of three. Iterative If you divide the number (which is Power of Three) iteratively by …