Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Will.Spencer

#1
Water Cooler / Re: Quotes that hit home
September 07, 2011, 07:30:13 PM
I am such a quote fiend that I registered a web site to store my favorite quotes which now uses Srini G's Quotes Collection plugin for Wordpress

Here are a few quotes from the late Thomas J. Watson of IBM fame:

Recently, I was asked if I was going to fire an employee who made a mistake that cost the company $600,000. No, I replied, I just spent $600,000 training him. Why would I want somebody to hire his experience?

Follow the path of the unsafe, independent thinker. Expose your ideas to the dangers of controversy. Speak your mind and fear less the label of 'crackpot' than the stigma of conformity. And on issues that seem important to you, stand up and be counted at any cost.

All the problems of the world could be settled easily if men were only willing to think. The trouble is that men very often resort to all sorts of devices in order not to think, because thinking is such hard work.

Don't make friends who are comfortable to be with. Make friends who will force you to lever yourself up.

If you stand up and be counted, from time to time you may get yourself knocked down. But remember this: A man flattened by an opponent can get up again. A man flattened by conformity stays down for good.

If you want to achieve excellence, you can get there today. As of this second, quit doing less-than-excellent work.

It is better to aim at perfection and miss, than to aim at imperfection and hit it.

The man who bases his actions on independent thought; who reflects and considers before doing anything, and whose judgments are arrived at through logic, is the man who will go farthest today.
#2
Web Development / Re: SEOMoz opensiteexplorer shite
September 07, 2011, 07:02:30 PM
Quote from: PaulH on July 29, 2011, 08:48:44 AM
Switched a tool from Yahoo API to SEOmoz.

Just a question -- why not switch to the Boss v2 API?  Does it not provide the link data you need?

Have you taken a look at the Sistrix API?  It's very new and is really Euro-centric, but is still interesting.
#3
Web Development / Re: Rank Tracker In Perl
September 07, 2011, 04:43:02 PM
I am a fan of PERL, but for a project like this I would recommend PHP.

I have also seen several free web-based rank-tracking tools, such as the DigitalPoint Keyword Tracker.  That path could save you development time, which you could probably use for better purposes on other projects.
#4
Web Development / Re: Alternative to mysql
September 06, 2011, 04:27:48 AM
Quote from: ukgimp on August 31, 2011, 06:19:43 PM
I want to avoid wp as when it needs updating I don't want to have to update 100's of installs.

WPMu handles multiple domains now.  You technically only need one Wordpress installation.

We are running 1,400+ Wordpress installs and I update them all with this one shell script:
#!/bin/bash

cd /usr/local/www/data

rm -rf /usr/local/www/data/wordpress
rm /usr/local/www/data/latest.zip*
wget http://wordpress.org/latest.zip
unzip latest.zip

if [ -d wordpress/wp-content ]
then
rm -rf wordpress/wp-content
fi

if [ -f wordpress/wp-config.php ]
then
rm -f wordpress/wp-config.php
fi

# use find command to get all first-level subdirectories containing Wordpress

BLOGS=$(ls  */wp-config.php | grep -v $(ls -d */wordpress-mu | cut -f1 -d'/') | cut -f1 -d'/')

for b in $BLOGS
do
cp -R wordpress/* $b/
done