<?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>DiPot: Ice Tea tech &#187; PHP</title>
	<atom:link href="http://dipot.com/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://dipot.com</link>
	<description>The Optimization Point of View</description>
	<lastBuildDate>Thu, 09 Sep 2010 01:13:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WordPress: External RSS Feeds Optimization with KB Advanced RSS</title>
		<link>http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/</link>
		<comments>http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 19:00:10 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips & How-to]]></category>
		<category><![CDATA[Advanced RSS]]></category>
		<category><![CDATA[Atahualpa]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Digital Pot]]></category>
		<category><![CDATA[DiPot]]></category>
		<category><![CDATA[DiPot.com]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[Ice Tea tech]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[KB Advanced RSS]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[netWire]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[RSS feeds]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Smart RSS]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[Tab]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Vicki Kolovou]]></category>
		<category><![CDATA[Wesley]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/?p=1224</guid>
		<description><![CDATA[<p>Apart from its own Ice Tea tech blog, Dipot.com also displays two external feeds relating to Optimization and Standards. I needed to optimize the post titles of these two feeds by getting rid of their long suffixes, both for better looks and for more content within the same space.</p>
<p>The feeds were served by the standard [...]]]></description>
			<content:encoded><![CDATA[<p>Apart from its own <a title="DiPot: Ice Tea tech blog" href="http://dipot.com" target="_blank">Ice Tea tech blog</a>, <a title="DiPot, the Digital Pot" href="http://dipot.com" target="_blank">Dipot.com</a> also displays two external feeds relating to Optimization and Standards. I needed to optimize the post titles of these two feeds by getting rid of their long suffixes, both for better looks and for more content within the same space.</p>
<p>The feeds were served by the standard RSS <a title="WordPress blogging CMS" href="http://wordpress.org/" target="_blank">WordPress</a> 2.7.1 widget, which is fine, except it does not support much customization. After some search, I found <a title="Advanced RSS WordPress Plugin" href="http://wordpress.org/extend/plugins/advanced-rss/" target="_blank">Advanced RSS 1.0.1 WordPress plugin</a> and <a title="KB Advanced RSS WordPress Plugin" href="http://wordpress.org/extend/plugins/kb-advanced-rss-widget/" target="_blank">KB Advanced RSS 2.1.3 WordPress plugin</a>. Smart RSS only works until WP 2.7.0 and I didn&#8217;t want to tweak with that. Advanced RSS  only works until WP 2.6.2 and requires PHP5, DOM and XSL extensions loaded on the server and I don&#8217;t want to depend on those if I don&#8217;t need to, so the choice was easy.</p>
<p>Installation of KB Advanced RSS worked flawlessly right from within wp-admin. Then, on my first attempt to configure it, I came across a problem which could very well had been a show stopper: for some reason, except for the feed&#8217;s URL and Title, the widget would not commit any of the other parameters to the &#8220;Options&#8221; table of the database. Troubleshooting this issue, I ended up reading all the users&#8217; comments on the plugin&#8217;s site. As usual, I was not alone; this is a common issue. Thankfully, <a title="Wesley of http://www.improvingtheweb.com" href="http://www.improvingtheweb.com" target="_blank">Wesley of  http://www.improvingtheweb.com</a> had already posted the <a title="solution to PHP4 not committing widget field changes in WordPress" href="http://adambrown.info/b/widgets/2008/01/28/released-today-kb-advanced-rss-21/#comment-3812" target="_blank">solution to PHP4 not committing widget field changes in WordPress</a>. The solution worked like a charm. And, as expected, when I later upgraded to PHP5 the problem wasn&#8217;t even there to begin with.</p>
<p>KB Advanced RSS is well thought-out, very straight forward with good documentation and examples. It supports all the features of the standard widget (including multiple instances) plus formatting and full support of all the feed&#8217;s fields to display or not (including the debugging tool to show which these fields are)! It further supports two modifiers to optionally manipulate the string before display, by taking out a number of characters from the start (ltrim) and/or trimming it to a specific length (trim).</p>
<p>Alas, what I actually needed was to take out a number of characters from the end of the string. Fortunately, as it turned out, KB Advanced RSS&#8217;s code is pretty straight-forward and extending it with my own modifier (rtrim) to do just that was only a matter of 3 lines of PHP code added to the version of the plugin that runs by my version of Wordpress; there&#8217;s one for versions up to 2.7 (pre-wp-2-7.php) and one for versions after that (post-wp-2-7.php). Here is the PHP code from the modified post-wp-2-7.php (my rtrim extension is in blue):</p>
<blockquote>
<pre>///////////////////////////////// CUSTOMIZATIONS /////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
// If you want to write customizations, put them here. The variable to modify is $text. See the FAQ.
/////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////

<span style="color: #333399;">// right trimming
// cuts $rtrim characters from the right
// by ageor, April 9, 2009</span><span style="color: #333399;">
$rtrim = (is_numeric($rtrim) &amp;&amp; 0&lt;$rtrim) ? (int) $rtrim : null;
if (is_int($rtrim))
$text = substr( $text, 0, strlen($string)-$rtrim );</span>

// left trimming:
$ltrim = (is_numeric($ltrim) &amp;&amp; 0&lt;$ltrim) ? (int) $ltrim : null;
if (is_int($ltrim))
$text = substr( $text, $ltrim );

// length trimming (do after left trimming)
$trim = (is_numeric($trim) &amp;&amp; 0&lt;$trim) ? (int) $trim : null;
if (is_int($trim))
$text = substr( $text, 0, $trim );

return $text;</pre>
</blockquote>
<p>The way this is written, the string in question can undergo any mix of all three trimming types necessary.</p>
<p>All setting up and troubleshooting took place by adding one instance of the widget and configuring it, then a second instance. When all was done and I had what I wanted, I removed the original two instances of the original RSS widget, positioned the new ones on top and saved, certain I was done. However, as the resulting &#8220;Widgets&#8221; Wordpress admin page suggested after saving, something was very wrorg. It displayed the message &#8216;You are using 3 widgets in the &#8220;Left Sidebar&#8221; sidebar&#8217; but not the widgets themselves, nor the &#8220;Save Changes&#8221; button. Sure enough, I ended up with an unworkable site, as these where the first 2 widgets on the left column of Ice Tea tech and the page that appeared ended with the title banner. Disaster!</p>
<p>To cut a long story short, plenty of &#8220;trial and error&#8221;s later and with the help of <a title="Vicki Kolovou of netWire on FriendFeed" href="http://friendfeed.com/talos" target="_blank">Vicki</a> of <a title="neTWire: Thinking Wide" href="http://netwire.gr" target="_blank">neTWire</a>, here is my conclusion: For KB Advanced RSS widget to work with WP 2.7.1 and the <a title="Atahualpa fluid configurable WordPress Theme" href="http://wordpress.org/extend/themes/atahualpa" target="_blank">Atahualpa WordPress theme</a>, the WordPress RSS widget needs to be activated and positioned above it. That&#8217;s how I temporarily solved my problem, until (if ever) I have the time to look deeper into the code involved or newer versions of  the theme and/or the plugin solve it for good.</p>
<p>Just to be clear, none of the problems and troubleshooting it took to solve them can be traced back ato KB Advanced RSS alone. Atahualpa is a great but complex theme and it is their combination that turned out to be problematic. It&#8217;s not the first example of a bad mix and it won&#8217;t be the last. On the flip side, with each such incident we get to learn something new that will potentially save others and ourselves some frusrtation and time in the future.</p>
<!-- AdSense Now! V1.90 -->
<!-- Post[count: 2] -->
<div class="adsense adsense-leadout" style="float:right;margin: 12px;"><div style="margin-left:auto;margin-right:auto;width:234px;display:block;">
<div style="text-align:center;width:234px;padding:1px;background:#aad;margin:2px;">
<div style="text-align:center;width:224px;padding:2px;padding-top:1px;padding-left:4px;border:solid 1px #000;background:#cff;margin:1px;">
<a style="text-decoration:none;" href="http://www.amazon.com/exec/obidos/ASIN/9810575947/unrblo-20" title="Find out more about The Unreal Universe and buy it ($9.95 for Kindle, $15.95 for paperback). It will change the way you view life and reality!">
<big style="font-size:14px;font-family:arial;color:#a48;font-variant: small-caps;"><b>The Unreal Universe</b></big><br />
<small style="font-size:12px;font-family:arial;color:#000;">
A Book on Physics and Philosophy
<br />
</small>
<em><b style="font-size:14px;font-family:arial;color:#000;">"For thinking laymen."</b></em>
</a>
</div>
</div>
</div></div>
	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/" title="Feeds to Content &#038; Categories Optimization in WordPress (01/04/2009)">Feeds to Content &#038; Categories Optimization in WordPress</a> (1)</li>
	<li><a href="http://dipot.com/2009/02/apologies-for-last-days-posts-flood/" title="<!--:en-->Apologies for last days&#8217; posts flood<!--:--> (25/02/2009)"><!--:en-->Apologies for last days&#8217; posts flood<!--:--></a> (0)</li>
	<li><a href="http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/" title="PCs and the Internet: Addiction Magnets or just Tools? (05/04/2009)">PCs and the Internet: Addiction Magnets or just Tools?</a> (0)</li>
	<li><a href="http://dipot.com/2008/11/athens-startup-weekend-2008/" title="Athens Startup Weekend 2008 (26/11/2008)">Athens Startup Weekend 2008</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordPress Optimization: Compatibility between Themes &amp; Plugins</title>
		<link>http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/</link>
		<comments>http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 08:28:25 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips & How-to]]></category>
		<category><![CDATA[Atahualpa]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[DiPot]]></category>
		<category><![CDATA[DiPot.com]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[Ice Tea tech]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Ikarus]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[netWire]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[Translate]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Vicki Kolovou]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/?p=1166</guid>
		<description><![CDATA[<p>The first incarnation of  Ice Tea tech was in Joomla 1.5. I admit I can&#8217;t resist the temptation to tweak my own blog and never got to understand the Joomla philosophy well enough to do it extensively. So, with neTWire&#8217;s help (they set it up for me and successfully imported Joomla days&#8217; posts), I [...]]]></description>
			<content:encoded><![CDATA[<p>The first incarnation of  <a href="http://dipot.com/" target="_blank">Ice Tea tech</a> was in <a href="http://www.joomla.org/" target="_blank">Joomla</a> 1.5. I admit I can&#8217;t resist the temptation to tweak my own blog and never got to understand the Joomla philosophy well enough to do it extensively. So, with <a href="http://netwire.gr/" target="_blank">neTWire</a>&#8217;s help (they set it up for me and successfully imported Joomla days&#8217; posts), I decided to give <a href="http://wordpress.org/" target="_blank">WordPress</a> (currently 2.7.1) a try, therefore I am a newbee with it. The WordPress environment is very clean, straightforword and promising. From this point on, to me, blog optimization means to choose a Theme, drop in all the plugins necessary to provide the functionality I want and get going issue-free.</p>
<p>After extensive search I found <a href="http://www.bytesforall.com/" target="_blank">Bytes for All</a>&#8217;s <a href="http://wordpress.bytesforall.com/?cat=15" target="_blank">Atahualpa</a>, a WordPress theme that is customizable enough so I wouldn&#8217;t need to dive deep into <a href="http://www.w3.org/Style/CSS/" target="_blank">CSS</a> just yet. It supports a dynamically resizing main column plus 2 sidebars and lots of user definable parameters. Being a novice, I also installed, among others, the <a href="http://www.qianqin.de/qtranslate/" target="_blank">qTranslate</a> plugin to support multiple languages in Ice Tea tech, in case I need it in the future.</p>
<p>To my surprise, as I&#8217;m afraid some of you noticed, post dates did not appear correctly. The date format was correct, but the date itself was wrong. To cut a long story short, in theory, WordPress supports any PHP function for date formatting, qTranslate supports the PHP &#8220;<a href="http://gr2.php.net/date" target="_blank">date</a>&#8221; and &#8220;<a href="http://gr2.php.net/strftime" target="_blank">strftime</a>&#8221; functions and Atahualpa, due to its highly configurable setting, seems to have the PHP &#8220;date&#8221; function hardwired in some places.</p>
<p>After some trial and error and with the valuable help of neTWire&#8217;s <a href="http://friendfeed.com/talos" target="_blank">Vicki Kolovou</a> it turns out that, actually, qTranslate only works correctly with the &#8220;strftime&#8221; type of date formatting. So, there is no way it can coexist with Atahualpa or <a href="http://ikarus.wpthemespress.com/" target="_blank">Ikarus</a>, another highly customizable theme I  tried.</p>
<p>I don&#8217;t have that much troubleshooting time for myself and Ice Tea tech<a href="http://dipot.com/" target="_blank"></a>&#8217;s environment is currently only in English. So, I&#8217;m sorry to report qTranslate had to go, at least for now. I hear it causes other issues, too. It&#8217;s a pity, as it otherwise really is a very well thought-out plugin&#8230;</p>
<p>It seems such issues are still commonplace. After this experience, my new definition for blog optimization is &#8220;the most functionality that actually works as it is supposed to&#8221;&#8230;</p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/" title="Feeds to Content &#038; Categories Optimization in WordPress (01/04/2009)">Feeds to Content &#038; Categories Optimization in WordPress</a> (1)</li>
	<li><a href="http://dipot.com/2009/02/apologies-for-last-days-posts-flood/" title="<!--:en-->Apologies for last days&#8217; posts flood<!--:--> (25/02/2009)"><!--:en-->Apologies for last days&#8217; posts flood<!--:--></a> (0)</li>
	<li><a href="http://dipot.com/2009/01/how-i-post/" title="<!--:en-->Which Service should a Post go to?<!--:--> (12/01/2009)"><!--:en-->Which Service should a Post go to?<!--:--></a> (0)</li>
	<li><a href="http://dipot.com/2007/12/microsoft-ie-and-standards-compliance/" title="Microsoft IE and Standards Compliance (29/12/2007)">Microsoft IE and Standards Compliance</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Optimize Wi-Fi Coverage in Multi-Floor Facilities</title>
		<link>http://dipot.com/2009/03/how-to-optimize-wi-fi-coverage-in-multi-floor-facilities/</link>
		<comments>http://dipot.com/2009/03/how-to-optimize-wi-fi-coverage-in-multi-floor-facilities/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 19:12:38 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/how-to-optimize-wi-fi-coverage-in-multi-floor-facilities/</guid>
		<description><![CDATA[<p>By Jim Geier
&#8220;Sooner or later, you’ll need to install a wireless LAN in a multi-floor facility. Learn tips on how to assess the environment and possibly use inter-floor signal propagation in your favor. &#8230;&#8221;
By ageorg</p>
<p>This bookmark links to http://www.wi-fiplanet.com/tutorials/article.php/3811421</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (5)
	WordPress Optimization: Compatibility between [...]]]></description>
			<content:encoded><![CDATA[<p>By Jim Geier<br />
&#8220;Sooner or later, you’ll need to install a wireless LAN in a multi-floor facility. Learn tips on how to assess the environment and possibly use inter-floor signal propagation in your favor. &#8230;&#8221;<br />
By <a href="http://wi-fiplanet.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.wi-fiplanet.com/tutorials/article.php/3811421">http://www.wi-fiplanet.com/tutorials/article.php/3811421</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2008/10/the-google-android-platform/" title="The Google Android Platform (20/10/2008)">The Google Android Platform</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/pattie-maes-demos-the-sixth-sense-video-on-tedcom/" title="Pattie Maes demos the Sixth Sense | Video on TED.com (19/03/2009)">Pattie Maes demos the Sixth Sense | Video on TED.com</a> (0)</li>
	<li><a href="http://dipot.com/2007/11/nas-for-shared-storage/" title="NAS for shared storage (29/11/2007)">NAS for shared storage</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/how-to-optimize-wi-fi-coverage-in-multi-floor-facilities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pattie Maes demos the Sixth Sense &#124; Video on TED.com</title>
		<link>http://dipot.com/2009/03/pattie-maes-demos-the-sixth-sense-video-on-tedcom/</link>
		<comments>http://dipot.com/2009/03/pattie-maes-demos-the-sixth-sense-video-on-tedcom/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 02:09:39 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/pattie-maes-demos-the-sixth-sense-video-on-tedcom/</guid>
		<description><![CDATA[<p>&#8220;This demo &#8212; from Pattie Maes&#39; lab at MIT, spearheaded by Pranav Mistry &#8212; was the buzz of TED. It&#39;s a wearable device with a projector that paves the way for profound interaction with our environment. Imagine &#8220;Minority Report&#8221; and then some.&#8221; Wow!
By ageorg</p>
<p>This bookmark links to http://www.ted.com/index.php/talks/pattie_maes_demos_the_sixth_sense.html</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;This demo &#8212; from Pattie Maes&#39; lab at MIT, spearheaded by Pranav Mistry &#8212; was the buzz of TED. It&#39;s a wearable device with a projector that paves the way for profound interaction with our environment. Imagine &#8220;Minority Report&#8221; and then some.&#8221; Wow!<br />
By <a href="http://ted.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.ted.com/index.php/talks/pattie_maes_demos_the_sixth_sense.html">http://www.ted.com/index.php/talks/pattie_maes_demos_the_sixth_sense.html</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2008/10/the-google-android-platform/" title="The Google Android Platform (20/10/2008)">The Google Android Platform</a> (0)</li>
	<li><a href="http://dipot.com/2007/11/nas-for-shared-storage/" title="NAS for shared storage (29/11/2007)">NAS for shared storage</a> (0)</li>
	<li><a href="http://dipot.com/2007/12/microsoft-ie-and-standards-compliance/" title="Microsoft IE and Standards Compliance (29/12/2007)">Microsoft IE and Standards Compliance</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/pattie-maes-demos-the-sixth-sense-video-on-tedcom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet</title>
		<link>http://dipot.com/2009/03/xen-or-virtuosso-web-hosting-talk-the-largest-most-influential-web-hosting-community-on-the-internet/</link>
		<comments>http://dipot.com/2009/03/xen-or-virtuosso-web-hosting-talk-the-largest-most-influential-web-hosting-community-on-the-internet/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 21:04:13 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/xen-or-virtuosso-web-hosting-talk-the-largest-most-influential-web-hosting-community-on-the-internet/</guid>
		<description><![CDATA[<p>xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet
By ageorg</p>
<p>This bookmark links to http://www.webhostingtalk.com/showthread.php?t=609714</p>

	Possibly related posts (auto generated)
	
	Microsoft IE and Standards Compliance (0)
	[airliners.GR] Ο δικός σου αεροπορικός χώρος! (0)
	Zougla online &#8211; Παρατηρητήριο Καταναλωτή (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (5)
	WordPress Optimization: Compatibility between [...]]]></description>
			<content:encoded><![CDATA[<p>xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet<br />
By <a href="http://webhostingtalk.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.webhostingtalk.com/showthread.php?t=609714">http://www.webhostingtalk.com/showthread.php?t=609714</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2007/12/microsoft-ie-and-standards-compliance/" title="Microsoft IE and Standards Compliance (29/12/2007)">Microsoft IE and Standards Compliance</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/airlinersgr-%ce%bf-%ce%b4%ce%b9%ce%ba%cf%8c%cf%82-%cf%83%ce%bf%cf%85-%ce%b1%ce%b5%cf%81%ce%bf%cf%80%ce%bf%cf%81%ce%b9%ce%ba%cf%8c%cf%82-%cf%87%cf%8e%cf%81%ce%bf%cf%82/" title="[airliners.GR] Ο δικός σου αεροπορικός χώρος! (23/02/2009)">[airliners.GR] Ο δικός σου αεροπορικός χώρος!</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/zougla-online-%cf%80%ce%b1%cf%81%ce%b1%cf%84%ce%b7%cf%81%ce%b7%cf%84%ce%ae%cf%81%ce%b9%ce%bf-%ce%ba%ce%b1%cf%84%ce%b1%ce%bd%ce%b1%ce%bb%cf%89%cf%84%ce%ae/" title="Zougla online &#8211; Παρατηρητήριο Καταναλωτή (11/03/2009)">Zougla online &#8211; Παρατηρητήριο Καταναλωτή</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/xen-or-virtuosso-web-hosting-talk-the-largest-most-influential-web-hosting-community-on-the-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zougla online &#8211; Παρατηρητήριο Καταναλωτή</title>
		<link>http://dipot.com/2009/03/zougla-online-%cf%80%ce%b1%cf%81%ce%b1%cf%84%ce%b7%cf%81%ce%b7%cf%84%ce%ae%cf%81%ce%b9%ce%bf-%ce%ba%ce%b1%cf%84%ce%b1%ce%bd%ce%b1%ce%bb%cf%89%cf%84%ce%ae/</link>
		<comments>http://dipot.com/2009/03/zougla-online-%cf%80%ce%b1%cf%81%ce%b1%cf%84%ce%b7%cf%81%ce%b7%cf%84%ce%ae%cf%81%ce%b9%ce%bf-%ce%ba%ce%b1%cf%84%ce%b1%ce%bd%ce%b1%ce%bb%cf%89%cf%84%ce%ae/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 18:51:44 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/zougla-online-%cf%80%ce%b1%cf%81%ce%b1%cf%84%ce%b7%cf%81%ce%b7%cf%84%ce%ae%cf%81%ce%b9%ce%bf-%ce%ba%ce%b1%cf%84%ce%b1%ce%bd%ce%b1%ce%bb%cf%89%cf%84%ce%ae/</guid>
		<description><![CDATA[<p>Zougla online &#8211; Παρατηρητήριο Καταναλωτή
By ageorg</p>
<p>This bookmark links to http://www.zougla.gr/paratiritirio.php</p>

	Possibly related posts (auto generated)
	
	[airliners.GR] Ο δικός σου αεροπορικός χώρος! (0)
	xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (5)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (0)
	twibs : [...]]]></description>
			<content:encoded><![CDATA[<p>Zougla online &#8211; Παρατηρητήριο Καταναλωτή<br />
By <a href="http://zougla.gr">ageorg</a></p>
<p>This bookmark links to <a href="http://www.zougla.gr/paratiritirio.php">http://www.zougla.gr/paratiritirio.php</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/02/airlinersgr-%ce%bf-%ce%b4%ce%b9%ce%ba%cf%8c%cf%82-%cf%83%ce%bf%cf%85-%ce%b1%ce%b5%cf%81%ce%bf%cf%80%ce%bf%cf%81%ce%b9%ce%ba%cf%8c%cf%82-%cf%87%cf%8e%cf%81%ce%bf%cf%82/" title="[airliners.GR] Ο δικός σου αεροπορικός χώρος! (23/02/2009)">[airliners.GR] Ο δικός σου αεροπορικός χώρος!</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/xen-or-virtuosso-web-hosting-talk-the-largest-most-influential-web-hosting-community-on-the-internet/" title="xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet (17/03/2009)">xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/twibs-find-the-businesses-on-twitter-4190-businesses-and-counting/" title="twibs : find the businesses on twitter &#8211; 4,190 businesses and counting! (23/02/2009)">twibs : find the businesses on twitter &#8211; 4,190 businesses and counting!</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/zougla-online-%cf%80%ce%b1%cf%81%ce%b1%cf%84%ce%b7%cf%81%ce%b7%cf%84%ce%ae%cf%81%ce%b9%ce%bf-%ce%ba%ce%b1%cf%84%ce%b1%ce%bd%ce%b1%ce%bb%cf%89%cf%84%ce%ae/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adsense » Google Adsense Blogtimize &#8211; Optimize the ads on your blog</title>
		<link>http://dipot.com/2009/03/adsense-%c2%bb-google-adsense-blogtimize-optimize-the-ads-on-your-blog/</link>
		<comments>http://dipot.com/2009/03/adsense-%c2%bb-google-adsense-blogtimize-optimize-the-ads-on-your-blog/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 13:56:38 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/adsense-%c2%bb-google-adsense-blogtimize-optimize-the-ads-on-your-blog/</guid>
		<description><![CDATA[<p>Adsense » Google Adsense Blogtimize &#8211; Optimize the ads on your blog
By ageorg</p>
<p>This bookmark links to http://www1.gdufs.edu.cn/wuliu/adsense/index.php/google-adsense-blogtimize-optimize-the-ads-on-your-blog/</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (5)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (0)
	The Google Android Platform (0)
	SitePoint » How Google Really Wants You to Optimize Your Site (0)
	Search Engine Optimization Secrets [...]]]></description>
			<content:encoded><![CDATA[<p>Adsense » Google Adsense Blogtimize &#8211; Optimize the ads on your blog<br />
By <a href="http://www1.gdufs.edu.cn">ageorg</a></p>
<p>This bookmark links to <a href="http://www1.gdufs.edu.cn/wuliu/adsense/index.php/google-adsense-blogtimize-optimize-the-ads-on-your-blog/">http://www1.gdufs.edu.cn/wuliu/adsense/index.php/google-adsense-blogtimize-optimize-the-ads-on-your-blog/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2008/10/the-google-android-platform/" title="The Google Android Platform (20/10/2008)">The Google Android Platform</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/sitepoint-%c2%bb-how-google-really-wants-you-to-optimize-your-site/" title="SitePoint » How Google Really Wants You to Optimize Your Site (10/03/2009)">SitePoint » How Google Really Wants You to Optimize Your Site</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/search-engine-optimization-secrets-revealed/" title="Search Engine Optimization Secrets Revealed (10/03/2009)">Search Engine Optimization Secrets Revealed</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/adsense-%c2%bb-google-adsense-blogtimize-optimize-the-ads-on-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HELLUG: Ένωση Χρηστών &amp; Φίλων Linux Ελλάδος:</title>
		<link>http://dipot.com/2009/03/hellug-%ce%ad%ce%bd%cf%89%cf%83%ce%b7-%cf%87%cf%81%ce%b7%cf%83%cf%84%cf%8e%ce%bd-%cf%86%ce%af%ce%bb%cf%89%ce%bd-linux-%ce%b5%ce%bb%ce%bb%ce%ac%ce%b4%ce%bf%cf%82/</link>
		<comments>http://dipot.com/2009/03/hellug-%ce%ad%ce%bd%cf%89%cf%83%ce%b7-%cf%87%cf%81%ce%b7%cf%83%cf%84%cf%8e%ce%bd-%cf%86%ce%af%ce%bb%cf%89%ce%bd-linux-%ce%b5%ce%bb%ce%bb%ce%ac%ce%b4%ce%bf%cf%82/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 22:14:16 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/hellug-%ce%ad%ce%bd%cf%89%cf%83%ce%b7-%cf%87%cf%81%ce%b7%cf%83%cf%84%cf%8e%ce%bd-%cf%86%ce%af%ce%bb%cf%89%ce%bd-linux-%ce%b5%ce%bb%ce%bb%ce%ac%ce%b4%ce%bf%cf%82/</guid>
		<description><![CDATA[<p>HELLUG: Ένωση Χρηστών &#38; Φίλων Linux Ελλάδος:
By ageorg</p>
<p>This bookmark links to http://hellug.gr/index.php/OSullogos/Webtv</p>

	Possibly related posts (auto generated)
	
	[airliners.GR] Ο δικός σου αεροπορικός χώρος! (0)
	Zougla online &#8211; Παρατηρητήριο Καταναλωτή (0)
	xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (5)
	WordPress Optimization: [...]]]></description>
			<content:encoded><![CDATA[<p>HELLUG: Ένωση Χρηστών &amp; Φίλων Linux Ελλάδος:<br />
By <a href="http://hellug.gr">ageorg</a></p>
<p>This bookmark links to <a href="http://hellug.gr/index.php/OSullogos/Webtv">http://hellug.gr/index.php/OSullogos/Webtv</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/02/airlinersgr-%ce%bf-%ce%b4%ce%b9%ce%ba%cf%8c%cf%82-%cf%83%ce%bf%cf%85-%ce%b1%ce%b5%cf%81%ce%bf%cf%80%ce%bf%cf%81%ce%b9%ce%ba%cf%8c%cf%82-%cf%87%cf%8e%cf%81%ce%bf%cf%82/" title="[airliners.GR] Ο δικός σου αεροπορικός χώρος! (23/02/2009)">[airliners.GR] Ο δικός σου αεροπορικός χώρος!</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/zougla-online-%cf%80%ce%b1%cf%81%ce%b1%cf%84%ce%b7%cf%81%ce%b7%cf%84%ce%ae%cf%81%ce%b9%ce%bf-%ce%ba%ce%b1%cf%84%ce%b1%ce%bd%ce%b1%ce%bb%cf%89%cf%84%ce%ae/" title="Zougla online &#8211; Παρατηρητήριο Καταναλωτή (11/03/2009)">Zougla online &#8211; Παρατηρητήριο Καταναλωτή</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/xen-or-virtuosso-web-hosting-talk-the-largest-most-influential-web-hosting-community-on-the-internet/" title="xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet (17/03/2009)">xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/hellug-%ce%ad%ce%bd%cf%89%cf%83%ce%b7-%cf%87%cf%81%ce%b7%cf%83%cf%84%cf%8e%ce%bd-%cf%86%ce%af%ce%bb%cf%89%ce%bd-linux-%ce%b5%ce%bb%ce%bb%ce%ac%ce%b4%ce%bf%cf%82/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Rounded Corners &#8216;Roundup&#8217; &#124; Smiley Cat Web Design</title>
		<link>http://dipot.com/2009/02/css-rounded-corners-roundup-smiley-cat-web-design/</link>
		<comments>http://dipot.com/2009/02/css-rounded-corners-roundup-smiley-cat-web-design/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:38 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/css-rounded-corners-roundup-smiley-cat-web-design/</guid>
		<description><![CDATA[<p>CSS Rounded Corners &#8216;Roundup&#8217; &#124; Smiley Cat Web Design
By ageorg</p>
<p>This bookmark links to http://www.smileycat.com/miaow/archives/000044.php</p>

	Possibly related posts (auto generated)
	
	[airliners.GR] Ο δικός σου αεροπορικός χώρος! (0)
	Zougla online &#8211; Παρατηρητήριο Καταναλωτή (0)
	xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS [...]]]></description>
			<content:encoded><![CDATA[<p>CSS Rounded Corners &#8216;Roundup&#8217; | Smiley Cat Web Design<br />
By <a href="http://smileycat.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.smileycat.com/miaow/archives/000044.php">http://www.smileycat.com/miaow/archives/000044.php</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/02/airlinersgr-%ce%bf-%ce%b4%ce%b9%ce%ba%cf%8c%cf%82-%cf%83%ce%bf%cf%85-%ce%b1%ce%b5%cf%81%ce%bf%cf%80%ce%bf%cf%81%ce%b9%ce%ba%cf%8c%cf%82-%cf%87%cf%8e%cf%81%ce%bf%cf%82/" title="[airliners.GR] Ο δικός σου αεροπορικός χώρος! (23/02/2009)">[airliners.GR] Ο δικός σου αεροπορικός χώρος!</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/zougla-online-%cf%80%ce%b1%cf%81%ce%b1%cf%84%ce%b7%cf%81%ce%b7%cf%84%ce%ae%cf%81%ce%b9%ce%bf-%ce%ba%ce%b1%cf%84%ce%b1%ce%bd%ce%b1%ce%bb%cf%89%cf%84%ce%ae/" title="Zougla online &#8211; Παρατηρητήριο Καταναλωτή (11/03/2009)">Zougla online &#8211; Παρατηρητήριο Καταναλωτή</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/xen-or-virtuosso-web-hosting-talk-the-largest-most-influential-web-hosting-community-on-the-internet/" title="xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet (17/03/2009)">xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/css-rounded-corners-roundup-smiley-cat-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>twibs : find the businesses on twitter &#8211; 4,190 businesses and counting!</title>
		<link>http://dipot.com/2009/02/twibs-find-the-businesses-on-twitter-4190-businesses-and-counting/</link>
		<comments>http://dipot.com/2009/02/twibs-find-the-businesses-on-twitter-4190-businesses-and-counting/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:38 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/twibs-find-the-businesses-on-twitter-4190-businesses-and-counting/</guid>
		<description><![CDATA[<p>twibs : find the businesses on twitter &#8211; 4,190 businesses and counting!
By ageorg</p>
<p>This bookmark links to http://twibs.com/index.php</p>

	Possibly related posts (auto generated)
	
	A Twitter Mini-Guide: 60+ Useful Twitter Resources &#124; WebGeek (0)
	[airliners.GR] Ο δικός σου αεροπορικός χώρος! (0)
	Zougla online &#8211; Παρατηρητήριο Καταναλωτή (0)
	xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community [...]]]></description>
			<content:encoded><![CDATA[<p>twibs : find the businesses on twitter &#8211; 4,190 businesses and counting!<br />
By <a href="http://twibs.com">ageorg</a></p>
<p>This bookmark links to <a href="http://twibs.com/index.php">http://twibs.com/index.php</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/02/a-twitter-mini-guide-60-useful-twitter-resources-webgeek/" title="A Twitter Mini-Guide: 60+ Useful Twitter Resources | WebGeek (23/02/2009)">A Twitter Mini-Guide: 60+ Useful Twitter Resources | WebGeek</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/airlinersgr-%ce%bf-%ce%b4%ce%b9%ce%ba%cf%8c%cf%82-%cf%83%ce%bf%cf%85-%ce%b1%ce%b5%cf%81%ce%bf%cf%80%ce%bf%cf%81%ce%b9%ce%ba%cf%8c%cf%82-%cf%87%cf%8e%cf%81%ce%bf%cf%82/" title="[airliners.GR] Ο δικός σου αεροπορικός χώρος! (23/02/2009)">[airliners.GR] Ο δικός σου αεροπορικός χώρος!</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/zougla-online-%cf%80%ce%b1%cf%81%ce%b1%cf%84%ce%b7%cf%81%ce%b7%cf%84%ce%ae%cf%81%ce%b9%ce%bf-%ce%ba%ce%b1%cf%84%ce%b1%ce%bd%ce%b1%ce%bb%cf%89%cf%84%ce%ae/" title="Zougla online &#8211; Παρατηρητήριο Καταναλωτή (11/03/2009)">Zougla online &#8211; Παρατηρητήριο Καταναλωτή</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/xen-or-virtuosso-web-hosting-talk-the-largest-most-influential-web-hosting-community-on-the-internet/" title="xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet (17/03/2009)">xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/twibs-find-the-businesses-on-twitter-4190-businesses-and-counting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oddcast TTS Demo</title>
		<link>http://dipot.com/2009/02/oddcast-tts-demo/</link>
		<comments>http://dipot.com/2009/02/oddcast-tts-demo/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:37 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/oddcast-tts-demo/</guid>
		<description><![CDATA[<p>Oddcast TTS Demo
By ageorg</p>
<p>This bookmark links to http://www.oddcast.com/home/demos/tts/tts_example.php?sitepal</p>

	Possibly related posts (auto generated)
	
	[airliners.GR] Ο δικός σου αεροπορικός χώρος! (0)
	Zougla online &#8211; Παρατηρητήριο Καταναλωτή (0)
	xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (5)
	WordPress Optimization: Compatibility between Themes &#038; [...]]]></description>
			<content:encoded><![CDATA[<p>Oddcast TTS Demo<br />
By <a href="http://oddcast.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.oddcast.com/home/demos/tts/tts_example.php?sitepal">http://www.oddcast.com/home/demos/tts/tts_example.php?sitepal</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/02/airlinersgr-%ce%bf-%ce%b4%ce%b9%ce%ba%cf%8c%cf%82-%cf%83%ce%bf%cf%85-%ce%b1%ce%b5%cf%81%ce%bf%cf%80%ce%bf%cf%81%ce%b9%ce%ba%cf%8c%cf%82-%cf%87%cf%8e%cf%81%ce%bf%cf%82/" title="[airliners.GR] Ο δικός σου αεροπορικός χώρος! (23/02/2009)">[airliners.GR] Ο δικός σου αεροπορικός χώρος!</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/zougla-online-%cf%80%ce%b1%cf%81%ce%b1%cf%84%ce%b7%cf%81%ce%b7%cf%84%ce%ae%cf%81%ce%b9%ce%bf-%ce%ba%ce%b1%cf%84%ce%b1%ce%bd%ce%b1%ce%bb%cf%89%cf%84%ce%ae/" title="Zougla online &#8211; Παρατηρητήριο Καταναλωτή (11/03/2009)">Zougla online &#8211; Παρατηρητήριο Καταναλωτή</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/xen-or-virtuosso-web-hosting-talk-the-largest-most-influential-web-hosting-community-on-the-internet/" title="xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet (17/03/2009)">xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/oddcast-tts-demo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[airliners.GR] Ο δικός σου αεροπορικός χώρος!</title>
		<link>http://dipot.com/2009/02/airlinersgr-%ce%bf-%ce%b4%ce%b9%ce%ba%cf%8c%cf%82-%cf%83%ce%bf%cf%85-%ce%b1%ce%b5%cf%81%ce%bf%cf%80%ce%bf%cf%81%ce%b9%ce%ba%cf%8c%cf%82-%cf%87%cf%8e%cf%81%ce%bf%cf%82/</link>
		<comments>http://dipot.com/2009/02/airlinersgr-%ce%bf-%ce%b4%ce%b9%ce%ba%cf%8c%cf%82-%cf%83%ce%bf%cf%85-%ce%b1%ce%b5%cf%81%ce%bf%cf%80%ce%bf%cf%81%ce%b9%ce%ba%cf%8c%cf%82-%cf%87%cf%8e%cf%81%ce%bf%cf%82/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:37 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/airlinersgr-%ce%bf-%ce%b4%ce%b9%ce%ba%cf%8c%cf%82-%cf%83%ce%bf%cf%85-%ce%b1%ce%b5%cf%81%ce%bf%cf%80%ce%bf%cf%81%ce%b9%ce%ba%cf%8c%cf%82-%cf%87%cf%8e%cf%81%ce%bf%cf%82/</guid>
		<description><![CDATA[<p>[airliners.GR] Ο δικός σου αεροπορικός χώρος!
By ageorg</p>
<p>This bookmark links to http://www.airliners.gr/el/index.php</p>

	Possibly related posts (auto generated)
	
	Zougla online &#8211; Παρατηρητήριο Καταναλωτή (0)
	xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (5)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (0)
	twibs : [...]]]></description>
			<content:encoded><![CDATA[<p>[airliners.GR] Ο δικός σου αεροπορικός χώρος!<br />
By <a href="http://airliners.gr">ageorg</a></p>
<p>This bookmark links to <a href="http://www.airliners.gr/el/index.php">http://www.airliners.gr/el/index.php</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/03/zougla-online-%cf%80%ce%b1%cf%81%ce%b1%cf%84%ce%b7%cf%81%ce%b7%cf%84%ce%ae%cf%81%ce%b9%ce%bf-%ce%ba%ce%b1%cf%84%ce%b1%ce%bd%ce%b1%ce%bb%cf%89%cf%84%ce%ae/" title="Zougla online &#8211; Παρατηρητήριο Καταναλωτή (11/03/2009)">Zougla online &#8211; Παρατηρητήριο Καταναλωτή</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/xen-or-virtuosso-web-hosting-talk-the-largest-most-influential-web-hosting-community-on-the-internet/" title="xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet (17/03/2009)">xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/twibs-find-the-businesses-on-twitter-4190-businesses-and-counting/" title="twibs : find the businesses on twitter &#8211; 4,190 businesses and counting! (23/02/2009)">twibs : find the businesses on twitter &#8211; 4,190 businesses and counting!</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/airlinersgr-%ce%bf-%ce%b4%ce%b9%ce%ba%cf%8c%cf%82-%cf%83%ce%bf%cf%85-%ce%b1%ce%b5%cf%81%ce%bf%cf%80%ce%bf%cf%81%ce%b9%ce%ba%cf%8c%cf%82-%cf%87%cf%8e%cf%81%ce%bf%cf%82/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fullscreen Gigapan Viewer</title>
		<link>http://dipot.com/2009/02/fullscreen-gigapan-viewer/</link>
		<comments>http://dipot.com/2009/02/fullscreen-gigapan-viewer/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:37 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/fullscreen-gigapan-viewer/</guid>
		<description><![CDATA[<p>Fullscreen Gigapan Viewer
By ageorg</p>
<p>This bookmark links to http://gigapan.org/viewGigapanFullscreen.php?auth=033ef14483ee899496648c2b4b06233c</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (5)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (0)
	The Google Android Platform (0)
	Pattie Maes demos the Sixth Sense &#124; Video on TED.com (0)
	NAS for shared storage (0)


]]></description>
			<content:encoded><![CDATA[<p>Fullscreen Gigapan Viewer<br />
By <a href="http://gigapan.org">ageorg</a></p>
<p>This bookmark links to <a href="http://gigapan.org/viewGigapanFullscreen.php?auth=033ef14483ee899496648c2b4b06233c">http://gigapan.org/viewGigapanFullscreen.php?auth=033ef14483ee899496648c2b4b06233c</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2008/10/the-google-android-platform/" title="The Google Android Platform (20/10/2008)">The Google Android Platform</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/pattie-maes-demos-the-sixth-sense-video-on-tedcom/" title="Pattie Maes demos the Sixth Sense | Video on TED.com (19/03/2009)">Pattie Maes demos the Sixth Sense | Video on TED.com</a> (0)</li>
	<li><a href="http://dipot.com/2007/11/nas-for-shared-storage/" title="NAS for shared storage (29/11/2007)">NAS for shared storage</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/fullscreen-gigapan-viewer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Use the New FriendFeed Search for Social Media Intelligence &#8211; ReadWriteWeb</title>
		<link>http://dipot.com/2009/02/how-to-use-the-new-friendfeed-search-for-social-media-intelligence-readwriteweb/</link>
		<comments>http://dipot.com/2009/02/how-to-use-the-new-friendfeed-search-for-social-media-intelligence-readwriteweb/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:37 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/how-to-use-the-new-friendfeed-search-for-social-media-intelligence-readwriteweb/</guid>
		<description><![CDATA[<p>How to Use the New FriendFeed Search for Social Media Intelligence &#8211; ReadWriteWeb
By ageorg</p>
<p>This bookmark links to http://www.readwriteweb.com/archives/how_to_use_the_new_friendfeed.php</p>

	Possibly related posts (auto generated)
	
	PCs and the Internet: Addiction Magnets or just Tools? (0)
	Athens Startup Weekend 2008 (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (5)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (0)
	News Reading Thoughts (2)


]]></description>
			<content:encoded><![CDATA[<p>How to Use the New FriendFeed Search for Social Media Intelligence &#8211; ReadWriteWeb<br />
By <a href="http://readwriteweb.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.readwriteweb.com/archives/how_to_use_the_new_friendfeed.php">http://www.readwriteweb.com/archives/how_to_use_the_new_friendfeed.php</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/" title="PCs and the Internet: Addiction Magnets or just Tools? (05/04/2009)">PCs and the Internet: Addiction Magnets or just Tools?</a> (0)</li>
	<li><a href="http://dipot.com/2008/11/athens-startup-weekend-2008/" title="Athens Startup Weekend 2008 (26/11/2008)">Athens Startup Weekend 2008</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/how-to-use-the-new-friendfeed-search-for-social-media-intelligence-readwriteweb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 Tools to Track Your Footprints on the Web &#8211; ReadWriteWeb</title>
		<link>http://dipot.com/2009/02/8-tools-to-track-your-footprints-on-the-web-readwriteweb/</link>
		<comments>http://dipot.com/2009/02/8-tools-to-track-your-footprints-on-the-web-readwriteweb/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:36 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/8-tools-to-track-your-footprints-on-the-web-readwriteweb/</guid>
		<description><![CDATA[<p>8 Tools to Track Your Footprints on the Web &#8211; ReadWriteWeb
By ageorg</p>
<p>This bookmark links to http://www.readwriteweb.com/archives/8_tools_to_track_your_footprin.php</p>

	Possibly related posts (auto generated)
	
	[airliners.GR] Ο δικός σου αεροπορικός χώρος! (0)
	Zougla online &#8211; Παρατηρητήριο Καταναλωτή (0)
	xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet (0)
	WordPress: External RSS Feeds Optimization with KB [...]]]></description>
			<content:encoded><![CDATA[<p>8 Tools to Track Your Footprints on the Web &#8211; ReadWriteWeb<br />
By <a href="http://readwriteweb.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.readwriteweb.com/archives/8_tools_to_track_your_footprin.php">http://www.readwriteweb.com/archives/8_tools_to_track_your_footprin.php</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/02/airlinersgr-%ce%bf-%ce%b4%ce%b9%ce%ba%cf%8c%cf%82-%cf%83%ce%bf%cf%85-%ce%b1%ce%b5%cf%81%ce%bf%cf%80%ce%bf%cf%81%ce%b9%ce%ba%cf%8c%cf%82-%cf%87%cf%8e%cf%81%ce%bf%cf%82/" title="[airliners.GR] Ο δικός σου αεροπορικός χώρος! (23/02/2009)">[airliners.GR] Ο δικός σου αεροπορικός χώρος!</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/zougla-online-%cf%80%ce%b1%cf%81%ce%b1%cf%84%ce%b7%cf%81%ce%b7%cf%84%ce%ae%cf%81%ce%b9%ce%bf-%ce%ba%ce%b1%cf%84%ce%b1%ce%bd%ce%b1%ce%bb%cf%89%cf%84%ce%ae/" title="Zougla online &#8211; Παρατηρητήριο Καταναλωτή (11/03/2009)">Zougla online &#8211; Παρατηρητήριο Καταναλωτή</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/xen-or-virtuosso-web-hosting-talk-the-largest-most-influential-web-hosting-community-on-the-internet/" title="xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet (17/03/2009)">xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/8-tools-to-track-your-footprints-on-the-web-readwriteweb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Twitter Mini-Guide: 60+ Useful Twitter Resources &#124; WebGeek</title>
		<link>http://dipot.com/2009/02/a-twitter-mini-guide-60-useful-twitter-resources-webgeek/</link>
		<comments>http://dipot.com/2009/02/a-twitter-mini-guide-60-useful-twitter-resources-webgeek/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:36 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/a-twitter-mini-guide-60-useful-twitter-resources-webgeek/</guid>
		<description><![CDATA[<p>A Twitter Mini-Guide: 60+ Useful Twitter Resources &#124; WebGeek
By ageorg</p>
<p>This bookmark links to http://www.hybrid6.com/webgeek/2009/01/a-twitter-mini-guide-60-useful-twitter-resources.php</p>

	Possibly related posts (auto generated)
	
	twibs : find the businesses on twitter &#8211; 4,190 businesses and counting! (0)
	[airliners.GR] Ο δικός σου αεροπορικός χώρος! (0)
	Zougla online &#8211; Παρατηρητήριο Καταναλωτή (0)
	xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community [...]]]></description>
			<content:encoded><![CDATA[<p>A Twitter Mini-Guide: 60+ Useful Twitter Resources | WebGeek<br />
By <a href="http://hybrid6.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.hybrid6.com/webgeek/2009/01/a-twitter-mini-guide-60-useful-twitter-resources.php">http://www.hybrid6.com/webgeek/2009/01/a-twitter-mini-guide-60-useful-twitter-resources.php</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/02/twibs-find-the-businesses-on-twitter-4190-businesses-and-counting/" title="twibs : find the businesses on twitter &#8211; 4,190 businesses and counting! (23/02/2009)">twibs : find the businesses on twitter &#8211; 4,190 businesses and counting!</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/airlinersgr-%ce%bf-%ce%b4%ce%b9%ce%ba%cf%8c%cf%82-%cf%83%ce%bf%cf%85-%ce%b1%ce%b5%cf%81%ce%bf%cf%80%ce%bf%cf%81%ce%b9%ce%ba%cf%8c%cf%82-%cf%87%cf%8e%cf%81%ce%bf%cf%82/" title="[airliners.GR] Ο δικός σου αεροπορικός χώρος! (23/02/2009)">[airliners.GR] Ο δικός σου αεροπορικός χώρος!</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/zougla-online-%cf%80%ce%b1%cf%81%ce%b1%cf%84%ce%b7%cf%81%ce%b7%cf%84%ce%ae%cf%81%ce%b9%ce%bf-%ce%ba%ce%b1%cf%84%ce%b1%ce%bd%ce%b1%ce%bb%cf%89%cf%84%ce%ae/" title="Zougla online &#8211; Παρατηρητήριο Καταναλωτή (11/03/2009)">Zougla online &#8211; Παρατηρητήριο Καταναλωτή</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/xen-or-virtuosso-web-hosting-talk-the-largest-most-influential-web-hosting-community-on-the-internet/" title="xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet (17/03/2009)">xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/a-twitter-mini-guide-60-useful-twitter-resources-webgeek/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Accurately Monitor Boot-up Time for Your Windows</title>
		<link>http://dipot.com/2009/02/how-to-accurately-monitor-boot-up-time-for-your-windows/</link>
		<comments>http://dipot.com/2009/02/how-to-accurately-monitor-boot-up-time-for-your-windows/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:36 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/how-to-accurately-monitor-boot-up-time-for-your-windows/</guid>
		<description><![CDATA[<p>How to Accurately Monitor Boot-up Time for Your Windows
By ageorg</p>
<p>This bookmark links to http://blog.taragana.com/index.php/archive/how-to-accurately-monitor-boot-up-time-for-your-windows/</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (5)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (0)
	Microsoft IE and Standards Compliance (0)
	Adsense » Google Adsense Blogtimize &#8211; Optimize the ads on your blog (0)
	Χρήσιμα και Δωρεάν Προγράμματα από [...]]]></description>
			<content:encoded><![CDATA[<p>How to Accurately Monitor Boot-up Time for Your Windows<br />
By <a href="http://blog.taragana.com">ageorg</a></p>
<p>This bookmark links to <a href="http://blog.taragana.com/index.php/archive/how-to-accurately-monitor-boot-up-time-for-your-windows/">http://blog.taragana.com/index.php/archive/how-to-accurately-monitor-boot-up-time-for-your-windows/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2007/12/microsoft-ie-and-standards-compliance/" title="Microsoft IE and Standards Compliance (29/12/2007)">Microsoft IE and Standards Compliance</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/adsense-%c2%bb-google-adsense-blogtimize-optimize-the-ads-on-your-blog/" title="Adsense » Google Adsense Blogtimize &#8211; Optimize the ads on your blog (10/03/2009)">Adsense » Google Adsense Blogtimize &#8211; Optimize the ads on your blog</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/%cf%87%cf%81%ce%ae%cf%83%ce%b9%ce%bc%ce%b1-%ce%ba%ce%b1%ce%b9-%ce%b4%cf%89%cf%81%ce%b5%ce%ac%ce%bd-%cf%80%cf%81%ce%bf%ce%b3%cf%81%ce%ac%ce%bc%ce%bc%ce%b1%cf%84%ce%b1-%ce%b1%cf%80%cf%8c-%cf%84%ce%b7/" title="Χρήσιμα και Δωρεάν Προγράμματα από την Microsoft! Ναι, είναι αλήθεια. (23/02/2009)">Χρήσιμα και Δωρεάν Προγράμματα από την Microsoft! Ναι, είναι αλήθεια.</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/how-to-accurately-monitor-boot-up-time-for-your-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Friend Mom, Dad, and the Boss on Facebook&#8230;Safely &#8211; ReadWriteWeb</title>
		<link>http://dipot.com/2009/02/how-to-friend-mom-dad-and-the-boss-on-facebooksafely-readwriteweb/</link>
		<comments>http://dipot.com/2009/02/how-to-friend-mom-dad-and-the-boss-on-facebooksafely-readwriteweb/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:36 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/how-to-friend-mom-dad-and-the-boss-on-facebooksafely-readwriteweb/</guid>
		<description><![CDATA[<p>How to Friend Mom, Dad, and the Boss on Facebook&#8230;Safely &#8211; ReadWriteWeb
By ageorg</p>
<p>This bookmark links to http://www.readwriteweb.com/archives/how_to_friend_mom_dad_and_the.php</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (5)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (0)
	The Google Android Platform (0)
	Pattie Maes demos the Sixth Sense &#124; Video on TED.com (0)
	NAS for shared storage (0)


]]></description>
			<content:encoded><![CDATA[<p>How to Friend Mom, Dad, and the Boss on Facebook&#8230;Safely &#8211; ReadWriteWeb<br />
By <a href="http://readwriteweb.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.readwriteweb.com/archives/how_to_friend_mom_dad_and_the.php">http://www.readwriteweb.com/archives/how_to_friend_mom_dad_and_the.php</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2008/10/the-google-android-platform/" title="The Google Android Platform (20/10/2008)">The Google Android Platform</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/pattie-maes-demos-the-sixth-sense-video-on-tedcom/" title="Pattie Maes demos the Sixth Sense | Video on TED.com (19/03/2009)">Pattie Maes demos the Sixth Sense | Video on TED.com</a> (0)</li>
	<li><a href="http://dipot.com/2007/11/nas-for-shared-storage/" title="NAS for shared storage (29/11/2007)">NAS for shared storage</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/how-to-friend-mom-dad-and-the-boss-on-facebooksafely-readwriteweb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Google Android Platform</title>
		<link>http://dipot.com/2008/10/the-google-android-platform/</link>
		<comments>http://dipot.com/2008/10/the-google-android-platform/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 15:47:52 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Communication]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[PDA]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[smartphones]]></category>
		<category><![CDATA[touch screen]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>I read about Open Handset Alliance&#8217;s Android platform and cellular phones with great interest. The web is full of specs, reviews, comparisons and the like. I just can&#8217;t help but share the following thoughts:</p>

Sometimes it seems Google&#8217;s Android is the second touch screen platform after Apple&#8217;s iPhone

<p>I can&#8217;t understand why Android-based HTC G1 and other [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en-->I read about <a onclick="javascript: pageTracker._trackPageview('/home/oha/');" href="http://www.openhandsetalliance.com/" target="_blank">Open Handset Alliance</a>&#8217;s <a href="http://www.android.com/" target="_blank">Android</a> platform and cellular phones with great interest. The web is full of specs, reviews, <a href="http://www.phonearena.com/htmls/compare.php" target="_blank">comparison</a>s and the like. I just can&#8217;t help but share the following thoughts:</p>
<ul>
<li>Sometimes it seems Google&#8217;s Android is the second touch screen platform after Apple&#8217;s iPhone</li>
</ul>
<p>I can&#8217;t understand why Android-based HTC G1 and other touch devices are automatically compared to the iPhone. Yes, it is a great looking device. It has a great touch screen. And that&#8217;s where innovation ends and limitations begin.</p>
<p>Great as the iPhone may (or not) be, it&#8217;s not clearly and objectively superior to Microsoft&#8217;s Windows Mobile devices hardware-, software- nor appearance-wise. Plus, Windows (Mobile and its previous incarnations) has been, so far, dominant in the touch arena. So, how come the iPhone (a new comer with plenty of flaws of its own) is the ad hoc point of reference? And how come all Windows Mobile&#8217;s long-standing features (touch screen, great sofware library, multitasking) are rarely mentioned?</p>
<ul>
<li>Android, anyone? Sure, on what hardware?</li>
</ul>
<p>Maybe I understand a new platform like Android needs to come with new hardware for psychological (marketing) reasons. Now that&#8217;s over and done with, why not introduce Android for old and new hardware? Wasn&#8217;t one of Linux&#8217;s advantages better performance on old PCs? I&#8217;m sure I would love to run Android on my current Windows Mobile Phone but I fear this won&#8217;t happen any day soon, if at all. How about selling the HTC Touch HD (my favorite, in the absence of an Android phone with no hardware keyboard. With a camera flash, please) with a choice between Android and Windows Mobile? Better yet, sell it able to dual-boot both platforms? I would buy it right now. Now this is not so, I just have to wait and I am not happy about it at all.</p>
<p>Consider how nice it would be to compare different platforms&#8217; sales and performance on the same hardware (isn&#8217;t that what Apple avoids at all cost on the PC market?)! How different the HTC G1 is from the Touch HD or any other current model?</p>
<p>It is my prediction that we will see Android and Windows Mobile running on the same hardware not later than 2009. And this will be the start of a new era on the &#8220;choice&#8221; and &#8220;objective comparison&#8221; fronts.<!--:--></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2010/01/wm-android-or-maybe-a-maemo-smartphone/" title="WM, Android, or, maybe, a Maemo smartphone? (16/01/2010)">WM, Android, or, maybe, a Maemo smartphone?</a> (0)</li>
	<li><a href="http://dipot.com/2007/12/microsoft-ie-and-standards-compliance/" title="Microsoft IE and Standards Compliance (29/12/2007)">Microsoft IE and Standards Compliance</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/android-market-business-and-program-policies/" title="Android Market Business and Program Policies (23/02/2009)">Android Market Business and Program Policies</a> (0)</li>
	<li><a href="http://dipot.com/2009/01/optimize-firefox-with-91-must-have-add-ons/" title="<!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--> (25/01/2009)"><!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--></a> (2)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2008/10/the-google-android-platform/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft IE and Standards Compliance</title>
		<link>http://dipot.com/2007/12/microsoft-ie-and-standards-compliance/</link>
		<comments>http://dipot.com/2007/12/microsoft-ie-and-standards-compliance/#comments</comments>
		<pubDate>Sat, 29 Dec 2007 08:17:12 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[DiPot]]></category>
		<category><![CDATA[DiPot.com]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[Opera Software]]></category>
		<category><![CDATA[PDA]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>There is an indirect update to my December 16, 2007 &#8220;Web browser standards: Opera Software vs Microsoft&#8221; post in the &#8220;Internet Explorer 8 and Acid2: A Milestone&#8221; IEBlog post. The way I see it, Microsoft effectively confirms allegations about not complying with standards (by, at least, not seriously updating IE6 in over 5 years and [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en-->There is an indirect update to my December 16, 2007 &#8220;<a href="http://blog.dipot.com/index.php/ice-tea-tech-blog/4-web-browser-standards-opera-software-vs-microsoft.html" target="_blank">Web browser standards: Opera Software vs Microsoft</a>&#8221; post in the &#8220;<a href="http://blogs.msdn.com/ie/archive/2007/12/19/internet-explorer-8-and-acid2-a-milestone.aspx" target="_blank">Internet Explorer 8 and Acid2: A Milestone</a>&#8221; <a href="http://blogs.msdn.com/ie/default.aspx" target="_blank">IEBlog</a> post. The way I see it, Microsoft effectively confirms allegations about not complying with standards (by, at least, not seriously updating IE6 in over 5 years and creating lots of problems with IE7) promising it will do so with IE8:</p>
<p>&#8220;&#8230; <em>IE8 now renders the &#8220;Acid2 Face&#8221; correctly in IE8 standards mode.</em> &#8230;&#8221;</p>
<p>&#8220;&#8230; <em>With respect to standards and interoperability, our goal in developing Internet Explorer 8 is to support the right set of standards with excellent implementations and do so without breaking the existing web. This second goal refers to the lessons we learned during IE 7. IE7&#8217;s CSS improvements made IE more compliant with some standards and less compatible with some sites on the web as they were coded. Many sites and developers have done special work to work well with IE6, mostly as a result of the evolution of the web and standards since 2001 and the level of support in the various versions of IE that pre-date many standards. We have a responsibility to respect the work that sites have already done to work with IE. We must deliver improved standards support and backwards compatibility so that IE8 (1) continues to work with the billions of pages on the web today that already work in IE6 and IE7 and (2) makes the development of the next billion pages, in an interoperable way, much easier.</em> &#8230;&#8221;</p>
<p>If you wonder who made the &#8220;existing web&#8221; prone to &#8220;breaking&#8221;, I don&#8217;t. In my mind, it was Microsoft. When IE was dominant, it never completely adhered to standards, while extending HTML in all sorts of ways. When standards emerged or caught up, was IE updated accordingly? No.</p>
<p>Is Microsoft finally entering a standards compliance era? How, by adding a &#8220;Standards mode&#8221; in IE8? I still have my doubts and for good reason. You see, past experience says otherwise.</p>
<p>Web developers, Microsoft hasn&#8217;t and won&#8217;t ever do it for you. If you are interested in every computer owner being able to fully utilize your sites, please do us all a favor and comply to universal, not Microsoft standards. Windows percentage in the PC market is still very large but dropping. Make them build a decent browser; or not, who cares? Firefox, Opera etc. are excellent, compliant and multiplatform browsers. Don&#8217;t build the Internet depended on ActiveX and anything else non-standard enough so only IE (therefore only Windows) users can view.<br />
<!--:--></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2007/12/web-browser-standards-opera-software-vs-microsoft/" title="Web browser standards: Opera Software vs Microsoft (16/12/2007)">Web browser standards: Opera Software vs Microsoft</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/01/optimize-firefox-with-91-must-have-add-ons/" title="<!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--> (25/01/2009)"><!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--></a> (2)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2007/12/your-home-on-camera-live/" title="<!--:en-->Your home on camera, live<!--:--> (18/12/2007)"><!--:en-->Your home on camera, live<!--:--></a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2007/12/microsoft-ie-and-standards-compliance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NAS for shared storage</title>
		<link>http://dipot.com/2007/11/nas-for-shared-storage/</link>
		<comments>http://dipot.com/2007/11/nas-for-shared-storage/#comments</comments>
		<pubDate>Thu, 29 Nov 2007 11:46:56 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Infrant]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[NAS]]></category>
		<category><![CDATA[Netgear]]></category>
		<category><![CDATA[network attached storage]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Seagate]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>I have been hooked on the idea of NAS (Network Attached Storage) since around 2000, when I first read about it. Of course, capacities and costs back then were out of this world.</p>
<p>Today I installed an Infrant Technologies ReadyNAS NV+ with 4 Seagate ST3500630AS Barracuda 500GB SATA2 hot-swappable hard disks and 1 gigabit ethernet port. [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en-->I have been hooked on the idea of NAS (Network Attached Storage) since around 2000, when I first read about it. Of course, capacities and costs back then were out of this world.</p>
<p>Today I installed an <a title="Infrant Technologies ReadyNAS NV+" href="http://www.infrant.com/products/products_details.php?name=ReadyNAS%20NVPlus" target="_blank">Infrant Technologies ReadyNAS NV+</a> with 4 Seagate ST3500630AS Barracuda 500GB SATA2 hot-swappable hard disks and 1 gigabit ethernet port. For a total cost around 1.400â‚¬, I got a 3-disk RAID5 configuration with 875 usable GB and a hot-spare disk. In plain english, 2 disks have to fail before any data is lost.</p>
<p>I preferred the Infrant (now owned by Netgear) solution to the much cheaper (~900â‚¬) 2 gigabit Ethernet <a title="Intel Entry Storage System SS4000-E" href="http://www.intel.com/design/servers/storage/ss4000-E/" target="_blank">Intel Entry Storage System SS4000-E</a>, (also with 4 500GB SATA2 disks) for its Active Directory support. However, apart from increased peace of mind (thanks to the hot-spare) the NV+ offers some nice built-in backup and media streaming features, in addition to the 3 USB ports with support for a UPS, printers, flash and USB disks.</p>
<p>I am fairly sure that NAS is the way to go for shared storage. With LAN speeds, disk capacities, users and uses increasing at a hectic pace NAS is cheap (starting at &lt;200â‚¬), scalable and very easy to setup. Please note I am not referring to server applications storage; that&#8217;s a different, much more expensive, story.<br />
<!--:--></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/02/how-to-use-the-new-friendfeed-search-for-social-media-intelligence-readwriteweb/" title="How to Use the New FriendFeed Search for Social Media Intelligence &#8211; ReadWriteWeb (23/02/2009)">How to Use the New FriendFeed Search for Social Media Intelligence &#8211; ReadWriteWeb</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/" title="PCs and the Internet: Addiction Magnets or just Tools? (05/04/2009)">PCs and the Internet: Addiction Magnets or just Tools?</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2008/10/the-google-android-platform/" title="The Google Android Platform (20/10/2008)">The Google Android Platform</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2007/11/nas-for-shared-storage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
