<?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; DiPot.com</title>
	<atom:link href="http://dipot.com/tag/dipotcom/feed/" rel="self" type="application/rss+xml" />
	<link>http://dipot.com</link>
	<description>The Optimization Point of View</description>
	<lastBuildDate>Fri, 02 Dec 2011 11:28:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=</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:200px;display:block;">
<div style="text-align:center;width:200px;padding:1px;background:#000;margin:2px;">
<div style="text-align:center;width:190px;height:185px;padding:2px;padding-top:1px;padding-left:4px;border:solid 1px #fff;background:#411;margin:1px;">
<a target="_blank" style="text-decoration:none;" href="http://www.amazon.com/exec/obidos/ASIN/0470745703/unrblo-20" title="Find out more about Principles of Quantitative Development and buy it from Amazon.com">
<big style="font-size:14px;font-family:arial;color:#fff;font-variant: small-caps;">A Remarkable Book from Wiley-Finance</big>
</a>
<hr />
<table border="0" cellpadding="2px" cellspacing="0" summary="" width="100%" align="center">
<tr><td style="padding:0px">
<div style="border:solid 1px #faa;height:126px;width:82px;">
<a target="_blank" style="text-decoration:none;" href="http://www.amazon.com/exec/obidos/ASIN/0470745703/unrblo-20" title="Find out more about Principles of Quantitative Development and buy it from Amazon.com">
<img src="http://www.thulasidas.com/img/pqd-82x126.gif" border="0px" alt="PQD" title="Principles of Quantitative Development from Amazon.com" />
</a>
</div>
</td>
<td style="padding:3px">
<a target="_blank" style="text-decoration:none;" href="http://www.amazon.com/exec/obidos/ASIN/0470745703/unrblo-20" title="Find out more about Principles of Quantitative Development and buy it from Amazon.com">
<em style="font-size:14px;font-family:arial;color:#fff;">"An excellent book!"</em><br />
<small style="font-size:13px;font-family:arial;color:#faa;">&nbsp;&nbsp;&#8212; Paul Wilmott</small>
<br />
<small style="font-size:11px;font-family:arial;color:#fff;">
Want to break into the lucrative world of trading and quantitative finance? You <b>need </b> this book!
</small>
</a>
</td>
</tr>
</table>
</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> (2)</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> (1)</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>6</slash:comments>
		</item>
		<item>
		<title>Feeds to Content &amp; Categories Optimization in WordPress</title>
		<link>http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/</link>
		<comments>http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 20:26:03 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips & How-to]]></category>
		<category><![CDATA[Advanced Category Excluder]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Delicious]]></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[optimization]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Yet Another Autoblogger]]></category>

		<guid isPermaLink="false">http://dipot.com/?p=1180</guid>
		<description><![CDATA[<p>At some point I added the category &#8220;Bookmarks&#8221; in Ice Tea tech. Thanks to the &#8220;YAAB&#8221; (short for Yet Another Auto Blogger) WordPress plugin, this category automatically gets its content directly from my Delicious feed. This way I get my own copy of what I put up there and my blog gets some added value [...]]]></description>
			<content:encoded><![CDATA[<p>At some point I added the category &#8220;<a href="http://dipot.com/category/bookmarks/" target="_blank">Bookmarks</a>&#8221; in <a href="http://dipot.com" target="_blank">Ice Tea tech</a>. Thanks to the &#8220;<a href="http://scribido.com/yaab/yaab-autoblogger/" target="_blank">YAAB</a>&#8221; (short for Yet Another Auto Blogger) <a href="http://wordpress.org" target="_blank">WordPress</a> plugin, this category automatically gets its content directly from <a href="http://delicious.com/ageorg" target="_blank">my Delicious</a> <a href="http://feeds.delicious.com/v2/rss/ageorg" target="_blank">feed</a>. This way I get my own copy of what I put up there and my blog gets some added value in one move.</p>
<p>YAAB has an unusual but effective interface that allows adding content to any category of a WordPress blog from any number of feeds, even offering its own scheduler, if needed. It sure works as advertized.</p>
<p>Ever since then, I meant to further optimize the blog by separating the bookmarks from my other posts. This is just what I did, with the help of the &#8220;<a href="http://wordpress.org/extend/plugins/advanced-category-excluder/" target="_blank">ACE</a>&#8221; (short for Advanced Category Excluder) WordPress plugin. From now on, bookmark posts won&#8217;t appear in the main feed, like they don&#8217;t appear in the home page. For those interested, the Bookmarks feed is at <a href="http://dipot.com/category/bookmarks/feed" target="_blank">http://dipot.com/category/bookmarks/feed</a> (or find everything I post in <a href="http://friendfeed.com/ageor" target="_blank">my FriendFeed stream</a>).</p>
<p>ACE gives a WordPress blogger full control over which Categories are hidden in any of 6 sections of their blog: Archive page, Home page, RSS feed for Posts, RSS feed for Comments, Search results &amp; robots&#8217; crawls. It is very straight forward, has a clean interface and works as advertized.</p>
<p>I consider both plugins to be great assets to WordPress blogs. Which are your favorite plugins? What functionality do you put/expect in a blog?</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> (6)</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/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> (2)</li>
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (4)</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> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</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> (6)</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> (2)</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>2</slash:comments>
		</item>
		<item>
		<title>Apologies for last days&#8217; posts flood</title>
		<link>http://dipot.com/2009/02/apologies-for-last-days-posts-flood/</link>
		<comments>http://dipot.com/2009/02/apologies-for-last-days-posts-flood/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 00:17:04 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Delicious]]></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[MS]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[StumbleUpon]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Yet Another Autoblogger]]></category>

		<guid isPermaLink="false">http://dipot.com/?p=1071</guid>
		<description><![CDATA[<p>
</p>
<p>I apologize for the flood of links of the past few days.</p>
<p>I have been trying to implement Yet Another Autoblogger to bring my Delicious and StumbleUpon bookmarks in WordPress-based Ice Tea tech. It seems that, while everything finally worked fine with Delicious, StumbleUpon kept returning the same posts over and over to Autoblogger causing a [...]]]></description>
			<content:encoded><![CDATA[<p><!--:el-->
</p>
<p><!--:--><!--:en-->I apologize for the flood of links of the past few days.</p>
<p>I have been trying to implement <a title="Visit plugin homepage" href="http://www.psypo.com/yaab">Yet Another Autoblogger</a> to bring my <a href="http://delicious.com/ageorg" target="_blank">Delicious</a> and <a href="http://www.stumbleupon.com/stumbler/ageor/" target="_blank">StumbleUpon</a> bookmarks in <a href="http://wordpress.org/" target="_blank">WordPress</a>-based <a href="http://dipot.com/category/bookmarks/" target="_blank">Ice Tea tech</a>. It seems that, while everything finally worked fine with Delicious, StumbleUpon kept returning the same posts over and over to Autoblogger causing a flood in the blog itself and to its <a href="http://dipot.com/feed/" target="_blank">RSS feed</a>, <a href="http://friendfeed.com/ageor" target="_blank">FriendFeed</a> &amp; <a href="http://twitter.com/ageor" target="_blank">Twitter</a> by extension.</p>
<p>I stopped using StumbleUpon a while ago, because it didn&#8217;t support greek-encoded titles. It seems there is also an issue between its feed and Autoblogger. So, at least for the time being, I removed it, which is not that much of a problem, as I don&#8217;t post there any more.</p>
<p>Sorry about that, I&#8217;ll try to contain such incidents in the future. Thank you all for your patience and especially @<a href="http://twitter.com/sotomi" target="_blank">Sotomi</a>, @<a href="http://twitter.com/cybereddie" target="_blank">Cybereddie</a>, @<a href="http://twitter.com/Chriiiiis" target="_blank">Chriiiiis</a>, @<a href="http://twitter.com/Botchagalupe" target="_blank">Botchagalupe</a>, @<a href="http://twitter.com/Alexnewbee" target="_blank">Alexnewbee</a>, @<a href="http://twitter.com/Skoroneos" target="_blank">Skoroneos</a>, @<a href="http://twitter.com/Jimeh" target="_blank">Jimeh</a>, @<a href="http://twitter.com/VTripolitakis" target="_blank">Vtripolitakis</a>, @<a href="http://twitter.com/Spdd" target="_blank">Spdd</a> and those I may have missed for taking the time to notify me about it.</p>
<p>In an attempt to minimize the impact, I erased all the Ice Tea tech feed (with posts) from FriendFeed (I don&#8217;t know how to bulk-erase the relevant twits, any ideas?). The sideffect is that, as I am about to recreate the feed in FriendFeed, multiple blog and bookmark posts will appear at once, possibly in Twitter as well. Please forgive me, hopefully it will be the end of this annoyance.<!--:--></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<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/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> (6)</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> (2)</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> (2)</li>
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/apologies-for-last-days-posts-flood/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Which Service should a Post go to?</title>
		<link>http://dipot.com/2009/01/how-i-post/</link>
		<comments>http://dipot.com/2009/01/how-i-post/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 17:21:55 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips & How-to]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Delicious]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[DiPot]]></category>
		<category><![CDATA[DiPot.com]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[flowchart]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[Ice Tea tech]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[microblogging]]></category>
		<category><![CDATA[On Anything and Everything]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[SlideShare]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p></p>
<p>I have been trying to organize/visualize the way I post, be it blogging, a comment on FriendFeed, an interesting link a came across etc. During the time it took me to complete the flowchart, more services were added as sources or carriers of my posts. As a result, the chart got more complex than originally [...]]]></description>
			<content:encoded><![CDATA[<p><!--:el--></p>
<p><!--:--><!--:en-->I have been trying to organize/visualize the way I post, be it blogging, a comment on FriendFeed, an interesting link a came across etc. During the time it took me to complete the flowchart, more services were added as sources or carriers of my posts. As a result, the chart got more complex than originally anticipated. Interestingly enough, there is a pattern and the flowchart works for me most of the time.</p>
<p>Also <a href="http://dipot.com/docs/posting_flowchart.dia" target="_blank">get the Posting Flowchart as built in Dia</a> (hence the crudeness), for your own use. So, there it is:</p>
<p style="text-align: center;">
<div id="attachment_65" class="wp-caption aligncenter" style="width: 632px"><a href="http://dipot.com/docs/posting_flowchart.dia"><img class=" " title="Posting Flowchart" src="http://dipot.com/docs/posting_flowchart.png" alt="" width="622" height="355" /><br />
</a><p class="wp-caption-text">Posting Flowchart</p></div>
<p>Please do comment. Is posting a one-way street for you? Are there any general rules or do you post on a case by case basis?<!--:--></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<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/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> (6)</li>
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (4)</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/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> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/01/how-i-post/feed/</wfw:commentRss>
		<slash:comments>2</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> (6)</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> (2)</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>Your home on camera, live</title>
		<link>http://dipot.com/2007/12/your-home-on-camera-live/</link>
		<comments>http://dipot.com/2007/12/your-home-on-camera-live/#comments</comments>
		<pubDate>Tue, 18 Dec 2007 15:06:09 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Tips & How-to]]></category>
		<category><![CDATA[ADSL]]></category>
		<category><![CDATA[AVM]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[DiPot]]></category>
		<category><![CDATA[DiPot.com]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[PDA]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[surveillance]]></category>
		<category><![CDATA[Vivotek]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>Two weeks ago I was asked again to install a couple of cameras to watch a newborn baby at home (with the sitter&#8230;).</p>
<p>Provided there is an ADSL in the premises, the task is trivial, tech-wise. In this case, the heart of the system is an AVM Fritz ADSL modem, 4 port switch, wireless Access Point [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en-->Two weeks ago I was asked again to install a couple of cameras to watch a newborn baby at home (with the sitter&#8230;).</p>
<p>Provided there is an ADSL in the premises, the task is trivial, tech-wise. In this case, the heart of the system is an <a href="http://www.avm.de/en/Produkte/index.html">AVM Fritz</a> ADSL modem, 4 port switch, wireless Access Point with SIP, complemented by 2 <a href="http://www.vivotek.com/products_pt7137.htm" target="_blank">VIVOTEK PT7137</a> wifi IP pan-tilt (but not zoom) VGA cameras.</p>
<p>The first problem in serving content from a non-static (dynamic) IP address is how to hit the correct IP, which is a moving target (I recently came across the fact that, in Greece, ISP OTEnet actually disconnects dynamic ADSL connections every 54 hours, just to change IP address!). The solution to this is dynamic DNS, in this case in the form of the free service <a title="DynDNS -- Dynamic DNS, E-Mail Delivery and Other Services" href="http://www.dyndns.org" target="_blank">DynDNS</a> (other such services also exist). What dynamic DNS does is have a client program automatically update the current IP address of an ADSL connection to a host of the form &lt;myhost&gt;.dyndns.org. In this case (lucky me), both the router and the cameras have dyndns.org support built-in. If this wasn&#8217;t the case, I could set up a dyndns.org client in a windows or linux pc to do the job. I could, alternatively, buy a static IP address, which I do not prefer for security and cost reasons. More than one dynamic DNS client can be set up for redundancy, if needed.</p>
<p>The other problem in serving content this way is that the Internet IP one&#8217;s router uses is different from the local IP address of this same router and each of his local network devices (yes, it&#8217;s too technical). The router takes care of back-and-forth IP translation for the outgoing connections (browsing, email reception &amp; transmission, Instant Messaging etc.) automatically (using NAPT, Network Address Port Translation). However, when a local server needs to listen to Internet incoming traffic, this must be routed to it in a way that cannot be automated (not until UPnP, anyway, which is another story), so port translation must be manually programmed to the router and the method is called &#8220;port forwarding&#8221;. What this does is tell the router what to do with any incoming traffic, depending on the Port it uses: drop it or forward it to a different internal IP and Port, where a server is standing by.</p>
<p>When similar content is served by more than one servers (in this case all the IP cameras transmit audio &amp; video using the http protocol which by default &#8220;listens&#8221; and &#8220;transmits&#8221; on port 80), we have the third problem: We need to reference two (or more) different servers serving the same service (http) using the same single external IP address.</p>
<p>The solution here is in the way protocol calls are made: when our browser shows it connects to http://blog.dipot.com, it is actually connecting to http://blog.dipot.com:80, where 80 represents the connection&#8217;s port number (which has possible values from 1 to 65535). The port value of 80 is implied, because it is the standard port number for the http protocol (other protocols by default, but not necessarily, connect to other ports). This essentially means that we can reference ~65000 different services (protocols) on the same IP address. So, what we do is agree between ourselves and the router to use these two (or more) addresses to call our two (or more) IP cameras (the &#8220;http://&#8221; prefix is important, because the specified ports are not usually intended for this protocol):<br />
Camera 1: http://&lt;myhost&gt;.dyndns.org:12001<br />
Camera 2: http://&lt;myhost&gt;.dyndns.org:12002<br />
Camera n: http://&lt;myhost&gt;.dyndns.org:1200n</p>
<p>So, assuming the cameras addresses are 192.168.1.21, 192.168.1.22 (&amp; 192.168.1.2n) and all transmit to port 80 (the default) we program the router to forward calls to ports 12001, 12002 (&amp; 1200n) to 192.168.1.21:80, 192.168.1.22:80 (&amp; 192.168.1.2n:80). It is important for the cameras IP addresses to be static, so we don&#8217;t have another moving target to cope with.</p>
<p>In case the router didn&#8217;t support forwarding to a different port than the incoming, we should then program the cameras to listen and transmit to ports 12001, 12002, &#8230; 1200n, which is perfectly possible, if not simpler.</p>
<p>This came out larger and more technical than intended. All these, however, can be implemented in about 30&#8242; and are applicable to other services as well.</p>
<p>For router-specific instructions to program port forwarding, refer to the excellent guide &#8220;<a href="http://portforward.com/guides.htm" target="_blank">Free Help Setting up</a><a href="http://portforward.com/guides.htm" target="_blank"> Your Router or Firewall</a>&#8220;.</p>
<p><!--:--></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/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> (6)</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> (2)</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/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> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2007/12/your-home-on-camera-live/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

