<?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>bojan.blog</title>
	<atom:link href="http://bojand.org/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://bojand.org/blog</link>
	<description></description>
	<lastBuildDate>Sun, 11 Apr 2010 04:03:46 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Create a symmetric matrix in Mathematica</title>
		<link>http://bojand.org/blog/112.html</link>
		<comments>http://bojand.org/blog/112.html#comments</comments>
		<pubDate>Wed, 18 Nov 2009 19:03:20 +0000</pubDate>
		<dc:creator>Bojan</dc:creator>
				<category><![CDATA[Scientific Computing]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[mathematica]]></category>

		<guid isPermaLink="false">http://bojan.info/blog/?p=112</guid>
		<description><![CDATA[Here is a quick way to create a symmetric matrix in Mathematica. The code below creates a generic 6&#215;6 matrix (line 1), then mirrors the above-diagonal elements to their below-diagonal counterparts (substitution in lines 3-5).

am = Array[Subscript[a,##] &#38;, {6,6}];
am = am /.
  Flatten[Table[
    Subscript[a,i,j] -&#62; Subscript[a,j,i],
    {i,2,6}, {j,1,i-1}]]

]]></description>
			<content:encoded><![CDATA[<p>Here is a quick way to create a symmetric matrix in Mathematica. The code below creates a generic 6&#215;6 matrix (line 1), then mirrors the above-diagonal elements to their below-diagonal counterparts (substitution in lines 3-5).</p>
<pre class="brush: mathematica;">
am = Array[Subscript[a,##] &amp;, {6,6}];
am = am /.
  Flatten[Table[
    Subscript[a,i,j] -&gt; Subscript[a,j,i],
    {i,2,6}, {j,1,i-1}]]
</pre>
]]></content:encoded>
			<wfw:commentRss>http://bojand.org/blog/112.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ezproxy redirect bookmarklet</title>
		<link>http://bojand.org/blog/81.html</link>
		<comments>http://bojand.org/blog/81.html#comments</comments>
		<pubDate>Tue, 10 Nov 2009 15:17:02 +0000</pubDate>
		<dc:creator>Bojan</dc:creator>
				<category><![CDATA[Papers]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[bookmarklet]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://bojan.info/blog/?p=81</guid>
		<description><![CDATA[A while ago I wrote a Google Toolbar button for redirecting the current page to the same page accessed through an EZproxy server. As I was missing this functionality in browsers without Google Toolbar (it&#8217;s still not available in Google Chrome), I realized that it&#8217;s a very simple thing to do with a bookmarklet. Here [...]]]></description>
			<content:encoded><![CDATA[<p>A while ago I wrote a <a href="http://bojand.org/tools/ezproxy/">Google Toolbar button for redirecting the current page to the same page accessed through an EZproxy server</a>. As I was missing this functionality in browsers without Google Toolbar (it&#8217;s still not available in Google Chrome), I realized that it&#8217;s a very simple thing to do with a <a href="http://en.wikipedia.org/wiki/Bookmarklet">bookmarklet</a>. Here is the code:</p>
<pre class="brush: jscript; gutter: false;">
javascript:window.location=location.protocol+'//'+location.hostname+'.ezproxy1.library.arizona.edu'+location.pathname+location.search+location.hash;
</pre>
<p><span id="more-81"></span></p>
<p>To make it work, copy the above code, and paste it as the URL in a bookmark. In all modern browsers, alternatively, you can just drag this link to the bookmarks bar:</p>
<ul>
<li><strong><a href="javascript:window.location=location.protocol+'//'+location.hostname+'.ezproxy1.library.arizona.edu'+location.pathname+location.search+location.hash;" rel="nofollow">ez</a></strong></li>
</ul>
<p>In either case, make sure you edit the javascript code and replace <kbd>ezproxy1.library.arizona.edu</kbd> by your EZproxy server.</p>
<p>Once &quot;ez&quot; is in your bookmarks, clicking on the bookmark will have the same effect as clicking the <a href="http://bojand.org/tools/ezproxy/">ezproxy Google Toolbar button</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bojand.org/blog/81.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello WordPress!</title>
		<link>http://bojand.org/blog/1.html</link>
		<comments>http://bojand.org/blog/1.html#comments</comments>
		<pubDate>Thu, 29 Oct 2009 18:54:35 +0000</pubDate>
		<dc:creator>Bojan</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://blog.bojan.info/?p=1</guid>
		<description><![CDATA[If there is a good thing about having a cold/flu it&#8217;s that you get around to do those little things you&#8217;ve been putting off for months or years (because you&#8217;re not up for much else) &#8212; like getting your blog in order. I&#8217;ve used Blogger some time ago, then installed WordPress, but never moved old [...]]]></description>
			<content:encoded><![CDATA[<p>If there is a good thing about having a cold/flu it&#8217;s that you get around to do those little things you&#8217;ve been putting off for months or years (because you&#8217;re not up for much else) &mdash; like getting your blog in order. I&#8217;ve used Blogger some time ago, then installed WordPress, but never moved old posts&#8230; So here they come now.</p>
]]></content:encoded>
			<wfw:commentRss>http://bojand.org/blog/1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.bst file for the International Journal of Non-Linear Mechanics</title>
		<link>http://bojand.org/blog/104.html</link>
		<comments>http://bojand.org/blog/104.html#comments</comments>
		<pubDate>Mon, 20 Oct 2008 16:15:08 +0000</pubDate>
		<dc:creator>Bojan</dc:creator>
				<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[bibtex]]></category>

		<guid isPermaLink="false">http://bojan.info/blog/?p=104</guid>
		<description><![CDATA[As I was writing my compacton paper, I needed to format my references following the International Journal of Non-Linear Mechanics style. So I wrote a .bst (BibTeX bibliographic style) file that gives pretty much the desired output: ijnlm.bst.
]]></description>
			<content:encoded><![CDATA[<p>As I was writing <a href="http://go.bojand.org/cpctwave.pdf">my compacton paper</a>, I needed to format my references following the <a href="http://www.elsevier.com/locate/nlm">International Journal of Non-Linear Mechanics</a> style. So I wrote a .bst (BibTeX bibliographic style) file that gives pretty much the desired output: <a href="http://go.bojand.org/ijnlm.bst">ijnlm.bst</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bojand.org/blog/104.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Caffeine triggered migraine</title>
		<link>http://bojand.org/blog/40.html</link>
		<comments>http://bojand.org/blog/40.html#comments</comments>
		<pubDate>Sun, 15 Oct 2006 16:02:44 +0000</pubDate>
		<dc:creator>Bojan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[caffeine]]></category>
		<category><![CDATA[migraine]]></category>

		<guid isPermaLink="false">http://blog.bojan.info/?p=40</guid>
		<description><![CDATA[This is an interesting article on caffeine and migraine. I thought the connection was obvious, I had no idea it is something still debated/not explicitly shown in studies.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://ino.info/medicine/caffeine-triggered-migraine/trackback/">This is an interesting article on caffeine and migraine</a>. I thought the connection was obvious, I had no idea it is something still debated/not explicitly shown in studies.</p>
]]></content:encoded>
			<wfw:commentRss>http://bojand.org/blog/40.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XML parsing with Perl using XPath</title>
		<link>http://bojand.org/blog/68.html</link>
		<comments>http://bojand.org/blog/68.html#comments</comments>
		<pubDate>Mon, 21 Aug 2006 22:01:43 +0000</pubDate>
		<dc:creator>Bojan</dc:creator>
				<category><![CDATA[Data Processing]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xpath]]></category>

		<guid isPermaLink="false">http://bojan.info/blog/?p=68</guid>
		<description><![CDATA[
use strict;
use XML::LibXML;

# data source
my $xml_filename = &#34;xml/data.xml&#34;;

my $parser = XML::LibXML-&#62;new;
my $doc = $parser-&#62;parse_file($xml_filename);

my $xpath = &#34;//word/entry[\@src=\&#34;pr\&#34;]/..&#34;;
my @words = $doc-&#62;findnodes($xpath);

foreach my $word (@words) {
	print $word-&#62;findvalue(&#34;\@id&#34;);
	print &#34;\n&#34;;
}

]]></description>
			<content:encoded><![CDATA[<pre class="brush: perl;">
use strict;
use XML::LibXML;

# data source
my $xml_filename = &quot;xml/data.xml&quot;;

my $parser = XML::LibXML-&gt;new;
my $doc = $parser-&gt;parse_file($xml_filename);

my $xpath = &quot;//word/entry[\@src=\&quot;pr\&quot;]/..&quot;;
my @words = $doc-&gt;findnodes($xpath);

foreach my $word (@words) {
	print $word-&gt;findvalue(&quot;\@id&quot;);
	print &quot;\n&quot;;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://bojand.org/blog/68.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File modified timestamp with Perl</title>
		<link>http://bojand.org/blog/63.html</link>
		<comments>http://bojand.org/blog/63.html#comments</comments>
		<pubDate>Mon, 21 Aug 2006 21:43:29 +0000</pubDate>
		<dc:creator>Bojan</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[timestamp]]></category>

		<guid isPermaLink="false">http://bojan.info/blog/63.html</guid>
		<description><![CDATA[This is how to quickly get the timestamp of when the file was last modified in Perl:

$lastmod = (stat($filename))[9];

]]></description>
			<content:encoded><![CDATA[<p>This is how to quickly get the timestamp of when the file was last modified in Perl:</p>
<pre class="brush: perl; gutter: false;">
$lastmod = (stat($filename))[9];
</pre>
]]></content:encoded>
			<wfw:commentRss>http://bojand.org/blog/63.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XSLT transform with Perl</title>
		<link>http://bojand.org/blog/53.html</link>
		<comments>http://bojand.org/blog/53.html#comments</comments>
		<pubDate>Mon, 21 Aug 2006 21:27:11 +0000</pubDate>
		<dc:creator>Bojan</dc:creator>
				<category><![CDATA[Data Processing]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xslt]]></category>

		<guid isPermaLink="false">http://bojan.info/blog/?p=53</guid>
		<description><![CDATA[Here is a Perl snippet that transforms an XML file with XSLT:

use strict;
use XML::XSLT::Wrapper;

my $xml_input_filename = &#34;xml/data.xml&#34;;
my $xml_output_filename = &#34;xml/out.xml&#34;;
my $xsl_filename = &#34;xml/transform.xslt&#34;;

my $xslt = XML::XSLT::Wrapper-&#62;new(
		ProcessorList =&#62; [
			'libxslt',
			'sablotron',
			'xslt'
		],
	);
my $result = $xslt-&#62;transform(
		OutFile =&#62; $xml_output_filename,
		xml =&#62; $xml_input_filename,
		xsl =&#62; $xsl_filename,
	);
$xslt-&#62;dispose();


Values given to [code]]czo2OlwieG1sID0+XCI7e1smKiZdfQ==[[/code] and [code]]czo2OlwieHNsID0+XCI7e1smKiZdfQ==[[/code] can be either file names, or xml/xslt code passed as a string.
If [code]]czo3OlwiT3V0RmlsZVwiO3tbJiomXX0=[[/code] [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a Perl snippet that transforms an XML file with XSLT:</p>
<pre class="brush: perl;">
use strict;
use XML::XSLT::Wrapper;

my $xml_input_filename = &quot;xml/data.xml&quot;;
my $xml_output_filename = &quot;xml/out.xml&quot;;
my $xsl_filename = &quot;xml/transform.xslt&quot;;

my $xslt = XML::XSLT::Wrapper-&gt;new(
		ProcessorList =&gt; [
			'libxslt',
			'sablotron',
			'xslt'
		],
	);
my $result = $xslt-&gt;transform(
		OutFile =&gt; $xml_output_filename,
		xml =&gt; $xml_input_filename,
		xsl =&gt; $xsl_filename,
	);
$xslt-&gt;dispose();
</pre>
<p><span id="more-53"></span></p>
<p>Values given to [code]]czo2OlwieG1sID0+XCI7e1smKiZdfQ==[[/code] and [code]]czo2OlwieHNsID0+XCI7e1smKiZdfQ==[[/code] can be either file names, or xml/xslt code passed as a string.</p>
<p>If [code]]czo3OlwiT3V0RmlsZVwiO3tbJiomXX0=[[/code] is ommited, then the result of the transformation is returned to the variable [code]]czo3OlwiJHJlc3VsdFwiO3tbJiomXX0=[[/code].</p>
]]></content:encoded>
			<wfw:commentRss>http://bojand.org/blog/53.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogger, WordPress, b2evolution: Blog Engine Choice</title>
		<link>http://bojand.org/blog/37.html</link>
		<comments>http://bojand.org/blog/37.html#comments</comments>
		<pubDate>Mon, 14 Aug 2006 20:04:27 +0000</pubDate>
		<dc:creator>Bojan</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[b2evolution]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.bojan.info/?p=37</guid>
		<description><![CDATA[<p>As I signed up with <a href="http://www.blogger.com">Blogger</a> a few years ago, and have never looked at alternatives, I decided to do so now, just to check whether I'm missing on something. Here's what I found.</p>]]></description>
			<content:encoded><![CDATA[<p>As I signed up with <a href="http://www.blogger.com">Blogger</a> a few years ago, and have never looked at alternatives, I decided to do so now, just to check whether I&#8217;m missing on something. Here&#8217;s what I found.</p>
<p><span id="more-37"></span></p>
<h2><a href="http://b2evolution.net">b2evolution</a></h2>
<p>A google search for <q>blog engine</q> (I wanted something I controlled completely on my own server) gave me <a href="http://b2evolution.net/" rel="external">b2evolution</a> as a first result. After a glimpse of its capabilities, and reading a few positive reviews, I decided to give it a try. So I downloaded the <a href="http://b2evolution.net/news/2006/07/09/b2evolution_1_8_summer_beta_released">Summer Beta</a> release, i.e. version 1.8 beta, which is supposedly stable. (BTW this is the only 1.x stable version, although a beta!)</p>
<dl>
<dt>Pros</dt>
<dd>The setup was pretty straightforward. I was really impressed with the configurability: the <q>backoffice</q> has an amazing spectrum of options. I also liked the multilingual features, i.e. the fact that you can specify the locale for each post separately.</dd>
<dt>Cons</dt>
<dd>
<p>The basic setup leaves you with ugly URLs, which in the worst case look like [code]]czo3NDpcIltiYXNldXJsXS9pbmRleC5waHA/dGl0bGU9cG9zdF90aXRsZSZhbXA7Yz0xJmFtcDt0Yj0xJmFtcDtwYj0xJmFtcDttb3J7WyYqJl19ZT0xXCdcIjt7WyYqJl19[[/code], and are a little better with what they call <q>extra info</q>: [code]]czo0MTpcIltiYXNldXJsXS9pbmRleC5waHAvMjAwMy8wNS8yMC9wb3N0X3RpdGxlXCI7e1smKiZdfQ==[[/code] (note [code]]czo5OlwiaW5kZXgucGhwXCI7e1smKiZdfQ==[[/code] in the middle!). There are some situations (not many though) where I could live with URLs like that, but a blog is not one of them.</p>
<p>So I tried to fix it with [code]]czoxMTpcIm1vZF9yZXdyaXRlXCI7e1smKiZdfQ==[[/code]. According to the few forum threads dealing with the issue, this should be not hard to fix, but it turned out to be a nightmare that took me hours, although I'm used to dealing with [code]]czoxMTpcIm1vZF9yZXdyaXRlXCI7e1smKiZdfQ==[[/code]. It seems that the latest version of b2evo engine interacts in some way that it took me quite some time to hack it. I will not go into details here, maybe in another post, since the solution is far from obvious. In any case, even after solving the problem, the URLs were not uniform: some links to the root of a blog were [code]]czoxOTpcIltiYXNldXJsXS9ibG9nMS5waHBcIjt7WyYqJl19[[/code], some [code]]czoxNTpcIltiYXNldXJsXS9ibG9nMVwiO3tbJiomXX0=[[/code], and some as the latter but with a backslash in the end. The best I could do to fix this is to do a 301 redirect of both cited URL types to [code]]czoxNjpcIltiYXNldXJsXS9ibG9nMS9cIjt7WyYqJl19[[/code]. But links with .php are still in the navigation system, and this bothers me. I would need to edit the template to fix this.</p>
<p>Another thing that I didn't like about b2evo are the skins. They are not terrible, but compared with Blogger and WordPress, they just look like amateur work; they don't come even close!</p>
</dd>
</dl>
<p>Overall, I do enjoy having the power of its backoffice, but the version that I had felt a little buggy. And the documentation is pretty poor. Some day, this could be a great blog engine, but right now there's a little something missing.</p>
<h2><a href="http://wordpress.org/">WordPress</a></h2>
<p>This was a completely different story from b2evo. Everything about it is very neat, very professional looking. The skins are great. The documentation is much, much better than b2evo's. This is really a great blog engine... or would be if it weren't for one small thing: it's Rich Text Editor with all the javascript around it that just won't let you be in control of the code of your posts! There's no way of turning off these functions, and there is no simple HTML editor. For instance, I could not insert a piece of code with [code]]czoxMTpcIiZsdDtwcmUmZ3Q7XCI7e1smKiZdfQ==[[/code] tags, since the editor would always strip off all line breaks, leaving all the code in one line! How ridiculous!</p>
<p>Conclusion: if all you are going to be posting is text (no code), and you don't care about HTML editing of your posts, WordPress looks like a great choice. If only it had a simple HTML editor in addition to the Rich Text editor, like Blogger does, it would be my first choice.</p>
<p><strong>Edit:</strong> <em>The visual rich editor in WordPress <strong>can</strong> be turned off! See <a href="http://blog.bojan.info/archives/37.html/comment-page-1#comment-2">my coment</a></em></p>
<h2><a href="http://www.blogger.com/">Blogger</a></h2>
<p>So for now, I'll stick with Blogger. The only thing I'm missing with Blogger are categories, and I can't understand why in the world won't they add such a simple functionality that would draw so many more people to Blogger! I see many people choosing WordPress or other engines over Blogger for this and this reason only.</p>
<p>What I like about Blogger is the fact that all files are static HTML, that they are physically on my own server (which is a big psychological thing for me), there is no php burdening the server, and all URLs are nice as they are, with no [code]]czoxMTpcIm1vZF9yZXdyaXRlXCI7e1smKiZdfQ==[[/code].</p>
<p>So, Blogger, I'll stick with you for now, but if you want me to stick with you in the long run, do something about those categories, please!</p>
]]></content:encoded>
			<wfw:commentRss>http://bojand.org/blog/37.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sitemap generator configuration for Blogger</title>
		<link>http://bojand.org/blog/32.html</link>
		<comments>http://bojand.org/blog/32.html#comments</comments>
		<pubDate>Tue, 08 Aug 2006 20:28:00 +0000</pubDate>
		<dc:creator>Bojan</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[sitemap]]></category>

		<guid isPermaLink="false">http://blog.bojan.info/?p=32</guid>
		<description><![CDATA[If you are using Google&#8217;s sitemap generator [code]]czoxNDpcInNpdGVtYXBfZ2VuLnB5XCI7e1smKiZdfQ==[[/code] to generate a sitemap of your Blogger blog , here are the configuration lines to add to the config.xml file:


&#60;filter action=&#34;drop&#34; type=&#34;wildcard&#34;
    pattern=&#34;*.py&#34; /&#62;
&#60;filter action=&#34;drop&#34; type=&#34;wildcard&#34;
    pattern=&#34;*.txt&#34; /&#62;
&#60;filter action=&#34;drop&#34; type=&#34;regexp&#34;
    pattern=&#34;/google\w+\.html&#34; /&#62;
&#60;filter action=&#34;drop&#34; type=&#34;regexp&#34;
    pattern=&#34;/\d+/(\d+/)?$&#34; [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using <a href="http://sourceforge.net/projects/goog-sitemapgen">Google&#8217;s sitemap generator</a> [code]]czoxNDpcInNpdGVtYXBfZ2VuLnB5XCI7e1smKiZdfQ==[[/code] to generate a sitemap of your Blogger blog , here are the configuration lines to add to the config.xml file:</p>
<p><span id="more-32"></span></p>
<pre class="brush: xml;">
&lt;filter action=&quot;drop&quot; type=&quot;wildcard&quot;
    pattern=&quot;*.py&quot; /&gt;
&lt;filter action=&quot;drop&quot; type=&quot;wildcard&quot;
    pattern=&quot;*.txt&quot; /&gt;
&lt;filter action=&quot;drop&quot; type=&quot;regexp&quot;
    pattern=&quot;/google\w+\.html&quot; /&gt;
&lt;filter action=&quot;drop&quot; type=&quot;regexp&quot;
    pattern=&quot;/\d+/(\d+/)?$&quot; /&gt;

&lt;filter action=&quot;drop&quot; type=&quot;regexp&quot;
    pattern=&quot;/archive/$&quot; /&gt;
&lt;filter action=&quot;drop&quot; type=&quot;regexp&quot;
    pattern=&quot;/uploaded_files/$&quot; /&gt;
&lt;filter action=&quot;drop&quot; type=&quot;regexp&quot;
    pattern=&quot;/uploaded_images/$&quot; /&gt;
</pre>
<p>In this way, void URLs will not be included in the sitemap.xml output.</p>
<p>If you're wondering "Why would I be running the sitemap generator on my blog?", it's because Googlebot does not handle well the posts where the time &amp; date has been altered.</p>
<p>If you don't know what the sitemap generator is, see <a href="http://www.google.com/webmasters/sitemaps/docs/en/sitemap-generator.html">Google Sitemaps Help</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bojand.org/blog/32.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
