Someone (another Brad Kovach) stole my username on Facebook. I remind him how cool I still am…
Recently, you may have noticed that Facebook has allowed users to pick usernames. Upon learning this news, I immediately thought, “How convenient will this make it for people to find me!? This is fantastic news! Now, I will be able to rapidly expand my internet empire with a eponymously chosen username!”
I was looking forward to June 12 at 10:01 pm when I would finally claim http://www.facebook.com/bradkovach. But I had to work at 5:00 am the next day. So I loaded my ears with foam plugs and went to bed at 9:10. This is now my biggest regret. I, being fully able to conveniently register ‘bradkovach’ as my username at every other site on the entire internet, assumed that I could go to bed, and work my formidable nine-hour shift, come home and register my name.
It might surprise you then, considering my previous luck registering ‘bradkovach’ on EVERY OTHER WEBSITE, that I was unable to register http://www.facebook.com/bradkovach for use in my Internet empire.
Well then, who did?
This guy:
So now, I must write a letter to Brad Kovach. From Brad Kovach.
Dear Brad Kovach,
You might know me from the first four results when you Google your (our) name. I am Brad Kovach. Not only am I Brad Kovach, but I am the most important and most accomplished Brad Kovach on the Internet–until now.
You see, Brad Kovach, you have damaged my ego. I have successfully been building my Internet empire from a very young age. I have been signing up for websites using “bradkovach” as my username successfully for years now. Today, however, you ruined me. You STOLE my username on Facebook. While this is a small victory for you, you will not win this name war. You see, while you have taken a highly coveted username on a very prestigious site, you cannot outdo me. Let’s check the scoreboard.
Brad Kovach (me) Brad Kovach (you)
- LinkedIn?
At least 9… 1… maybe 2? I suppose it’s normal to be a celebrity and have imposters and doppelgangers. I can live with these side-effects of fame.
Sincerely,
(the real) Brad Kovach
So here is the happy ending: I picked an equally awesome username for Facebook. You may now check out my profile at http://www.facebook.com/thebradkovach.
Also, since I am a jerk that WILL kick a horse while they are down, I have redirected all of the bradkovach.com/site urls to their respective site. For example, http://www.bradkovach.com/facebook will take you to my Facebook profile.
Brad Kovach is an award-winning web developer from Afton, Wyoming. In his spare time, he enjoys drumming on Rock Band, and playing with this website.
Meet some steps you can take to prevent a WordPress meltdown.
WordPress is the blogging CMS platform of choice for millions of websites. Learn to tame it, and you’ll learn to love it. Here’s a small todo-list I compiled that is guaranteed to make WordPress, faster, safer and better.

Optimize WordPress: Optimize until you can't
WordPress generates all content from a database connection, which is a weak link in a traffic-heavy environment. Fortunately, WordPress was built with very thorough hooks into its infrastructure to allow easy implementation of caching plugins. I have tried each of these plugins.
If your site is pulling XML data from sites to generate content, make sure it is saving copies so that it doesn’t have to waste bandwidth every time it polls the page.
Using *nix’s extremely handy CRON task scheduler, I set a download script to run every 5 minutes. By pre-fetching these XML sources, the homepage’s load time went from roughly 2.5 seconds to ~0.3 seconds. That’s a significant savings of load time for users, and a significant savings of processing power for your server when it has to serve a page.
Please note that MOST plugins will automatically cache the resources that they pull.
Every browser built since the beginning of the Internet saves copies of the resources it downloads since the beginning of the Internet. Many people do not know that their server can be configured to fine-tune the process–and it’s easy to do!
Most commercially available webservers come preconfigured with mod_expires, but it’s easy to enable if you don’t have it. If you have apache 2, tap this into a command line: “a2enmod expires” and hit enter, then “apache2ctl graceful”. If the commands return a bunch of errors, try them by typing “sudo” before each command.
At this point, you can head to your web directory and, if you need to, create a file named “.htaccess”. Paste this into the .htaccess file:
<IfModule mod_expires.c> ExpiresActive On ExpiresByType text/html "access plus 3 hours" ExpiresByType image/gif "access plus 72 hours" ExpiresByType image/jpeg "access plus 72 hours"
ExpiresByType image/png "access plus 72 hours" ExpiresByType application/x-javascript "access plus 72 hours" </IfModule>
Check your HTTP headers to see if the changes have had an effect. You should notice a line that reads Expires => Tue, 15 Jul 2008 18:29:53 GMT, or very similarly. This will let any competent browser know that the file will not change until the date listed, and it doesn’t even need to check until that point.
Starting in WordPress version 2.6, support for Google Gears has been integrated. In effect, another powerful cache can be enabled for your site’s administrators. At the top-right of any administration page, click “Turbo,” sync the files and you’re done! Google Gears also provides offline capabilities, but I haven’t been able to use them with WordPress.

Optimize Wordpress: Secure your files
If you are on a shared hosting account, ask your hosting provider to move you to a phpSuExec enabled server if you are not. WordPress is not designed to run in an insecure environment, and will be very prone to exploit if it is not in a SuExec environment. If you are in a non-SuExec environment, and you cannot change out of it, you should reconsider your hosting company! Your website is VERY prone to attack!
Every .php file should be at a maximum chmod value of 544.
Directories should be at 555, with the exception of wp-content/uploads, which should, unfortunately, be set at 755.
Since I try to be as helpful as possible, I created a script that will automatically lock down your WordPress installation. IMPORTANT: This only works with phpSuExec installations of WordPress. It will absolutely MURDER an installation on a standard shared-hosting account. Please backup your files before you run this script!
Introducing wp-harden. The all-in-one security hardener for WordPress. Please set the variable WPDIR at the beginning of the file before execution. I recommend NOT running wp-harden inside the WordPress directory.
Before running wp-harden:
If wp-harden breaks your installation, please check the following:
Some plugins allow you to keep tabs on your WordPress installation.
Brad Kovach is an award-winning web developer from Afton, Wyoming. In his spare time, he enjoys drumming on Rock Band, and playing with this website.
© Brad Kovach and Friends 2004-2010 | Powered by Wordpress | Log in
Brad Kovach and friends is a website made by friends for the world's enjoyment. We like computers, art, having fun, and sharing! We try to keep things G-rated, but we're all adults–so take that for what it's worth. This page took 23 queries and 0.482 seconds of computer labor to produce.