My favorite Windows PC maintenance tools

For daily and periodic pc cleaning (Windows) I use the following tools:

My Favourite World of Warcraft addons (2014)

With the 6.0 patch of World of Warcraft it`s time to update my list of favorite addons.

  • Addon Control Panel
  • Advanced Tradeskill Window
  • Auctioneer Suite
  • Bagnon
  • Deadly Boss Mods
  • InFlight Taxi Timer
  • Postal
  • RareCoordinator
  • Titan Panel

Welcome HTML5

With the official release of the fianlized HTML5 standard, (HTML5 is a W3C recommendation) HTML4 finally has a followup. HTML 4 dates from 1997 (source) but was unofficially replaced by many sites with XHTML.

Now that HTML5 is an official standard, please join me in supporting it

Interesting articles related:

How-To Install Twenty Fifteen for WordPress

This mini guide describes how to install the WordPress Twenty Fifteen theme from the Subversion repository within the shell.

Inside the terminal screen, go to your WordPress installation directory and run the following commands:

cd wp-content/themes/
svn co http://core.svn.wordpress.org/trunk/wp-content/themes/twentyfifteen/

How-To Install WP-CLI on shared hosting

To do this you need SSH/telnet support

Run the following commands in the terminal
cd ~
mkdir wp-cli
cd wp-cli
curl -k -L https://raw.github.com/wp-cli/builds/gh-pages/phar/wp-cli.phar > wp-cli.phar
echo ‘alias wp=”php ~/wp-cli/wp-cli.phar”‘ >> ~/.bashrc
source ~/.bashrc