<?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>Luca Dioli&#039;s blog</title>
	<atom:link href="http://blog.lucadioli.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.lucadioli.com</link>
	<description>doesn&#039;t matter who I am but what I know</description>
	<lastBuildDate>Wed, 23 Jan 2013 13:12:45 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Window Hosts Switcher Utility</title>
		<link>http://blog.lucadioli.com/window-hosts-switcher-utility/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=window-hosts-switcher-utility</link>
		<comments>http://blog.lucadioli.com/window-hosts-switcher-utility/#comments</comments>
		<pubDate>Wed, 23 Jan 2013 13:08:28 +0000</pubDate>
		<dc:creator>Luca Dioli</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.lucadioli.com/?p=1178</guid>
		<description><![CDATA[The hosts file is a computer file used by Windows operating system to map hostnames to IP addresses. The hosts file is a plain text file, and is conventionally named hosts. Web developers often struggles with different environments &#8211; local, <a href="http://blog.lucadioli.com/window-hosts-switcher-utility/" title="Continue reading &#171;Window Hosts Switcher Utility&#187;" class="more-link">Continue reading &#171;Window Hosts Switcher Utility&#187;</a></p>]]></description>
				<content:encoded><![CDATA[<p>The <strong>hosts file</strong> is a computer file used by Windows operating system to map <strong>hostnames </strong>to IP addresses. The hosts file is a plain text file, and is conventionally named hosts.</p>
<p></p>
<p>Web developers often struggles with different environments &#8211; local, production, performance test environment, etc. To make things more difficult, we&#8217;re usually taking care about multiple web sites. </p>
<p>This simple tool helps you out to change hosts quickly &#8211; by overwriting your <code>C:WindowsSystem32driversetchosts</code> file (which is serving as first level dns proxy) by set of predefined hosts.</p>
<p><a href="http://hostswitcher.codeplex.com/"><img src="http://i3.codeplex.com/Download?ProjectName=hostswitcher&#038;DownloadId=558752" alt="Hosts Switcher" /></a></p>
<p><a href="http://hostswitcher.codeplex.com/releases/view/98686" title="Download Hosts Switcher" target="_blank">Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lucadioli.com/window-hosts-switcher-utility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 Web Storage</title>
		<link>http://blog.lucadioli.com/html5-web-storage/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=html5-web-storage</link>
		<comments>http://blog.lucadioli.com/html5-web-storage/#comments</comments>
		<pubDate>Fri, 18 Jan 2013 12:31:34 +0000</pubDate>
		<dc:creator>Luca Dioli</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://blog.lucadioli.com/?p=1324</guid>
		<description><![CDATA[HTML5 let&#8217;s you storage data within the user&#8217;s browser, this is a new way to storage data locally. Web Storage is more secure and faster than cookies. The data is not included with every server request, but used only when <a href="http://blog.lucadioli.com/html5-web-storage/" title="Continue reading &#171;HTML5 Web Storage&#187;" class="more-link">Continue reading &#171;HTML5 Web Storage&#187;</a></p>]]></description>
				<content:encoded><![CDATA[<p>HTML5 let&#8217;s you storage data within the user&#8217;s browser, this is a new way to storage data locally.</p>
<p>Web Storage is more secure and faster than cookies. The data is not included with every server request, but used only when asked for. It is also possible to store large amounts of data, without affecting the website&#8217;s performance.<br />
The data is stored in key/value pairs, and a web page can only access data stored by itself.</p>
<p></p>
<h2>The localStorage Object</h2>
<p>The localStorage object stores the data with no expiration date. The data will not be deleted when the browser is closed, and will be available the next day, week, or year.</p>
<pre class="brush: jscript; title: ; notranslate">
localStorage.name = 'Luca';
alert(localStorage.name);
</pre>
<p><b>Tip:</b> Key/value pairs are always stored as strings. Remember to convert them to another format when needed.</p>
<h2>The sessionStorage Object</h2>
<p>The sessionStorage object is equal to the localStorage object, except that it stores the data for only one session. The data is deleted when the user closes the browser window.</p>
<pre class="brush: jscript; title: ; notranslate">
sessionStorage.name = 'Luca';
alert(sessionStorage.name);
</pre>
<h3>Browsers</h3>
<p>Web storage is supported in:</p>
<ul>
<li>Firefox</li>
<li>Opera</li>
<li>Chrome</li>
<li>Safari</li>
<li>Internet Explorer 8+</li>
</ul>
<p><b>Note:</b> Internet Explorer 7 and earlier versions, do not support web storage.</p>
<p><a href="http://www.w3.org/TR/webstorage/" title="W3C Web Storage" target="_blank">W3C Web Storage</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lucadioli.com/html5-web-storage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO Linking Strategy</title>
		<link>http://blog.lucadioli.com/seo-linking-strategy/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=seo-linking-strategy</link>
		<comments>http://blog.lucadioli.com/seo-linking-strategy/#comments</comments>
		<pubDate>Fri, 11 Jan 2013 17:30:46 +0000</pubDate>
		<dc:creator>Luca Dioli</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://blog.lucadioli.com/?p=1318</guid>
		<description><![CDATA[I&#8217;ve been thinking a lot about my linking strategy lately. Trying to get incoming backlinks, making sure I have good inner links&#8230; But one area that I think is too often overlooked is outbound links. I found this interesting article <a href="http://blog.lucadioli.com/seo-linking-strategy/" title="Continue reading &#171;SEO Linking Strategy&#187;" class="more-link">Continue reading &#171;SEO Linking Strategy&#187;</a></p>]]></description>
				<content:encoded><![CDATA[<blockquote><p>I&#8217;ve been thinking a lot about my linking strategy lately. Trying to get incoming backlinks, making sure I have good inner links&#8230;<br />
But one area that I think is too often overlooked is outbound links.</p></blockquote>
<p></p>
<p>
I found this interesting article about linking and how to improve your Google rank. How in these years the web has changed and how search engines manages incoming links and backlinks.
</p>
<p><a href="http://www.problogger.net/archives/2012/01/16/a-new-linking-strategy-out-is-the-new-in/" title="A New Linking Strategy" target="_blank">Read article</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lucadioli.com/seo-linking-strategy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image Placeholder Service &#8211; placehold.it</title>
		<link>http://blog.lucadioli.com/image-placeholder-service-placehold-it/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=image-placeholder-service-placehold-it</link>
		<comments>http://blog.lucadioli.com/image-placeholder-service-placehold-it/#comments</comments>
		<pubDate>Fri, 11 Jan 2013 13:14:45 +0000</pubDate>
		<dc:creator>Luca Dioli</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Utility]]></category>

		<guid isPermaLink="false">http://blog.lucadioli.com/?p=1311</guid>
		<description><![CDATA[Placehold.it it&#8217;s a quick and simple image placeholder service. How it works Just put your image size after their URL and you&#8217;ll get a placeholder: URL: Code: Enjoy it!<a href="http://blog.lucadioli.com/image-placeholder-service-placehold-it/" title="Continue reading &#171;Image Placeholder Service - placehold.it&#187;" class="more-link">Continue reading &#171;Image Placeholder Service - placehold.it&#187;</a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://blog.lucadioli.com/placehold-it-image-placeholder-service" title="Image Placeholder Service - placehold.it"><img src="http://placehold.it/850x155&#038;text=Blank%20Placeholder" alt="Image Placeholder" /></a></p>
<p><a href="http://placehold.it/" title="Placehold.it" target="_blank">Placehold.it</a> it&#8217;s a quick and simple image placeholder service.</p>
<p></p>
<h2>How it works</h2>
<p>Just put your image size after their URL and you&#8217;ll get a placeholder:</p>
<p><strong>URL</strong>: </p>
<pre class="brush: xml; title: ; notranslate">http://placehold.it/350x150</pre>
<p><strong>Code</strong>: </p>
<pre class="brush: xml; title: ; notranslate">&lt;img src=&quot;http://placehold.it/350x150&quot; alt=&quot;Alternative&quot; title=&quot;Title&quot; /&gt;</pre>
<p>Enjoy it!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lucadioli.com/image-placeholder-service-placehold-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merry Christmas!</title>
		<link>http://blog.lucadioli.com/merry-christmas/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=merry-christmas</link>
		<comments>http://blog.lucadioli.com/merry-christmas/#comments</comments>
		<pubDate>Tue, 25 Dec 2012 09:31:18 +0000</pubDate>
		<dc:creator>Luca Dioli</dc:creator>
				<category><![CDATA[Article]]></category>

		<guid isPermaLink="false">http://blog.lucadioli.com/?p=1294</guid>
		<description><![CDATA[<a href="http://blog.lucadioli.com/merry-christmas/" title="Continue reading &#171;Merry Christmas!&#187;" class="more-link">Continue reading &#171;Merry Christmas!&#187;</a>]]></description>
				<content:encoded><![CDATA[<p><img src="images/christmas.jpg" alt="Merry Christmass" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lucadioli.com/merry-christmas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free PSD Vector Clouds</title>
		<link>http://blog.lucadioli.com/free-psd-vector-clouds/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=free-psd-vector-clouds</link>
		<comments>http://blog.lucadioli.com/free-psd-vector-clouds/#comments</comments>
		<pubDate>Fri, 21 Dec 2012 10:06:41 +0000</pubDate>
		<dc:creator>Luca Dioli</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[psd]]></category>
		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://blog.lucadioli.com/?p=1281</guid>
		<description><![CDATA[MediaLoot made a free to download collection of vector clouds for Photoshop. Included are 18 individual vector clouds and 1 scalable vector skyline background. Free Vector Clouds Download Enjoy it<a href="http://blog.lucadioli.com/free-psd-vector-clouds/" title="Continue reading &#171;Free PSD Vector Clouds&#187;" class="more-link">Continue reading &#171;Free PSD Vector Clouds&#187;</a>]]></description>
				<content:encoded><![CDATA[<p><a title="Free Vector Clouds | MediaLoot" href="http://medialoot.com/item/free-vector-clouds/" target="_blank">MediaLoot</a> made a free to download collection of vector clouds for <strong>Photoshop</strong>. Included are 18 individual vector clouds and 1 scalable vector skyline background.<br />
<br />
<a title="Free Vector Clouds" href="http://medialoot.com/main/freebie/949/" target="_blank">Free Vector Clouds Download</a></p>
<p>Enjoy it</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lucadioli.com/free-psd-vector-clouds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 Microdata?</title>
		<link>http://blog.lucadioli.com/html5-microdata/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=html5-microdata</link>
		<comments>http://blog.lucadioli.com/html5-microdata/#comments</comments>
		<pubDate>Thu, 20 Dec 2012 08:25:38 +0000</pubDate>
		<dc:creator>Luca Dioli</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[html5]]></category>

		<guid isPermaLink="false">http://blog.lucadioli.com/?p=883</guid>
		<description><![CDATA[HTML5 microdata is a WHATWG HTML specification used to nest semantics within existing content on web pages. The puorpose is to allow crawler or screen reader to understand what&#8217;s the meaning of a text. These information are accessible only by <a href="http://blog.lucadioli.com/html5-microdata/" title="Continue reading &#171;HTML5 Microdata?&#187;" class="more-link">Continue reading &#171;HTML5 Microdata?&#187;</a></p>]]></description>
				<content:encoded><![CDATA[<p><strong>HTML5 microdata</strong> is a <a href="http://en.wikipedia.org/wiki/WHATWG" title="Wikipedia: WHATWG" target="_blank">WHATWG HTML</a> specification used to nest semantics within existing content on web pages. The puorpose is to allow crawler or screen reader to understand what&#8217;s the meaning of a text. These information are accessible only by this software and are invisible for the user.</p>
<p></p>
<h2>About</h2>
<p>Here is a quote from <a href='http://support.google.com/webmasters/bin/answer.py?hl=en&#038;answer=176035' title="About microdata - Webmaster Tools Help" target="_blank">Google Webmaster Tool help</a> website:</p>
<blockquote cite="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=176035"><p>The <strong>HTML5 microdata</strong> specification is a way to label content to describe a specific type of information. Each information type describes a specific type of item, such as a person, and event, or a review. For example, an event has the properties venue, starting time, name, and category.</p>
<p>Microdata uses simple attributes in <strong>HTML tags</strong> (often &lt;span&gt; or &lt;div&gt;) to assign brief and descriptive names to items and properties. Here&#8217;s an example of a short HTML block showing basic contact information for Bob Smith.</p></blockquote>
<h2>Examples</h2>
<h3>Standard HTML:</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;section&gt;
	&lt;p&gt;I was born the 28th September 1989 in Switzerland, I live in Bellinzona and I'm web developer.&lt;br /&gt;
My hobbies are metal music, movies, web development and I play electric guitar. 
I play from several years and I also had designed my personal guitar picks.&lt;/p&gt;
&lt;/section&gt;
</pre>
<h3>With microdata:</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;section itemscope itemtype=&quot;http://schema.org/Person&quot;&gt;
	&lt;p&gt;
		I was born the &lt;span itemprop=&quot;birthDate&quot;&gt;28th September 1989&lt;/span&gt; in 
		&lt;span itemprop=&quot;address&quot; itemscope itemtype=&quot;http://schema.org/PostalAddress&quot;&gt;
			&lt;span itemprop=&quot;addressCountry&quot;&gt;Switzerland&lt;/span&gt;, I live in 
			&lt;span itemprop=&quot;addressLocality&quot;&gt;Bellinzona&lt;/span&gt;
		&lt;/span&gt; and I'm &lt;span itemprop=&quot;jobTitle&quot;&gt;web developer&lt;/span&gt;.&lt;br /&gt;
		My hobbies are metal music, movies, web development and I play electric guitar. 
		I play from several years and I also had designed my personal guitar picks.							
	&lt;/p&gt;
&lt;/section&gt;
</pre>
<h3>Result:</h3>
<pre class="brush: xml; title: ; notranslate">
{
  &quot;items&quot;: [
    {
      &quot;type&quot;: [
        &quot;http://schema.org/Person&quot;
      ],
      &quot;properties&quot;: {
        &quot;birthDate&quot;: [
          &quot;28th September 1989&quot;
        ],
        &quot;address&quot;: [
          {
            &quot;type&quot;: [
              &quot;http://schema.org/PostalAddress&quot;
            ],
            &quot;properties&quot;: {
              &quot;addressCountry&quot;: [
                &quot;Switzerland&quot;
              ],
              &quot;addressLocality&quot;: [
                &quot;Bellinzona&quot;
              ]
            }
          }
        ],
        &quot;jobTitle&quot;: [
          &quot;web developer&quot;
        ]
      }
    }
  ]
}
</pre>
<h2>How it works</h2>
<p>In the first line, <code>itemscope</code> indicates that the content in the <code>&lt;div&gt;</code> is an item. <code>itemtype="http://schema.org/Person</code> indicates that the item is a <code>Person</code>. Each property of the <code>Person</code> item is identified with the <code>itemprop</code> attribute.<br />For example, <code>itemprop="name"</code> describes the person&#8217;s name.</p>
<p><a href='http://support.google.com/webmasters/bin/answer.py?hl=en&#038;answer=176035' title="About microdata - Webmaster Tools Help" target="_blank">About microdata &#8211; Webmaster Tools Help</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lucadioli.com/html5-microdata/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jPlayer &#8211; HTML5 Audio &amp; Video for jQuery</title>
		<link>http://blog.lucadioli.com/jplayer-html5-audio-video-for-jquery/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jplayer-html5-audio-video-for-jquery</link>
		<comments>http://blog.lucadioli.com/jplayer-html5-audio-video-for-jquery/#comments</comments>
		<pubDate>Wed, 19 Dec 2012 10:21:35 +0000</pubDate>
		<dc:creator>Luca Dioli</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Library]]></category>

		<guid isPermaLink="false">http://blog.lucadioli.com/?p=885</guid>
		<description><![CDATA[jPlayer is the completely free and open source media library written in JavaScript using jQuery. jPlayer allows you to rapidly weave cross-platform audio and video into your web pages. jPlayer&#8217;s API allows you to create easy and innovative media solutions <a href="http://blog.lucadioli.com/jplayer-html5-audio-video-for-jquery/" title="Continue reading &#171;jPlayer - HTML5 Audio &#38; Video for jQuery&#187;" class="more-link">Continue reading &#171;jPlayer - HTML5 Audio &#38; Video for jQuery&#187;</a></p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://jplayer.org" title="jPlayer : HTML5 Audio &amp; Video for jQuery" target="_blank">jPlayer</a> is the completely free and open source media library written in <strong>JavaScript</strong> using <strong>jQuery</strong>. jPlayer allows you to rapidly weave cross-platform audio and video into your web pages. jPlayer&#8217;s API allows you to create easy and innovative media solutions for any devices, mobile, table or desktop.</p>
<p></p>
<h2>Features</h2>
<ul>
<li>easy to get started</li>
<li>customizable and skinnable</li>
<li>lightweight (only 8KB minified and Gzipped)</li>
<li>free and open source</li>
<li>free plugins available</li>
<li>multi-codec, cross-browser and cross-platform</li>
<li>good documentation and getting started guide</li>
</ul>
<h2>Media Support</h2>
<ul>
<li><strong>HTML5</strong>: mp3, mp4 (AAC/H.264), ogg (Vorbis/Theora), webm (Vorbis/VP8), wav</li>
<li><strong>Flash</strong>: mp3, mp4 (AAC/H.264), flv</li>
</ul>
<h2>Demos</h2>
<ul>
<li><a href="http://jplayer.org/latest/demo-01-video/" title="jPlayer demo: video player" target="_blank">Video player</a></li>
<li><a href="http://jplayer.org/latest/demo-01/" title="jPlayer demo: audio player" target="_blank">Audio player</a></li>
<li><a href="http://jplayer.org/latest/demo-05/" title="jPlayer demo: cirlce player" target="_blank">Circle player</a></li>
<li><a href="http://jplayer.org/latest/demo-02-video/" title="jPlayer demo: video playlist player" target="_blank">Video playlist player</a></li>
<li><a href="http://jplayer.org/latest/demos/" title="jPlayer demos" target="_blank">more demo&#8230;</a></li>
</ul>
<p><a href="http://jplayer.org/latest/jQuery.jPlayer.2.2.0.source.zip" title="Download jPlayer 2.2.0" target="_blank">Download source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lucadioli.com/jplayer-html5-audio-video-for-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google PageRank Checker</title>
		<link>http://blog.lucadioli.com/google-pagerank-checker/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-pagerank-checker</link>
		<comments>http://blog.lucadioli.com/google-pagerank-checker/#comments</comments>
		<pubDate>Mon, 17 Dec 2012 10:47:53 +0000</pubDate>
		<dc:creator>Luca Dioli</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Utility]]></category>

		<guid isPermaLink="false">http://blog.lucadioli.com/?p=1127</guid>
		<description><![CDATA[The free PageRank Checker tool enables you to check the current Pagerank of your website instantly. You just need to insert your website&#8217;s url into the form you can find the homepage and it will give you your rank. Badge <a href="http://blog.lucadioli.com/google-pagerank-checker/" title="Continue reading &#171;Google PageRank Checker&#187;" class="more-link">Continue reading &#171;Google PageRank Checker&#187;</a></p>]]></description>
				<content:encoded><![CDATA[<p>The free <a href="http://www.prchecker.info/index.php" title="Google PageRank Checker" target="_blank">PageRank Checker tool</a> enables you to check the current <strong>Pagerank</strong> of your website instantly.<br />
You just need to insert your website&#8217;s url into the form you can find the homepage and it will give you your rank.
</p>
<p></p>
<h2>Badge</h2>
<p>You can add a free icon to your website that shows your <strong>PageRanks</strong>:</p>
<p><a href="http://www.prchecker.info/" title="Free Page Rank Tool" target="_blank"><img src="http://pr.prchecker.info/getpr.php?codex=aHR0cDovL2Jsb2cubHVjYWRpb2xpLmNvbQ==&amp;tag=2" alt="Free Page Rank Tool" style="border:0" /></a></p>
<p><a href="http://it.wikipedia.org/wiki/PageRank" title="PageRank - Wikipedia" target="_blank">PageRank &#8211; WikiPedia</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lucadioli.com/google-pagerank-checker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multi Monitor Taskbar &#8211; ZBar</title>
		<link>http://blog.lucadioli.com/multi-monitor-taskbar-zbar/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=multi-monitor-taskbar-zbar</link>
		<comments>http://blog.lucadioli.com/multi-monitor-taskbar-zbar/#comments</comments>
		<pubDate>Thu, 13 Dec 2012 11:15:56 +0000</pubDate>
		<dc:creator>Luca Dioli</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.lucadioli.com/?p=1096</guid>
		<description><![CDATA[ZBar is a utility for those who use multiple monitors created by Zhorn Software. If you have two or more monitors, then Windows only puts the task bar at the bottom of one of those monitors, and although you can <a href="http://blog.lucadioli.com/multi-monitor-taskbar-zbar/" title="Continue reading &#171;Multi Monitor Taskbar - ZBar&#187;" class="more-link">Continue reading &#171;Multi Monitor Taskbar - ZBar&#187;</a></p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.zhornsoftware.co.uk/zbar/" title="ZBar" target="_blank">ZBar</a> is a utility for those who use multiple monitors created by <a href="http://www.zhornsoftware.co.uk/" title="Zhorn Software" target="_blank">Zhorn Software</a>.</p>
<p></p>
<p>If you have two or more monitors, then <strong>Windows</strong> only puts the task bar at the bottom of one of those monitors, and although you can move windows to the second monitor, the task bar button for those windows still lives at the bottom of the primary monitor. This doesn&#8217;t &#8220;feel&#8221; right to me, so ZBar was born.</p>
<p><a href="http://www.zhornsoftware.co.uk/zbar/zbar.zip" title="Download ZBar v0.82" target="_blank">Download (126kb)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lucadioli.com/multi-monitor-taskbar-zbar/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: basic
Page Caching using disk: enhanced
Database Caching using disk: basic
Object Caching 1084/1232 objects using disk: basic

Served from: blog.lucadioli.com @ 2013-05-25 18:56:17 -->