<?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; post</title>
	<atom:link href="http://dipot.com/tag/post/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>Top 20 Ways to Share a Great Blog Post</title>
		<link>http://dipot.com/2009/03/top-20-ways-to-share-a-great-blog-post/</link>
		<comments>http://dipot.com/2009/03/top-20-ways-to-share-a-great-blog-post/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 16:05:54 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/top-20-ways-to-share-a-great-blog-post/</guid>
		<description><![CDATA[<p>Top 20 Ways to Share a Great Blog Post
By ageorg</p>
<p>This bookmark links to http://mashable.com/2009/03/29/sharing-great-posts/</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (2)
	News Reading Thoughts (4)
	Microsoft IE and Standards Compliance (0)
	Feeds to Content &#038; Categories Optimization in WordPress (1)


]]></description>
			<content:encoded><![CDATA[<p>Top 20 Ways to Share a Great Blog Post<br />
By <a href="http://mashable.com">ageorg</a></p>
<p>This bookmark links to <a href="http://mashable.com/2009/03/29/sharing-great-posts/">http://mashable.com/2009/03/29/sharing-great-posts/</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> (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/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (4)</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/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>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/top-20-ways-to-share-a-great-blog-post/feed/</wfw:commentRss>
		<slash:comments>0</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>- Moodle in Education-Special Guest: Miguel Guhlin</title>
		<link>http://dipot.com/2009/03/moodle-in-education-special-guest-miguel-guhlin/</link>
		<comments>http://dipot.com/2009/03/moodle-in-education-special-guest-miguel-guhlin/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 23:19:57 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/moodle-in-education-special-guest-miguel-guhlin/</guid>
		<description><![CDATA[<p>- Moodle in Education-Special Guest: Miguel Guhlin
By ageorg</p>
<p>This bookmark links to http://live.classroom20.com/2/post/2009/03/moodle-in-education-special-guest-miguel-guhlin.html</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (2)
	Top 20 Ways to Share a Great Blog Post (0)
	News Reading Thoughts (4)
	Microsoft IE and Standards Compliance (0)


]]></description>
			<content:encoded><![CDATA[<p>- Moodle in Education-Special Guest: Miguel Guhlin<br />
By <a href="http://live.classroom20.com">ageorg</a></p>
<p>This bookmark links to <a href="http://live.classroom20.com/2/post/2009/03/moodle-in-education-special-guest-miguel-guhlin.html">http://live.classroom20.com/2/post/2009/03/moodle-in-education-special-guest-miguel-guhlin.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> (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/03/top-20-ways-to-share-a-great-blog-post/" title="Top 20 Ways to Share a Great Blog Post (30/03/2009)">Top 20 Ways to Share a Great Blog Post</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> (4)</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/moodle-in-education-special-guest-miguel-guhlin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clipmarks :: Firefox Add-ons</title>
		<link>http://dipot.com/2009/03/clipmarks-firefox-add-ons/</link>
		<comments>http://dipot.com/2009/03/clipmarks-firefox-add-ons/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 23:58:19 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[add-ons]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/clipmarks-firefox-add-ons/</guid>
		<description><![CDATA[<p>&#8220;Instead of copying and pasting links, Clipmarks is like adding a pair of scissors to your browser, letting you capture exactly what you want others to see (text, images or video). Your clips are saved on clipmarks.com and can easily be syndicated to FriendFeed, Twitter, Facebook or other sites. You can also post anything you [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;Instead of copying and pasting links, Clipmarks is like adding a pair of scissors to your browser, letting you capture exactly what you want others to see (text, images or video). Your clips are saved on clipmarks.com and can easily be syndicated to FriendFeed, Twitter, Facebook or other sites. You can also post anything you clip directly to your blog (supports Wordpress, Blogger, Typepad and more) or send it directly to friends or co-workers via email. &#8230;&#8221;<br />
By <a href="http://addons.mozilla.org">ageorg</a></p>
<p>This bookmark links to <a href="https://addons.mozilla.org/en-US/firefox/addon/1407">https://addons.mozilla.org/en-US/firefox/addon/1407</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<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/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>
	<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>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/clipmarks-firefox-add-ons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mashable on Tumblr &#8211; How #FollowFriday and Hashtags Work</title>
		<link>http://dipot.com/2009/03/mashable-on-tumblr-how-followfriday-and-hashtags-work/</link>
		<comments>http://dipot.com/2009/03/mashable-on-tumblr-how-followfriday-and-hashtags-work/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 16:40:25 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/mashable-on-tumblr-how-followfriday-and-hashtags-work/</guid>
		<description><![CDATA[<p>Mashable on Tumblr &#8211; How #FollowFriday and Hashtags Work
By ageorg</p>
<p>This bookmark links to http://mashable.tumblr.com/post/72589347</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (2)
	Top 20 Ways to Share a Great Blog Post (0)
	News Reading Thoughts (4)
	Microsoft IE and Standards Compliance (0)


]]></description>
			<content:encoded><![CDATA[<p>Mashable on Tumblr &#8211; How #FollowFriday and Hashtags Work<br />
By <a href="http://mashable.tumblr.com">ageorg</a></p>
<p>This bookmark links to <a href="http://mashable.tumblr.com/post/72589347">http://mashable.tumblr.com/post/72589347</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> (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/03/top-20-ways-to-share-a-great-blog-post/" title="Top 20 Ways to Share a Great Blog Post (30/03/2009)">Top 20 Ways to Share a Great Blog Post</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> (4)</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/mashable-on-tumblr-how-followfriday-and-hashtags-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dawn of the Iconoclast &#8211; From the Assembly language to Cloud Computing, and the DNA to the Mankind</title>
		<link>http://dipot.com/2009/03/dawn-of-the-iconoclast-from-the-assembly-language-to-cloud-computing-and-the-dna-to-the-mankind/</link>
		<comments>http://dipot.com/2009/03/dawn-of-the-iconoclast-from-the-assembly-language-to-cloud-computing-and-the-dna-to-the-mankind/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 00:11:33 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/dawn-of-the-iconoclast-from-the-assembly-language-to-cloud-computing-and-the-dna-to-the-mankind/</guid>
		<description><![CDATA[<p>presentation as given in the Athens Media Camp II #mcgr
By ageorg</p>
<p>This bookmark links to http://kcorax.net/blog/post/2009/03/15/From-the-Assembly-language-to-Cloud-Computing-and-the-DNA-to-the-Mankind.aspx</p>

	Possibly related posts (auto generated)
	
	PCs and the Internet: Addiction Magnets or just Tools? (1)
	News Reading Thoughts (4)
	Athens Startup Weekend 2008 (0)
	]]></description>
			<content:encoded><![CDATA[<p>presentation as given in the Athens Media Camp II #mcgr<br />
By <a href="http://kcorax.net">ageorg</a></p>
<p>This bookmark links to <a href="http://kcorax.net/blog/post/2009/03/15/From-the-Assembly-language-to-Cloud-Computing-and-the-DNA-to-the-Mankind.aspx">http://kcorax.net/blog/post/2009/03/15/From-the-Assembly-language-to-Cloud-Computing-and-the-DNA-to-the-Mankind.aspx</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> (1)</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/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/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/02/%c2%bb-%ce%bf-%cf%87%ce%ac%cf%81%cf%84%ce%b7%cf%82-%cf%84%ce%b7%cf%82-%ce%b5%ce%bb%ce%bb%ce%b7%ce%bd%ce%b9%ce%ba%ce%ae%cf%82-%ce%bc%cf%80%ce%bb%ce%bf%ce%b3%ce%ba%cf%8c%cf%83%cf%86%ce%b1%ce%b9%cf%81/" title="» Ο χάρτης της Ελληνικής μπλογκόσφαιρας &#8211; links &#038; downloads » NYLON (23/02/2009)">» Ο χάρτης της Ελληνικής μπλογκόσφαιρας &#8211; links &#038; downloads » NYLON</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/dawn-of-the-iconoclast-from-the-assembly-language-to-cloud-computing-and-the-dna-to-the-mankind/feed/</wfw:commentRss>
		<slash:comments>0</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>21 Ways to Write Posts that Are Guaranteed to Grow Your Blog</title>
		<link>http://dipot.com/2009/02/21-ways-to-write-posts-that-are-guaranteed-to-grow-your-blog/</link>
		<comments>http://dipot.com/2009/02/21-ways-to-write-posts-that-are-guaranteed-to-grow-your-blog/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:35 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/21-ways-to-write-posts-that-are-guaranteed-to-grow-your-blog/</guid>
		<description><![CDATA[<p>21 Ways to Write Posts that Are Guaranteed to Grow Your Blog
By ageorg</p>
<p>This bookmark links to http://www.problogger.net/archives/2009/01/21/21-ways-to-write-posts-that-are-guaranteed-to-grow-your-blog/</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (2)
	Top 20 Ways to Share a Great Blog Post (0)
	News Reading Thoughts (4)
	Microsoft IE and Standards Compliance (0)


]]></description>
			<content:encoded><![CDATA[<p>21 Ways to Write Posts that Are Guaranteed to Grow Your Blog<br />
By <a href="http://problogger.net">ageorg</a></p>
<p>This bookmark links to <a href="http://www.problogger.net/archives/2009/01/21/21-ways-to-write-posts-that-are-guaranteed-to-grow-your-blog/">http://www.problogger.net/archives/2009/01/21/21-ways-to-write-posts-that-are-guaranteed-to-grow-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> (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/03/top-20-ways-to-share-a-great-blog-post/" title="Top 20 Ways to Share a Great Blog Post (30/03/2009)">Top 20 Ways to Share a Great Blog Post</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> (4)</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/02/21-ways-to-write-posts-that-are-guaranteed-to-grow-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FriendFeed Optimization Feature Requests</title>
		<link>http://dipot.com/2009/02/friendfeed-optimization-feature-requests/</link>
		<comments>http://dipot.com/2009/02/friendfeed-optimization-feature-requests/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 14:55:05 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[feature requests]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[feedback]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[filtering]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[Reader]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WishList]]></category>

		<guid isPermaLink="false">http://dipot.com/?p=105</guid>
		<description><![CDATA[<p>
</p>
<p>As I mention from time to time, I never have enough of a good thing. FriendFeed is more than good, it&#8217;s great. Greatness has a tencency to increase expectations. These are a few optimization suggestions to raise the experience from &#8220;great&#8221; to &#8220;near perfect&#8221; (as new requests will probably always exist):</p>

Discussions is a great strength [...]]]></description>
			<content:encoded><![CDATA[<p><!--:el-->
</p>
<p><!--:--><!--:en-->As I mention from time to time, I never have enough of a good thing. <a href="http://friendfeed.com" target="_blank">FriendFeed</a> is more than good, it&#8217;s great. Greatness has a tencency to increase expectations. These are a few optimization suggestions to raise the experience from &#8220;great&#8221; to &#8220;near perfect&#8221; (as new requests will probably always exist):</p>
<ol>
<li>Discussions is a great strength of FriendFeed. Threading keeps all comments together. However, when following an interesting discussion, one needs to scroll all the way up to comment. Please also give us a &#8220;Comment&#8221; option after the last comment.</li>
<li>Lots of people, including myself, have asked for a <a href="http://twitter.com" target="_blank">Twitter</a>-like direct message (the only thing it does FriendFeed does not). An opt-in email-based scheme has been suggested as well. The only reason against direct messaging I can think of is desire to keep all conversations public. If this is the reason, please, go ahead and say so.</li>
<li><a href="http://friendfeed.com/realtime" target="_blank">RealTime</a> is great. However, it does lack some options otherwise available, like &#8220;hide&#8221;. Please unify the experience across all views. This would include a Realtime option for every view as well.</li>
<li>A person&#8217;s badge available everywhere is indeed very handy. It would be nice to also appear on mouse over the person&#8217;s picture and name in the title of a thread and on top of his/her feed. Even more important, subscribing to the author of a comment from his badge in the middle of the thread should not return us to the top of the page, especially with &lt;number of&gt; comments appearing collapsed, driving productivity way down, not to mention frustration.</li>
<li><a href="https://friendfeed.com/rooms/" target="_blank">Rooms</a> are indispensable. However, when posting, we are asked to choose our feed or one single room. This results in the posts not reaching all their potential audience, unless effort is duplicated. Please support multiple destinations for posts.</li>
<li>Many posts are actually links. The same links are often posted from different people at different times. They also result in interesting and informative conversations which end up being held in different parts of FriendFeed. Please merge all posts referring to the same link to the same thread. More posts of the same link can become &#8220;like&#8221;s and comments can all contribute to the same conversation.</li>
<li><a href="http://friendfeed.com/rooms/friendfeed-feedback " target="_blank">FriendFeed Feedback</a> serves, among other things, for feature requests. Chaotic as it is, it is impossible to marshal all these ideas. Please officially use a rating system for feature requests, so people can vote the most important ones in an orderly manner and FriendFeed can respond onte time for each of them.</li>
<li>When I read posts I often catch myself subconsciously filtering by author, instead of by content.Please give us an option for a view that hides or moves the author at the end of posts (maybe in small print).</li>
</ol>
<p>Finally, on a personal issue: I tried for a while to rely on RSS to read my FriendFeed feeds. To my surprise, Google Reader does a very poor job on catching these feeds. Consequently, I end up with 40 entries every 3 hours, instead of what should be around that many per minute during peak hours! Is this a Google Reader flaw, a FriendFeed flaw, or a matter of communication between the two systems? Can something be done about it?</p>
<p>My only real complaint with FriendFeed is in requests feedback. And I&#8217;m hopeful they will respond and optimize it and their response. They constantly improve things, so it&#8217;s only a matter of time.<!--:--></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<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/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/01/7-favorite-value-adding-friendfeed-applications/" title="<!--:en-->7 Favorite, Value Adding FriendFeed Applications<!--:--> (22/01/2009)"><!--:en-->7 Favorite, Value Adding FriendFeed Applications<!--:--></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/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>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/friendfeed-optimization-feature-requests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Optimize Firefox with 9+1 Must Have Add-ons </title>
		<link>http://dipot.com/2009/01/optimize-firefox-with-91-must-have-add-ons/</link>
		<comments>http://dipot.com/2009/01/optimize-firefox-with-91-must-have-add-ons/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 20:27:09 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips & How-to]]></category>
		<category><![CDATA[Adblock]]></category>
		<category><![CDATA[add-ons]]></category>
		<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[Delicious]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[downloader]]></category>
		<category><![CDATA[DownThemAll]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[favorites]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[filters]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[FireFTP]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[GReader]]></category>
		<category><![CDATA[Greasemonkey]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[networks]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[PDA]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[PlainOldFavorites]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[Reader]]></category>
		<category><![CDATA[Shareaholic]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[Split]]></category>
		<category><![CDATA[Tab]]></category>
		<category><![CDATA[Toolbar]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://dipot.com/?p=98</guid>
		<description><![CDATA[<p>
</p>
<p>During my early days as an IT support person (well before USB flash drives, external hard disks and recordable CDs), I picked up the habit to not be dependent on anything not included in Windows (v. 3.0, at the time) if I could help it. So I got used to working on the setups my [...]]]></description>
			<content:encoded><![CDATA[<p><!--:el-->
</p>
<p><!--:--><!--:en-->During my early days as an IT support person (well before USB flash drives, external hard disks and recordable CDs), I picked up the habit to not be dependent on anything not included in Windows (v. 3.0, at the time) if I could help it. So I got used to working on the setups my clients did.</p>
<p>I rarely support people this way any more. Although old habits die hard, I increasingly get used to my own, optimized setup. I am a Windows person wishing for a Linux future, so, I keep trying to use software also available for it in an effort to prepare for the switch at some point. I also prefer portable applications, ones that can run fully configured from a flash disk. Firefox is my browserfits these specs plus there is a plethora of great, value-adding add-ons to optimize it.</p>
<p>This is the list of the Add-ons I can&#8217;t live without (in alphabetical order):</p>
<ol>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/6424" target="_blank">Better GReader</a></li>
<p>As the name implies, Better GReader is a collection of scripts (also available for GreaseMonkey) that improve the Google Reader experience. I use the ones that bypass the GReader-iGoogle choice, color-code the list items, massively mark the items above the current one as read, show the feeds&#8217; favicons and make better use of the window real estate to fit more items in each page. Among other choices, there&#8217;s also the preview item within GReader choice I know people like, but I don&#8217;t use it. Better GReader does not require GreaseMonkey to work.</p>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/201" target="_blank">DownThemAll!</a></li>
<p>&#8220;The mass downloader for Fireox&#8221;. GetRight is better, but it&#8217;s not free. The only item in my wishlish for DownThemAll is ability to change the saved name of the document.</p>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/684" target="_blank">FireFTP</a></li>
<p>Not everyone uses FTP any more. If you do, FireFTP covers all the bascis: local and remote &#8220;explorer&#8221; windows, permissions change, synchronization, initial folders after logon etc.</p>
<li><a href="http://www.google.com/tools/firefox/toolbar/FT3/intl/en/" target="_blank">Google Toolbar for Firefox</a></li>
<p>Firefox does support several search engines out of the box and a lot more by customization. The Google Toolbar is very versatile and Google is my search engine of choice. I don&#8217;t use all of its features but those I do use save me a lot of clicks and data entry.</p>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1419" target="_blank">IE Tab</a></li>
<p>IE Tab is still one of the first add-ons I install, as it allows use of Internet Explorer&#8217;s rendering engine within a Firefox Tab. Furthermore it can remember IE-specific sites and kick-in automatically. I would prefer such sites did not exist (and they do tend to become extinct) but if you are a web developer, you need it anyway.</p>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/636" target="_blank">PDF Download</a></li>
<p>Earlier versions of Firefox did not work very well with acrobat documents. I think both Firefox and the acrobat plug-in have now improved but I&#8217;m still used to choosing whether to save or to just view a .pdf up front.</p>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/668" target="_blank">PlainOldFavorites</a></li>
<p>Windows and IE Favorites are not as compact as Firefox Bookmarks. I don&#8217;t like importing them, though; I prefer using PlainOldFavorites that adds a &#8220;Favorites&#8221; menu entry that works almost exactly like (Internet) Explorer&#8217;s. If only Shift Organize worked the same, it would be perfect! This is a must-have for people whose primary browser is IE.</p>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/5457" target="_blank">Shareaholic</a></li>
<p>If you like to post sites you visit on an extensive list of supported services (including my favorites Delicious, Facebook, FriendFeed, Google Reader, Twitter and many more), this is the tool of choice. Many sites use widgets for that but why not be prepared?</p>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/4287" target="_blank">Split Browser</a></li>
<p>I can live without Split Browser, except when I can&#8217;t. Like on US election day and Obama&#8217;s inauguration, when I had a tab split into 3 or 4 panes to follow several video etc. streams at once. If you need it, you need it.</ol>
<ul>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1865" target="_blank">Adblock Plus</a></li>
<p>Due to the debate whether blocking ads is hurting the Internet, I scruple about such add-0ns. Having said that, I asked about the most valuable Firefox add-on in Twitter and FriendFeed and the answer I got was Adblock. I am presenting Adblock Plus, which knows how to block many ads and is easily further configurable. Additionaly, four expansions, <a href="https://addons.mozilla.org/en-US/firefox/addon/4042">Adblock Plus Filter Uploader</a>, <a href="https://addons.mozilla.org/en-US/firefox/addon/1136">Adblock Filterset.G Updater</a>, <a href="https://addons.mozilla.org/en-US/firefox/addon/4364"> Adblock Plus: Element Hiding Helper</a> and <a href="https://addons.mozilla.org/en-US/firefox/addon/7037">Adblock Plus Watcher</a> help share our filters, update them automatically, hide text ads and debug Adblock Plus for even better results.</ul>
<p>There go my most valuable of around 35 Firefox add-ons I use. Which browser do you use and how do you optimize it? Please do share!<!--:--></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2008/06/firefox-3-add-ons-wishlist/" title="<!--:en-->Firefox 3 Add-ons Updates Wishlist<!--:--> (06/06/2008)"><!--:en-->Firefox 3 Add-ons Updates Wishlist<!--:--></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> (4)</li>
	<li><a href="http://dipot.com/2009/02/friendfeed-optimization-feature-requests/" title="<!--:en-->FriendFeed Optimization Feature Requests<!--:--> (02/02/2009)"><!--:en-->FriendFeed Optimization Feature Requests<!--:--></a> (0)</li>
	<li><a href="http://dipot.com/2009/03/clipmarks-firefox-add-ons/" title="Clipmarks :: Firefox Add-ons (21/03/2009)">Clipmarks :: Firefox Add-ons</a> (0)</li>
	<li><a href="http://dipot.com/2009/01/7-favorite-value-adding-friendfeed-applications/" title="<!--:en-->7 Favorite, Value Adding FriendFeed Applications<!--:--> (22/01/2009)"><!--:en-->7 Favorite, Value Adding FriendFeed Applications<!--:--></a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/01/optimize-firefox-with-91-must-have-add-ons/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>7 Favorite, Value Adding FriendFeed Applications</title>
		<link>http://dipot.com/2009/01/7-favorite-value-adding-friendfeed-applications/</link>
		<comments>http://dipot.com/2009/01/7-favorite-value-adding-friendfeed-applications/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 17:09:48 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Services]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[favorites]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[ffholic]]></category>
		<category><![CDATA[FriendDeck]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[Friendfeed Like Compatibility Calculator]]></category>
		<category><![CDATA[FriendFeedLinks]]></category>
		<category><![CDATA[FriendVenn]]></category>
		<category><![CDATA[FriendZone]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[Robert Scoble]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[RSS feeds]]></category>
		<category><![CDATA[Tab]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Twitter2FF]]></category>

		<guid isPermaLink="false">http://dipot.com/?p=75</guid>
		<description><![CDATA[<p>
</p>
<p>
<p></p>
<p>I like FriendFeed much better than Twitter; that&#8217;s no secret. In a conversation with @Trianta earlier today, it seems the only FriendFeed desktop clients out there are the Adobe Air-based Twhirl and feedalizr. They both leave a lot to be desired. There is also the announcement of  .NET-based FriendFeed Client. Web-based FriendFeed applications are also [...]]]></description>
			<content:encoded><![CDATA[<p><!--:el-->
</p>
<p><!--:--><!--:en-->
<p><br class="spacer_" /></p>
<p>I like <a href="http://friendfeed.com" target="_blank">FriendFeed</a> much better than <a href="http://twitter.com" target="_blank">Twitter</a>; that&#8217;s no secret. In a conversation with <a href="http://twitter.com/trianta" target="_blank">@Trianta</a> earlier today, it seems the only FriendFeed desktop clients out there are the Adobe Air-based <a href="http://www.twhirl.org/" target="_blank">Twhirl</a> and <a href="http://www.feedalizr.com" target="_blank">feedalizr</a>. They both leave a lot to be desired. There is also the announcement of  <span id="ctl00_ctl00_MasterContent_Content_wikiSourceLabel">.NET-based <a href="http://www.codeplex.com/friendfeedclient" target="_blank">FriendFeed Client</a></span>. Web-based FriendFeed applications are also scarce, compared to Twitter&#8217;s.</p>
<p>This isn&#8217;t a wish list. It&#8217;s a wish come true list, including existing applications that accomplish specific tasks and add great value to FriendFeed. True, there are many more than the following but those are my favorites (in no particular order):</p>
<ol>
<li><a href="http://comments.deasil.com/2008/05/29/friendfeed-like-compatibility-calculator/" target="_blank">Friendfeed Like Compatibility Calculator</a></li>
<p>FriendFeed stats only show 10 people who like me and another 10 that I like most. It&#8217;s not enough. Friendfeed Like Compatibility Calculator lists who gave a user the last 300 likes. Utilizing the 3 included modifiers, the list can show people with similar interests. It also shows the subscription status with a small &#8220;sub&#8221; next to each user. No password or passkey is required.<br class="spacer_" /></p>
<li><a href="http://ff.deasil.com/friendzone/" target="_blank">FriendZone?</a></li>
<p>Find out the top 100 subscribed to people among the people you subscribe to. This defines your friendfeed neighborhood, or FriendZone and results to contacts you may want to subscribe to, if not already. No password or passkey is required.</p>
<li><a href="http://ff.deasil.com/friendvenn/" target="_blank">FriendVenn</a></li>
<p>This is one function FriendFeed should perform itself. FriendVenn answers who subscribes to you that you don&#8217;t subscribe to. Only for oneself, as it requires both username and password (not passkey). It returns 3 columns: &#8220;people you are subscribed to&#8221;, &#8220;people who both sub to you and you sub to&#8221; &amp; &#8220;people who only subscribe to you&#8221; with totals for each.</p>
<li><a href="https://twitter2ff.appspot.com/" target="_blank">Twitter2FF </a></li>
<p>Twitter2FF helps sync Twitter follows and FriendFeed subscriptions both ways. It requires usename/password for Twitter and username/passkey for FriendFeed. It then provides a one-page, one-click per user interface to invite or subscribe to Twitter friends in FriendFeed and follow FFd Friends in Twitter. It uses its own expanding database of Twitter-FriendFeed account pairs, as well as the Twitter feeds of people you subscribe to in FFd. Friendfeed recently added its own support to massively <a href="https://friendfeed.com/settings/import/twitter" target="_blank">Find (and subscribe to) your Twitter friends on FriendFeed</a> but Twitter2FF is still useful for the other half of the job.</p>
<li><a href="http://www.frienddeck.com/" target="_blank">FriendDeck </a></li>
<p>FriendDeck runs different concurrent FriendFeed searches live. Each result includes all poster&#8217;s details, the originating service and Like, Re-Share &amp; Link ability.</p>
<li><a href="http://friendfeedlinks.com/" target="_blank">FriendFeedLinks</a></li>
<p>&#8220;FriendFeedLinks is a memetracker that tracks links shared on FriendFeed&#8221;. It also makes them available via RSS.</p>
<li><a href="http://ffholic.com" target="_blank">ffholic</a></li>
<p>ffholic reports (collectively or per user) on the most Discussed, Liked, Commented, Popular or Active Entries, Users, Rooms, Photos, Music or Videos (not all combinations exist) for the last 1, 7 or 30 days. The good thing is Entries, Photos, Music &amp; Videos reports are available in RSS feeds and include a language filter, powered by <a href="http://google.com">Google</a>. Last but not necessarily least, ffholic also presents user metrics and <a href="http://www.ffholic.com/ActivityPoints.aspx" target="_blank">calculates &#8220;activity points&#8221;</a>.</p>
</ol>
<p>Find more in <a href="http://ffapps.com/" target="_blank">FriendFeed Apps</a> and, please, let me know of other FriendFeed apps, clients etc. that you find useful. There is also <a href="http://friendfeed.com/scobleizer" target="_blank">Robert Scoble</a>&#8217;s discussion <a href="http://friendfeed.com/e/1e1a5ec7-5d66-427a-a585-b697bd58b084/To-new-friendfeeders-there-are-thousands-due-to/" target="_blank">“To new friendfeeders (there are thousands due to Twitter invites and follows), here&#8217;s what you need to know:”</a> on Friendfeed, with plenty of tips and links.</p>
<p><br class="spacer_" /></p>
<p><!--:--></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<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/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> (6)</li>
	<li><a href="http://dipot.com/2009/02/friendfeed-optimization-feature-requests/" title="<!--:en-->FriendFeed Optimization Feature Requests<!--:--> (02/02/2009)"><!--:en-->FriendFeed Optimization Feature Requests<!--:--></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>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/01/7-favorite-value-adding-friendfeed-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>News Reading Thoughts</title>
		<link>http://dipot.com/2009/01/news-reading-thoughts/</link>
		<comments>http://dipot.com/2009/01/news-reading-thoughts/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 16:46:27 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Tips & How-to]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Blogbridge]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Delicious]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[duplicates]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[filtering]]></category>
		<category><![CDATA[filters]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[Greasemonkey]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[Naftemporiki]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[Reader]]></category>
		<category><![CDATA[readers]]></category>
		<category><![CDATA[Robert Scoble]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p></p>
<p></p>
<p>I never have enough of a good thing. The first time I read the online edition of a magazine I immediately wished for a filtered edition which would only contain the articles of my choice. When Greek Naftemporiki newspaper&#8217;s online-edition provided filtered, personalized content, I immediately wished for a method to push the content to [...]]]></description>
			<content:encoded><![CDATA[<p><!--:el--></p>
<p><!--:--><!--:en--></p>
<p>I never have enough of a good thing. The first time I read the online edition of a magazine I immediately wished for a filtered edition which would only contain the articles of my choice. When Greek Naftemporiki newspaper&#8217;s online-edition provided filtered, personalized content, I immediately wished for a method to push the content to me, instead of going around the sites and soon after that RSS appeared (what I like about technology; it always catches up).</p>
<p>Now RSS is commonplace. Filters increase, but the implementations are still early and immature. For example, except for Google and similar sites, filters usually apply to a single site; that of the content source (like <a href="http://naftemporiki.gr/">http://naftemporiki.gr</a> -only in greek). RSS makes it easy to gather information from multiple sources to the feed reader of choice, but by itself provides no filtering in the source, except in the form of multiple feeds. So, where should filtering apply?</p>
<p>The tools have been expanding and improving. From the days of raw content we now have search, filtering, RSS and a multitude of clients to put them to good use. I tried the very good <a href="http://www.blogbridge.com/" target="_blank">BlogBridge</a> for a while for its keyword-based virtual feeds (thanks, <a href="http://friendfeed.com/karagos" target="_blank">karagos</a>, for suggesting it). It being offline and other problems I had (bad greek support and hitting the 600 feeds limit of the free edition while not convinced to buy yet) made me return to <a href="http://www.google.com/reader" target="_blank">Google Reader</a>. Regardless of reader, my everyday struggle to get and keep informed about the news and my interests has been getting very time-consuming, mainly due to increasing volume (never have enough of a good thing, remember?).</p>
<p>How many sources and how many pieces of news and info am I talking about? A quick count showed around 2800 items from my (ever expanding collection of) ~750 subscriptions in Google Reader in the last 12 hours. This includes my ~450 <a href="http://friendfeed.com" target="_blank"><span style="text-decoration: underline;"><span style="color: #0000ff;">FriendFeed</span></span></a> subcriptions feed, but not my ~900 people Twitter feed (strangely, only a small count of the tweets I follow make it to the RSS feed). Thankfully, a good portion of the tweets make it to FFd as well (although I fear not all FFd posts make it to the RSS feed, either). At this rate of incomings, it takes me 10-20&#8242;/h to browse everything, read and microblog about whatever catches my eye.</p>
<p>This is way too much time. In practice, I browse some of the titles when there&#8217;s time and only read the interesting items among them. I do use the <a href="http://userscripts.org/scripts/show/23671" target="_blank">Google Reader Filter</a> <a href="https://addons.mozilla.org/en-US/firefox/addon/748" target="_blank">GreaseMonkey</a> script to highlight items containing an increasing number (~100, so far) of keywords and it is helpfull. But the real problem is with the multiple sharing of the same (great) URLs in FriendFeed, which in turn produce multiple different (as they come from different users) items in Google Reader. Those are not caught by the script&#8217;s &#8220;hide duplicates&#8221; option.</p>
<p>So, for the time being, I consider avoiding duplication my #1 goal for increasing my news-reading productivity. I hope Friendfeed will listen and convert duplicate link posts to likes or comments of the first such post. This would also result in a major added benefit: aggregating all the relevant discussions in one thread, <a href="http://friendfeed.com/e/b142c711-7501-4280-a6df-8c850986375a/Sharing-or-resharing-equals-liking-Friendfeed/" target="_blank">as discussed here</a>. I find it so important, I even requested <a href="http://friendfeed.com/scobleizer" target="_blank">Robert Scoble</a> to lobby for this <a href="http://friendfeed.com/e/afab4367-f3b1-49fa-85a4-a8844424a107/Sharing-or-resharing-equals-liking-Friendfeed/" target="_blank">here</a> (I guess it&#8217;s impossible to read everything, even for him)!</p>
<p>#2 goal is to reduce sources that produce similar content, like press releases etc. <a href="http://www.google.com/news" target="_blank">Google News</a> does well about it but doesn&#8217;t track all the sites I do. Mechanisms of bookmarking sites like <a href="http://delicious.com/" target="_blank">Delicious</a> might also help, as they keep URL scoring. While I work on a plan, I&#8217;ll stick to goal #1. Please join!</p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><!--:--></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<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/02/friendfeed-optimization-feature-requests/" title="<!--:en-->FriendFeed Optimization Feature Requests<!--:--> (02/02/2009)"><!--:en-->FriendFeed Optimization Feature Requests<!--:--></a> (0)</li>
	<li><a href="http://dipot.com/2009/01/7-favorite-value-adding-friendfeed-applications/" title="<!--:en-->7 Favorite, Value Adding FriendFeed Applications<!--:--> (22/01/2009)"><!--:en-->7 Favorite, Value Adding FriendFeed Applications<!--:--></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/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>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/01/news-reading-thoughts/feed/</wfw:commentRss>
		<slash:comments>4</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>Athens Startup Weekend 2008</title>
		<link>http://dipot.com/2008/11/athens-startup-weekend-2008/</link>
		<comments>http://dipot.com/2008/11/athens-startup-weekend-2008/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 07:53:30 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[ASW]]></category>
		<category><![CDATA[Athens Startup Weekend]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[Reader]]></category>
		<category><![CDATA[readers]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[Tab]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>
</p>
<p>
<p></p>
<p></p>
<p>First things first. I told them all in person and I&#8217;m saying it here as well. Special thanks go to Andrew Hyde, the mind behind Startup Weekends, Alexandros Pagidas, the person who brought it in Athens, Patrick Malone, our host in Microsoft Innovation Center venue (Patrick and Lydia, you definitely improved Microsoft&#8217;s image for all [...]]]></description>
			<content:encoded><![CDATA[<p><!--:el-->
</p>
<p><!--:--><!--:en-->
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>First things first. I told them all in person and I&#8217;m saying it here as well. Special thanks go to <a href="http://andrewhyde.net/" target="_blank">Andrew Hyde</a>, the mind behind <a href="http://startupweekend.com" target="_blank">Startup Weekend</a>s, <a href="http://www.changeyourreality.com" target="_blank">Alexandros Pagidas</a>, the person who brought it in Athens, <a href="http://friendfeed.com/patrimal" target="_blank">Patrick Malone</a>, our host in Microsoft Innovation Center venue (Patrick and Lydia, you definitely improved Microsoft&#8217;s image for all of us), the sponsors of the event (Domino&#8217;s, Loumidis, Coca Cola-3E, Wind; hopefully I am not forgetting anyone) and all the professionals who dropped in to give us a hand. I won&#8217;t go into the event itself. Others have already done that; follow the event&#8217;s site and the links all over this post for that.</p>
<p>In danger of giving the feeling of repetition to readers of other relevant posts, I&#8217;ll say it: <a href="http://athens.startupweekend.com" target="_blank">Athens Startup Weekend</a> was a successful event and proved several points (Greeks can actually work together without shouting or arguing all the time, previous acquaintance is not important, teams can form without guidance or many introductions etc.). Plus, it produced and set off a number of ideas that can eventually work.</p>
<p><img class="alignleft" style="border: 0pt none; margin: 10px 2px;" title="Athens city lights and Acropolis illuminated" src="http://athens.startupweekend.com/wp-content/themes/Cutline%201.1/images/header_bsw.jpg" border="0" alt="Athens city lights and Acropolis illuminated" hspace="10" vspace="10" width="358" height="65" align="right" /></p>
<p>Andrew mentioned that Startup Weekends are not meant to create viable startups over the weekend but, rather, form a community among the participants. In a private conversation he said only 4 such startups were created in Startup Weekend history so far (unfortunately I didn&#8217;t get the names). The event is meant to prove that people who didn&#8217;t know each other before can sit around the same table, share and expand on an idea and make the most out of it in a very short time-frame. The important thing is not the idea, but that these people can work together, add their talents to a cause and produce a combined result that&#8217;s greater than the sum of their individual strengths. At the end of the day, these people become potential partners/collaborators in these very same or other promising projects.</p>
<p>The event put the best out of us all. We expressed our opinions and discussed difficult matters (we sometimes knew nothing about) in a civil, productive manner. We all got out of there with some fresh ideas, some new potential friends and partners, the knowledge that talented, cooperative people are there waiting to be found and great accomplishments are so much closer than expected. Indeed, 10 great projects were born.</p>
<p>I consider myself privileged to have been a part of it and hope the event does go annual so we can experience it again.</p>
<p>Here are a few additional relative links (no particular order; I&#8217;ll be happy to add links I&#8217;ve missed):</p>
<ul>
<li> <a href="http://opencoffee.gr/2008/11/25/athens-startup-weekend-brief-recap/">Athens Startup Weekend: brief recap</a> </li>
<li> <a href="http://metablogging.gr/archives/2083">Εντυπώσεις από το Athens Startup Weekend</a> </li>
<li> <a href="http://terrainnova.org/blog/?p=135">Athens Startup Weekend I</a> </li>
<li> <a title="Permanent Link: Athens Startup Weekend" href="http://www.john-nousis.com/entrepreneurship/athens-startup-weekend/">Athens Startup Weekend</a> </li>
<li> <a title="Επιτυχημένη η συμμετοχή μας στο Athens Startup Weekend 2008 #ASW" href="http://technologio.wordpress.com/2008/11/24/%ce%bc%ce%b1%cf%82-%cf%83%cf%84%ce%bf-athens-startup-weekend-2008/">Επιτυχημένη η συμμετοχή μας στο Athens Startup Weekend 2008 #ASW</a> </li>
<li> <a href="http://gtziralis.com/post/61232701/introducing-howsocial-ru-a-project-of-startup-weekend">Introducing HowSocial.ru, a project of Startup Weekend Athens</a> </li>
</ul>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><!--:--></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/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/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/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>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2008/11/athens-startup-weekend-2008/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> (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>
	</channel>
</rss>

