<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Atomic Playboy&#187; blogging</title>
	<atom:link href="http://atomicplayboy.net/blog/tag/blogging/feed/" rel="self" type="application/rss+xml" />
	<link>http://atomicplayboy.net</link>
	<description>All hail the mushroom cloud</description>
	<lastBuildDate>Sat, 22 May 2010 19:43:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Canonical URLs in WordPress</title>
		<link>http://atomicplayboy.net/blog/2009/03/05/canonical-urls/</link>
		<comments>http://atomicplayboy.net/blog/2009/03/05/canonical-urls/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 16:26:50 +0000</pubDate>
		<dc:creator>Johan Svensson</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://atomicplayboy.net/?p=650</guid>
		<description><![CDATA[Like any good obsessive-compulsive blogger, I frequently pour over my web site statistics looking for interesting stuff. One thing that caught my eye is that search results coming in from Google tends to link to threaded comment pages for entries. For example, I&#8217;d get hits to /blog/2009/03/05/entry-slug/comment-page-1/, which is an URL that&#8217;s pretty hard to [...]]]></description>
			<content:encoded><![CDATA[<p>Like any good obsessive-compulsive blogger, I frequently pour over my web site statistics looking for interesting stuff. One thing that caught my eye is that search results coming in from Google tends to link to threaded comment pages for entries.</p>

<p>For example, I&#8217;d get hits to <tt>/blog/2009/03/05/entry-slug/comment-page-1/</tt>, which is an <span class="caps">URL </span>that&#8217;s pretty hard to actually find on the page &#8212; it&#8217;s only used for permanent links to entry comments, with an anchor to the comment ID tacked on, <a href="http://atomicplayboy.net/blog/2009/02/23/spotify-bay/comment-page-1/#comment-49949">like this</a>.</p>

<p>What I&#8217;d prefer to see is incoming hits to the actual blog entry <span class="caps">URL </span>&#8211; <tt>/blog/2009/03/05/entry-slug/</tt> in this case. Luckily, there&#8217;s a smart and simple solution &#8212; canonical <span class="caps">URL</span>s. The Google Webmaster blog <a href="http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html">explains it nicely</a> with examples.</p>

<p>So I simply add a canonical tag referencing the preferred <span class="caps">URL </span>in each page. Now, it&#8217;s just the <em>preferred</em> <span class="caps">URL </span>on my side &#8212; this is just a hint to search engines that tells them that this page is a duplicate, and that I&#8217;d prefer them to let results point to one particular page of these duplicates. In 99% of the cases it will be respected, though.</p>

<p>The actual code is just a few lines. Add this in <tt>header.php</tt> of your theme, somewhere in the head:</p>




<pre><code>
&lt;?php if (is_singular()) { ?&gt;
&lt;link rel="canonical" href="&lt;?php the_permalink() ?&gt;" /&gt;
&lt;?php } ?&gt;
</code></pre>




<p><tt><a href="http://codex.wordpress.org/Conditional_Tags#A_Single_Page.2C_Single_Post_or_Attachment">is_singular</a></tt> is a function that returns true if any of <tt>is_single()</tt>, <tt>is_page()</tt> or <tt>is_attachment</tt> return true &#8212; in other words, if you&#8217;re currently visiting a single entry, a page or an attachment.</p>

<p>With this, each entry sub-page of comments has the main entry <span class="caps">URL </span>as their canonical <span class="caps">URL.</span> Now to wait a few days and see when the search engines<sup class="footnote"><a href="#fn1">1</a></sup> pick up the change.</p>

<p class="footnote" id="fn1"><sup>1</sup> And by &#8220;search engines&#8221; I mean &#8220;Google.&#8221;</p><script src="http://feeds.feedburner.com/~s/AtomicPlayboy?i=http://atomicplayboy.net/blog/2009/03/05/canonical-urls/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://atomicplayboy.net/blog/2009/03/05/canonical-urls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sharing is Caring</title>
		<link>http://atomicplayboy.net/blog/2009/02/06/sharing-is-caring/</link>
		<comments>http://atomicplayboy.net/blog/2009/02/06/sharing-is-caring/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 01:08:49 +0000</pubDate>
		<dc:creator>Johan Svensson</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Atom]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://atomicplayboy.net/?p=628</guid>
		<description><![CDATA[Public service announcement: I read my feeds in Google Reader, and I end up sharing tons of entries I find interesting and/or weird. Here&#8217;s the shared page, or go straight to the feed for it. There will be the occasional item in Swedish, but most of it is English. Addendum: I should also mention that [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Public service announcement:</strong> I read my feeds in <a href="https://www.google.com/reader/">Google Reader</a>, and I end up sharing tons of entries I find interesting and/or weird.</p>

<p><a href="https://www.google.com/reader/shared/15863319510059850124">Here&#8217;s the shared page</a>, or go straight to <a href="http://www.google.com/reader/public/atom/user%2F15863319510059850124%2Fstate%2Fcom.google%2Fbroadcast">the feed</a> for it.</p>

<p>There will be the occasional item in Swedish, but most of it is English.</p>

<p><strong>Addendum:</strong> I should also mention that I have a habit of sharing things that I know interest people that follow my shared items. <a href="http://lonelysavage.com/">Breki</a> wrote about Things recently, so I&#8217;ve shared a handful of Things-related entries that show up in my feed.</p>

<p>Want me to share stuff that interests you? Make sure I read your blog and tell me that you follow my shared items, and I&#8217;m almost certain to start sharing stuff you&#8217;ve blogged about recently.</p><script src="http://feeds.feedburner.com/~s/AtomicPlayboy?i=http://atomicplayboy.net/blog/2009/02/06/sharing-is-caring/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://atomicplayboy.net/blog/2009/02/06/sharing-is-caring/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Spread Thin Across the Internet</title>
		<link>http://atomicplayboy.net/blog/2008/04/28/spread-thin/</link>
		<comments>http://atomicplayboy.net/blog/2008/04/28/spread-thin/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 21:32:14 +0000</pubDate>
		<dc:creator>Johan Svensson</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Tumblr]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://atomicplayboy.net/?p=445</guid>
		<description><![CDATA[Jeffrey Zeldman wrote about content outsourcing and the vanishing personal site, which is exactly the direction I was heading with Reconsidering Blogging. I would have written more there, but it felt tough enough to just accomplish that much. While I love all these wonderful social sites like Flickr, Tumblr, Twitter and various other clever services [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.zeldman.com/">Jeffrey Zeldman</a> wrote about <a href="http://www.zeldman.com/2008/04/27/content-outsourcing-and-the-disappearing-personal-site/">content outsourcing and the vanishing personal site</a>, which is exactly the direction I was heading with <a href="http://atomicplayboy.net/blog/2008/04/10/reconsidering-blogging/">Reconsidering Blogging</a>. I would have written more there, but it felt tough enough to just accomplish that much.</p>

<p>While I love all these wonderful social sites like <a href="http://flickr.com/">Flickr</a>, <a href="http://tumblr.com/">Tumblr</a>, <a href="http://twitter.com/">Twitter</a> and various other clever services that tend to end in -r, I am starting to feel like I spread myself thin across the internet. So many places to post stuff to, so many places that contain fragments of my thought streams. It&#8217;s hard to keep track of me.</p>

<p>As I wrote, I feel that I have a certain expected level of quality for things I want to post on my personal site. While I grin just as much as anyone else at <a href="http://images.google.com/images?q=lolcats">lolcats</a>, that&#8217;s not really stuff I&#8217;d like to post here.</p>

<p>I&#8217;ve started experimenting a bit with Tumblr &#8212; you can <a href="http://atomic.tumblr.com/">find me here</a>. Just like I enjoy the 140-character format of Twitter, the Tumbler format of posting various short text snippets, quotes and images is also very appealing. That default theme doesn&#8217;t quite agree with me about what a quote is, though. I have a habit of finding interesting quotes that can span several paragraphs, so blowing up the text size like that can get confusing. But I&#8217;ll fiddle with that later.</p>

<p>But Tumblr is still an experiment for me. I don&#8217;t find myself wanting to post there <em>that</em> frequently. Twitter is still the main source for my thought streams. I&#8217;ll keep fiddling with it for a while, and if I find a format that works for me I&#8217;ll try to incorporate it into my social stream.</p>

<p>So here&#8217;s the crux of it: do I try to tie it all together on my personal site, or just leave it with links to the various services I use?</p>

<p>Let&#8217;s look at what some other people do.</p>

<p><a href="http://jontangerine.com/">Jon Tan</a> has a front page that is <em>not</em> the actual blog, but contains the first sentences from the latest blog entries prominently displayed in the center column. He then uses a very condensed format of asides, with just a link to the services he uses, and then a link to a separate page titled Asides, also linked from the top of the page. <a href="http://jontangerine.com/about/aside/">The Asides page itself</a> looks very good and readable. One column with bookmarks from Delicious, one column with tweets from Twitter, and a third column with thumbnails from Flickr and <a href="http://upcoming.yahoo.com/">Upcoming</a> events below those.</p>

<p>Great idea, might steal it.</p>

<p><a href="http://dooce.com/">dooce</a> has a two-column layout with Twitter and Flickr items in the sidebar. Classic blog layout, not much else to say about it. Still looking great though.</p>

<p>It started with <a href="http://www.zeldman.com/">Zeldman</a>, so it might as well end there too. He has the two-column layout with a note on where he will be speaking (hey, offline thought streams counts too), a single tweet and a list of the recent entries in the sidebar.</p>

<p>Time to think it over. I&#8217;ll probably think by sketching out a new layout for the site. Tends to end up that way when I think design.</p><script src="http://feeds.feedburner.com/~s/AtomicPlayboy?i=http://atomicplayboy.net/blog/2008/04/28/spread-thin/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://atomicplayboy.net/blog/2008/04/28/spread-thin/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Reconsidering Blogging</title>
		<link>http://atomicplayboy.net/blog/2008/04/10/reconsidering-blogging/</link>
		<comments>http://atomicplayboy.net/blog/2008/04/10/reconsidering-blogging/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 15:35:03 +0000</pubDate>
		<dc:creator>Johan Svensson</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Atomic Playboy]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[rants]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://atomicplayboy.net/?p=437</guid>
		<description><![CDATA[For some reason I have immense problems writing bloggy stuff while sitting at my desk. So I grabbed my laptop and sat down in the couch and promptly got a strong urge to fall asleep. The comfy couch strikes again! But before I collapse I&#8217;ll try to squeeze out an actual blog entry. The ten [...]]]></description>
			<content:encoded><![CDATA[<p>For some reason I have immense problems writing bloggy stuff while sitting at my desk. So I grabbed my laptop and sat down in the couch and promptly got a strong urge to fall asleep. The comfy couch strikes again! But before I collapse I&#8217;ll try to squeeze out an actual blog entry.</p>

<p>The ten entries currently on the front page stretch back a year. The entry before this one was written six months ago. That&#8217;s&#8230; not really a good update frequency. So for the last week or so I&#8217;ve been reconsidering the whole format for this site.</p>

<p><span id="more-437"></span></p>

<p>It&#8217;s easy for me to tell why I&#8217;m not writing more: there&#8217;s just not a whole lot of stuff going on in my life. I was way more active back when I was in school and actually did stuff.</p>

<p>So writing full-blown blog entries is a no-go in my current situation. I have, however, been <a href="http://twitter.com/Echo">quite active</a> on <a href="http://twitter.com/">Twitter</a> lately. That&#8217;s a format that feels a lot more comfortable for me now &#8212; bite-sized observations condensed into less than 140 characters.</p>

<h4>A week passes&#8230;</h4>

<p>Yes. It&#8217;s now one week later. That&#8217;s how difficult it is for me to write something of substance right now. Those last two entries? Wrote them in the meanwhile. They were just a link and a short rant; that&#8217;s easy to manage.</p>

<p>Though I did just upgrade <a href="http://wordpress.org/">WordPress</a> to the latest version and did some general maintenance on the nuts and bolts and got a brief spurt of creativity. At least I got something done on the site.</p>

<h4>Another week passes&#8230;</h4>

<p>Yep. Serious problems writing. And this isn&#8217;t exactly a format where I can just click &#8220;publish&#8221; without feeling that the entry is somewhat complete &#8212; blogging doesn&#8217;t lend itself to a disjointed thought stream spread out between unconnected entries.</p>

<p>In some vaguely related news, <a href="http://textism.com/">Dean Allen is writing again</a>. And his <a href="http://textism.com/2008/04/10/did.you.really">latest entry</a> mirrors my experience in a rather interesting way:</p>

<blockquote><p>You&#8217;ll agree that everything deserves a second chance. A few months ago Twitter started slowly making sense.</p></blockquote>

<p>I joined Twitter very early. Here is <a href="http://tweetstats.com/graphs/Echo">a graph of my usage</a> &#8212; you&#8217;ll note the huge spike a few months back. That coincides with <a href="http://forums.penny-arcade.com/showthread.php?t=53284">a forum thread</a> about Twitter on the <a href="http://forums.penny-arcade.com/">Penny Arcade forums</a>.</p>

<p>A bunch of like-minded gaming nerds talking about Twitter and following each other rekindled my interest in Twitter, and it shows in that graph. Much easier to write for an audience.</p>

<p>Where to take it from here? I don&#8217;t really have much of an idea, right now I just want to get this damn entry done and click <em>publish</em>.</p>

<p>I have some half-baked plans about a new format that, though not intentionally, is essentially what <a href="http://kottke.org/">Jason Kottke is doing</a> with his site &#8212; a stream of short (though not of Twitter-length) entries mixed in with the longer stuff, maybe hook in my Twitter updates every now and then. We&#8217;ll see.</p>

<p>At any rate, even getting this brainfart-slash-rant down on virtual paper made my interest jump. While I do like <a href="http://wpthemes.info/misty-look/">the lovely MistyLook theme</a> I&#8217;m currently using, I think I&#8217;ll make a theme of my own sometime soon. I can never really get used to other people&#8217;s style of writing <span class="caps">CSS.</span></p>

<p>Now to see if cross-posting to Twitter when I write a new entry works. Here goes nothing!</p><script src="http://feeds.feedburner.com/~s/AtomicPlayboy?i=http://atomicplayboy.net/blog/2008/04/10/reconsidering-blogging/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://atomicplayboy.net/blog/2008/04/10/reconsidering-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lost</title>
		<link>http://atomicplayboy.net/blog/2007/01/01/lost/</link>
		<comments>http://atomicplayboy.net/blog/2007/01/01/lost/#comments</comments>
		<pubDate>Mon, 01 Jan 2007 10:28:40 +0000</pubDate>
		<dc:creator>Johan Svensson</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Lost]]></category>
		<category><![CDATA[World of Warcraft]]></category>

		<guid isPermaLink="false">http://atomicplayboy.net/blog/2007/01/01/lost/</guid>
		<description><![CDATA[When the last 10 posts on your blog spans nearly a full year it&#8217;s about time to rethink the whole blogging thing. Still stuck in southern Sweden. Still doing pretty much nothing at all. Except for playing World of Warcraft. Today it&#8217;s new year&#8217;s eve, and I treat it like I treat it every year: [...]]]></description>
			<content:encoded><![CDATA[<p>When the last 10 posts on your blog spans nearly a full year it&#8217;s about time to rethink the whole blogging thing.</p>

<p>Still stuck in southern Sweden. Still doing pretty much nothing at all. Except for playing World of Warcraft. Today it&#8217;s new year&#8217;s eve, and I treat it like I treat it every year: I ignore it completely.</p>

<p>My sister gave me the first season of <a href="http://www.imdb.com/title/tt0411008/">Lost</a> for Christmas. Two days later I saw the last episode. 30 minutes later I came home with the second season. The plot pacing is a bit slow, but half the enjoyment is to see the flashbacks and discover how people were before they crashed on the island.</p>

<p>I think I&#8217;m going to abandon <a href="http://wordpress.org/">WordPress</a> and try <a href="http://mephistoblog.com/">Mephisto</a> instead. While WP has served me well, the jungle of plugins I need to update annoys me. And I really don&#8217;t like the theme format.</p><script src="http://feeds.feedburner.com/~s/AtomicPlayboy?i=http://atomicplayboy.net/blog/2007/01/01/lost/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://atomicplayboy.net/blog/2007/01/01/lost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Minor Confession</title>
		<link>http://atomicplayboy.net/blog/2005/08/07/a-minor-confession/</link>
		<comments>http://atomicplayboy.net/blog/2005/08/07/a-minor-confession/#comments</comments>
		<pubDate>Sun, 07 Aug 2005 00:22:41 +0000</pubDate>
		<dc:creator>Johan Svensson</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[etymology]]></category>
		<category><![CDATA[words]]></category>

		<guid isPermaLink="false">http://atomicplayboy.net/?p=384</guid>
		<description><![CDATA[I don&#8217;t like the verb &#8220;blog.&#8221; Actually, I kind of hate it. I despise sentences like &#8220;I blogged about this or that.&#8221; But then I thought to myself, &#8220;Self, what is it you&#8217;re doing here if it&#8217;s not blogging?&#8221; Well, I feel like I&#8217;m going the same thing I&#8217;ve done since 1995 or so, only [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t like the verb &#8220;blog.&#8221; Actually, I kind of hate it. I despise sentences like &#8220;I blogged about this or that.&#8221;</p>

<p>But then I thought to myself, &#8220;Self, what is it you&#8217;re doing here if it&#8217;s not blogging?&#8221;</p>

<p>Well, I feel like I&#8217;m going the same thing I&#8217;ve done since 1995 or so, only some people now call it blogging. I still call it <em>writing</em>. This is a blog, but I <em>write</em> on it.</p>

<p>I like words. One might even say I&#8217;m a big fan of them, both the words themselves and their visual representation. Typography is how I got interested in etymology. Sadly, <em>blog</em> turned into a hyped-up overused word that started to replace the already perfectly good word <em>write</em>.</p><script src="http://feeds.feedburner.com/~s/AtomicPlayboy?i=http://atomicplayboy.net/blog/2005/08/07/a-minor-confession/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://atomicplayboy.net/blog/2005/08/07/a-minor-confession/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>NewsGator</title>
		<link>http://atomicplayboy.net/blog/2005/06/29/newsgator/</link>
		<comments>http://atomicplayboy.net/blog/2005/06/29/newsgator/#comments</comments>
		<pubDate>Wed, 29 Jun 2005 21:58:12 +0000</pubDate>
		<dc:creator>Johan Svensson</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[feeddemon]]></category>
		<category><![CDATA[newsgator]]></category>
		<category><![CDATA[World of Warcraft]]></category>

		<guid isPermaLink="false">http://atomicplayboy.net/blog/2005/06/28/newsgator/</guid>
		<description><![CDATA[As another attempt at decentralizing stuff I tend to do at more than one computer (I recently switched from Thunderbird to Gmail, despite having a very fine IMAP server available), I&#8217;ve now started using NewsGator to read most of my feeds. I use FeedDemon on the laptop. I could easily install it on my stationary [...]]]></description>
			<content:encoded><![CDATA[<p>As another attempt at decentralizing stuff I tend to do at more than one computer (I recently switched from Thunderbird to Gmail, despite having a very fine <span class="caps">IMAP </span>server available), I&#8217;ve now started using <a href="http://www.newsgator.com/">NewsGator</a> to read most of my feeds.</p>

<p>I use <a href="http://feeddemon.com/feeddemon/">FeedDemon</a> on the laptop. I could easily install it on my stationary machine as well, but then we have the problem of feeds appearing as unread on both machines.</p>

<p>NewsGator has since bought FeedDemon, and will integrate them later &#8212; things I read in FeedDemon get flagged as read in NewsGator, and vice versa. I have a few issues with the NewsGator interface &#8212; a few changes could make it <strong>so</strong> much easier to use &#8212; but no major gripes.</p>

<p>Also, am I a geek when I put my compilation of <em>World of Warcraft</em> plugins in a Subversion repository so I can check them out someplace else?</p><script src="http://feeds.feedburner.com/~s/AtomicPlayboy?i=http://atomicplayboy.net/blog/2005/06/29/newsgator/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://atomicplayboy.net/blog/2005/06/29/newsgator/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I should really stop doing this</title>
		<link>http://atomicplayboy.net/blog/2004/12/12/wordpress-2/</link>
		<comments>http://atomicplayboy.net/blog/2004/12/12/wordpress-2/#comments</comments>
		<pubDate>Sun, 12 Dec 2004 19:58:58 +0000</pubDate>
		<dc:creator>Johan Svensson</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://atomicplayboy.net/blog/2004/12/12/wordpress/</guid>
		<description><![CDATA[The change should have been completely transparent and invisible to you, so here&#8217;s the info: I&#8217;m running WordPress now. So that&#8217;s the fourth time I&#8217;ve switched blog CMS this year. Movable Type &#8594; WordPress &#8594; Textpattern &#8594; MT again &#8594; WordPress. The main reason for switching is that the comment spam problem for Movable Type [...]]]></description>
			<content:encoded><![CDATA[<p>The change <em>should</em> have been completely transparent and invisible to you, so here&#8217;s the info: I&#8217;m running <a href="http://wordpress.org/">WordPress</a> now.</p>

<p>So that&#8217;s the fourth time I&#8217;ve switched blog <span class="caps">CMS </span>this year. Movable Type &rarr; WordPress &rarr; Textpattern &rarr; MT again &rarr; WordPress.</p>

<p>The main reason for switching is that the comment spam problem for Movable Type has become <a href="http://photodude.com/article/2592/mt-plus-comment-spam-equals-dead-site">completely unbearable</a>. It can quite literally <em>kill</em> a server. MT-Blacklist helps, but has a flaw that allows some comment spam to pass right through it.</p>

<p>And then there&#8217;s the whole &#8220;rebuild on every comment&#8221; aspect. If MT gets hit with 50 spams in 10 seconds, that&#8217;s 50 mt-comments.cgi processes that are all rebuilding a page. Sometimes the same page.</p>

<p>The TextDrive servers can easily push 20,000,000 hits per day. Yet mt-comments.cgi can effectively push the server load up into the 300s. <a href="http://forum.textdrive.com/viewtopic.php?id=1544">This data</a> speaks for itself &#8212; 94% of the hits are to mt-comments.cgi. 3-400 of them are proper comments, the rest is spam.</p>

<p>WordPress and Textdrive are dynamic. There&#8217;s no page to generate every time a comment hits.</p>

<p>I still get spam, though. Spammers monitor web services like <a href="http://www.weblogs.com/">Weblogs.com</a> and go spam them as soon as they see an updated blog there. I get some spam every time I write a new entry.</p>

<p>Enter <a href="http://unknowngenius.com/blog/wordpress/spam-karma/">Spam Karma</a>. So far it&#8217;s stopped spam dead in its tracks, and this far more <span class="caps">CPU </span>efficient than MT-Blacklist. It works great, and the focus is to require as little interaction as possible from the blog owner.</p>

<p>In closing, WordPress has matured immensely since I last tried it. This will be my weapon of choice for quite some time now.</p><script src="http://feeds.feedburner.com/~s/AtomicPlayboy?i=http://atomicplayboy.net/blog/2004/12/12/wordpress-2/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://atomicplayboy.net/blog/2004/12/12/wordpress-2/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Twelve easy steps</title>
		<link>http://atomicplayboy.net/blog/2004/08/24/twelve-easy-steps/</link>
		<comments>http://atomicplayboy.net/blog/2004/08/24/twelve-easy-steps/#comments</comments>
		<pubDate>Tue, 24 Aug 2004 00:39:55 +0000</pubDate>
		<dc:creator>Johan Svensson</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[feeddemon]]></category>
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://atomicplayboy.net/blog/2004/08/24/twelve-easy-steps/</guid>
		<description><![CDATA[Today I read my first feed in a long while. I&#8217;ve been clean otherwise. I just kicked the habit when I switched from Windows to Linux, mainly due to the fact that all available feed readers for Linux suck. I thought I&#8217;d miss it, but I didn&#8217;t. I quit, cold turkey. Now that I&#8217;m back [...]]]></description>
			<content:encoded><![CDATA[<p>Today I read my first feed in a long while. I&#8217;ve been clean otherwise. I just kicked the habit when I switched from Windows to Linux, mainly due to the fact that all available feed readers for Linux suck.</p>

<p>I thought I&#8217;d miss it, but I didn&#8217;t. I quit, cold turkey.</p>

<p>Now that I&#8217;m back on Windows again (mostly because I missed a couple of games) I re-installed <a href="http://www.feeddemon.com/">FeedDemon</a> and eyed a couple of the thousands of accumulated headlines, but I marked most of them as read without reading them. Not very interesting stuff to read.</p>

<p>There are a rare few sites that I always read, though. Expect me to sniff around and make a whole bunch of comments on your latest entries.</p>

<p>Also, it only took two weeks from reinstalling Movable Type to getting hit by comment spam.</p><script src="http://feeds.feedburner.com/~s/AtomicPlayboy?i=http://atomicplayboy.net/blog/2004/08/24/twelve-easy-steps/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://atomicplayboy.net/blog/2004/08/24/twelve-easy-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No longer fair and balanced</title>
		<link>http://atomicplayboy.net/blog/2003/08/29/no-longer-fair-and-balanced/</link>
		<comments>http://atomicplayboy.net/blog/2003/08/29/no-longer-fair-and-balanced/#comments</comments>
		<pubDate>Fri, 29 Aug 2003 01:53:27 +0000</pubDate>
		<dc:creator>Johan Svensson</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[words]]></category>

		<guid isPermaLink="false">http://atomicplayboy.net/blog/2003/08/29/no-longer-fair-and-balanced/</guid>
		<description><![CDATA[It appears that Fox gave up the fight concerning their stated ownage of the phrase &#8220;fair and balanced.&#8221; Good riddance. Googling for the phrase lists Fox News as number one, but the rest of the hits on the first page appears to be blogs. Good work, grassroots!]]></description>
			<content:encoded><![CDATA[<p>It appears that Fox <a href="http://news.bbc.co.uk/1/hi/entertainment/tv_and_radio/3181983.stm">gave up the fight</a> concerning their stated ownage of the phrase &#8220;fair and balanced.&#8221; Good riddance.</p>

<p><a href="http://www.google.com/search?&amp;q=%22fair%20and%20balanced%22">Googling for the phrase</a> lists  Fox News as number one, but the rest of the hits on the first page appears to be blogs. Good work, grassroots!</p><script src="http://feeds.feedburner.com/~s/AtomicPlayboy?i=http://atomicplayboy.net/blog/2003/08/29/no-longer-fair-and-balanced/" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://atomicplayboy.net/blog/2003/08/29/no-longer-fair-and-balanced/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)

Served from: atomicplayboy.net @ 2012-02-11 04:54:34 -->
