<?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; WordPress</title>
	<atom:link href="http://dipot.com/tag/wordpress/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>WP-Blogger &#124; Tag Archive &#124; Wordpress Plugins</title>
		<link>http://dipot.com/2009/04/wp-blogger%c2%a0%c2%a0tag-archive%c2%a0%c2%a0wordpress-plugins/</link>
		<comments>http://dipot.com/2009/04/wp-blogger%c2%a0%c2%a0tag-archive%c2%a0%c2%a0wordpress-plugins/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 12:46:24 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/04/wp-blogger%c2%a0%c2%a0tag-archive%c2%a0%c2%a0wordpress-plugins/</guid>
		<description><![CDATA[<p>WP-Blogger &#124; Tag Archive &#124; Wordpress Plugins
By ageorg</p>
<p>This bookmark links to http://wp-blogger.com/tag/wordpress-plugins/</p>






A Remarkable Book from Wiley-Finance












"An excellent book!"
&#160;&#160;&#8212; Paul Wilmott


Want to break into the lucrative world of trading and quantitative finance? You need  this book!








	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress Plugins Used On The Michel Fortin Blog &#124; The Michel Fortin [...]]]></description>
			<content:encoded><![CDATA[<p>WP-Blogger | Tag Archive | Wordpress Plugins<br />
By <a href="http://wp-blogger.com">ageorg</a></p>
<p>This bookmark links to <a href="http://wp-blogger.com/tag/wordpress-plugins/">http://wp-blogger.com/tag/wordpress-plugins/</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/04/wordpress-plugins-used-on-the-michel-fortin%c2%a0blog-the-michel-fortin-blog/" title="WordPress Plugins Used On The Michel Fortin Blog | The Michel Fortin Blog (14/04/2009)">WordPress Plugins Used On The Michel Fortin Blog | The Michel Fortin Blog</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/02/top-60-incredibly-useful-wordpress-plugins-to-power-up-your-blog/" title="Top 60 incredibly useful WordPress plugins to power up your blog (25/02/2009)">Top 60 incredibly useful WordPress plugins to power up your blog</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/04/wp-blogger%c2%a0%c2%a0tag-archive%c2%a0%c2%a0wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Plugins Used On The Michel Fortin Blog &#124; The Michel Fortin Blog</title>
		<link>http://dipot.com/2009/04/wordpress-plugins-used-on-the-michel-fortin%c2%a0blog-the-michel-fortin-blog/</link>
		<comments>http://dipot.com/2009/04/wordpress-plugins-used-on-the-michel-fortin%c2%a0blog-the-michel-fortin-blog/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 07:41:58 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/04/wordpress-plugins-used-on-the-michel-fortin%c2%a0blog-the-michel-fortin-blog/</guid>
		<description><![CDATA[<p>Excellent collection of WordPress plugins!
By ageorg</p>
<p>This bookmark links to http://www.michelfortin.com/wordpress-plugins-michel-fortin-blog/</p>

	Possibly related posts (auto generated)
	
	WP-Blogger &#124; Tag Archive &#124; Wordpress Plugins (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (2)
	Top 60 incredibly useful WordPress plugins to power up your blog (0)
	Feeds to Content &#038; Categories Optimization in WordPress (1)


]]></description>
			<content:encoded><![CDATA[<p>Excellent collection of WordPress plugins!<br />
By <a href="http://michelfortin.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.michelfortin.com/wordpress-plugins-michel-fortin-blog/">http://www.michelfortin.com/wordpress-plugins-michel-fortin-blog/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wp-blogger%c2%a0%c2%a0tag-archive%c2%a0%c2%a0wordpress-plugins/" title="WP-Blogger | Tag Archive | Wordpress Plugins (22/04/2009)">WP-Blogger | Tag Archive | Wordpress Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2009/02/top-60-incredibly-useful-wordpress-plugins-to-power-up-your-blog/" title="Top 60 incredibly useful WordPress plugins to power up your blog (25/02/2009)">Top 60 incredibly useful WordPress plugins to power up your blog</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/04/wordpress-plugins-used-on-the-michel-fortin%c2%a0blog-the-michel-fortin-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress plugin &#8211; Listing your social media profiles :: Her Media &#8211; Online Advertising, Promotion, and Marketing</title>
		<link>http://dipot.com/2009/04/wordpress-plugin-listing-your-social-media-profiles-her-media-online-advertising-promotion-and-marketing/</link>
		<comments>http://dipot.com/2009/04/wordpress-plugin-listing-your-social-media-profiles-her-media-online-advertising-promotion-and-marketing/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 17:35:39 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/04/wordpress-plugin-listing-your-social-media-profiles-her-media-online-advertising-promotion-and-marketing/</guid>
		<description><![CDATA[<p>Wordpress plugin &#8211; Listing your social media profiles :: Her Media &#8211; Online Advertising, Promotion, and Marketing
By ageorg</p>
<p>This bookmark links to http://her-media.com/2009/03/wordpress-plugin-listing-your-social-media-profiles/</p>

	Possibly related posts (auto generated)
	
	Athens Startup Weekend 2008 (0)
	» Ο χάρτης της Ελληνικής μπλογκόσφαιρας &#8211; links &#038; downloads » NYLON (0)
	Social Media &#8211; from theory to praxis (0)
	PCs and the Internet: Addiction Magnets or [...]]]></description>
			<content:encoded><![CDATA[<p>Wordpress plugin &#8211; Listing your social media profiles :: Her Media &#8211; Online Advertising, Promotion, and Marketing<br />
By <a href="http://her-media.com">ageorg</a></p>
<p>This bookmark links to <a href="http://her-media.com/2009/03/wordpress-plugin-listing-your-social-media-profiles/">http://her-media.com/2009/03/wordpress-plugin-listing-your-social-media-profiles/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<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/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>
	<li><a href="http://dipot.com/2009/02/social-media-from-theory-to-praxis/" title="Social Media &#8211; from theory to praxis (23/02/2009)">Social Media &#8211; from theory to praxis</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/03/how-to-manage-multiple-social-media-profiles/" title="HOW TO: Manage Multiple Social Media Profiles (09/03/2009)">HOW TO: Manage Multiple Social Media Profiles</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/04/wordpress-plugin-listing-your-social-media-profiles-her-media-online-advertising-promotion-and-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress › Comment-Images « WordPress Plugins</title>
		<link>http://dipot.com/2009/04/wordpress-%e2%80%ba-comment-images-%c2%ab-wordpress-plugins/</link>
		<comments>http://dipot.com/2009/04/wordpress-%e2%80%ba-comment-images-%c2%ab-wordpress-plugins/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 10:37:03 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/04/wordpress-%e2%80%ba-comment-images-%c2%ab-wordpress-plugins/</guid>
		<description><![CDATA[<p>Enable comments with images in WordPress up to 2.7.
By ageorg</p>
<p>This bookmark links to http://wordpress.org/extend/plugins/wordpress-comment-images/</p>

	Possibly related posts (auto generated)
	
	WP-Blogger &#124; Tag Archive &#124; Wordpress Plugins (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress › RSSupplement « WordPress Plugins (0)
	WordPress › Ozh&#8217; Better Feed « WordPress Plugins (0)
	WordPress › Advanced Category Excluder « WordPress Plugins (0)


]]></description>
			<content:encoded><![CDATA[<p>Enable comments with images in WordPress up to 2.7.<br />
By <a href="http://wordpress.org">ageorg</a></p>
<p>This bookmark links to <a href="http://wordpress.org/extend/plugins/wordpress-comment-images/">http://wordpress.org/extend/plugins/wordpress-comment-images/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wp-blogger%c2%a0%c2%a0tag-archive%c2%a0%c2%a0wordpress-plugins/" title="WP-Blogger | Tag Archive | Wordpress Plugins (22/04/2009)">WP-Blogger | Tag Archive | Wordpress Plugins</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/02/wordpress-%e2%80%ba-rssupplement-%c2%ab-wordpress-plugins/" title="WordPress › RSSupplement « WordPress Plugins (23/02/2009)">WordPress › RSSupplement « WordPress Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/wordpress-%e2%80%ba-ozh-better-feed-%c2%ab-wordpress-plugins/" title="WordPress › Ozh&#8217; Better Feed « WordPress Plugins (23/02/2009)">WordPress › Ozh&#8217; Better Feed « WordPress Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-%e2%80%ba-advanced-category-excluder-%c2%ab-wordpress-plugins/" title="WordPress › Advanced Category Excluder « WordPress Plugins (02/04/2009)">WordPress › Advanced Category Excluder « WordPress Plugins</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/04/wordpress-%e2%80%ba-comment-images-%c2%ab-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress › Advanced Category Excluder « WordPress Plugins</title>
		<link>http://dipot.com/2009/04/wordpress-%e2%80%ba-advanced-category-excluder-%c2%ab-wordpress-plugins/</link>
		<comments>http://dipot.com/2009/04/wordpress-%e2%80%ba-advanced-category-excluder-%c2%ab-wordpress-plugins/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 21:49:24 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Advanced Category Excluder]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/04/wordpress-%e2%80%ba-advanced-category-excluder-%c2%ab-wordpress-plugins-2/</guid>
		<description><![CDATA[<p>WordPress › Advanced Category Excluder « WordPress Plugins
By ageorg</p>
<p>This bookmark links to http://wordpress.org/extend/plugins/advanced-category-excluder/</p>

	Possibly related posts (auto generated)
	
	Feeds to Content &#038; Categories Optimization in WordPress (1)
	WP-Blogger &#124; Tag Archive &#124; Wordpress Plugins (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress › RSSupplement « WordPress Plugins (0)
	WordPress › Ozh&#8217; Better Feed « WordPress Plugins (0)


]]></description>
			<content:encoded><![CDATA[<p>WordPress › Advanced Category Excluder « WordPress Plugins<br />
By <a href="http://wordpress.org">ageorg</a></p>
<p>This bookmark links to <a href="http://wordpress.org/extend/plugins/advanced-category-excluder/">http://wordpress.org/extend/plugins/advanced-category-excluder/</a></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/wp-blogger%c2%a0%c2%a0tag-archive%c2%a0%c2%a0wordpress-plugins/" title="WP-Blogger | Tag Archive | Wordpress Plugins (22/04/2009)">WP-Blogger | Tag Archive | Wordpress Plugins</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/02/wordpress-%e2%80%ba-rssupplement-%c2%ab-wordpress-plugins/" title="WordPress › RSSupplement « WordPress Plugins (23/02/2009)">WordPress › RSSupplement « WordPress Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/wordpress-%e2%80%ba-ozh-better-feed-%c2%ab-wordpress-plugins/" title="WordPress › Ozh&#8217; Better Feed « WordPress Plugins (23/02/2009)">WordPress › Ozh&#8217; Better Feed « WordPress Plugins</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/04/wordpress-%e2%80%ba-advanced-category-excluder-%c2%ab-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Ways to Exclude Content from WordPress Feeds • Perishable Press</title>
		<link>http://dipot.com/2009/04/3-ways-to-exclude-content-from-wordpress-feeds-%e2%80%a2-perishable-press/</link>
		<comments>http://dipot.com/2009/04/3-ways-to-exclude-content-from-wordpress-feeds-%e2%80%a2-perishable-press/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 21:49:23 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/04/3-ways-to-exclude-content-from-wordpress-feeds-%e2%80%a2-perishable-press-2/</guid>
		<description><![CDATA[<p>3 Ways to Exclude Content from WordPress Feeds • Perishable Press
By ageorg</p>
<p>This bookmark links to http://perishablepress.com/press/2008/06/11/3-ways-to-exclude-content-from-wordpress-feeds/</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	Feeds to Content &#038; Categories Optimization in WordPress (1)
	WordPress › RSSupplement « WordPress Plugins (0)
	WordPress › Ozh&#8217; Better Feed « WordPress Plugins (0)
	WordPress Optimization: Compatibility between Themes [...]]]></description>
			<content:encoded><![CDATA[<p>3 Ways to Exclude Content from WordPress Feeds • Perishable Press<br />
By <a href="http://perishablepress.com">ageorg</a></p>
<p>This bookmark links to <a href="http://perishablepress.com/press/2008/06/11/3-ways-to-exclude-content-from-wordpress-feeds/">http://perishablepress.com/press/2008/06/11/3-ways-to-exclude-content-from-wordpress-feeds/</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/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/wordpress-%e2%80%ba-rssupplement-%c2%ab-wordpress-plugins/" title="WordPress › RSSupplement « WordPress Plugins (23/02/2009)">WordPress › RSSupplement « WordPress Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/wordpress-%e2%80%ba-ozh-better-feed-%c2%ab-wordpress-plugins/" title="WordPress › Ozh&#8217; Better Feed « WordPress Plugins (23/02/2009)">WordPress › Ozh&#8217; Better Feed « WordPress Plugins</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>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/04/3-ways-to-exclude-content-from-wordpress-feeds-%e2%80%a2-perishable-press/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customizing RSS Feed Links for Wordpress.com and WordPress Sidebar Widgets « Lorelle on WordPress</title>
		<link>http://dipot.com/2009/04/customizing-rss-feed-links-for-wordpresscom-and-wordpress-sidebar-widgets-%c2%ab-lorelle-on-wordpress/</link>
		<comments>http://dipot.com/2009/04/customizing-rss-feed-links-for-wordpresscom-and-wordpress-sidebar-widgets-%c2%ab-lorelle-on-wordpress/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 21:49:22 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/04/customizing-rss-feed-links-for-wordpresscom-and-wordpress-sidebar-widgets-%c2%ab-lorelle-on-wordpress-2/</guid>
		<description><![CDATA[<p>Customizing RSS Feed Links for Wordpress.com and WordPress Sidebar Widgets « Lorelle on WordPress
By ageorg</p>
<p>This bookmark links to http://lorelle.wordpress.com/2006/03/27/customizing-rss-feed-links-for-wordpresscom-and-wordpress-sidebar-widgets/</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress › RSSupplement « WordPress Plugins (0)
	Feeds to Content &#038; Categories Optimization in WordPress (1)
	Add RSS Feed Link Icons to WordPress Category Listings • [...]]]></description>
			<content:encoded><![CDATA[<p>Customizing RSS Feed Links for Wordpress.com and WordPress Sidebar Widgets « Lorelle on WordPress<br />
By <a href="http://lorelle.wordpress.com">ageorg</a></p>
<p>This bookmark links to <a href="http://lorelle.wordpress.com/2006/03/27/customizing-rss-feed-links-for-wordpresscom-and-wordpress-sidebar-widgets/">http://lorelle.wordpress.com/2006/03/27/customizing-rss-feed-links-for-wordpresscom-and-wordpress-sidebar-widgets/</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/02/wordpress-%e2%80%ba-rssupplement-%c2%ab-wordpress-plugins/" title="WordPress › RSSupplement « WordPress Plugins (23/02/2009)">WordPress › RSSupplement « WordPress Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/" title="Feeds to Content &#038; Categories Optimization in WordPress (01/04/2009)">Feeds to Content &#038; Categories Optimization in WordPress</a> (1)</li>
	<li><a href="http://dipot.com/2009/03/add-rss-feed-link-icons-to-wordpress-category-listings-%e2%80%a2-perishable-press/" title="Add RSS Feed Link Icons to WordPress Category Listings • Perishable Press (27/03/2009)">Add RSS Feed Link Icons to WordPress Category Listings • Perishable Press</a> (0)</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>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/04/customizing-rss-feed-links-for-wordpresscom-and-wordpress-sidebar-widgets-%c2%ab-lorelle-on-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</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>Add RSS Feed Link Icons to WordPress Category Listings • Perishable Press</title>
		<link>http://dipot.com/2009/03/add-rss-feed-link-icons-to-wordpress-category-listings-%e2%80%a2-perishable-press/</link>
		<comments>http://dipot.com/2009/03/add-rss-feed-link-icons-to-wordpress-category-listings-%e2%80%a2-perishable-press/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 16:22:39 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/add-rss-feed-link-icons-to-wordpress-category-listings-%e2%80%a2-perishable-press/</guid>
		<description><![CDATA[<p>Category LiveBookmarks Plus
By ageorg</p>
<p>This bookmark links to http://perishablepress.com/press/2006/11/20/add-rss-feed-link-icons/</p>

	Possibly related posts (auto generated)
	
	Feeds to Content &#038; Categories Optimization in WordPress (1)
	]]></description>
			<content:encoded><![CDATA[<p>Category LiveBookmarks Plus<br />
By <a href="http://perishablepress.com">ageorg</a></p>
<p>This bookmark links to <a href="http://perishablepress.com/press/2006/11/20/add-rss-feed-link-icons/">http://perishablepress.com/press/2006/11/20/add-rss-feed-link-icons/</a></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/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/02/wordpress-%e2%80%ba-rssupplement-%c2%ab-wordpress-plugins/" title="WordPress › RSSupplement « WordPress Plugins (23/02/2009)">WordPress › RSSupplement « WordPress Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/customizing-rss-feed-links-for-wordpresscom-and-wordpress-sidebar-widgets-%c2%ab-lorelle-on-wordpress/" title="Customizing RSS Feed Links for Wordpress.com and WordPress Sidebar Widgets « Lorelle on WordPress (02/04/2009)">Customizing RSS Feed Links for Wordpress.com and WordPress Sidebar Widgets « Lorelle on WordPress</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/add-rss-feed-link-icons-to-wordpress-category-listings-%e2%80%a2-perishable-press/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>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>20 of the Best SEO Plugins for WordPress</title>
		<link>http://dipot.com/2009/03/20-of-the-best-seo-plugins-for-wordpress/</link>
		<comments>http://dipot.com/2009/03/20-of-the-best-seo-plugins-for-wordpress/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 16:40:27 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/20-of-the-best-seo-plugins-for-wordpress/</guid>
		<description><![CDATA[<p>20 of the Best SEO Plugins for WordPress
By ageorg</p>
<p>This bookmark links to http://mashable.com/2009/03/20/wordpress-seo-plugins/</p>

	Possibly related posts (auto generated)
	
	WP-Blogger &#124; Tag Archive &#124; Wordpress Plugins (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress › RSSupplement « WordPress Plugins (0)
	WordPress › Ozh&#8217; Better Feed « WordPress Plugins (0)
	WordPress › Comment-Images « WordPress Plugins (0)


]]></description>
			<content:encoded><![CDATA[<p>20 of the Best SEO Plugins for WordPress<br />
By <a href="http://mashable.com">ageorg</a></p>
<p>This bookmark links to <a href="http://mashable.com/2009/03/20/wordpress-seo-plugins/">http://mashable.com/2009/03/20/wordpress-seo-plugins/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wp-blogger%c2%a0%c2%a0tag-archive%c2%a0%c2%a0wordpress-plugins/" title="WP-Blogger | Tag Archive | Wordpress Plugins (22/04/2009)">WP-Blogger | Tag Archive | Wordpress Plugins</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/02/wordpress-%e2%80%ba-rssupplement-%c2%ab-wordpress-plugins/" title="WordPress › RSSupplement « WordPress Plugins (23/02/2009)">WordPress › RSSupplement « WordPress Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/wordpress-%e2%80%ba-ozh-better-feed-%c2%ab-wordpress-plugins/" title="WordPress › Ozh&#8217; Better Feed « WordPress Plugins (23/02/2009)">WordPress › Ozh&#8217; Better Feed « WordPress Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-%e2%80%ba-comment-images-%c2%ab-wordpress-plugins/" title="WordPress › Comment-Images « WordPress Plugins (08/04/2009)">WordPress › Comment-Images « WordPress Plugins</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/20-of-the-best-seo-plugins-for-wordpress/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>Optimizing Your Wordpress Title Tag &#124; Agent SEO</title>
		<link>http://dipot.com/2009/02/optimizing-your-wordpress-title-tag-agent-seo/</link>
		<comments>http://dipot.com/2009/02/optimizing-your-wordpress-title-tag-agent-seo/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 23:22:41 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/optimizing-your-wordpress-title-tag-agent-seo/</guid>
		<description><![CDATA[<p>Optimizing Your Wordpress Title Tag &#124; Agent SEO
By ageorg</p>
<p>This bookmark links to http://www.agent-seo.com/wordpress/optimizing-your-wordpress-title-tag/</p>

	Possibly related posts (auto generated)
	
	WP-Blogger &#124; Tag Archive &#124; Wordpress Plugins (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress › RSSupplement « WordPress Plugins (0)
	WordPress › Ozh&#8217; Better Feed « WordPress Plugins (0)
	WordPress › Comment-Images « WordPress Plugins (0)


]]></description>
			<content:encoded><![CDATA[<p>Optimizing Your Wordpress Title Tag | Agent SEO<br />
By <a href="http://agent-seo.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.agent-seo.com/wordpress/optimizing-your-wordpress-title-tag/">http://www.agent-seo.com/wordpress/optimizing-your-wordpress-title-tag/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wp-blogger%c2%a0%c2%a0tag-archive%c2%a0%c2%a0wordpress-plugins/" title="WP-Blogger | Tag Archive | Wordpress Plugins (22/04/2009)">WP-Blogger | Tag Archive | Wordpress Plugins</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/02/wordpress-%e2%80%ba-rssupplement-%c2%ab-wordpress-plugins/" title="WordPress › RSSupplement « WordPress Plugins (23/02/2009)">WordPress › RSSupplement « WordPress Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/wordpress-%e2%80%ba-ozh-better-feed-%c2%ab-wordpress-plugins/" title="WordPress › Ozh&#8217; Better Feed « WordPress Plugins (23/02/2009)">WordPress › Ozh&#8217; Better Feed « WordPress Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-%e2%80%ba-comment-images-%c2%ab-wordpress-plugins/" title="WordPress › Comment-Images « WordPress Plugins (08/04/2009)">WordPress › Comment-Images « WordPress Plugins</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/optimizing-your-wordpress-title-tag-agent-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 60 incredibly useful WordPress plugins to power up your blog</title>
		<link>http://dipot.com/2009/02/top-60-incredibly-useful-wordpress-plugins-to-power-up-your-blog/</link>
		<comments>http://dipot.com/2009/02/top-60-incredibly-useful-wordpress-plugins-to-power-up-your-blog/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 22:16:26 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/top-60-incredibly-useful-wordpress-plugins-to-power-up-your-blog/</guid>
		<description><![CDATA[<p>Top 60 incredibly useful WordPress plugins to power up your blog
By ageorg</p>
<p>This bookmark links to http://garmahis.com/reviews/top-wordpress-plugins/</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (2)
	Feeds to Content &#038; Categories Optimization in WordPress (1)
	WP-Blogger &#124; Tag Archive &#124; Wordpress Plugins (0)
	WordPress Plugins Used On The Michel Fortin Blog &#124; The [...]]]></description>
			<content:encoded><![CDATA[<p>Top 60 incredibly useful WordPress plugins to power up your blog<br />
By <a href="http://garmahis.com">ageorg</a></p>
<p>This bookmark links to <a href="http://garmahis.com/reviews/top-wordpress-plugins/">http://garmahis.com/reviews/top-wordpress-plugins/</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/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/wp-blogger%c2%a0%c2%a0tag-archive%c2%a0%c2%a0wordpress-plugins/" title="WP-Blogger | Tag Archive | Wordpress Plugins (22/04/2009)">WP-Blogger | Tag Archive | Wordpress Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-plugins-used-on-the-michel-fortin%c2%a0blog-the-michel-fortin-blog/" title="WordPress Plugins Used On The Michel Fortin Blog | The Michel Fortin Blog (14/04/2009)">WordPress Plugins Used On The Michel Fortin Blog | The Michel Fortin Blog</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/top-60-incredibly-useful-wordpress-plugins-to-power-up-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20 WordPress Tricks to Improve Your Blog</title>
		<link>http://dipot.com/2009/02/20-wordpress-tricks-to-improve-your-blog/</link>
		<comments>http://dipot.com/2009/02/20-wordpress-tricks-to-improve-your-blog/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:37 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/20-wordpress-tricks-to-improve-your-blog/</guid>
		<description><![CDATA[<p>20 WordPress Tricks to Improve Your Blog
By ageorg</p>
<p>This bookmark links to http://designm.ag/design/wordpress-tricks/</p>

	Possibly related posts (auto generated)
	
	WP-Blogger &#124; Tag Archive &#124; Wordpress Plugins (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress Plugins Used On The Michel Fortin Blog &#124; The Michel Fortin Blog (0)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (2)
	Top 60 incredibly useful WordPress plugins to power up [...]]]></description>
			<content:encoded><![CDATA[<p>20 WordPress Tricks to Improve Your Blog<br />
By <a href="http://designm.ag">ageorg</a></p>
<p>This bookmark links to <a href="http://designm.ag/design/wordpress-tricks/">http://designm.ag/design/wordpress-tricks/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wp-blogger%c2%a0%c2%a0tag-archive%c2%a0%c2%a0wordpress-plugins/" title="WP-Blogger | Tag Archive | Wordpress Plugins (22/04/2009)">WP-Blogger | Tag Archive | Wordpress Plugins</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/wordpress-plugins-used-on-the-michel-fortin%c2%a0blog-the-michel-fortin-blog/" title="WordPress Plugins Used On The Michel Fortin Blog | The Michel Fortin Blog (14/04/2009)">WordPress Plugins Used On The Michel Fortin Blog | The Michel Fortin Blog</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/02/top-60-incredibly-useful-wordpress-plugins-to-power-up-your-blog/" title="Top 60 incredibly useful WordPress plugins to power up your blog (25/02/2009)">Top 60 incredibly useful WordPress plugins to power up your blog</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/20-wordpress-tricks-to-improve-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress › Ozh&#8217; Better Feed « WordPress Plugins</title>
		<link>http://dipot.com/2009/02/wordpress-%e2%80%ba-ozh-better-feed-%c2%ab-wordpress-plugins/</link>
		<comments>http://dipot.com/2009/02/wordpress-%e2%80%ba-ozh-better-feed-%c2%ab-wordpress-plugins/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:37 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/wordpress-%e2%80%ba-ozh-better-feed-%c2%ab-wordpress-plugins/</guid>
		<description><![CDATA[<p>WordPress › Ozh&#8217; Better Feed « WordPress Plugins
By ageorg</p>
<p>This bookmark links to http://wordpress.org/extend/plugins/ozh-better-feed/</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress › RSSupplement « WordPress Plugins (0)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (2)
	Feeds to Content &#038; Categories Optimization in WordPress (1)
	WP-Blogger &#124; Tag Archive &#124; Wordpress Plugins (0)


]]></description>
			<content:encoded><![CDATA[<p>WordPress › Ozh&#8217; Better Feed « WordPress Plugins<br />
By <a href="http://wordpress.org">ageorg</a></p>
<p>This bookmark links to <a href="http://wordpress.org/extend/plugins/ozh-better-feed/">http://wordpress.org/extend/plugins/ozh-better-feed/</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/02/wordpress-%e2%80%ba-rssupplement-%c2%ab-wordpress-plugins/" title="WordPress › RSSupplement « WordPress Plugins (23/02/2009)">WordPress › RSSupplement « WordPress Plugins</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/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/wp-blogger%c2%a0%c2%a0tag-archive%c2%a0%c2%a0wordpress-plugins/" title="WP-Blogger | Tag Archive | Wordpress Plugins (22/04/2009)">WP-Blogger | Tag Archive | Wordpress Plugins</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/wordpress-%e2%80%ba-ozh-better-feed-%c2%ab-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress › RSSupplement « WordPress Plugins</title>
		<link>http://dipot.com/2009/02/wordpress-%e2%80%ba-rssupplement-%c2%ab-wordpress-plugins/</link>
		<comments>http://dipot.com/2009/02/wordpress-%e2%80%ba-rssupplement-%c2%ab-wordpress-plugins/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:37 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/wordpress-%e2%80%ba-rssupplement-%c2%ab-wordpress-plugins/</guid>
		<description><![CDATA[<p>Adds WP functions, copyright, and more to your RSS feed items.
By ageorg</p>
<p>This bookmark links to http://wordpress.org/extend/plugins/rssupplement/</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (2)
	Feeds to Content &#038; Categories Optimization in WordPress (1)
	]]></description>
			<content:encoded><![CDATA[<p>Adds WP functions, copyright, and more to your RSS feed items.<br />
By <a href="http://wordpress.org">ageorg</a></p>
<p>This bookmark links to <a href="http://wordpress.org/extend/plugins/rssupplement/">http://wordpress.org/extend/plugins/rssupplement/</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/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/02/wordpress-%e2%80%ba-ozh-better-feed-%c2%ab-wordpress-plugins/" title="WordPress › Ozh&#8217; Better Feed « WordPress Plugins (23/02/2009)">WordPress › Ozh&#8217; Better Feed « WordPress Plugins</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/wordpress-%e2%80%ba-rssupplement-%c2%ab-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Steps To Protect The Admin Area In WordPress &#124; Developer&#8217;s Toolbox &#124; Smashing Magazine</title>
		<link>http://dipot.com/2009/02/10-steps-to-protect-the-admin-area-in-wordpress-developers-toolbox-smashing-magazine/</link>
		<comments>http://dipot.com/2009/02/10-steps-to-protect-the-admin-area-in-wordpress-developers-toolbox-smashing-magazine/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:36 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/10-steps-to-protect-the-admin-area-in-wordpress-developers-toolbox-smashing-magazine/</guid>
		<description><![CDATA[<p>10 Steps To Protect The Admin Area In WordPress &#124; Developer&#8217;s Toolbox &#124; Smashing Magazine
By ageorg</p>
<p>This bookmark links to http://www.smashingmagazine.com/2009/01/26/10-steps-to-protect-the-admin-area-in-wordpress/</p>

	Possibly related posts (auto generated)
	
	WP-Blogger &#124; Tag Archive &#124; Wordpress Plugins (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress › RSSupplement « WordPress Plugins (0)
	WordPress › Ozh&#8217; Better Feed « WordPress Plugins (0)
	WordPress › Comment-Images « WordPress Plugins [...]]]></description>
			<content:encoded><![CDATA[<p>10 Steps To Protect The Admin Area In WordPress | Developer&#8217;s Toolbox | Smashing Magazine<br />
By <a href="http://smashingmagazine.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.smashingmagazine.com/2009/01/26/10-steps-to-protect-the-admin-area-in-wordpress/">http://www.smashingmagazine.com/2009/01/26/10-steps-to-protect-the-admin-area-in-wordpress/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wp-blogger%c2%a0%c2%a0tag-archive%c2%a0%c2%a0wordpress-plugins/" title="WP-Blogger | Tag Archive | Wordpress Plugins (22/04/2009)">WP-Blogger | Tag Archive | Wordpress Plugins</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/02/wordpress-%e2%80%ba-rssupplement-%c2%ab-wordpress-plugins/" title="WordPress › RSSupplement « WordPress Plugins (23/02/2009)">WordPress › RSSupplement « WordPress Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/wordpress-%e2%80%ba-ozh-better-feed-%c2%ab-wordpress-plugins/" title="WordPress › Ozh&#8217; Better Feed « WordPress Plugins (23/02/2009)">WordPress › Ozh&#8217; Better Feed « WordPress Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-%e2%80%ba-comment-images-%c2%ab-wordpress-plugins/" title="WordPress › Comment-Images « WordPress Plugins (08/04/2009)">WordPress › Comment-Images « WordPress Plugins</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/10-steps-to-protect-the-admin-area-in-wordpress-developers-toolbox-smashing-magazine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FriendFeed Activity Widget • Evan Sims</title>
		<link>http://dipot.com/2009/02/friendfeed-activity-widget-%e2%80%a2-evan-sims/</link>
		<comments>http://dipot.com/2009/02/friendfeed-activity-widget-%e2%80%a2-evan-sims/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:36 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/friendfeed-activity-widget-%e2%80%a2-evan-sims/</guid>
		<description><![CDATA[<p>The FriendFeed Activity Widget is a simple WordPress widget plugin that pulls your FriendFeed stream, pretties it up a bit and shares it with visitors to your blog. It’s essentially a lifestream plugin that requires just a few steps to set up.
By ageorg</p>
<p>This bookmark links to http://evansims.com/projects/friendfeed_activity_widget</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization [...]]]></description>
			<content:encoded><![CDATA[<p>The FriendFeed Activity Widget is a simple WordPress widget plugin that pulls your FriendFeed stream, pretties it up a bit and shares it with visitors to your blog. It’s essentially a lifestream plugin that requires just a few steps to set up.<br />
By <a href="http://evansims.com">ageorg</a></p>
<p>This bookmark links to <a href="http://evansims.com/projects/friendfeed_activity_widget">http://evansims.com/projects/friendfeed_activity_widget</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/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/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/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/friendfeed-activity-widget-%e2%80%a2-evan-sims/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Useful RSS-Tricks and Hacks For WordPress &#124; Developer&#8217;s Toolbox &#124; Smashing Magazine</title>
		<link>http://dipot.com/2009/02/10-useful-rss-tricks-and-hacks-for-wordpress-developers-toolbox-smashing-magazine/</link>
		<comments>http://dipot.com/2009/02/10-useful-rss-tricks-and-hacks-for-wordpress-developers-toolbox-smashing-magazine/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:35 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/10-useful-rss-tricks-and-hacks-for-wordpress-developers-toolbox-smashing-magazine/</guid>
		<description><![CDATA[<p>10 Useful RSS-Tricks and Hacks For WordPress &#124; Developer&#8217;s Toolbox &#124; Smashing Magazine
By ageorg</p>
<p>This bookmark links to http://www.smashingmagazine.com/2008/12/02/10-useful-rss-hacks-for-wordpress/</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress › RSSupplement « WordPress Plugins (0)
	Feeds to Content &#038; Categories Optimization in WordPress (1)
	Customizing RSS Feed Links for Wordpress.com and WordPress Sidebar Widgets « [...]]]></description>
			<content:encoded><![CDATA[<p>10 Useful RSS-Tricks and Hacks For WordPress | Developer&#8217;s Toolbox | Smashing Magazine<br />
By <a href="http://smashingmagazine.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.smashingmagazine.com/2008/12/02/10-useful-rss-hacks-for-wordpress/">http://www.smashingmagazine.com/2008/12/02/10-useful-rss-hacks-for-wordpress/</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/02/wordpress-%e2%80%ba-rssupplement-%c2%ab-wordpress-plugins/" title="WordPress › RSSupplement « WordPress Plugins (23/02/2009)">WordPress › RSSupplement « WordPress Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/" title="Feeds to Content &#038; Categories Optimization in WordPress (01/04/2009)">Feeds to Content &#038; Categories Optimization in WordPress</a> (1)</li>
	<li><a href="http://dipot.com/2009/04/customizing-rss-feed-links-for-wordpresscom-and-wordpress-sidebar-widgets-%c2%ab-lorelle-on-wordpress/" title="Customizing RSS Feed Links for Wordpress.com and WordPress Sidebar Widgets « Lorelle on WordPress (02/04/2009)">Customizing RSS Feed Links for Wordpress.com and WordPress Sidebar Widgets « Lorelle on WordPress</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/add-rss-feed-link-icons-to-wordpress-category-listings-%e2%80%a2-perishable-press/" title="Add RSS Feed Link Icons to WordPress Category Listings • Perishable Press (27/03/2009)">Add RSS Feed Link Icons to WordPress Category Listings • Perishable Press</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/10-useful-rss-tricks-and-hacks-for-wordpress-developers-toolbox-smashing-magazine/feed/</wfw:commentRss>
		<slash:comments>0</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>
	</channel>
</rss>

