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

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

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

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

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

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

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>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> (5)</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> (0)</li>
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (2)</li>
	<li><a href="http://dipot.com/2009/01/how-i-post/" title="<!--:en-->Which Service should a Post go to?<!--:--> (12/01/2009)"><!--:en-->Which Service should a Post go to?<!--:--></a> (0)</li>
</ul>

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

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

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

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Green IT Services : Catalyst for Cost Optimization &#8211; IT articles, Hardware &amp; Software, Computer vendors in India, IT industry in India : Latest IT News</title>
		<link>http://dipot.com/2009/03/green-it-services-catalyst-for-cost-optimization-it-articles-hardware-software-computer-vendors-in-india-it-industry-in-india-latest-it-news/</link>
		<comments>http://dipot.com/2009/03/green-it-services-catalyst-for-cost-optimization-it-articles-hardware-software-computer-vendors-in-india-it-industry-in-india-latest-it-news/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 21:02:04 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/green-it-services-catalyst-for-cost-optimization-it-articles-hardware-software-computer-vendors-in-india-it-industry-in-india-latest-it-news/</guid>
		<description><![CDATA[<p>&#8220;According to a recently released global enterprise survey, India is a world leader in green IT potential. The Indian respondents scored over others in expecting to pay 5% or more for green technology if its benefits for the environment and return on investment (ROI) are proven. Green technology is technology with efficient power consumption, reusable [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;According to a recently released global enterprise survey, India is a world leader in green IT potential. The Indian respondents scored over others in expecting to pay 5% or more for green technology if its benefits for the environment and return on investment (ROI) are proven. Green technology is technology with efficient power consumption, reusable packaging, maximize energy efficiency during the product&#39;s lifetime, recycling offers for older equipment, use of non-toxic materials, or making investments in future green concepts such as alternative materials. &#8230;&#8221;<br />
By <a href="http://itvoir.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.itvoir.com/portal/boxx/knowledgebase.asp?iid=1406&amp;Cat=23">http://www.itvoir.com/portal/boxx/knowledgebase.asp?iid=1406&amp;Cat=23</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/" title="PCs and the Internet: Addiction Magnets or just Tools? (05/04/2009)">PCs and the Internet: Addiction Magnets or just Tools?</a> (0)</li>
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (2)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/viral-marketing-principles-six-key-rules-to-get-everyone-to-talk-about-your-idea-robin-goods-latest-news/" title="Viral Marketing Principles: Six Key Rules To Get Everyone To Talk About Your Idea &#8211; Robin Good&#8217;s Latest News (23/02/2009)">Viral Marketing Principles: Six Key Rules To Get Everyone To Talk About Your Idea &#8211; Robin Good&#8217;s Latest News</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/green-it-services-catalyst-for-cost-optimization-it-articles-hardware-software-computer-vendors-in-india-it-industry-in-india-latest-it-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Value Optimization Paradox (The Personal MBA)</title>
		<link>http://dipot.com/2009/03/the-value-optimization-paradox-the-personal-mba/</link>
		<comments>http://dipot.com/2009/03/the-value-optimization-paradox-the-personal-mba/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 21:02:03 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/the-value-optimization-paradox-the-personal-mba/</guid>
		<description><![CDATA[<p>&#8220;&#8230; Every business that has experienced long-term success intentionally creates more value than it captures, and that’s okay. If you can consistently give away more value than you take, the world will beat a path to your door.&#8221;
By ageorg</p>
<p>This bookmark links to http://personalmba.com/value-optimization-paradox/</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;&#8230; Every business that has experienced long-term success intentionally creates more value than it captures, and that’s okay. If you can consistently give away more value than you take, the world will beat a path to your door.&#8221;<br />
By <a href="http://personalmba.com">ageorg</a></p>
<p>This bookmark links to <a href="http://personalmba.com/value-optimization-paradox/">http://personalmba.com/value-optimization-paradox/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/search-engine-optimization-secrets-revealed/" title="Search Engine Optimization Secrets Revealed (10/03/2009)">Search Engine Optimization Secrets Revealed</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/green-it-services-catalyst-for-cost-optimization-it-articles-hardware-software-computer-vendors-in-india-it-industry-in-india-latest-it-news/" title="Green IT Services : Catalyst for Cost Optimization &#8211; IT articles, Hardware &amp; Software, Computer vendors in India, IT industry in India : Latest IT News (25/03/2009)">Green IT Services : Catalyst for Cost Optimization &#8211; IT articles, Hardware &amp; Software, Computer vendors in India, IT industry in India : Latest IT News</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/" title="Feeds to Content &#038; Categories Optimization in WordPress (01/04/2009)">Feeds to Content &#038; Categories Optimization in WordPress</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/the-value-optimization-paradox-the-personal-mba/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Optimization of a dynamic website: GoArticles.com</title>
		<link>http://dipot.com/2009/03/optimization-of-a-dynamic-website-goarticlescom/</link>
		<comments>http://dipot.com/2009/03/optimization-of-a-dynamic-website-goarticlescom/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 00:16:20 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/optimization-of-a-dynamic-website-goarticlescom/</guid>
		<description><![CDATA[<p>Optimization of a dynamic website: GoArticles.com
By ageorg</p>
<p>This bookmark links to http://www.goarticles.com/cgi-bin/showa.cgi?C=1467261</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (5)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (0)
	Web Page Analyzer &#8211; free website optimization tool website speed test check website performance report from web site optimization (0)
	Twitter Optimization Part 4: 10 Tools [...]]]></description>
			<content:encoded><![CDATA[<p>Optimization of a dynamic website: GoArticles.com<br />
By <a href="http://goarticles.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.goarticles.com/cgi-bin/showa.cgi?C=1467261">http://www.goarticles.com/cgi-bin/showa.cgi?C=1467261</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/web-page-analyzer-free-website-optimization-tool-website-speed-test-check-website-performance-report-from-web-site-optimization/" title="Web Page Analyzer &#8211; free website optimization tool website speed test check website performance report from web site optimization (23/02/2009)">Web Page Analyzer &#8211; free website optimization tool website speed test check website performance report from web site optimization</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/twitter-optimization-part-4-10-tools-you-need-for-business-%e2%80%94-seoptimise/" title="Twitter Optimization Part 4: 10 Tools You Need for Business — SEOptimise (23/02/2009)">Twitter Optimization Part 4: 10 Tools You Need for Business — SEOptimise</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/the-value-optimization-paradox-the-personal-mba/" title="The Value Optimization Paradox (The Personal MBA) (25/03/2009)">The Value Optimization Paradox (The Personal MBA)</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/optimization-of-a-dynamic-website-goarticlescom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free SEO Book &#8211; Search Engine Optimization eBook (SEO eBook)</title>
		<link>http://dipot.com/2009/03/free-seo-book-search-engine-optimization-ebook-seo-ebook/</link>
		<comments>http://dipot.com/2009/03/free-seo-book-search-engine-optimization-ebook-seo-ebook/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 18:51:41 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/free-seo-book-search-engine-optimization-ebook-seo-ebook/</guid>
		<description><![CDATA[<p>In .chm format. Requires LAN &#38; Internet access, for some reason
By ageorg</p>
<p>This bookmark links to http://www.perfect-optimization.com/website-optimization-ebook.htm</p>

	Possibly related posts (auto generated)
	
	Optimize Firefox with 9+1 Must Have Add-ons  (2)
	xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (5)
	WordPress [...]]]></description>
			<content:encoded><![CDATA[<p>In .chm format. Requires LAN &amp; Internet access, for some reason<br />
By <a href="http://perfect-optimization.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.perfect-optimization.com/website-optimization-ebook.htm">http://www.perfect-optimization.com/website-optimization-ebook.htm</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/03/xen-or-virtuosso-web-hosting-talk-the-largest-most-influential-web-hosting-community-on-the-internet/" title="xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet (17/03/2009)">xen or virtuosso? &#8211; Web Hosting Talk &#8211; The largest, most influential web hosting community on the Internet</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/web-page-analyzer-free-website-optimization-tool-website-speed-test-check-website-performance-report-from-web-site-optimization/" title="Web Page Analyzer &#8211; free website optimization tool website speed test check website performance report from web site optimization (23/02/2009)">Web Page Analyzer &#8211; free website optimization tool website speed test check website performance report from web site optimization</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/free-seo-book-search-engine-optimization-ebook-seo-ebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 ways to measure a social media campaign — Social Media Optimization</title>
		<link>http://dipot.com/2009/03/10-ways-to-measure-a-social-media-campaign-%e2%80%94-social-media-optimization/</link>
		<comments>http://dipot.com/2009/03/10-ways-to-measure-a-social-media-campaign-%e2%80%94-social-media-optimization/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 15:57:14 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/10-ways-to-measure-a-social-media-campaign-%e2%80%94-social-media-optimization/</guid>
		<description><![CDATA[<p>10 ways to measure a social media campaign — Social Media Optimization
By ageorg</p>
<p>This bookmark links to http://social-media-optimization.com/2009/03/10-ways-to-measure-a-social-media-campaign/</p>

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

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<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/04/wordpress-plugin-listing-your-social-media-profiles-her-media-online-advertising-promotion-and-marketing/" title="Wordpress plugin &#8211; Listing your social media profiles :: Her Media &#8211; Online Advertising, Promotion, and Marketing (11/04/2009)">Wordpress plugin &#8211; Listing your social media profiles :: Her Media &#8211; Online Advertising, Promotion, and Marketing</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> (0)</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/03/10-ways-to-measure-a-social-media-campaign-%e2%80%94-social-media-optimization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>12 Techniques to Increase White Paper Leads &#124; FutureNow&#8217;s GrokDotCom / Marketing Optimization Blog</title>
		<link>http://dipot.com/2009/03/12-techniques-to-increase-white-paper-leads-futurenows-grokdotcom-marketing-optimization-blog/</link>
		<comments>http://dipot.com/2009/03/12-techniques-to-increase-white-paper-leads-futurenows-grokdotcom-marketing-optimization-blog/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 15:57:01 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/12-techniques-to-increase-white-paper-leads-futurenows-grokdotcom-marketing-optimization-blog/</guid>
		<description><![CDATA[<p>12 Techniques to Increase White Paper Leads &#124; FutureNow&#8217;s GrokDotCom / Marketing Optimization Blog
By ageorg</p>
<p>This bookmark links to http://www.grokdotcom.com/2009/03/02/12-techniques-to-increase-white-paper-leads/</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (5)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (0)
	Twitter Optimization Part 4: 10 Tools You Need for Business — SEOptimise (0)
	Search Engine Optimization Secrets Revealed [...]]]></description>
			<content:encoded><![CDATA[<p>12 Techniques to Increase White Paper Leads | FutureNow&#8217;s GrokDotCom / Marketing Optimization Blog<br />
By <a href="http://grokdotcom.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.grokdotcom.com/2009/03/02/12-techniques-to-increase-white-paper-leads/">http://www.grokdotcom.com/2009/03/02/12-techniques-to-increase-white-paper-leads/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/twitter-optimization-part-4-10-tools-you-need-for-business-%e2%80%94-seoptimise/" title="Twitter Optimization Part 4: 10 Tools You Need for Business — SEOptimise (23/02/2009)">Twitter Optimization Part 4: 10 Tools You Need for Business — SEOptimise</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/search-engine-optimization-secrets-revealed/" title="Search Engine Optimization Secrets Revealed (10/03/2009)">Search Engine Optimization Secrets Revealed</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/" title="Feeds to Content &#038; Categories Optimization in WordPress (01/04/2009)">Feeds to Content &#038; Categories Optimization in WordPress</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/12-techniques-to-increase-white-paper-leads-futurenows-grokdotcom-marketing-optimization-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Engine Optimization Secrets Revealed</title>
		<link>http://dipot.com/2009/03/search-engine-optimization-secrets-revealed/</link>
		<comments>http://dipot.com/2009/03/search-engine-optimization-secrets-revealed/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 13:56:40 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/search-engine-optimization-secrets-revealed/</guid>
		<description><![CDATA[<p>&#8220;If you want to achieve number 1 Google rankings for any keyword, simply follow the road map of the top ranked website for that keyword or keyword phrase. Does it sound too simple? Yes, it is simple but not easy. In order to duplicate the success of your number one competitor, you need to discover [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;If you want to achieve number 1 Google rankings for any keyword, simply follow the road map of the top ranked website for that keyword or keyword phrase. Does it sound too simple? Yes, it is simple but not easy. In order to duplicate the success of your number one competitor, you need to discover why he has a top ranking&#8230;&#8221;<br />
By <a href="http://contestblogger.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.contestblogger.com/search-engine-optimization-secrets-revealed/">http://www.contestblogger.com/search-engine-optimization-secrets-revealed/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (2)</li>
	<li><a href="http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/" title="Feeds to Content &#038; Categories Optimization in WordPress (01/04/2009)">Feeds to Content &#038; Categories Optimization in WordPress</a> (1)</li>
	<li><a href="http://dipot.com/2009/01/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>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/search-engine-optimization-secrets-revealed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Page Analyzer &#8211; free website optimization tool website speed test check website performance report from web site optimization</title>
		<link>http://dipot.com/2009/02/web-page-analyzer-free-website-optimization-tool-website-speed-test-check-website-performance-report-from-web-site-optimization/</link>
		<comments>http://dipot.com/2009/02/web-page-analyzer-free-website-optimization-tool-website-speed-test-check-website-performance-report-from-web-site-optimization/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:38 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/web-page-analyzer-free-website-optimization-tool-website-speed-test-check-website-performance-report-from-web-site-optimization/</guid>
		<description><![CDATA[<p>Web Page Analyzer &#8211; free website optimization tool website speed test check website performance report from web site optimization
By ageorg</p>
<p>This bookmark links to http://www.websiteoptimization.com/services/analyze/</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (5)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (0)
	Twitter Optimization Part 4: 10 Tools You Need for Business — SEOptimise [...]]]></description>
			<content:encoded><![CDATA[<p>Web Page Analyzer &#8211; free website optimization tool website speed test check website performance report from web site optimization<br />
By <a href="http://websiteoptimization.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.websiteoptimization.com/services/analyze/">http://www.websiteoptimization.com/services/analyze/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/twitter-optimization-part-4-10-tools-you-need-for-business-%e2%80%94-seoptimise/" title="Twitter Optimization Part 4: 10 Tools You Need for Business — SEOptimise (23/02/2009)">Twitter Optimization Part 4: 10 Tools You Need for Business — SEOptimise</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/the-value-optimization-paradox-the-personal-mba/" title="The Value Optimization Paradox (The Personal MBA) (25/03/2009)">The Value Optimization Paradox (The Personal MBA)</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/search-engine-optimization-secrets-revealed/" title="Search Engine Optimization Secrets Revealed (10/03/2009)">Search Engine Optimization Secrets Revealed</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/web-page-analyzer-free-website-optimization-tool-website-speed-test-check-website-performance-report-from-web-site-optimization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Optimization Part 4: 10 Tools You Need for Business — SEOptimise</title>
		<link>http://dipot.com/2009/02/twitter-optimization-part-4-10-tools-you-need-for-business-%e2%80%94-seoptimise/</link>
		<comments>http://dipot.com/2009/02/twitter-optimization-part-4-10-tools-you-need-for-business-%e2%80%94-seoptimise/#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[optimization]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/twitter-optimization-part-4-10-tools-you-need-for-business-%e2%80%94-seoptimise/</guid>
		<description><![CDATA[<p>Twitter Optimization Part 4: 10 Tools You Need for Business — SEOptimise
By ageorg</p>
<p>This bookmark links to http://www.seoptimise.com/blog/2009/02/twitter-optimization-part-4-10-tools-you-need-for-business.html</p>

	Possibly related posts (auto generated)
	
	News Reading Thoughts (2)
	About DiPot (0)
	Optimize Firefox with 9+1 Must Have Add-ons  (2)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (5)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (0)


]]></description>
			<content:encoded><![CDATA[<p>Twitter Optimization Part 4: 10 Tools You Need for Business — SEOptimise<br />
By <a href="http://seoptimise.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.seoptimise.com/blog/2009/02/twitter-optimization-part-4-10-tools-you-need-for-business.html">http://www.seoptimise.com/blog/2009/02/twitter-optimization-part-4-10-tools-you-need-for-business.html</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (2)</li>
	<li><a href="http://dipot.com/about-dipot/" title="About DiPot (20/01/2009)">About DiPot</a> (0)</li>
	<li><a href="http://dipot.com/2009/01/optimize-firefox-with-91-must-have-add-ons/" title="<!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--> (25/01/2009)"><!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--></a> (2)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/twitter-optimization-part-4-10-tools-you-need-for-business-%e2%80%94-seoptimise/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FriendFeed Optimization Feature Requests</title>
		<link>http://dipot.com/2009/02/friendfeed-optimization-feature-requests/</link>
		<comments>http://dipot.com/2009/02/friendfeed-optimization-feature-requests/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 14:55:05 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[feature requests]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[feedback]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[filtering]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[Reader]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WishList]]></category>

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

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

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (2)</li>
	<li><a href="http://dipot.com/2009/01/optimize-firefox-with-91-must-have-add-ons/" title="<!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--> (25/01/2009)"><!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--></a> (2)</li>
	<li><a href="http://dipot.com/2009/01/7-favorite-value-adding-friendfeed-applications/" title="<!--:en-->7 Favorite, Value Adding FriendFeed Applications<!--:--> (22/01/2009)"><!--:en-->7 Favorite, Value Adding FriendFeed Applications<!--:--></a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (5)</li>
	<li><a href="http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/" title="Feeds to Content &#038; Categories Optimization in WordPress (01/04/2009)">Feeds to Content &#038; Categories Optimization in WordPress</a> (1)</li>
</ul>

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

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

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

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/01/optimize-firefox-with-91-must-have-add-ons/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>About DiPot</title>
		<link>http://dipot.com/about-dipot/</link>
		<comments>http://dipot.com/about-dipot/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 17:05:24 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Digital Pot]]></category>
		<category><![CDATA[DiPot]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[feedback]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[Ice Tea tech]]></category>
		<category><![CDATA[improvement]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://dipot.com/about/</guid>
		<description><![CDATA[<p></p>
<p>DiPot, short for Digital Pot, was founded in 2001 to push Digital Convergence, then in its infancy, and Communication. Now that our everyday life is digital and lots of communication means are at our disposal, DiPot is still here to help enhance, improve and optimize both in the user&#8217;s level.</p>
<p>To that extend, the Ice Tea [...]]]></description>
			<content:encoded><![CDATA[<p><!--:el--></p>
<p><!--:-->DiPot, short for Digital Pot, was founded in 2001 to push Digital Convergence, then in its infancy, and Communication. Now that our everyday life <em>is</em> digital and lots of communication means are at our disposal, DiPot is still here to help enhance, improve and optimize both in the user&#8217;s level.</p>
<p>To that extend, the Ice Tea tech blog focuses on the digital age tools, improvement and enhancement of the user&#8217;s experience. Additional feeds focus on Optimization and Standards, which we perceive to be the cornerstones of further technology improvement and penetration.</p>
<p>Based on researching the reality &amp; trends, many forms of feedback and our own needs and dreams, DiPot strives to catch the pulse of and assist those out there who, like us, never have enough of a good thing.<!--:--></p>

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

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/about-dipot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
