Gizmodo’s Ad-Filled RSS Feed
I’m not a very big fan of Gizmodo, but I found their RSS feed interesting today. Check out the attached photo, which highlights four ad units nicely clustered at the bottom of every post. They’ve got two text ads (one from Pheedo, one from Google) and two Google Image/Video blocks:
I have mixed feelings about this. One the one hand, that’s a lot of ads. On the other hand, they’re tasteful and all clustered together so that you’re clear they are ads. They are compact, and don’t interrupt readers who are reading the feed. So in some sense, they’re an excellent example of how to do RSS feed advertising.
Windows 7 Preorder Coupon Sale!
I just preordered Microsoft Windows 7 Home on Amazon, because right now it’s over 50% off. For just $49.99 (58% savings) you will get it delivered to your door on the official release date of October 22, 2009 (if you’re a PRIME member, which I am).
As fas as I can tell, the only difference between Home Premium and Professional is that you don’t get their virtualization for XP software support (which is probably like VMWare Fusion on the Mac), no automatic backup features, and it’s missing some enterprise Active Directory thing called “Domain Join” that I doubt I’d ever use. So I’m not paying any $ for that.
One advantage I’ll get out of this is the ability to (a) run DX10 for the latest games, and (b) 64bit support, so finally I can run all 4 GB of RAM properly without PAE and any other proprietary crap. Right now my 4GB only shows up as about 3.4 anyway. Also, SSD support is much better in Windows 7, from what I’ve read. So my Intel X25-M will continue to serve me well!
WP SuperCache .htaccess mod_rewrite rules for Blogs in Subdomains/Subdirectories
I have a unique problem, which is that I have installed my wordpress to a subdirectory, and symlinked httpdocs from several subdomains to that directory. The structure looks like this:
httpdocs/wp/ -> WP Install
subdomains/gadgets/httpdocs/ -> /elliottback.com/httpdocs/wp/
subdomains/books/httpdocs/ -> /elliottback.com/httpdocs/wp/
This means that from my domain, we’re always sticking an extra /wp onto things, but from the subdomains, they go directly into the wp-content directories from the root , in both relative and absolute sense. I consolidated my subdomains this way so that I could run a single WP install and maintain them together. Here’s the .htaccess file that lets WP Super Cache work on either of them:
# BEGIN WPSuperCache
<ifmodule mod_rewrite.c>
RewriteEngine On
AddDefaultCharset UTF-8
RewriteBase /
RewriteCond %{REQUEST_URI} !^.*[^/]$
RewriteCond %{REQUEST_URI} !^.*//.*$
RewriteCond %{REQUEST_METHOD} !=POST
RewriteCond %{QUERY_STRING} !.*=.*
RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress|wp-postpass_).*$
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteCond %{REQUEST_URI} ^(/wp)?/
RewriteCond %{DOCUMENT_ROOT}%1/wp-content/cache/supercache/%{HTTP_HOST}/%1/$1/index.html.gz -f
RewriteRule ^(.*) %1/wp-content/cache/supercache/%{HTTP_HOST}/%1/$1/index.html.gz [L]
RewriteCond %{REQUEST_URI} !^.*[^/]$
RewriteCond %{REQUEST_URI} !^.*//.*$
RewriteCond %{REQUEST_METHOD} !=POST
RewriteCond %{QUERY_STRING} !.*=.*
RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress|wp-postpass_).*$
RewriteCond %{REQUEST_URI} ^(/wp)?/
RewriteCond %{DOCUMENT_ROOT}%1/wp-content/cache/supercache/%{HTTP_HOST}%1/$1/index.html -f
RewriteRule ^(.*) %1/wp-content/cache/supercache/%{HTTP_HOST}%1/$1/index.html [L]
</ifmodule>
# END WPSuperCache
Let me know what you think–performance stats show that it’s working fine for both the /wp subdirectory and the other subdomains!


