Archive Info

You are currently browsing the I Hate Google.org weblog archives for 'misc' category

When Does WordPress Overwrite .htaccess?

I’ve noticed that my modified .htaccess file has been overwritten by WordPress at least twice.  This has broken the archival routine of the bBlog version of IHateGoogle.org.

I did install a couple of plugins to WordPress.  I wonder if when they were installed, the .htaccess was overwritten?

Googlehater Alert!

I was trolling today and came up with another Google hater. You have to check out GoogleSearchSucks.com.

I have a few comments about this blog:

  1. I like the drawings. Is that Larry and Sergey or Beavis and Butt-Head behind Jerry Yang?
  2. He’s still got Ron Paul ads on the site. Now that’s persistence!
  3. The disclaimer is awesome!
  4. GoogleSearchSucks.com hates Google because the SERPs are full of spam and advertisements, not because they don’t have the ranking they deserve. That actually seems novel.

GoogleSearchSucks.com seems to be searching for its online identity. You can check it out and post your comments as to what direction you think the site should take.

Semester Grades are In

I’ve been posting my grades from McNeese State University here on IHateGoogle.org, so my friends can follow my academic career. For those of you who don’t know, I’m currently working towards a Bachelor of Science in Finance.

Here are the latest grades:

Grades, Spring of 2008

I have two semesters left.  Here’s a link to my university web page.

Last semester, I was inducted into Beta Gamma Sigma, the international honor society for accredited business schools. Hopefully, if I can maintain my A-average, I will graduate magna cum laude. My cumulative grade point average is 3.61. My average since starting at McNeese in 2006 is 4.00.

Archive of IP Address Updates

For an archival list of IP address updates for IPLists.com previous to this date (May 22, 2008), click here.

Backwards Compatibility Issues

So, when I decided to convert to WordPress from bBlog, I had to decide what to do with all of my old bBlog entries. I came across various home-grown conversion tools that claimed to convert various versions of bBlog installations to various versions of WordPress installations, but I was really leery about using any of them. For one thing, one of the sites I visited generated one of those nice Google warnings about the site being untrustworthy.

I suppose I could have written some code myself to perform the conversion. It probably wouldn’t have been all that difficult. I’m familiar with MySQL databases and have done some hacking both in WordPress and bBlog.

In the end, though, I decided to maintain the look and feel of my old bBlog entries. Why not just keep the bBlog blog and install WordPress on top of it? Installation was no problem…the only file WordPress need to overwrite was index.php. I just renamed bBlog’s to index_bblog.php. Then, with just a little bit of mod_rewrite trickery, I have both blogs available on the same URL!

Here’s my mod_rewrite code, in case somebody wants to do something similar:

RewriteEngine On
RewriteBase /

RewriteCond %{QUERY_STRING} postid=(.*)$ [NC]
RewriteCond %{REQUEST_FILENAME} !(index_bblog\.php.*)$ [NC]
RewriteRule .* /index_bblog.php?postid=%1 [R=301,L]

RewriteCond %{QUERY_STRING} sectionid=(.*)$ [NC]
RewriteCond %{REQUEST_FILENAME} !(index_bblog\.php.*)$ [NC]
RewriteRule .* /index_bblog.php?sectionid=%1 [R=301,L]

This makes it so anytime bBlog-style entries are requested, because for instance they are still indexed, or linked to from within the entries themselves, the server recognizes them and redirects them to the index_bblog.php file, using the QUERY_STRING info to specify which blog entry is requested. Very handy!