<?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; RSS feeds</title>
	<atom:link href="http://dipot.com/tag/rss-feeds/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>PCs and the Internet: Addiction Magnets or just Tools?</title>
		<link>http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/</link>
		<comments>http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 20:44:38 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Communication]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[addiction]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[microblogging]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[nintendo]]></category>
		<category><![CDATA[overuse]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[RSS feeds]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[Tab]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[wii]]></category>

		<guid isPermaLink="false">http://dipot.com/?p=1202</guid>
		<description><![CDATA[<p>The traditional Media (at least in Greece, where I live) don&#8217;t treat computing nor the Internet right. I don&#8217;t know if  it&#8217;s because of ignorance or because they feel threatened by it. However, I do get the impression that, most of the time, when radio, TV or the press mention PCs and/or the Internet it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>The traditional Media (at least in Greece, where I live) don&#8217;t treat computing nor the Internet right. I don&#8217;t know if  it&#8217;s because of ignorance or because they feel threatened by it. However, I do get the impression that, most of the time, when radio, TV or the press mention PCs and/or the Internet it&#8217;s because of a child pornography site, computer fraud or how young people are getting addicted to it.</p>
<p>According to <a title="Wikipedia &quot;addiction&quot; article" href="http://en.wikipedia.org/wiki/Addiction" target="_blank">WikiPedia&#8217;s &#8220;Addiction&#8221; article</a>: &#8220;&#8230; The term addiction is also sometimes applied to compulsions that are not substance-related, such as problem gambling and computer addiction. In these kinds of common usages, the term addiction is used to describe a recurring compulsion by an individual to engage in some specific activity, despite harmful consequences, as deemed by the user him self to his or hers individual&#8217;s health, mental state or social life. &#8230;&#8221;.</p>
<p>I&#8217;ve had various discussions with intelligent people who are not well acquainted to computers nor the Internet and they express concerns about its use and hidden dangers in it, especially if they are parents. The concern that &#8220;kids, teenagers or people who use their, usually networked, PC for long hours are addicted&#8221; is overrated and exaggerated.</p>
<p>From <a title="Wikipedia &quot;Internet addiction disorder&quot; article" href="http://en.wikipedia.org/wiki/Internet_addiction_disorder" target="_blank">Wikipedia&#8217;s &#8220;Internet addiction disorder&#8221; article</a>: &#8220;&#8230; To the extent that the Internet is a social medium instead of an object, people cannot be addicted to it. The analogy is made to an environment: a person can not be truly addicted to living in a favorite town (no matter how distressing a change of home might be), and a goldfish can not be addicted to living in a pond.<br />
Secondly, it is widely recognized, even by its supporters, that most if not all &#8220;Internet addicts&#8221; already fall under existing, legitimate diagnostic labels. For many patients, overuse or inappropriate use of the Internet is merely a manifestation of their depression, anxiety, impulse control disorders, or pathological gambling. In this criticism, IAD is compared to food addiction, in which patients overeat as a form of self-medication for depression, anxiety, etc., without actually being truly addicted to eating.<br />
It is possible that a person could have a pathological relationship with a specific aspects of the Internet, such as bidding on online auctions, viewing pornography, online gaming, or online gambling (which is included under the existing Pathological Gambling), but that does not make the Internet medium itself be addictive. &#8230;&#8221;.</p>
<p>People spending way too much time &#8220;in&#8221; the Internet is a misconception dated back to the time we needed to dial-in to the Internet. While connected to the Net over telephone lines the meter was running, hence the need to make the most out of it. Broadband has changed this. We are now &#8220;online&#8221; all the time for a flat rate, or, at worst, for a pay-as-you-go rate (especially true in cellular telephony). In these early days, we got online specifically to use the Internet, mainly use email, surf the Web and, if advanced enough, to do some instant messaging and e-shopping.</p>
<p>Today, thanks, in part, to digital convergence and the computer becoming a consumer item, we have one PC each instead of one per office or home and we do online pretty much anything we did before the Internet existed at all. Thanks to broadband, the phrase &#8220;I am connected&#8221; doesn&#8217;t mean much any more, because we are online whether we actually make use of the Net or not. Sometimes we are practically online and we don&#8217;t even realize it (most high end cellular phones are a click away from the Internet)! We have blended it in our everyday life like the telephone, the radio, the TV, the newspaper, the typewriter, the tape recorder etc. before it.</p>
<p>Except for physical activities (debatable; have you tried <a title="Nintendo Wii Game Consoles Manufacturer" href="http://www.nintendo.com" target="_blank">Nintendo</a> <a title="Nintendo Wii Game Console" href="http://www.nintendo.com/wii" target="_blank">Wii</a> <a title="Touch Generations' Fit game for the Nintendo Wii" href="http://www.nintendo.com/wiifit/launch/#/what_is_wii_fit/wii_fit_board" target="_blank">Fit</a>?), computers, possibly connected to the Internet, are used today for prety much everything else. Today, even more than in the earlier days, neither computing nor using the Internet are activities by themselves. They are just enablers for countless individual activities (the following is by no means a complete list, or in any particular order):</p>
<ul>
<li>Reading, Watching, Listening to Multimedia Documents<br />
Reading, Watching and Listening to our own or others&#8217; material includes art, essays, news, books (electronic and audio), presentations, schematics, photos, music, videos, radio &amp; TV broadcasts, podcasts, etc. or any combination of those and more.</li>
<li>Research<br />
Whether it is scientific or market research, online computers are the tools behind it that collect, store, index, process, search, retrieve, distribute and present all the information and data in ways limited only by imagination.</li>
<li>Multimedia Documents Creation<br />
Most (or all?) of this so-called &#8220;content&#8221; we can view, we can also create ourselves for us and others to view or use.</li>
<li>Communication &amp; Social Networking<br />
Email, Instant Messaging (IM), VoIP telephony, Video calls, Audio &amp; Video Conferencing are just some types of online communication. Social Networking helps keep in touch with lots of people. Additionally, (micro)Blogging and RSS feeds help us get input from and address potentially unlimited content creators and audience, respectively.</li>
<li>Recreation &amp; Games<br />
Physical activity aside, electronic editions of traditional board games represent only a small fraction of the games we can play with practically unlimited human or computer opponents from around the globe.</li>
</ul>
<p>It&#8217;s not my intention to prove how good technology is; there may be issues in all applications that leave room for discussion. I am trying to raise awareness to the fact that computer and Internet usage cannot be measured as an activity on their own, as they are not. They represent the sum of all their individual uses. Of course (networked) computing (possibly as life itself) is a platform where addictions can occur. Like all drugs are not inherently addictive, nor is technology, computing or the Internet. Still, &#8216;&#8230; With the widespread use of computers in the 21st century, it may be difficult to distinguish users who are &#8220;highly engaged&#8221; in their computer use from those who might be considered &#8220;addicted&#8221;. &#8230;&#8217; (from <a title="Wikipedia &quot;Computer addiction&quot; article" href="http://en.wikipedia.org/wiki/Computer_addiction" target="_blank">Wikipedia&#8217;s &#8220;Computer addiction&#8221; article</a>).</p>
<p>Diversity and multiple activities &amp; interests have always been factors against addictions. Having a tools combination like a computer networked to the all-inclusive Internet actually promotes diversity. Let&#8217;s do so, too.</p>
<p>PS. There are studies indicating computer and internet &#8220;addiction&#8221; or &#8220;overuse&#8221;. At this point (and I am no expert), I believe many people use or overuse them like they do with any new, shiny toy. Once they both become commonplace, like the telephone and television did, any &#8220;related&#8221; addiction will be easily traced to the pre-technology causes.</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/2008/11/athens-startup-weekend-2008/" title="Athens Startup Weekend 2008 (26/11/2008)">Athens Startup Weekend 2008</a> (0)</li>
	<li><a href="http://dipot.com/2009/01/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>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>7 Favorite, Value Adding FriendFeed Applications</title>
		<link>http://dipot.com/2009/01/7-favorite-value-adding-friendfeed-applications/</link>
		<comments>http://dipot.com/2009/01/7-favorite-value-adding-friendfeed-applications/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 17:09:48 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Services]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[favorites]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[ffholic]]></category>
		<category><![CDATA[FriendDeck]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[Friendfeed Like Compatibility Calculator]]></category>
		<category><![CDATA[FriendFeedLinks]]></category>
		<category><![CDATA[FriendVenn]]></category>
		<category><![CDATA[FriendZone]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[Robert Scoble]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[RSS feeds]]></category>
		<category><![CDATA[Tab]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Twitter2FF]]></category>

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

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (4)</li>
	<li><a href="http://dipot.com/2009/01/optimize-firefox-with-91-must-have-add-ons/" title="<!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--> (25/01/2009)"><!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--></a> (2)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/02/friendfeed-optimization-feature-requests/" title="<!--:en-->FriendFeed Optimization Feature Requests<!--:--> (02/02/2009)"><!--:en-->FriendFeed Optimization Feature Requests<!--:--></a> (0)</li>
	<li><a href="http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/" title="PCs and the Internet: Addiction Magnets or just Tools? (05/04/2009)">PCs and the Internet: Addiction Magnets or just Tools?</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/01/7-favorite-value-adding-friendfeed-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

