Are you facing the problem of having a large .thumbnails folder in the the DCIM folder in the android.This is actually an error and android automatically creates the folder with files that show a very large size wheras actually they are not.This might create problems if you are backing up your files to the cloud Continue Reading …
Latest Posts
WordPress : Add header code for a specific page without plugin
There may be a requirement when you would like to place header code consisting of scripts or meta tags to appear on site header for a particular page only and not on all pages. Two Methods will be described in this article showing how to do that without a plugin, step by step. Method Continue Reading …
Basics of Pointers in C++
This article will tell us all about the basics of using pointers in C++.To begin with a pointer should be understood as a pointer variable like all other variables.Now like a variable of type int can store integer values a pointer variable can store only memory addresses. First we should understand that when any variable Continue Reading …
WordPress redirect page with countdown timer
If you want to redirect a specific page on your WordPress website, displaying a message along with a countdown timer something like a splash page, redirecting to a internal or external page when countdown reaches zero,then please read on. This article will describe in detail how to perform the redirect without a plugin. Step Continue Reading …
WordPress : Execute external php file
If you have created a folder within your word press directory and have placed a php file there and you would like to execute this php file then this article will tell you in detail how to run php files external to your theme.There are 3 Methods explained in this article.You will not require a Continue Reading …
Xampp : Default Database username and password
If you have installed Xampp at localhost then it will allow you to create a default mysql database without giving any password through phpmyadmin.If you are trying to install any other web application in the xampp htdocs folder then it is going to ask you for the mysql database user name and password.Well this is Continue Reading …
Double linked list in c++ implementation
In this double linked list tutorial we go step by step in building our doubly linked list and towards the end we have the source code for a complete program implementing the doubly liked list. The linked list is a collection of nodes of a given type For demonstration purpose we create a type Continue Reading …
Javacript source code to merge multiple pdf files to a single pdf file
This article provides the source code in JavaScript to merge multiple PDF files. If you have a large number of PDF files and want to share them with friends, you may ike to merge the pdf files together and send a single pdf file. Here is the source code. You may place the source code Continue Reading …