<?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>Stefano Gorgoni</title>
	<atom:link href="http://www.stefanogorgoni.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stefanogorgoni.com</link>
	<description>SEO and other stuff</description>
	<lastBuildDate>Tue, 13 Mar 2012 21:56:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Get domain from URL</title>
		<link>http://www.stefanogorgoni.com/get-domain-from-url/</link>
		<comments>http://www.stefanogorgoni.com/get-domain-from-url/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 16:18:09 +0000</pubDate>
		<dc:creator>stefano</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.stefanogorgoni.com/?p=103</guid>
		<description><![CDATA[How to get the domain from the URL? It depends! Lately i&#8217;ve spent some time trying to figure out the best way to solve this problem. Scenario: a website reachable through two different second-level domains (and a bunch of third-level &#8230; <a href="http://www.stefanogorgoni.com/get-domain-from-url/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>How to get the domain from the URL? It depends!</strong></p>
<p>Lately i&#8217;ve spent some time trying to figure out the <strong>best way</strong> to solve this problem.</p>
<p><strong>Scenario</strong>: a website reachable through two different <a href="http://en.wikipedia.org/wiki/Domain_name#Second-level_and_lower_level_domains">second-level domains</a> (and a bunch of third-level domains). No redirects from a domain to the other, or from the third-level domains to the second-level (and this behaviour couldn&#8217;t be changed). The two SLD have <strong>their own virtual host</strong> configured on Apache (this detail is <strong>very</strong> important, as you will see).</p>
<p>Please note: the following possible solutions consider <strong>PHP</strong>, but i guess that, apart from the different syntax, the logic would be the same with any other language). I&#8217;m not a programmer anyway, so won&#8217;t put much code here (feel free to add it in the comments, if you want).</p>
<p><strong>One possible solution</strong> is to get the server name:</p>
<blockquote><p>&lt;?php<br />
$_SERVER(&#8216;SERVER_NAME&#8217;);<br />
?&gt;</p></blockquote>
<p>and then take the last two strings starting (separated by a dot) from the end.</p>
<p>So, if SERVER_NAME is www.mydomain.tld, you would get mydomain.tld, which is the second level domain.</p>
<p>This solution can be good enough if you know in advance you are not going to use it with domains including a dot, like co.uk, com.mt or com.au, just to name a few.</p>
<p>But if you have the website accessible through google.com and google.co.uk (the first example coming to my mind, i wonder why), this kind of solution would return google.com and co.uk. Not exactly what you&#8217;d want.</p>
<p><strong>A more sophisticated</strong> solution would be to check the TLD against a list (there is one <a href="http://mxr.mozilla.org/mozilla-central/source/netwerk/dns/effective_tld_names.dat">here</a> but it&#8217;s not complete). If you have a complete list of TLD, you can get the SERVER_NAME, check what TLD is in it, and pick up the part of the hostname before the TLD (plus the TLD itself, of course).</p>
<p>For both the solutions above, you can find a lot of code snippets on Google.</p>
<p>But <strong>my favourite solution is the third</strong>! In fact, you can set in the <strong>virtual host</strong> (in the two virtual hosts, in my case) on Apache a variable defining the domain:</p>
<blockquote><p>&lt;VirtualHost&gt;<br />
ServerName www.domain1.tld<br />
SetEnv MY_DOMAIN domain1.tld<br />
&lt;/VirtualHost&gt;</p>
<p>&lt;VirtualHost&gt;<br />
ServerName www.domain2.tld<br />
SetEnv MY_DOMAIN domain2.tld<br />
&lt;/VirtualHost&gt;</p></blockquote>
<p>This way <strong>it&#8217;s Apache defining the exact domain value</strong>, and at this point you can get the variable in php with a simple</p>
<blockquote><p>&lt;?php<br />
$_SERVER(&#8216;MY_DOMAIN&#8217;);<br />
?&gt;</p></blockquote>
<p>For the record, i needed to use the variable to create a cookie valid for the second level domain and any subdomain of it. So, once defined the variable in the virtualhost, all i had to do was something like this:</p>
<blockquote><p>$domain = $_SERVER['MY_DOMAIN'];<br />
if(isset($_GET['parameter'])) {<br />
$variable = htmlentities($_GET['parameter']);<br />
setcookie(&#8220;mycookie&#8221;, $variable, time()+(60*60*24*7), &#8220;/&#8221;, $domain);<br />
}</p></blockquote>
<p>In case you will find yourself in the same situation, hope this saves you some time.</p>
<p>P.s. as you see now, being able to edit the virtual host is essential to use this solution.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefanogorgoni.com/get-domain-from-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress and XML sitemaps plugins</title>
		<link>http://www.stefanogorgoni.com/wordpress-and-xml-sitemaps-plugins/</link>
		<comments>http://www.stefanogorgoni.com/wordpress-and-xml-sitemaps-plugins/#comments</comments>
		<pubDate>Fri, 21 Jan 2011 13:41:22 +0000</pubDate>
		<dc:creator>stefano</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.diarizing.com/?p=78</guid>
		<description><![CDATA[If you have a WordPress with multisite feature enabled, you may have experienced problems in finding the right plugin to generate a XML sitemap to submit to search engines. I usually use Google XML Sitemaps, maybe the most used plugins &#8230; <a href="http://www.stefanogorgoni.com/wordpress-and-xml-sitemaps-plugins/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you have a <a href="http://wordpress.org/">WordPress</a> with <a href="http://codex.wordpress.org/Create_A_Network">multisite</a> feature enabled, you may have experienced problems in finding the <strong>right plugin</strong> to generate a XML sitemap to submit to search engines.</p>
<p>I usually use <a href="http://wordpress.org/extend/plugins/google-sitemap-generator/">Google XML Sitemaps</a>, maybe the most used plugins to generate XML sitemaps on WordPress. Unfortunately, this nice plugin <strong>doesn&#8217;t work on WP Multisite</strong>. And it <strong>doesn&#8217;t generate multiple sitemaps</strong>.</p>
<p>If you want a XML sitemap plugin to <strong>generate sitemaps on your multisite wordpress</strong>, you want try <a href="http://yoast.com/wordpress/seo/">WordPress SEO by Yoast</a>, as far as i know the only plugin that works well in generating a sitemap on a WP multisite website.</p>
<p>But if you have a huge website, with thousands and thousands of URLs in it, you may have another kind of issue. In fact, <strong>none of the above mentioned plugins generate multiple sitemaps</strong> (and the sitemap index, of course) in case you have <strong>more than 50.000 URLs</strong> to list. And by the way, 50.000 is the limit in the protocol, but Google seems not to love sitemaps with more than 10.000 URLs listed. If you have this issue, you should try <a href="http://wordpress.org/extend/plugins/strictly-google-sitemap/">Strictly Google Sitemap</a>, a plugin that <strong>allows to generate multiple sitemaps</strong> (and with great performances!). Only problem i found out using this plugin is that the permalink structure <strong>must</strong> include some numeric value (<em>%post_id%</em>, for example), or the sitemap generated won&#8217;t be correct.</p>
<p>And if you have a WP multisite with some of the websites in the network with more than 50.000 (or just 10.000) URLs? I&#8217;m afraid we have to wait for it: <strong>i couldn&#8217;t find any</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefanogorgoni.com/wordpress-and-xml-sitemaps-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pidgin cannot connect to MSN: the certificate chain presented is invalid</title>
		<link>http://www.stefanogorgoni.com/pidgin-cannot-connect-to-msn-the-certificate-chain-presented-is-invalid/</link>
		<comments>http://www.stefanogorgoni.com/pidgin-cannot-connect-to-msn-the-certificate-chain-presented-is-invalid/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 11:54:03 +0000</pubDate>
		<dc:creator>stefano</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.diarizing.com/?p=59</guid>
		<description><![CDATA[The certificate for omega.contacts.msn.com could not be validated. The certificate chain presented is invalid. If you have an error when trying to connect to MSN messenger with your pidgin today, this is the easy and quick way to fix the &#8230; <a href="http://www.stefanogorgoni.com/pidgin-cannot-connect-to-msn-the-certificate-chain-presented-is-invalid/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<blockquote><p><em>The certificate for omega.contacts.msn.com could not be validated. The certificate chain presented is invalid.</em></p></blockquote>
<p>If you have an error when trying to connect to MSN messenger with your <a href="http://www.pidgin.im/">pidgin</a> today, this is the easy and quick way to <strong>fix the problem</strong>: just delete the contacts.msn.com SSL certificate.</p>
<blockquote><p>rm ~.purple/certificates/x509/tls_peers/contacts.msn.com</p></blockquote>
<p>This way, pidgin will download again the SSL certificate and everything will be working again.</p>
<p><em><strong>update</strong>: check comments for more other possible fixes</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefanogorgoni.com/pidgin-cannot-connect-to-msn-the-certificate-chain-presented-is-invalid/feed/</wfw:commentRss>
		<slash:comments>59</slash:comments>
		</item>
		<item>
		<title>WordPress, Feedburner and sitemaps</title>
		<link>http://www.stefanogorgoni.com/wordpress-feedburner-and-sitemaps/</link>
		<comments>http://www.stefanogorgoni.com/wordpress-feedburner-and-sitemaps/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 07:13:34 +0000</pubDate>
		<dc:creator>stefano</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.diarizing.com/?p=50</guid>
		<description><![CDATA[UPDATE (19/03/2011): it seems the last version of the plugin already takes care of Googlebot, so this post has to be considered outdated. If you use Feedburner for your wordpress feed, you probably use the FD Feedburner plugin for WordPress &#8230; <a href="http://www.stefanogorgoni.com/wordpress-feedburner-and-sitemaps/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><em><strong>UPDATE</strong> (19/03/2011): it seems the last version of the plugin already takes care of Googlebot, so this post has to be considered outdated.</em></p>
<p>If you use <strong>Feedburner</strong> for your wordpress feed, you probably use the <a href="http://flagrantdisregard.com/feedburner/">FD Feedburner plugin for WordPress</a> . The plugin is cool because it redirects your users to your Feedburner while letting Feedburner itself accessing your wordpress feed; and it&#8217;s really simple to configure.</p>
<p><strong>But if you want to submit your feed to Google Webmaster Tools</strong>, Google will be redirected to your Feedburner too. While you may expect it to work, in some case it won&#8217;t. If you track clicks on Feedburner in fact, your feed will have changed links in it. Feedburner changes the &lt;link&gt;URL&lt;/link&gt; to an internal URL that will redirect to your own URL after tracking stuff.</p>
<p>As a consequence, <strong>if you submit your feed as a sitemap on Google Webmaster Tools, Google will show you errors</strong> like this:</p>
<p><img class="alignnone size-full wp-image-51" title="Feedburner and Google sitemap" src="http://www.stefanogorgoni.com/wp-content/uploads/2010/06/feedburner-sitemap.png" alt="Feedburner and Google sitemap" width="479" height="236" /></p>
<p>This happens because the URLs in the Feedburner feed are not into your own domain but on http://feedproxy.google.com/</p>
<p>To fix this behaviour, easiest solution is <strong>having Google accessing your original feed</strong> (http://yourblog.tld/feed/) instead of being redirect to Feedburner. This can be easily done with a <strong>little</strong> change in the plugin.</p>
<p>Edit your plugin (with a text editor accessing the file via ftp, or just from the dashboard -&gt; Plugins -&gt; Editor, and select the FD Feedburner plugin) and look for this piece of code:</p>
<blockquote><p>function feedburner_redirect() {<br />
global $feed, $withcomments, $wp, $wpdb, $wp_version, $wp_db_version;</p>
<p>// Do nothing if not a feed<br />
if (!is_feed()) return;</p>
<p>// Do nothing if feedburner is the user-agent<br />
if (preg_match(&#8216;/feedburner/i&#8217;, $_SERVER['HTTP_USER_AGENT'])) return;</p>
<p>// Do nothing if not configured<br />
$options = get_option(&#8216;fd_feedburner&#8217;);<br />
if (!isset($options['feedburner_url'])) $options['feedburner_url'] = null;</p></blockquote>
<p>Just change the line</p>
<blockquote><p>if (preg_match(&#8216;/feedburner/i&#8217;, $_SERVER['HTTP_USER_AGENT'])) return;</p></blockquote>
<p>with:</p>
<blockquote><p>if (preg_match(&#8216;/(feedburner|google)/i&#8217;, $_SERVER['HTTP_USER_AGENT'])) return;</p></blockquote>
<p>and you are done. Google won&#8217;t be redirected to your Feedburner feed, and it will use your original feed as sitemap.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefanogorgoni.com/wordpress-feedburner-and-sitemaps/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Nice try</title>
		<link>http://www.stefanogorgoni.com/nice-try/</link>
		<comments>http://www.stefanogorgoni.com/nice-try/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 08:09:02 +0000</pubDate>
		<dc:creator>stefano</dc:creator>
				<category><![CDATA[Seo]]></category>
		<category><![CDATA[linkbait]]></category>

		<guid isPermaLink="false">http://www.diarizing.com/?p=46</guid>
		<description><![CDATA[Derek Powazek &#8211; Spammers, Evildoers, and Opportunists. This is a kind of link baiting tactic i don&#8217;t like too much: the attack hook. This is why, for once, i&#8217;m using a nofollow attribute.]]></description>
			<content:encoded><![CDATA[<p><a href="http://powazek.com/posts/2090" rel="nofollow">Derek Powazek &#8211; Spammers, Evildoers, and Opportunists</a>. This is a kind of link baiting tactic i don&#8217;t like too much: the <a href="http://performancing.com/the_art_of_linkbaiting/?q=node/38">attack hook</a>.</p>
<p>This is why, for once, i&#8217;m using a nofollow attribute.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefanogorgoni.com/nice-try/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bigdump</title>
		<link>http://www.stefanogorgoni.com/bigdump/</link>
		<comments>http://www.stefanogorgoni.com/bigdump/#comments</comments>
		<pubDate>Fri, 08 May 2009 16:44:29 +0000</pubDate>
		<dc:creator>stefano</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.diarizing.com/?p=42</guid>
		<description><![CDATA[Moving a website to a new hosting, i had the problem of importing the database. In fact, export was too much big (30Mb) compared to allowed size of upload files via phpmyadmin on new hosting (1Mb &#8211; where &#8220;M&#8221; maybe &#8230; <a href="http://www.stefanogorgoni.com/bigdump/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Moving a website to a new hosting, i had the problem of importing the database. In fact, export was too much big (30Mb) compared to allowed size of upload files via phpmyadmin on new hosting (1Mb &#8211; where &#8220;M&#8221; maybe stands for &#8220;miserable&#8221;). Of course, no shell access&#8230; </p>
<p>So? Fortunately, i found <a href="http://www.ozerov.de/bigdump.php">BigDump</a>, a GPL script that allows to import into the new database the exported file. Excellent!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefanogorgoni.com/bigdump/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spam of the day</title>
		<link>http://www.stefanogorgoni.com/spam-of-the-day/</link>
		<comments>http://www.stefanogorgoni.com/spam-of-the-day/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 13:04:29 +0000</pubDate>
		<dc:creator>stefano</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.diarizing.com/?p=37</guid>
		<description><![CDATA[Just got yet another spam. But this one reminded me of a funny quote. Email&#8217;s subject was: Millions of customers can&#8217;t be wrong! (and then usual stuff about penis enlargement bla bla bla ). Well, this is what immediately came &#8230; <a href="http://www.stefanogorgoni.com/spam-of-the-day/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Just got yet another spam. But this one reminded me of a funny quote.</p>
<p>Email&#8217;s subject was:<em> Millions of customers can&#8217;t be wrong!</em> (and then usual stuff about penis enlargement bla bla bla <img src='http://www.stefanogorgoni.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ).</p>
<p>Well, this is what immediately came in my mind:</p>
<p><img src="http://images5.cafepress.com/product/38155445v2_350x350_Front.jpg"> (image from <a href="http://t-shirts.cafepress.com/item/eat-shit-flies-cant-be-wrong-white-tshirt/38155445">Cafepress</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefanogorgoni.com/spam-of-the-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free IQ Test</title>
		<link>http://www.stefanogorgoni.com/free-iq-test/</link>
		<comments>http://www.stefanogorgoni.com/free-iq-test/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 15:15:11 +0000</pubDate>
		<dc:creator>stefano</dc:creator>
				<category><![CDATA[Link love]]></category>

		<guid isPermaLink="false">http://www.diarizing.com/free-iq-test/</guid>
		<description><![CDATA[Free-IQTest.net &#8211; IQ Test]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.free-iqtest.net" title="IQ Test"><img src="http://www.free-iqtest.net/images/badges2/l150.gif" alt="IQ Test" border="0" height="100" width="200" /></a><br />
Free-IQTest.net &#8211; <a href="http://www.free-iqtest.net" title="IQ Test">IQ Test</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefanogorgoni.com/free-iq-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wolda 2008</title>
		<link>http://www.stefanogorgoni.com/wolda-2008/</link>
		<comments>http://www.stefanogorgoni.com/wolda-2008/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 13:32:10 +0000</pubDate>
		<dc:creator>stefano</dc:creator>
				<category><![CDATA[Link love]]></category>

		<guid isPermaLink="false">http://www.diarizing.com/wolda-2008/</guid>
		<description><![CDATA[This one is my favourite logo from Eulda 2007, European Logo Design Annual. Now, Eulda has gone global, becoming Wolda: Worldwide Logo Design Annual. As you can see on Wolda website, you can submit your logo for Wolda &#8217;08: any &#8230; <a href="http://www.stefanogorgoni.com/wolda-2008/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.stefanogorgoni.com/wp-content/uploads/2008/04/hungary_150.jpg" alt="Hungary Logo Eulda 2007" width="150" height="150" /></p>
<p>This one is my favourite logo from <a title="European Logo Design Annual" href="http://www.eulda.com/2007/">Eulda 2007</a>, European Logo Design Annual. Now, Eulda has gone global, becoming <strong>Wolda</strong>: Worldwide Logo Design Annual.</p>
<p>As you can see on <a title="Wordlwide Logo Design Annual" href="http://www.wolda.org">Wolda</a> website, you can submit your logo for Wolda &#8217;08: any logo printed, published or visible online between January 1, 2007 and December 31, 2007 is eligible.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefanogorgoni.com/wolda-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Analytics Jokes</title>
		<link>http://www.stefanogorgoni.com/web-analytics-jokes/</link>
		<comments>http://www.stefanogorgoni.com/web-analytics-jokes/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 19:45:57 +0000</pubDate>
		<dc:creator>stefano</dc:creator>
				<category><![CDATA[Web Analytics]]></category>

		<guid isPermaLink="false">http://www.diarizing.com/web-analytics-jokes/</guid>
		<description><![CDATA[On 18th Dec 2007 Avinash Kaushik, author of Web Analytics: an hour a day, wrote a post intitled Web Analytics Demistified. On 7th Jan 2008 Eric T. Peterson, author of Web Analytics Demistified, wrote a post intitled Web Analytics: an &#8230; <a href="http://www.stefanogorgoni.com/web-analytics-jokes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>On 18th Dec 2007 Avinash Kaushik, author of <a href="http://www.amazon.com/gp/product/0470130652?ie=UTF8&amp;tag=diarizing-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0470130652">Web Analytics: an hour a day</a>, wrote a post intitled <a href="http://www.kaushik.net/avinash/2007/12/web-analytics-demystified.html">Web Analytics Demistified</a>.</p>
<p>On 7th Jan 2008 Eric T. Peterson, author of <a href="http://www.amazon.com/gp/product/0974358428?ie=UTF8&amp;tag=diarizing-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0974358428">Web Analytics Demistified</a>, wrote a post intitled <a href="http://blog.webanalyticsdemystified.com/weblog/2008/01/web-analytics-an-hour-a-day.html">Web Analytics: an hour a day</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefanogorgoni.com/web-analytics-jokes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

