Android KitKat – The next version of Google Mobile Operating System
First, Microsoft and Nokia. Then, Apple sending out its iPhone 5S invites. And now, just in case you hadn’t had…
First, Microsoft and Nokia. Then, Apple sending out its iPhone 5S invites. And now, just in case you hadn’t had…
In a surprise move, Microsoft announced Monday evening that it has inked a deal with Nokia to acquire “substantially all…
Be careful to downgrade WordPress unless you can also restore a pre-upgrade database backup. The database was changed for WordPress…
It may possible after rebuilding the sitemap using Google XML Sitemaps plugin for your wordpress blog when you try to…
It’s because your server-name is missing in httpd.conf file.. sudo vim /etc/apache2/httpd.conf Insert the following line at the httpd.conf: ServerName…
To install a package using yum use following command # yum install # yum install mysql To uninstall a package…
To change your own password, use following command: $ passwd To change other users password, your login must be as…
Boolean isDark = false; var bgtheme = Application.Current.Resources.ToString(); if (bgtheme == “#FF000000”) isDark = true; else isDark = false; if…
There are two ways. My preference is generally as follows. scp -r sourcedir/ user@:/dest/dir/ or rsync -auv -e ssh –progress…