Proof of God’s Existence

Update: By Popular Demand, the local number for the Pizza Hut on Taipa Island (Macau SAR China) is 853-2884-3133

You know you have those times in your life when your walk of faith faulters – then something miraculous happens that strengthens your resolve. I have just had such a momentous experience.

Tired of eating rice and noodles, ox tail and being tricked yesterday into eating chicken feet here in China – I have decided it’s time to make a stand.

To my great exhuberent joy I have discovered a Pizza Hut around the corner that delivers to my apartment here in China. Proof positive that heavenly hosts are looking out for me…

And yes, it tastes pretty close to pizza back home. Just have to make sure you order the tomato sauce base instead of the Thousand Island dressing base. (Gross, but true…)

Best University for Music Production

Email question received:

I am trying to get into a good music school for music production, vocals and maybe even to have my own music label. I’ve been singing for 8yrs and my goal is to make my own music and sing for a living, I LOVE IT. It’s my passion. I was wondering if maybe you had a good choice of school for these specialties.??

Continue reading “Best University for Music Production”

PhpMyAdmin Error 2002

This is an error seen when connecting to PhpMyAdmin via Cpanel.

Error: #2002 – The server is not responding (or the local MySQL server’s socket is not correctly configured)

Fix: Symbolically link /tmp/mysql.sock to /var/lib/mysql/mysql.sock

*Restart MySql services for changes to take effect.*

Or here’s an even easier fix:

To make your life easier, you can make a simple change to the MySQL configuration file /etc/my.cnf that will permanently set the socket file used by the mysql client. After making a backup copy of /etc/my.cnf, open it in your favorite editor. The file is divided into sections such as

[mysqld]
datadir=/usr/local/mysql/data
socket=/var/lib/mysql/mysql.sock

[mysql.server]
user=mysql
basedir=/usr/local/mysql

If there is not currently a section called [client], add one at the bottom of the file and copy the socket= line under the [mysqld] section such as:

[client]
socket=/var/lib/mysql/mysql.sock

If there is already a [client] section in the my.cnf file, add or edit the socket line as appropriate. You won’t need to restart your server or any other processes. Subsequent uses of the mysql client will use the proper socket file.