ArchiveDecember 2012

How to Create a ZIP File using PHP ?

H

Creating a ZIP File using PHP is very simple using the built-in Class “ZipArchive“. All one has to do is create an instance of this class and use the methods of this class to create the zip file. Lets take a look how we can create a zip file.     The snippet for creating a zip file is <?php if (isset($_FILES['upload']) === true ){ $files =...

Set First Image as Featured Image for all wordpress posts

S

WordPress recently from its version 3.0 have started a new feature called Featured Image where we need to set Featured Image for every individual post manually before we are going to publish the post. Although it is a great feature many of our previous posts doesn’t have featured image and day by day many new themes have started using this feature because of which we may miss some design aspects...

How to delete windows explorer address bar history ?

H

There are guys who maintain hidden folders and try to access them directly using the windows explorer address bar and you know what when you are typing next time you will find that the address you have typed is stored in windows explorer history. You will hurry up to clearing the history of recent items and windows explorer but sadly the steps you have taken will not workout as it is under Auto...

how to pronounce names correctly ?

h

Pronouncing a name correctly is not so easy when you come across unfamiliar names.  Probably you might join in a new client engagement and come across a situation where you need to talk to your foreign client and embarrassingly you don’t know how to pronounce his name. In such cases you probably should have to consider how to pronounce name of the client in advance. Some of the popular...

How to Convert Video Formats using VLC ?

H

VLC is one of the most popular open source applications that have been installed in many of our personal computers. Many of us know VLC as a media player but it can also be used as a convert, transcode and rip media. If you wonder why you should use VLC to convert video formats then answer is simple, it is already installed in your personal computer and you don’t need to install any other video...

PageSpeed: How to Minify Javascript and CSS

P

Minify Definition : Minifying / Minification is the process of compressing a file without changing any of the functionalities by removing unwanted spaces, new lines, comments from its content there by reducing the file size and improving page load time. This process will make the content in the file unreadable but every functionality of the code will remain unchanged. Minification and Search...