<?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; Tab</title>
	<atom:link href="http://dipot.com/tag/tab/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>Information Technology -How to Optimize IT for Greater Business Value</title>
		<link>http://dipot.com/2009/03/information-technology-how-to-optimize-it-for-greater-business-value/</link>
		<comments>http://dipot.com/2009/03/information-technology-how-to-optimize-it-for-greater-business-value/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 21:02:01 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[Tab]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/information-technology-how-to-optimize-it-for-greater-business-value/</guid>
		<description><![CDATA[<p>&#8220;&#8230; After years of being considered cost centers, IT organizations and service providers have evolved into profit makers. &#8230;</p>
<p>Technology providers used to measure their success only in terms of the classic adage, “on time, within budget, and according to clients’ expectations.” However, because of the need to be profitable and manage steep competition from both [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;&#8230; After years of being considered cost centers, IT organizations and service providers have evolved into profit makers. &#8230;</p>
<p>Technology providers used to measure their success only in terms of the classic adage, “on time, within budget, and according to clients’ expectations.” However, because of the need to be profitable and manage steep competition from both within and outside the enterprise, it is nearly impossible to stay afloat by delivering the bare necessities; barely functional does not cut it anymore. Success is now measured primarily by improvements in the bottom line, such as increasing revenue, reducing product defects, minimizing capital, and having a shorter time-to-market for products. And yes, add to the long list, innovations that result in long-term benefits to the computing landscape, employee productivity, and greater market share. &#8230;&#8221;<br />
By <a href="http://it.tmcnet.com">ageorg</a></p>
<p>This bookmark links to <a href="http://it.tmcnet.com/topics/it/articles/52919-how-optimize-it-greater-business-value.htm">http://it.tmcnet.com/topics/it/articles/52919-how-optimize-it-greater-business-value.htm</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/" title="PCs and the Internet: Addiction Magnets or just Tools? (05/04/2009)">PCs and the Internet: Addiction Magnets or just Tools?</a> (1)</li>
	<li><a href="http://dipot.com/2009/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/2008/05/music-on-hold/" title="Music on Hold (14/05/2008)">Music on Hold</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>
	<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/information-technology-how-to-optimize-it-for-greater-business-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Classroom 2.0</title>
		<link>http://dipot.com/2009/03/classroom-20/</link>
		<comments>http://dipot.com/2009/03/classroom-20/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 23:19:56 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[Tab]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/classroom-20/</guid>
		<description><![CDATA[<p>&#8220;Welcome to Classroom20.com, the social network for those interested in Web 2.0 and collaborative technologies in education. We especially hope that those who are &#8220;beginners&#8221; will find this a supportive community and a comfortable place to start being part of the digital dialog. &#8230;&#8221;
By ageorg</p>
<p>This bookmark links to http://www.classroom20.com/</p>

	Possibly related posts (auto generated)
	
	PCs and the [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;Welcome to Classroom20.com, the social network for those interested in Web 2.0 and collaborative technologies in education. We especially hope that those who are &#8220;beginners&#8221; will find this a supportive community and a comfortable place to start being part of the digital dialog. &#8230;&#8221;<br />
By <a href="http://classroom20.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.classroom20.com/">http://www.classroom20.com/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/" title="PCs and the Internet: Addiction Magnets or just Tools? (05/04/2009)">PCs and the Internet: Addiction Magnets or just Tools?</a> (1)</li>
	<li><a href="http://dipot.com/2008/11/athens-startup-weekend-2008/" title="Athens Startup Weekend 2008 (26/11/2008)">Athens Startup Weekend 2008</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/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/02/how-to-use-the-new-friendfeed-search-for-social-media-intelligence-readwriteweb/" title="How to Use the New FriendFeed Search for Social Media Intelligence &#8211; ReadWriteWeb (23/02/2009)">How to Use the New FriendFeed Search for Social Media Intelligence &#8211; ReadWriteWeb</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>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/classroom-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>opendba: What just happened to the database?</title>
		<link>http://dipot.com/2009/03/opendba-what-just-happened-to-the-database/</link>
		<comments>http://dipot.com/2009/03/opendba-what-just-happened-to-the-database/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 09:02:50 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Tab]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/opendba-what-just-happened-to-the-database/</guid>
		<description><![CDATA[<p>opendba: What just happened to the database?
By ageorg</p>
<p>This bookmark links to http://opendba.blogspot.com/2009/03/what-just-happened-to-database.html</p>

	Possibly related posts (auto generated)
	
	Χρήσιμα και Δωρεάν Προγράμματα από την Microsoft! Ναι, είναι αλήθεια. (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	spy :: visualizes the conversations on Twitter, Friendfeed, Flickr, Blogs and more. (0)
	SitePoint » How Google Really Wants You to Optimize [...]]]></description>
			<content:encoded><![CDATA[<p>opendba: What just happened to the database?<br />
By <a href="http://opendba.blogspot.com">ageorg</a></p>
<p>This bookmark links to <a href="http://opendba.blogspot.com/2009/03/what-just-happened-to-database.html">http://opendba.blogspot.com/2009/03/what-just-happened-to-database.html</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/02/%cf%87%cf%81%ce%ae%cf%83%ce%b9%ce%bc%ce%b1-%ce%ba%ce%b1%ce%b9-%ce%b4%cf%89%cf%81%ce%b5%ce%ac%ce%bd-%cf%80%cf%81%ce%bf%ce%b3%cf%81%ce%ac%ce%bc%ce%bc%ce%b1%cf%84%ce%b1-%ce%b1%cf%80%cf%8c-%cf%84%ce%b7/" title="Χρήσιμα και Δωρεάν Προγράμματα από την Microsoft! Ναι, είναι αλήθεια. (23/02/2009)">Χρήσιμα και Δωρεάν Προγράμματα από την Microsoft! Ναι, είναι αλήθεια.</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/spy-visualizes-the-conversations-on-twitter-friendfeed-flickr-blogs-and-more/" title="spy :: visualizes the conversations on Twitter, Friendfeed, Flickr, Blogs and more. (05/03/2009)">spy :: visualizes the conversations on Twitter, Friendfeed, Flickr, Blogs and more.</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/sitepoint-%c2%bb-how-google-really-wants-you-to-optimize-your-site/" title="SitePoint » How Google Really Wants You to Optimize Your Site (10/03/2009)">SitePoint » How Google Really Wants You to Optimize Your Site</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/03/opendba-what-just-happened-to-the-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Optimize Firefox with 9+1 Must Have Add-ons </title>
		<link>http://dipot.com/2009/01/optimize-firefox-with-91-must-have-add-ons/</link>
		<comments>http://dipot.com/2009/01/optimize-firefox-with-91-must-have-add-ons/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 20:27:09 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips & How-to]]></category>
		<category><![CDATA[Adblock]]></category>
		<category><![CDATA[add-ons]]></category>
		<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[Delicious]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[downloader]]></category>
		<category><![CDATA[DownThemAll]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[favorites]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[filters]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[FireFTP]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[GReader]]></category>
		<category><![CDATA[Greasemonkey]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[networks]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[PDA]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[PlainOldFavorites]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[Reader]]></category>
		<category><![CDATA[Shareaholic]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[Split]]></category>
		<category><![CDATA[Tab]]></category>
		<category><![CDATA[Toolbar]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Twitter]]></category>

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

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

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

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

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

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

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

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

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2008/11/athens-startup-weekend-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 3 Add-ons Updates Wishlist</title>
		<link>http://dipot.com/2008/06/firefox-3-add-ons-wishlist/</link>
		<comments>http://dipot.com/2008/06/firefox-3-add-ons-wishlist/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 07:22:04 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[add-ons]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[DownThemAll]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[favorites]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[FireFTP]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[PDA]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[PlainOldFavorites]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[Tab]]></category>
		<category><![CDATA[Toolbar]]></category>
		<category><![CDATA[WishList]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>Now that Mozilla Firefox 3 RC2 is out, it&#8217;s about time all add-ins are updated.</p>
<p>My personal favorites (therefore wishlist) that are not working yet (in alphabetical order): Firebug, FireFTP, Google Browser Sync, Google Toolbar for Firefox, PlainOldFavorites, SEOpen, AddThis.</p>
<p>In all fairness, I am also thankfully mentioning the ones that are already working: BlockSite, DownThemAll, Facebook [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en-->Now that Mozilla Firefox 3 RC2 is out, it&#8217;s about time all add-ins are updated.</p>
<p>My personal favorites (therefore wishlist) that are not working yet (in alphabetical order): Firebug, FireFTP, Google Browser Sync, Google Toolbar for Firefox, PlainOldFavorites, SEOpen, AddThis.</p>
<p>In all fairness, I am also thankfully mentioning the ones that are already working: BlockSite, DownThemAll, Facebook Toolbar, Forecastfox, IE Tab, IE View, iMacros for Firefox, MySocial 24&#215;7 Bar, PDF Download, Shareholic, Web Developer.<!--:--></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/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/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (4)</li>
	<li><a href="http://dipot.com/2007/12/microsoft-ie-and-standards-compliance/" title="Microsoft IE and Standards Compliance (29/12/2007)">Microsoft IE and Standards Compliance</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/febe-firefox-add-ons/" title="FEBE :: Firefox Add-ons (26/03/2009)">FEBE :: Firefox Add-ons</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2008/06/firefox-3-add-ons-wishlist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Music on Hold</title>
		<link>http://dipot.com/2008/05/music-on-hold/</link>
		<comments>http://dipot.com/2008/05/music-on-hold/#comments</comments>
		<pubDate>Wed, 14 May 2008 09:01:55 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Tips & How-to]]></category>
		<category><![CDATA[Creative]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[MP3]]></category>
		<category><![CDATA[MPIO]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[music on hold]]></category>
		<category><![CDATA[PBX]]></category>
		<category><![CDATA[PDA]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[Tab]]></category>
		<category><![CDATA[WinAmp]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>I am in search of a simple &#8220;music on hold&#8221; (and background music) system for the office PBX.</p>
<p>I have already tried a CD player and WinAmp on a PC. The CD is short in duration and eventually wears out. WinAmp is better, but it requires a PC with a dedicated sound card (or every other [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en-->I am in search of a simple &#8220;music on hold&#8221; (and background music) system for the office PBX.</p>
<p>I have already tried a CD player and WinAmp on a PC. The CD is short in duration and eventually wears out. WinAmp is better, but it requires a PC with a dedicated sound card (or every other sound source disabled), it doesn&#8217;t run as a service out of the box and it does occasionally stop playing for no apparent reason.</p>
<p>All these were happening before the portable MP3 players days. So, the obvious today&#8217;s choice would be an MP3 player with enough memory, set to shuffle and repeat. Using an AC to USB adapter should solve the power problem, as batteries don&#8217;t last for ever, right? Unfortunately, most USB-powered MP3 players switch to data mode when connected, even if connected to power-only USB. And when in data mode, they just won&#8217;t play songs! Experiments with several players and asking various salespersons confirmed that fact.</p>
<p>So, how can it be done? I got a suggestion to find a player powered from a non-USB source. Not an easy task, these days. The last such device I remember was an MPIO MP3 player (yes, it still works, but it&#8217;s not mine). Although this was before USB totally dominated the peripherals market, I always held using a non-USB power adapter against it. Little did I know&#8230;</p>
<p>Then I accidentally came across the Creative MuVo V100. Its design is exactly such that it distinguishes connection to data USB vs power only USB and acts accordingly, that is play MP3s even when powered! Perfect, at least in theory. Preliminary tests show that, while it works as advertised, it, too (like WinAmp), occasionally stops playback for no apparent reason.</p>
<p>While tests continue, it seems I am still searching&#8230;</p>
<p>Update: Creative is in the clear. Apparently, MuVo works fine. When I tried another USB power supply all problems disappeared. It turns out even a simple device like that can be faulty enough to work at random! I am finally happy with my music on hold.</p>
<p><!--:--></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/01/optimize-firefox-with-91-must-have-add-ons/" title="<!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--> (25/01/2009)"><!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--></a> (2)</li>
	<li><a href="http://dipot.com/2009/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/2008/10/the-google-android-platform/" title="The Google Android Platform (20/10/2008)">The Google Android Platform</a> (1)</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/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/2008/05/music-on-hold/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

