<?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; IE</title>
	<atom:link href="http://dipot.com/tag/ie/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>Company directory, a comprehensive Directory of directories, business to business!</title>
		<link>http://dipot.com/2009/04/company-directory-a-comprehensive-directory-of-directories-business-to-business/</link>
		<comments>http://dipot.com/2009/04/company-directory-a-comprehensive-directory-of-directories-business-to-business/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 07:41:57 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/04/company-directory-a-comprehensive-directory-of-directories-business-to-business/</guid>
		<description><![CDATA[<p>&#8220;1.500.000 companies selected
in 35 european countries
Europages, the european business directory available in 25 languages &#8230;&#8221;
By ageorg</p>
<p>This bookmark links to http://www.europages.com/</p>


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

	Possibly related posts (auto generated)
	
	World Panoramic Photography &#8211; 360 Cities (0)
	WordPress: External [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;1.500.000 companies selected<br />
in 35 european countries<br />
Europages, the european business directory available in 25 languages &#8230;&#8221;<br />
By <a href="http://europages.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.europages.com/">http://www.europages.com/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/03/world-panoramic-photography-360-cities/" title="World Panoramic Photography &#8211; 360 Cities (21/03/2009)">World Panoramic Photography &#8211; 360 Cities</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2007/12/web-browser-standards-opera-software-vs-microsoft/" title="Web browser standards: Opera Software vs Microsoft (16/12/2007)">Web browser standards: Opera Software vs Microsoft</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/twe2-get-your-twitter-alerts-via-sms-worldwide-for-free/" title="Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free (17/03/2009)">Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/04/company-directory-a-comprehensive-directory-of-directories-business-to-business/feed/</wfw:commentRss>
		<slash:comments>0</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>The Zeitgeist Movement: Orientation Presentation</title>
		<link>http://dipot.com/2009/04/the-zeitgeist-movement-orientation-presentation/</link>
		<comments>http://dipot.com/2009/04/the-zeitgeist-movement-orientation-presentation/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 10:09:56 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/04/the-zeitgeist-movement-orientation-presentation/</guid>
		<description><![CDATA[<p>The Zeitgeist Movement: Orientation Presentation
By ageorg</p>
<p>This bookmark links to http://video.google.com/videoplay?docid=3932487043163636261</p>

	Possibly related posts (auto generated)
	
	The Google Android Platform (1)
	Search Engine Optimization Secrets Revealed (0)
	News Reading Thoughts (4)
	Android Market Business and Program Policies (0)
	]]></description>
			<content:encoded><![CDATA[<p>The Zeitgeist Movement: Orientation Presentation<br />
By <a href="http://video.google.com">ageorg</a></p>
<p>This bookmark links to <a href="http://video.google.com/videoplay?docid=3932487043163636261">http://video.google.com/videoplay?docid=3932487043163636261</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<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/03/search-engine-optimization-secrets-revealed/" title="Search Engine Optimization Secrets Revealed (10/03/2009)">Search Engine Optimization Secrets Revealed</a> (0)</li>
	<li><a href="http://dipot.com/2009/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/android-market-business-and-program-policies/" title="Android Market Business and Program Policies (23/02/2009)">Android Market Business and Program Policies</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/04/the-zeitgeist-movement-orientation-presentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Feeds to Content &amp; Categories Optimization in WordPress</title>
		<link>http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/</link>
		<comments>http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 20:26:03 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips & How-to]]></category>
		<category><![CDATA[Advanced Category Excluder]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Delicious]]></category>
		<category><![CDATA[DiPot]]></category>
		<category><![CDATA[DiPot.com]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[Ice Tea tech]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Yet Another Autoblogger]]></category>

		<guid isPermaLink="false">http://dipot.com/?p=1180</guid>
		<description><![CDATA[<p>At some point I added the category &#8220;Bookmarks&#8221; in Ice Tea tech. Thanks to the &#8220;YAAB&#8221; (short for Yet Another Auto Blogger) WordPress plugin, this category automatically gets its content directly from my Delicious feed. This way I get my own copy of what I put up there and my blog gets some added value [...]]]></description>
			<content:encoded><![CDATA[<p>At some point I added the category &#8220;<a href="http://dipot.com/category/bookmarks/" target="_blank">Bookmarks</a>&#8221; in <a href="http://dipot.com" target="_blank">Ice Tea tech</a>. Thanks to the &#8220;<a href="http://scribido.com/yaab/yaab-autoblogger/" target="_blank">YAAB</a>&#8221; (short for Yet Another Auto Blogger) <a href="http://wordpress.org" target="_blank">WordPress</a> plugin, this category automatically gets its content directly from <a href="http://delicious.com/ageorg" target="_blank">my Delicious</a> <a href="http://feeds.delicious.com/v2/rss/ageorg" target="_blank">feed</a>. This way I get my own copy of what I put up there and my blog gets some added value in one move.</p>
<p>YAAB has an unusual but effective interface that allows adding content to any category of a WordPress blog from any number of feeds, even offering its own scheduler, if needed. It sure works as advertized.</p>
<p>Ever since then, I meant to further optimize the blog by separating the bookmarks from my other posts. This is just what I did, with the help of the &#8220;<a href="http://wordpress.org/extend/plugins/advanced-category-excluder/" target="_blank">ACE</a>&#8221; (short for Advanced Category Excluder) WordPress plugin. From now on, bookmark posts won&#8217;t appear in the main feed, like they don&#8217;t appear in the home page. For those interested, the Bookmarks feed is at <a href="http://dipot.com/category/bookmarks/feed" target="_blank">http://dipot.com/category/bookmarks/feed</a> (or find everything I post in <a href="http://friendfeed.com/ageor" target="_blank">my FriendFeed stream</a>).</p>
<p>ACE gives a WordPress blogger full control over which Categories are hidden in any of 6 sections of their blog: Archive page, Home page, RSS feed for Posts, RSS feed for Comments, Search results &amp; robots&#8217; crawls. It is very straight forward, has a clean interface and works as advertized.</p>
<p>I consider both plugins to be great assets to WordPress blogs. Which are your favorite plugins? What functionality do you put/expect in a blog?</p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/02/apologies-for-last-days-posts-flood/" title="<!--:en-->Apologies for last days&#8217; posts flood<!--:--> (25/02/2009)"><!--:en-->Apologies for last days&#8217; posts flood<!--:--></a> (0)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (4)</li>
	<li><a href="http://dipot.com/2009/01/how-i-post/" title="<!--:en-->Which Service should a Post go to?<!--:--> (12/01/2009)"><!--:en-->Which Service should a Post go to?<!--:--></a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>TransparencyCamp 2009</title>
		<link>http://dipot.com/2009/03/transparencycamp-2009/</link>
		<comments>http://dipot.com/2009/03/transparencycamp-2009/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 12:48:46 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/transparencycamp-2009/</guid>
		<description><![CDATA[<p>&#8220;This un-conference is about convening a trans-partisan tribe of open government advocates from all walks — government representatives, technologists, developers, NGOs, wonks and activists — to share knowledge on how to use new technologies to make our government transparent and meaningfully accessible to the public.&#8221;
By ageorg</p>
<p>This bookmark links to http://transparencycamp.org/</p>

	Possibly related posts (auto generated)
	
	World Panoramic [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;This un-conference is about convening a trans-partisan tribe of open government advocates from all walks — government representatives, technologists, developers, NGOs, wonks and activists — to share knowledge on how to use new technologies to make our government transparent and meaningfully accessible to the public.&#8221;<br />
By <a href="http://transparencycamp.org">ageorg</a></p>
<p>This bookmark links to <a href="http://transparencycamp.org/">http://transparencycamp.org/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/03/world-panoramic-photography-360-cities/" title="World Panoramic Photography &#8211; 360 Cities (21/03/2009)">World Panoramic Photography &#8211; 360 Cities</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2007/12/web-browser-standards-opera-software-vs-microsoft/" title="Web browser standards: Opera Software vs Microsoft (16/12/2007)">Web browser standards: Opera Software vs Microsoft</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/twe2-get-your-twitter-alerts-via-sms-worldwide-for-free/" title="Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free (17/03/2009)">Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free</a> (0)</li>
</ul>

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

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

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

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

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

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

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

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

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

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

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/the-value-optimization-paradox-the-personal-mba/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>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>PISA</title>
		<link>http://dipot.com/2009/03/pisa/</link>
		<comments>http://dipot.com/2009/03/pisa/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 16:12:13 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/pisa/</guid>
		<description><![CDATA[<p>&#8220;The Programme for International Student Assessment (PISA) is an internationally standardised assessment that was jointly developed by participating countries and administered to15-year-olds in schools. The survey was implemented in 43 countries in the 1st assessment in 2000, in 41 countries in the 2nd assessment in 2003, in 57 countries in the 3rd assessment in 2006 [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;The Programme for International Student Assessment (PISA) is an internationally standardised assessment that was jointly developed by participating countries and administered to15-year-olds in schools. The survey was implemented in 43 countries in the 1st assessment in 2000, in 41 countries in the 2nd assessment in 2003, in 57 countries in the 3rd assessment in 2006 and 62 countries have signed up to participate in the 4th assessment in 2009. Tests are typically administered to between 4,500 and 10,000 students in each country. &#8230;&#8221;<br />
By <a href="http://oecd.org">ageorg</a></p>
<p>This bookmark links to <a href="http://www.oecd.org/pages/0,3417,en_32252351_32235907_1_1_1_1_1,00.html">http://www.oecd.org/pages/0,3417,en_32252351_32235907_1_1_1_1_1,00.html</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/03/world-panoramic-photography-360-cities/" title="World Panoramic Photography &#8211; 360 Cities (21/03/2009)">World Panoramic Photography &#8211; 360 Cities</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2007/12/web-browser-standards-opera-software-vs-microsoft/" title="Web browser standards: Opera Software vs Microsoft (16/12/2007)">Web browser standards: Opera Software vs Microsoft</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/twe2-get-your-twitter-alerts-via-sms-worldwide-for-free/" title="Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free (17/03/2009)">Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/pisa/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>Mains power systems &#8211; Wikipedia, the free encyclopedia</title>
		<link>http://dipot.com/2009/03/mains-power-systems-wikipedia-the-free-encyclopedia/</link>
		<comments>http://dipot.com/2009/03/mains-power-systems-wikipedia-the-free-encyclopedia/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 23:19:54 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[MS]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/mains-power-systems-wikipedia-the-free-encyclopedia/</guid>
		<description><![CDATA[<p>This article includes a list of countries and territories, with the plugs, voltages and frequencies they use for providing electrical power to small appliances and some major appliances.
By ageorg</p>
<p>This bookmark links to http://en.wikipedia.org/wiki/List_of_countries_with_mains_power_plugs,_voltages_and_frequencies</p>

	Possibly related posts (auto generated)
	
	Teaching Online Journalism » Reporter’s guide to multimedia proficiency (RGMP 1) (0)
	PCs and the Internet: Addiction Magnets or just [...]]]></description>
			<content:encoded><![CDATA[<p>This article includes a list of countries and territories, with the plugs, voltages and frequencies they use for providing electrical power to small appliances and some major appliances.<br />
By <a href="http://en.wikipedia.org">ageorg</a></p>
<p>This bookmark links to <a href="http://en.wikipedia.org/wiki/List_of_countries_with_mains_power_plugs,_voltages_and_frequencies">http://en.wikipedia.org/wiki/List_of_countries_with_mains_power_plugs,_voltages_and_frequencies</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/02/teaching-online-journalism-%c2%bb-reporter%e2%80%99s-guide-to-multimedia-proficiency-rgmp-1/" title="Teaching Online Journalism » Reporter’s guide to multimedia proficiency (RGMP 1) (25/02/2009)">Teaching Online Journalism » Reporter’s guide to multimedia proficiency (RGMP 1)</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/" title="PCs and the Internet: Addiction Magnets or just Tools? (05/04/2009)">PCs and the Internet: Addiction Magnets or just Tools?</a> (1)</li>
	<li><a href="http://dipot.com/2009/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/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/mains-power-systems-wikipedia-the-free-encyclopedia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>12 Reasons Why You Should Own Your Blog &#124; BloggerDesign from TopRank Online Marketing</title>
		<link>http://dipot.com/2009/03/12-reasons-why-you-should-own-your-blog-bloggerdesign-from-toprank-online-marketing/</link>
		<comments>http://dipot.com/2009/03/12-reasons-why-you-should-own-your-blog-bloggerdesign-from-toprank-online-marketing/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 19:12:50 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/12-reasons-why-you-should-own-your-blog-bloggerdesign-from-toprank-online-marketing/</guid>
		<description><![CDATA[<p>&#8220;With the explosion of social networking and free blog sites, it is easier than ever to create your own blogs with just a few clicks of the mouse. The questions that don’t get asked are, do I own the content I create? If I upload images, are they still mine? What happens if this service [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;With the explosion of social networking and free blog sites, it is easier than ever to create your own blogs with just a few clicks of the mouse. The questions that don’t get asked are, do I own the content I create? If I upload images, are they still mine? What happens if this service goes away? Where as social networking sites are great, ultimately they are at the hands of other companies. What they choose to do with their services, you have no choice but to go along with it, or delete your account. Here are 13 reasons why you should purchase hosting and own your own blog. &#8230;&#8221;<br />
By <a href="http://bloggerdesign.com">ageorg</a></p>
<p>This bookmark links to <a href="http://bloggerdesign.com/440/13-reasons-to-own-your-blog/">http://bloggerdesign.com/440/13-reasons-to-own-your-blog/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<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/04/pcs-and-the-internet-addiction-magnets-or-just-tools/" title="PCs and the Internet: Addiction Magnets or just Tools? (05/04/2009)">PCs and the Internet: Addiction Magnets or just Tools?</a> (1)</li>
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (4)</li>
	<li><a href="http://dipot.com/2007/12/microsoft-ie-and-standards-compliance/" title="Microsoft IE and Standards Compliance (29/12/2007)">Microsoft IE and Standards Compliance</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/" title="Feeds to Content &#038; Categories Optimization in WordPress (01/04/2009)">Feeds to Content &#038; Categories Optimization in WordPress</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/12-reasons-why-you-should-own-your-blog-bloggerdesign-from-toprank-online-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ten steps to a well optimized website step 1 keyword selection &#124; lv-lt-forum.org</title>
		<link>http://dipot.com/2009/03/ten-steps-to-a-well-optimized-website-step-1-keyword-selection-lv-lt-forumorg/</link>
		<comments>http://dipot.com/2009/03/ten-steps-to-a-well-optimized-website-step-1-keyword-selection-lv-lt-forumorg/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 19:12:39 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/ten-steps-to-a-well-optimized-website-step-1-keyword-selection-lv-lt-forumorg/</guid>
		<description><![CDATA[<p>Writen by Dave Davies
&#8220;This is part one of ten in this search engine positioning series. In part one we will outline how to choose the keyword phrases most likely to produce a high ROI for your search engine positioning efforts. Over this ten part series we will go through ten essential elements and steps to [...]]]></description>
			<content:encoded><![CDATA[<p>Writen by Dave Davies<br />
&#8220;This is part one of ten in this search engine positioning series. In part one we will outline how to choose the keyword phrases most likely to produce a high ROI for your search engine positioning efforts. Over this ten part series we will go through ten essential elements and steps to optimizing a site. Some steps take a few hours, some may take months depending on the competition, but in the end and if done correctly you will have a well optimized site that will place well and hold it’s positioning. &#8230;&#8221;<br />
By <a href="http://lv-lt-forum.org">ageorg</a></p>
<p>This bookmark links to <a href="http://www.lv-lt-forum.org/CATEGORIES/ten-steps-to-a-well-optimized-website-step-1-keyword-selection/">http://www.lv-lt-forum.org/CATEGORIES/ten-steps-to-a-well-optimized-website-step-1-keyword-selection/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/03/world-panoramic-photography-360-cities/" title="World Panoramic Photography &#8211; 360 Cities (21/03/2009)">World Panoramic Photography &#8211; 360 Cities</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2007/12/web-browser-standards-opera-software-vs-microsoft/" title="Web browser standards: Opera Software vs Microsoft (16/12/2007)">Web browser standards: Opera Software vs Microsoft</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/twe2-get-your-twitter-alerts-via-sms-worldwide-for-free/" title="Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free (17/03/2009)">Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/ten-steps-to-a-well-optimized-website-step-1-keyword-selection-lv-lt-forumorg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Optimize Wi-Fi Coverage in Multi-Floor Facilities</title>
		<link>http://dipot.com/2009/03/how-to-optimize-wi-fi-coverage-in-multi-floor-facilities/</link>
		<comments>http://dipot.com/2009/03/how-to-optimize-wi-fi-coverage-in-multi-floor-facilities/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 19:12:38 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/how-to-optimize-wi-fi-coverage-in-multi-floor-facilities/</guid>
		<description><![CDATA[<p>By Jim Geier
&#8220;Sooner or later, you’ll need to install a wireless LAN in a multi-floor facility. Learn tips on how to assess the environment and possibly use inter-floor signal propagation in your favor. &#8230;&#8221;
By ageorg</p>
<p>This bookmark links to http://www.wi-fiplanet.com/tutorials/article.php/3811421</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress Optimization: Compatibility between [...]]]></description>
			<content:encoded><![CDATA[<p>By Jim Geier<br />
&#8220;Sooner or later, you’ll need to install a wireless LAN in a multi-floor facility. Learn tips on how to assess the environment and possibly use inter-floor signal propagation in your favor. &#8230;&#8221;<br />
By <a href="http://wi-fiplanet.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.wi-fiplanet.com/tutorials/article.php/3811421">http://www.wi-fiplanet.com/tutorials/article.php/3811421</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2008/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/03/pattie-maes-demos-the-sixth-sense-video-on-tedcom/" title="Pattie Maes demos the Sixth Sense | Video on TED.com (19/03/2009)">Pattie Maes demos the Sixth Sense | Video on TED.com</a> (0)</li>
	<li><a href="http://dipot.com/2007/11/nas-for-shared-storage/" title="NAS for shared storage (29/11/2007)">NAS for shared storage</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/how-to-optimize-wi-fi-coverage-in-multi-floor-facilities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top Twitter Friends</title>
		<link>http://dipot.com/2009/03/top-twitter-friends/</link>
		<comments>http://dipot.com/2009/03/top-twitter-friends/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 12:43:36 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/top-twitter-friends/</guid>
		<description><![CDATA[<p>Who do you talk to most often on Twitter? Who are your closest friends? What does your social network look like? See your conversations. See your town&#39;s social network. See people who talk about
By ageorg</p>
<p>This bookmark links to http://twitter.mailana.com/</p>

	Possibly related posts (auto generated)
	
	]]></description>
			<content:encoded><![CDATA[<p>Who do you talk to most often on Twitter? Who are your closest friends? What does your social network look like? See your conversations. See your town&#39;s social network. See people who talk about<br />
By <a href="http://twitter.mailana.com">ageorg</a></p>
<p>This bookmark links to <a href="http://twitter.mailana.com/">http://twitter.mailana.com/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/01/optimize-firefox-with-91-must-have-add-ons/" title="<!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--> (25/01/2009)"><!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--></a> (2)</li>
	<li><a href="http://dipot.com/2009/03/twe2-get-your-twitter-alerts-via-sms-worldwide-for-free/" title="Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free (17/03/2009)">Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/top-friendfeed-tips-for-twitter-users/" title="Top FriendFeed Tips for Twitter Users (23/02/2009)">Top FriendFeed Tips for Twitter Users</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/the-14-types-of-twitter-personalities-media-caffeine/" title="The 14 Types of Twitter Personalities | Media Caffeine (21/03/2009)">The 14 Types of Twitter Personalities | Media Caffeine</a> (0)</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>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/top-twitter-friends/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>World Panoramic Photography &#8211; 360 Cities</title>
		<link>http://dipot.com/2009/03/world-panoramic-photography-360-cities/</link>
		<comments>http://dipot.com/2009/03/world-panoramic-photography-360-cities/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 10:57:39 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/world-panoramic-photography-360-cities/</guid>
		<description><![CDATA[<p>World Panoramic Photography &#8211; 360 Cities
By ageorg</p>
<p>This bookmark links to http://www.360cities.net/</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (2)
	Web browser standards: Opera Software vs Microsoft (0)
	Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free (0)
	TransparencyCamp 2009 (0)


]]></description>
			<content:encoded><![CDATA[<p>World Panoramic Photography &#8211; 360 Cities<br />
By <a href="http://360cities.net">ageorg</a></p>
<p>This bookmark links to <a href="http://www.360cities.net/">http://www.360cities.net/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2007/12/web-browser-standards-opera-software-vs-microsoft/" title="Web browser standards: Opera Software vs Microsoft (16/12/2007)">Web browser standards: Opera Software vs Microsoft</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/twe2-get-your-twitter-alerts-via-sms-worldwide-for-free/" title="Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free (17/03/2009)">Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/transparencycamp-2009/" title="TransparencyCamp 2009 (27/03/2009)">TransparencyCamp 2009</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/world-panoramic-photography-360-cities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The 14 Types of Twitter Personalities &#124; Media Caffeine</title>
		<link>http://dipot.com/2009/03/the-14-types-of-twitter-personalities-media-caffeine/</link>
		<comments>http://dipot.com/2009/03/the-14-types-of-twitter-personalities-media-caffeine/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 01:47:06 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/the-14-types-of-twitter-personalities-media-caffeine/</guid>
		<description><![CDATA[<p>The 14 Types of Twitter Personalities &#124; Media Caffeine
By ageorg</p>
<p>This bookmark links to http://mediacaffeine.com/network/the-14-types-of-twitter-personalities/</p>

	Possibly related posts (auto generated)
	
	News Reading Thoughts (4)
	]]></description>
			<content:encoded><![CDATA[<p>The 14 Types of Twitter Personalities | Media Caffeine<br />
By <a href="http://mediacaffeine.com">ageorg</a></p>
<p>This bookmark links to <a href="http://mediacaffeine.com/network/the-14-types-of-twitter-personalities/">http://mediacaffeine.com/network/the-14-types-of-twitter-personalities/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (4)</li>
	<li><a href="http://dipot.com/2009/01/how-i-post/" title="<!--:en-->Which Service should a Post go to?<!--:--> (12/01/2009)"><!--:en-->Which Service should a Post go to?<!--:--></a> (2)</li>
	<li><a href="http://dipot.com/2009/03/twe2-get-your-twitter-alerts-via-sms-worldwide-for-free/" title="Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free (17/03/2009)">Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/top-twitter-friends/" title="Top Twitter Friends (21/03/2009)">Top Twitter Friends</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/top-friendfeed-tips-for-twitter-users/" title="Top FriendFeed Tips for Twitter Users (23/02/2009)">Top FriendFeed Tips for Twitter Users</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/the-14-types-of-twitter-personalities-media-caffeine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clipmarks :: Firefox Add-ons</title>
		<link>http://dipot.com/2009/03/clipmarks-firefox-add-ons/</link>
		<comments>http://dipot.com/2009/03/clipmarks-firefox-add-ons/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 23:58:19 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[add-ons]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WordPress]]></category>

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

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/01/optimize-firefox-with-91-must-have-add-ons/" title="<!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--> (25/01/2009)"><!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--></a> (2)</li>
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (4)</li>
	<li><a href="http://dipot.com/2009/01/how-i-post/" title="<!--:en-->Which Service should a Post go to?<!--:--> (12/01/2009)"><!--:en-->Which Service should a Post go to?<!--:--></a> (2)</li>
	<li><a href="http://dipot.com/2009/02/apologies-for-last-days-posts-flood/" title="<!--:en-->Apologies for last days&#8217; posts flood<!--:--> (25/02/2009)"><!--:en-->Apologies for last days&#8217; posts flood<!--:--></a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/clipmarks-firefox-add-ons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pattie Maes demos the Sixth Sense &#124; Video on TED.com</title>
		<link>http://dipot.com/2009/03/pattie-maes-demos-the-sixth-sense-video-on-tedcom/</link>
		<comments>http://dipot.com/2009/03/pattie-maes-demos-the-sixth-sense-video-on-tedcom/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 02:09:39 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/pattie-maes-demos-the-sixth-sense-video-on-tedcom/</guid>
		<description><![CDATA[<p>&#8220;This demo &#8212; from Pattie Maes&#39; lab at MIT, spearheaded by Pranav Mistry &#8212; was the buzz of TED. It&#39;s a wearable device with a projector that paves the way for profound interaction with our environment. Imagine &#8220;Minority Report&#8221; and then some.&#8221; Wow!
By ageorg</p>
<p>This bookmark links to http://www.ted.com/index.php/talks/pattie_maes_demos_the_sixth_sense.html</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;This demo &#8212; from Pattie Maes&#39; lab at MIT, spearheaded by Pranav Mistry &#8212; was the buzz of TED. It&#39;s a wearable device with a projector that paves the way for profound interaction with our environment. Imagine &#8220;Minority Report&#8221; and then some.&#8221; Wow!<br />
By <a href="http://ted.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.ted.com/index.php/talks/pattie_maes_demos_the_sixth_sense.html">http://www.ted.com/index.php/talks/pattie_maes_demos_the_sixth_sense.html</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/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/2007/11/nas-for-shared-storage/" title="NAS for shared storage (29/11/2007)">NAS for shared storage</a> (0)</li>
	<li><a href="http://dipot.com/2007/12/microsoft-ie-and-standards-compliance/" title="Microsoft IE and Standards Compliance (29/12/2007)">Microsoft IE and Standards Compliance</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/pattie-maes-demos-the-sixth-sense-video-on-tedcom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free</title>
		<link>http://dipot.com/2009/03/twe2-get-your-twitter-alerts-via-sms-worldwide-for-free/</link>
		<comments>http://dipot.com/2009/03/twe2-get-your-twitter-alerts-via-sms-worldwide-for-free/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 09:02:48 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/twe2-get-your-twitter-alerts-via-sms-worldwide-for-free/</guid>
		<description><![CDATA[<p>Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free
By ageorg</p>
<p>This bookmark links to http://www.twe2.com/about/countries.aspx</p>

	Possibly related posts (auto generated)
	
	News Reading Thoughts (4)
	]]></description>
			<content:encoded><![CDATA[<p>Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free<br />
By <a href="http://twe2.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.twe2.com/about/countries.aspx">http://www.twe2.com/about/countries.aspx</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (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/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/02/apologies-for-last-days-posts-flood/" title="<!--:en-->Apologies for last days&#8217; posts flood<!--:--> (25/02/2009)"><!--:en-->Apologies for last days&#8217; posts flood<!--:--></a> (0)</li>
	<li><a href="http://dipot.com/2009/01/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/03/twe2-get-your-twitter-alerts-via-sms-worldwide-for-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Engine Optimization Secrets Revealed</title>
		<link>http://dipot.com/2009/03/search-engine-optimization-secrets-revealed/</link>
		<comments>http://dipot.com/2009/03/search-engine-optimization-secrets-revealed/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 13:56:40 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[optimization]]></category>

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

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

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/search-engine-optimization-secrets-revealed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>THE HUMAN BODY &#8211; FREE presentations in PowerPoint format, interactive activities, lessons for K-12</title>
		<link>http://dipot.com/2009/03/the-human-body-free-presentations-in-powerpoint-format-interactive-activities-lessons-for-k-12/</link>
		<comments>http://dipot.com/2009/03/the-human-body-free-presentations-in-powerpoint-format-interactive-activities-lessons-for-k-12/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 20:12:10 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://dipot.com/el/2009/03/the-human-body-free-presentations-in-powerpoint-format-interactive-activities-lessons-for-k-12/</guid>
		<description><![CDATA[<p>THE HUMAN BODY &#8211; FREE presentations in PowerPoint format, interactive activities, lessons for K-12
By ageorg</p>
<p>This bookmark links to http://science.pppst.com/humanbody.html</p>

	Possibly related posts (auto generated)
	
	World Panoramic Photography &#8211; 360 Cities (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (2)
	Web browser standards: Opera Software vs Microsoft (0)
	Twe2 &#8211; Get your [...]]]></description>
			<content:encoded><![CDATA[<p>THE HUMAN BODY &#8211; FREE presentations in PowerPoint format, interactive activities, lessons for K-12<br />
By <a href="http://science.pppst.com">ageorg</a></p>
<p>This bookmark links to <a href="http://science.pppst.com/humanbody.html">http://science.pppst.com/humanbody.html</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/03/world-panoramic-photography-360-cities/" title="World Panoramic Photography &#8211; 360 Cities (21/03/2009)">World Panoramic Photography &#8211; 360 Cities</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2007/12/web-browser-standards-opera-software-vs-microsoft/" title="Web browser standards: Opera Software vs Microsoft (16/12/2007)">Web browser standards: Opera Software vs Microsoft</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/twe2-get-your-twitter-alerts-via-sms-worldwide-for-free/" title="Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free (17/03/2009)">Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/the-human-body-free-presentations-in-powerpoint-format-interactive-activities-lessons-for-k-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>spy :: visualizes the conversations on Twitter, Friendfeed, Flickr, Blogs and more.</title>
		<link>http://dipot.com/2009/03/spy-visualizes-the-conversations-on-twitter-friendfeed-flickr-blogs-and-more/</link>
		<comments>http://dipot.com/2009/03/spy-visualizes-the-conversations-on-twitter-friendfeed-flickr-blogs-and-more/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 13:15:49 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/spy-visualizes-the-conversations-on-twitter-friendfeed-flickr-blogs-and-more/</guid>
		<description><![CDATA[<p>spy :: visualizes the conversations on Twitter, Friendfeed, Flickr, Blogs and more.
By ageorg</p>
<p>This bookmark links to http://spy.appspot.com/</p>

	Possibly related posts (auto generated)
	
	News Reading Thoughts (4)
	]]></description>
			<content:encoded><![CDATA[<p>spy :: visualizes the conversations on Twitter, Friendfeed, Flickr, Blogs and more.<br />
By <a href="http://spy.appspot.com">ageorg</a></p>
<p>This bookmark links to <a href="http://spy.appspot.com/">http://spy.appspot.com/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (4)</li>
	<li><a href="http://dipot.com/2009/01/how-i-post/" title="<!--:en-->Which Service should a Post go to?<!--:--> (12/01/2009)"><!--:en-->Which Service should a Post go to?<!--:--></a> (2)</li>
	<li><a href="http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/" title="Feeds to Content &#038; Categories Optimization in WordPress (01/04/2009)">Feeds to Content &#038; Categories Optimization in WordPress</a> (1)</li>
	<li><a href="http://dipot.com/2009/03/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/02/apologies-for-last-days-posts-flood/" title="<!--:en-->Apologies for last days&#8217; posts flood<!--:--> (25/02/2009)"><!--:en-->Apologies for last days&#8217; posts flood<!--:--></a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/03/spy-visualizes-the-conversations-on-twitter-friendfeed-flickr-blogs-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apologies for last days&#8217; posts flood</title>
		<link>http://dipot.com/2009/02/apologies-for-last-days-posts-flood/</link>
		<comments>http://dipot.com/2009/02/apologies-for-last-days-posts-flood/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 00:17:04 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Delicious]]></category>
		<category><![CDATA[DiPot]]></category>
		<category><![CDATA[DiPot.com]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[Ice Tea tech]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[StumbleUpon]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Yet Another Autoblogger]]></category>

		<guid isPermaLink="false">http://dipot.com/?p=1071</guid>
		<description><![CDATA[<p>
</p>
<p>I apologize for the flood of links of the past few days.</p>
<p>I have been trying to implement Yet Another Autoblogger to bring my Delicious and StumbleUpon bookmarks in WordPress-based Ice Tea tech. It seems that, while everything finally worked fine with Delicious, StumbleUpon kept returning the same posts over and over to Autoblogger causing a [...]]]></description>
			<content:encoded><![CDATA[<p><!--:el-->
</p>
<p><!--:--><!--:en-->I apologize for the flood of links of the past few days.</p>
<p>I have been trying to implement <a title="Visit plugin homepage" href="http://www.psypo.com/yaab">Yet Another Autoblogger</a> to bring my <a href="http://delicious.com/ageorg" target="_blank">Delicious</a> and <a href="http://www.stumbleupon.com/stumbler/ageor/" target="_blank">StumbleUpon</a> bookmarks in <a href="http://wordpress.org/" target="_blank">WordPress</a>-based <a href="http://dipot.com/category/bookmarks/" target="_blank">Ice Tea tech</a>. It seems that, while everything finally worked fine with Delicious, StumbleUpon kept returning the same posts over and over to Autoblogger causing a flood in the blog itself and to its <a href="http://dipot.com/feed/" target="_blank">RSS feed</a>, <a href="http://friendfeed.com/ageor" target="_blank">FriendFeed</a> &amp; <a href="http://twitter.com/ageor" target="_blank">Twitter</a> by extension.</p>
<p>I stopped using StumbleUpon a while ago, because it didn&#8217;t support greek-encoded titles. It seems there is also an issue between its feed and Autoblogger. So, at least for the time being, I removed it, which is not that much of a problem, as I don&#8217;t post there any more.</p>
<p>Sorry about that, I&#8217;ll try to contain such incidents in the future. Thank you all for your patience and especially @<a href="http://twitter.com/sotomi" target="_blank">Sotomi</a>, @<a href="http://twitter.com/cybereddie" target="_blank">Cybereddie</a>, @<a href="http://twitter.com/Chriiiiis" target="_blank">Chriiiiis</a>, @<a href="http://twitter.com/Botchagalupe" target="_blank">Botchagalupe</a>, @<a href="http://twitter.com/Alexnewbee" target="_blank">Alexnewbee</a>, @<a href="http://twitter.com/Skoroneos" target="_blank">Skoroneos</a>, @<a href="http://twitter.com/Jimeh" target="_blank">Jimeh</a>, @<a href="http://twitter.com/VTripolitakis" target="_blank">Vtripolitakis</a>, @<a href="http://twitter.com/Spdd" target="_blank">Spdd</a> and those I may have missed for taking the time to notify me about it.</p>
<p>In an attempt to minimize the impact, I erased all the Ice Tea tech feed (with posts) from FriendFeed (I don&#8217;t know how to bulk-erase the relevant twits, any ideas?). The sideffect is that, as I am about to recreate the feed in FriendFeed, multiple blog and bookmark posts will appear at once, possibly in Twitter as well. Please forgive me, hopefully it will be the end of this annoyance.<!--:--></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/" title="Feeds to Content &#038; Categories Optimization in WordPress (01/04/2009)">Feeds to Content &#038; Categories Optimization in WordPress</a> (1)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2009/01/how-i-post/" title="<!--:en-->Which Service should a Post go to?<!--:--> (12/01/2009)"><!--:en-->Which Service should a Post go to?<!--:--></a> (2)</li>
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (4)</li>
</ul>

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

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

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

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/" title="Feeds to Content &#038; Categories Optimization in WordPress (01/04/2009)">Feeds to Content &#038; Categories Optimization in WordPress</a> (1)</li>
	<li><a href="http://dipot.com/2009/04/wp-blogger%c2%a0%c2%a0tag-archive%c2%a0%c2%a0wordpress-plugins/" title="WP-Blogger | Tag Archive | Wordpress Plugins (22/04/2009)">WP-Blogger | Tag Archive | Wordpress Plugins</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-plugins-used-on-the-michel-fortin%c2%a0blog-the-michel-fortin-blog/" title="WordPress Plugins Used On The Michel Fortin Blog | The Michel Fortin Blog (14/04/2009)">WordPress Plugins Used On The Michel Fortin Blog | The Michel Fortin Blog</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/top-60-incredibly-useful-wordpress-plugins-to-power-up-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Teaching Online Journalism » Reporter’s guide to multimedia proficiency (RGMP 1)</title>
		<link>http://dipot.com/2009/02/teaching-online-journalism-%c2%bb-reporter%e2%80%99s-guide-to-multimedia-proficiency-rgmp-1/</link>
		<comments>http://dipot.com/2009/02/teaching-online-journalism-%c2%bb-reporter%e2%80%99s-guide-to-multimedia-proficiency-rgmp-1/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 22:16:24 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[MS]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/teaching-online-journalism-%c2%bb-reporter%e2%80%99s-guide-to-multimedia-proficiency-rgmp-1/</guid>
		<description><![CDATA[<p>Teaching Online Journalism » Reporter’s guide to multimedia proficiency (RGMP 1)
By ageorg</p>
<p>This bookmark links to http://mindymcadams.com/tojou/2009/reporters-guide-to-multimedia-proficiency-part-1/</p>

	Possibly related posts (auto generated)
	
	PCs and the Internet: Addiction Magnets or just Tools? (1)
	News Reading Thoughts (4)
	Mains power systems &#8211; Wikipedia, the free encyclopedia (0)
	Athens Startup Weekend 2008 (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)


]]></description>
			<content:encoded><![CDATA[<p>Teaching Online Journalism » Reporter’s guide to multimedia proficiency (RGMP 1)<br />
By <a href="http://mindymcadams.com">ageorg</a></p>
<p>This bookmark links to <a href="http://mindymcadams.com/tojou/2009/reporters-guide-to-multimedia-proficiency-part-1/">http://mindymcadams.com/tojou/2009/reporters-guide-to-multimedia-proficiency-part-1/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/" title="PCs and the Internet: Addiction Magnets or just Tools? (05/04/2009)">PCs and the Internet: Addiction Magnets or just Tools?</a> (1)</li>
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (4)</li>
	<li><a href="http://dipot.com/2009/03/mains-power-systems-wikipedia-the-free-encyclopedia/" title="Mains power systems &#8211; Wikipedia, the free encyclopedia (24/03/2009)">Mains power systems &#8211; Wikipedia, the free encyclopedia</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/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/teaching-online-journalism-%c2%bb-reporter%e2%80%99s-guide-to-multimedia-proficiency-rgmp-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Startup Tips From the Father of Gmail and FriendFeed</title>
		<link>http://dipot.com/2009/02/5-startup-tips-from-the-father-of-gmail-and-friendfeed/</link>
		<comments>http://dipot.com/2009/02/5-startup-tips-from-the-father-of-gmail-and-friendfeed/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 22:16:19 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/5-startup-tips-from-the-father-of-gmail-and-friendfeed/</guid>
		<description><![CDATA[<p>5 Startup Tips From the Father of Gmail and FriendFeed
By ageorg</p>
<p>This bookmark links to http://mashable.com/2009/02/24/paul-buchheit-startup-tips/</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (2)
	Top FriendFeed Tips for Twitter Users (0)
	The Unofficial Guide to Friendfeed Part 2: Getting Started (0)
	spy :: visualizes the conversations on [...]]]></description>
			<content:encoded><![CDATA[<p>5 Startup Tips From the Father of Gmail and FriendFeed<br />
By <a href="http://mashable.com">ageorg</a></p>
<p>This bookmark links to <a href="http://mashable.com/2009/02/24/paul-buchheit-startup-tips/">http://mashable.com/2009/02/24/paul-buchheit-startup-tips/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2009/02/top-friendfeed-tips-for-twitter-users/" title="Top FriendFeed Tips for Twitter Users (23/02/2009)">Top FriendFeed Tips for Twitter Users</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/the-unofficial-guide-to-friendfeed-part-2-getting-started/" title="The Unofficial Guide to Friendfeed Part 2: Getting Started (23/02/2009)">The Unofficial Guide to Friendfeed Part 2: Getting Started</a> (0)</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>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/5-startup-tips-from-the-father-of-gmail-and-friendfeed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Media &#8211; from theory to praxis</title>
		<link>http://dipot.com/2009/02/social-media-from-theory-to-praxis/</link>
		<comments>http://dipot.com/2009/02/social-media-from-theory-to-praxis/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:39 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[favorites]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[SlideShare]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[StumbleUpon]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/social-media-from-theory-to-praxis/</guid>
		<description><![CDATA[<p>
1 reviews
By stumbleupon.com</p>
<p>This bookmark links to http://www.stumbleupon.com/demo/?src=favorites#url=http://www.slideshare.net/karagos/social-media-from-theory-to-praxis-presentation-785058/v1</p>

	Possibly related posts (auto generated)
	
	The Unofficial Guide to Friendfeed Part 2: Getting Started (0)
	PCs and the Internet: Addiction Magnets or just Tools? (1)
	notify.me (0)
	Livestation  &#124; Watch instant, interactive, live TV on your desktop &#124; Download the free Livestation player (0)
	http://ilist.com/ (0)


]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.stumbleupon.com/demo/?src=favorites#url=http://www.slideshare.net/karagos/social-media-from-theory-to-praxis-presentation-785058/v1"><img src="http://cdn.stumble-upon.com/mthumb/384/26283384.jpg"/></a><br />
<a href="http://www.stumbleupon.com/url/www.slideshare.net/karagos/social-media-from-theory-to-praxis-presentation-785058/v1">1 reviews</a><br />
By <a href="http://stumbleupon.com">stumbleupon.com</a></p>
<p>This bookmark links to <a href="http://www.stumbleupon.com/demo/?src=favorites#url=http://www.slideshare.net/karagos/social-media-from-theory-to-praxis-presentation-785058/v1">http://www.stumbleupon.com/demo/?src=favorites#url=http://www.slideshare.net/karagos/social-media-from-theory-to-praxis-presentation-785058/v1</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/02/the-unofficial-guide-to-friendfeed-part-2-getting-started/" title="The Unofficial Guide to Friendfeed Part 2: Getting Started (23/02/2009)">The Unofficial Guide to Friendfeed Part 2: Getting Started</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/" title="PCs and the Internet: Addiction Magnets or just Tools? (05/04/2009)">PCs and the Internet: Addiction Magnets or just Tools?</a> (1)</li>
	<li><a href="http://dipot.com/2009/02/notifyme/" title="notify.me (23/02/2009)">notify.me</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/livestation-watch-instant-interactive-live-tv-on-your-desktop-download-the-free-livestation-player/" title="Livestation  | Watch instant, interactive, live TV on your desktop | Download the free Livestation player (23/02/2009)">Livestation  | Watch instant, interactive, live TV on your desktop | Download the free Livestation player</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/httpilistcom/" title="http://ilist.com/ (23/02/2009)">http://ilist.com/</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/social-media-from-theory-to-praxis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Business Model Innovation Matters &#124; Anabubula.com *</title>
		<link>http://dipot.com/2009/02/business-model-innovation-matters-anabubulacom/</link>
		<comments>http://dipot.com/2009/02/business-model-innovation-matters-anabubulacom/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:39 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[favorites]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[StumbleUpon]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/business-model-innovation-matters-anabubulacom/</guid>
		<description><![CDATA[<p>
1 reviews
By stumbleupon.com</p>
<p>This bookmark links to http://www.stumbleupon.com/demo/?src=favorites#url=http://anabubula.com/video/Business-Model-Innovation-Matters</p>

	Possibly related posts (auto generated)
	
	The Unofficial Guide to Friendfeed Part 2: Getting Started (0)
	Social Media &#8211; from theory to praxis (0)
	notify.me (0)
	Livestation  &#124; Watch instant, interactive, live TV on your desktop &#124; Download the free Livestation player (0)
	http://ilist.com/ (0)


]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.stumbleupon.com/demo/?src=favorites#url=http://anabubula.com/video/Business-Model-Innovation-Matters"><img src="http://cdn.stumble-upon.com/mthumb/181/26281181.jpg"/></a><br />
<a href="http://www.stumbleupon.com/url/anabubula.com/video/Business-Model-Innovation-Matters">1 reviews</a><br />
By <a href="http://stumbleupon.com">stumbleupon.com</a></p>
<p>This bookmark links to <a href="http://www.stumbleupon.com/demo/?src=favorites#url=http://anabubula.com/video/Business-Model-Innovation-Matters">http://www.stumbleupon.com/demo/?src=favorites#url=http://anabubula.com/video/Business-Model-Innovation-Matters</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/02/the-unofficial-guide-to-friendfeed-part-2-getting-started/" title="The Unofficial Guide to Friendfeed Part 2: Getting Started (23/02/2009)">The Unofficial Guide to Friendfeed Part 2: Getting Started</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/notifyme/" title="notify.me (23/02/2009)">notify.me</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/livestation-watch-instant-interactive-live-tv-on-your-desktop-download-the-free-livestation-player/" title="Livestation  | Watch instant, interactive, live TV on your desktop | Download the free Livestation player (23/02/2009)">Livestation  | Watch instant, interactive, live TV on your desktop | Download the free Livestation player</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/httpilistcom/" title="http://ilist.com/ (23/02/2009)">http://ilist.com/</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/business-model-innovation-matters-anabubulacom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>notify.me</title>
		<link>http://dipot.com/2009/02/notifyme/</link>
		<comments>http://dipot.com/2009/02/notifyme/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:39 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[favorites]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[StumbleUpon]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/notifyme/</guid>
		<description><![CDATA[<p>
1 reviews
By stumbleupon.com</p>
<p>This bookmark links to http://www.stumbleupon.com/demo/?src=favorites#url=http://notify.me/</p>

	Possibly related posts (auto generated)
	
	The Unofficial Guide to Friendfeed Part 2: Getting Started (0)
	Social Media &#8211; from theory to praxis (0)
	Livestation  &#124; Watch instant, interactive, live TV on your desktop &#124; Download the free Livestation player (0)
	http://ilist.com/ (0)
	Business Model Innovation Matters &#124; Anabubula.com * (0)


]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.stumbleupon.com/demo/?src=favorites#url=http://notify.me/"><img src="http://cdn.stumble-upon.com/mthumb/122/25891122.jpg"/></a><br />
<a href="http://www.stumbleupon.com/url/notify.me/">1 reviews</a><br />
By <a href="http://stumbleupon.com">stumbleupon.com</a></p>
<p>This bookmark links to <a href="http://www.stumbleupon.com/demo/?src=favorites#url=http://notify.me/">http://www.stumbleupon.com/demo/?src=favorites#url=http://notify.me/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/02/the-unofficial-guide-to-friendfeed-part-2-getting-started/" title="The Unofficial Guide to Friendfeed Part 2: Getting Started (23/02/2009)">The Unofficial Guide to Friendfeed Part 2: Getting Started</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/livestation-watch-instant-interactive-live-tv-on-your-desktop-download-the-free-livestation-player/" title="Livestation  | Watch instant, interactive, live TV on your desktop | Download the free Livestation player (23/02/2009)">Livestation  | Watch instant, interactive, live TV on your desktop | Download the free Livestation player</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/httpilistcom/" title="http://ilist.com/ (23/02/2009)">http://ilist.com/</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/business-model-innovation-matters-anabubulacom/" title="Business Model Innovation Matters | Anabubula.com * (23/02/2009)">Business Model Innovation Matters | Anabubula.com *</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/notifyme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>6 sites to help you check your websites usability &#124; Web Design Blog x2interactive. Ένα blog για το Internet και το Web Design</title>
		<link>http://dipot.com/2009/02/6-sites-to-help-you-check-your-websites-usability-web-design-blog-x2interactive-%ce%ad%ce%bd%ce%b1-blog-%ce%b3%ce%b9%ce%b1-%cf%84%ce%bf-internet-%ce%ba%ce%b1%ce%b9-%cf%84%ce%bf-web-design/</link>
		<comments>http://dipot.com/2009/02/6-sites-to-help-you-check-your-websites-usability-web-design-blog-x2interactive-%ce%ad%ce%bd%ce%b1-blog-%ce%b3%ce%b9%ce%b1-%cf%84%ce%bf-internet-%ce%ba%ce%b1%ce%b9-%cf%84%ce%bf-web-design/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:39 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[favorites]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[StumbleUpon]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/6-sites-to-help-you-check-your-websites-usability-web-design-blog-x2interactive-%ce%ad%ce%bd%ce%b1-blog-%ce%b3%ce%b9%ce%b1-%cf%84%ce%bf-internet-%ce%ba%ce%b1%ce%b9-%cf%84%ce%bf-web-design/</guid>
		<description><![CDATA[<p>
0 reviews
By stumbleupon.com</p>
<p>This bookmark links to http://www.stumbleupon.com/demo/?src=favorites#url=http://www.webdesignblog.gr/6-sites-to-help-you-check-your-websites-usability/</p>

	Possibly related posts (auto generated)
	
	The Unofficial Guide to Friendfeed Part 2: Getting Started (0)
	Social Media &#8211; from theory to praxis (0)
	PCs and the Internet: Addiction Magnets or just Tools? (1)
	notify.me (0)
	Microsoft IE and Standards Compliance (0)


]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.stumbleupon.com/demo/?src=favorites#url=http://www.webdesignblog.gr/6-sites-to-help-you-check-your-websites-usability/"><img src="http://cdn.stumble-upon.com/mthumb/546/26259546.jpg"/></a><br />
<a href="http://www.stumbleupon.com/url/www.webdesignblog.gr/6-sites-to-help-you-check-your-websites-usability/">0 reviews</a><br />
By <a href="http://stumbleupon.com">stumbleupon.com</a></p>
<p>This bookmark links to <a href="http://www.stumbleupon.com/demo/?src=favorites#url=http://www.webdesignblog.gr/6-sites-to-help-you-check-your-websites-usability/">http://www.stumbleupon.com/demo/?src=favorites#url=http://www.webdesignblog.gr/6-sites-to-help-you-check-your-websites-usability/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/02/the-unofficial-guide-to-friendfeed-part-2-getting-started/" title="The Unofficial Guide to Friendfeed Part 2: Getting Started (23/02/2009)">The Unofficial Guide to Friendfeed Part 2: Getting Started</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/social-media-from-theory-to-praxis/" title="Social Media &#8211; from theory to praxis (23/02/2009)">Social Media &#8211; from theory to praxis</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/" title="PCs and the Internet: Addiction Magnets or just Tools? (05/04/2009)">PCs and the Internet: Addiction Magnets or just Tools?</a> (1)</li>
	<li><a href="http://dipot.com/2009/02/notifyme/" title="notify.me (23/02/2009)">notify.me</a> (0)</li>
	<li><a href="http://dipot.com/2007/12/microsoft-ie-and-standards-compliance/" title="Microsoft IE and Standards Compliance (29/12/2007)">Microsoft IE and Standards Compliance</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/6-sites-to-help-you-check-your-websites-usability-web-design-blog-x2interactive-%ce%ad%ce%bd%ce%b1-blog-%ce%b3%ce%b9%ce%b1-%cf%84%ce%bf-internet-%ce%ba%ce%b1%ce%b9-%cf%84%ce%bf-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Unofficial Guide to Friendfeed Part 2: Getting Started</title>
		<link>http://dipot.com/2009/02/the-unofficial-guide-to-friendfeed-part-2-getting-started/</link>
		<comments>http://dipot.com/2009/02/the-unofficial-guide-to-friendfeed-part-2-getting-started/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:38 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[favorites]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[StumbleUpon]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/the-unofficial-guide-to-friendfeed-part-2-getting-started/</guid>
		<description><![CDATA[<p>
0 reviews
By stumbleupon.com</p>
<p>This bookmark links to http://www.stumbleupon.com/demo/?src=favorites#url=http://thenextweb.com/2008/11/20/the-unofficial-guide-to-friendfeed-part-2-getting-started/</p>

	Possibly related posts (auto generated)
	
	]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.stumbleupon.com/demo/?src=favorites#url=http://thenextweb.com/2008/11/20/the-unofficial-guide-to-friendfeed-part-2-getting-started/"><img src="http://cdn.stumble-upon.com/mthumb/621/26121621.jpg"/></a><br />
<a href="http://www.stumbleupon.com/url/thenextweb.com/2008/11/20/the-unofficial-guide-to-friendfeed-part-2-getting-started/">0 reviews</a><br />
By <a href="http://stumbleupon.com">stumbleupon.com</a></p>
<p>This bookmark links to <a href="http://www.stumbleupon.com/demo/?src=favorites#url=http://thenextweb.com/2008/11/20/the-unofficial-guide-to-friendfeed-part-2-getting-started/">http://www.stumbleupon.com/demo/?src=favorites#url=http://thenextweb.com/2008/11/20/the-unofficial-guide-to-friendfeed-part-2-getting-started/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/01/optimize-firefox-with-91-must-have-add-ons/" title="<!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--> (25/01/2009)"><!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--></a> (2)</li>
	<li><a href="http://dipot.com/2009/02/apologies-for-last-days-posts-flood/" title="<!--:en-->Apologies for last days&#8217; posts flood<!--:--> (25/02/2009)"><!--:en-->Apologies for last days&#8217; posts flood<!--:--></a> (0)</li>
	<li><a href="http://dipot.com/2009/01/7-favorite-value-adding-friendfeed-applications/" title="<!--:en-->7 Favorite, Value Adding FriendFeed Applications<!--:--> (22/01/2009)"><!--:en-->7 Favorite, Value Adding FriendFeed Applications<!--:--></a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/the-unofficial-guide-to-friendfeed-part-2-getting-started/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Livestation  &#124; Watch instant, interactive, live TV on your desktop &#124; Download the free Livestation player</title>
		<link>http://dipot.com/2009/02/livestation-watch-instant-interactive-live-tv-on-your-desktop-download-the-free-livestation-player/</link>
		<comments>http://dipot.com/2009/02/livestation-watch-instant-interactive-live-tv-on-your-desktop-download-the-free-livestation-player/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:38 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[favorites]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[StumbleUpon]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/livestation-watch-instant-interactive-live-tv-on-your-desktop-download-the-free-livestation-player/</guid>
		<description><![CDATA[<p>
6 reviews
By stumbleupon.com</p>
<p>This bookmark links to http://www.stumbleupon.com/demo/?src=favorites#url=http://www.livestation.com/</p>

	Possibly related posts (auto generated)
	
	The Unofficial Guide to Friendfeed Part 2: Getting Started (0)
	Social Media &#8211; from theory to praxis (0)
	notify.me (0)
	http://ilist.com/ (0)
	Business Model Innovation Matters &#124; Anabubula.com * (0)


]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.stumbleupon.com/demo/?src=favorites#url=http://www.livestation.com/"><img src="http://cdn.stumble-upon.com/altmthumb/421/12505421.jpg"/></a><br />
<a href="http://www.stumbleupon.com/url/www.livestation.com/">6 reviews</a><br />
By <a href="http://stumbleupon.com">stumbleupon.com</a></p>
<p>This bookmark links to <a href="http://www.stumbleupon.com/demo/?src=favorites#url=http://www.livestation.com/">http://www.stumbleupon.com/demo/?src=favorites#url=http://www.livestation.com/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/02/the-unofficial-guide-to-friendfeed-part-2-getting-started/" title="The Unofficial Guide to Friendfeed Part 2: Getting Started (23/02/2009)">The Unofficial Guide to Friendfeed Part 2: Getting Started</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/notifyme/" title="notify.me (23/02/2009)">notify.me</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/httpilistcom/" title="http://ilist.com/ (23/02/2009)">http://ilist.com/</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/business-model-innovation-matters-anabubulacom/" title="Business Model Innovation Matters | Anabubula.com * (23/02/2009)">Business Model Innovation Matters | Anabubula.com *</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/livestation-watch-instant-interactive-live-tv-on-your-desktop-download-the-free-livestation-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android Market Business and Program Policies</title>
		<link>http://dipot.com/2009/02/android-market-business-and-program-policies/</link>
		<comments>http://dipot.com/2009/02/android-market-business-and-program-policies/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:38 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[PDA]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/android-market-business-and-program-policies/</guid>
		<description><![CDATA[<p>Android Market (“Market”) is owned and operated by Google Inc. Your use of Android Market is subject to your agreement to the policies set forth below, which may be updated from time to time.
By ageorg</p>
<p>This bookmark links to http://www.google.com/intl/en_us/mobile/android/market-policies.html</p>

	Possibly related posts (auto generated)
	
	The Google Android Platform (1)
	Microsoft IE and Standards Compliance (0)
	]]></description>
			<content:encoded><![CDATA[<p>Android Market (“Market”) is owned and operated by Google Inc. Your use of Android Market is subject to your agreement to the policies set forth below, which may be updated from time to time.<br />
By <a href="http://google.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.google.com/intl/en_us/mobile/android/market-policies.html">http://www.google.com/intl/en_us/mobile/android/market-policies.html</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<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/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/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/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/2010/10/windows-phone-7-or-android-for-horde-lightning-and-mobile-phone-synchronization/" title="Windows Phone 7 or Android for Horde, Lightning and mobile phone synchronization? (12/10/2010)">Windows Phone 7 or Android for Horde, Lightning and mobile phone synchronization?</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/android-market-business-and-program-policies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert pdf to word &#8211; Convert pdf to doc &#8211; Convert online pdf to word</title>
		<link>http://dipot.com/2009/02/convert-pdf-to-word-convert-pdf-to-doc-convert-online-pdf-to-word/</link>
		<comments>http://dipot.com/2009/02/convert-pdf-to-word-convert-pdf-to-doc-convert-online-pdf-to-word/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:38 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[favorites]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[StumbleUpon]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/convert-pdf-to-word-convert-pdf-to-doc-convert-online-pdf-to-word/</guid>
		<description><![CDATA[<p>
167 reviews
By stumbleupon.com</p>
<p>This bookmark links to http://www.stumbleupon.com/demo/?src=favorites#url=http://convertpdftoword.net/</p>

	Possibly related posts (auto generated)
	
	The Unofficial Guide to Friendfeed Part 2: Getting Started (0)
	Social Media &#8211; from theory to praxis (0)
	notify.me (0)
	Livestation  &#124; Watch instant, interactive, live TV on your desktop &#124; Download the free Livestation player (0)
	http://ilist.com/ (0)


]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.stumbleupon.com/demo/?src=favorites#url=http://convertpdftoword.net/"><img src="http://cdn.stumble-upon.com/mthumb/851/25994851.jpg"/></a><br />
<a href="http://www.stumbleupon.com/url/convertpdftoword.net/">167 reviews</a><br />
By <a href="http://stumbleupon.com">stumbleupon.com</a></p>
<p>This bookmark links to <a href="http://www.stumbleupon.com/demo/?src=favorites#url=http://convertpdftoword.net/">http://www.stumbleupon.com/demo/?src=favorites#url=http://convertpdftoword.net/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/02/the-unofficial-guide-to-friendfeed-part-2-getting-started/" title="The Unofficial Guide to Friendfeed Part 2: Getting Started (23/02/2009)">The Unofficial Guide to Friendfeed Part 2: Getting Started</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/notifyme/" title="notify.me (23/02/2009)">notify.me</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/livestation-watch-instant-interactive-live-tv-on-your-desktop-download-the-free-livestation-player/" title="Livestation  | Watch instant, interactive, live TV on your desktop | Download the free Livestation player (23/02/2009)">Livestation  | Watch instant, interactive, live TV on your desktop | Download the free Livestation player</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/httpilistcom/" title="http://ilist.com/ (23/02/2009)">http://ilist.com/</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/convert-pdf-to-word-convert-pdf-to-doc-convert-online-pdf-to-word/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>http://ilist.com/</title>
		<link>http://dipot.com/2009/02/httpilistcom/</link>
		<comments>http://dipot.com/2009/02/httpilistcom/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:38 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[favorites]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[StumbleUpon]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/httpilistcom/</guid>
		<description><![CDATA[<p>
1 reviews
By stumbleupon.com</p>
<p>This bookmark links to http://www.stumbleupon.com/demo/?src=favorites#url=http://ilist.com/</p>

	Possibly related posts (auto generated)
	
	The Unofficial Guide to Friendfeed Part 2: Getting Started (0)
	Social Media &#8211; from theory to praxis (0)
	notify.me (0)
	Livestation  &#124; Watch instant, interactive, live TV on your desktop &#124; Download the free Livestation player (0)
	Business Model Innovation Matters &#124; Anabubula.com * (0)


]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.stumbleupon.com/demo/?src=favorites#url=http://ilist.com/"><img src="http://cdn.stumble-upon.com/mthumb/326/23122326.jpg"/></a><br />
<a href="http://www.stumbleupon.com/url/ilist.com/">1 reviews</a><br />
By <a href="http://stumbleupon.com">stumbleupon.com</a></p>
<p>This bookmark links to <a href="http://www.stumbleupon.com/demo/?src=favorites#url=http://ilist.com/">http://www.stumbleupon.com/demo/?src=favorites#url=http://ilist.com/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/02/the-unofficial-guide-to-friendfeed-part-2-getting-started/" title="The Unofficial Guide to Friendfeed Part 2: Getting Started (23/02/2009)">The Unofficial Guide to Friendfeed Part 2: Getting Started</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/notifyme/" title="notify.me (23/02/2009)">notify.me</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/livestation-watch-instant-interactive-live-tv-on-your-desktop-download-the-free-livestation-player/" title="Livestation  | Watch instant, interactive, live TV on your desktop | Download the free Livestation player (23/02/2009)">Livestation  | Watch instant, interactive, live TV on your desktop | Download the free Livestation player</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/business-model-innovation-matters-anabubulacom/" title="Business Model Innovation Matters | Anabubula.com * (23/02/2009)">Business Model Innovation Matters | Anabubula.com *</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/httpilistcom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>home &#124; fluid interfaces</title>
		<link>http://dipot.com/2009/02/home-fluid-interfaces/</link>
		<comments>http://dipot.com/2009/02/home-fluid-interfaces/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:37 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/home-fluid-interfaces/</guid>
		<description><![CDATA[<p>home &#124; fluid interfaces
By ageorg</p>
<p>This bookmark links to http://ambient.media.mit.edu/</p>

	Possibly related posts (auto generated)
	
	The 14 Types of Twitter Personalities &#124; Media Caffeine (0)
	Teaching Online Journalism » Reporter’s guide to multimedia proficiency (RGMP 1) (0)
	Social Media &#8211; from theory to praxis (0)
	PCs and the Internet: Addiction Magnets or just Tools? (1)
	News Reading Thoughts (4)


]]></description>
			<content:encoded><![CDATA[<p>home | fluid interfaces<br />
By <a href="http://ambient.media.mit.edu">ageorg</a></p>
<p>This bookmark links to <a href="http://ambient.media.mit.edu/">http://ambient.media.mit.edu/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/03/the-14-types-of-twitter-personalities-media-caffeine/" title="The 14 Types of Twitter Personalities | Media Caffeine (21/03/2009)">The 14 Types of Twitter Personalities | Media Caffeine</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/teaching-online-journalism-%c2%bb-reporter%e2%80%99s-guide-to-multimedia-proficiency-rgmp-1/" title="Teaching Online Journalism » Reporter’s guide to multimedia proficiency (RGMP 1) (25/02/2009)">Teaching Online Journalism » Reporter’s guide to multimedia proficiency (RGMP 1)</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/social-media-from-theory-to-praxis/" title="Social Media &#8211; from theory to praxis (23/02/2009)">Social Media &#8211; from theory to praxis</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/" title="PCs and the Internet: Addiction Magnets or just Tools? (05/04/2009)">PCs and the Internet: Addiction Magnets or just Tools?</a> (1)</li>
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/home-fluid-interfaces/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fullscreen Gigapan Viewer</title>
		<link>http://dipot.com/2009/02/fullscreen-gigapan-viewer/</link>
		<comments>http://dipot.com/2009/02/fullscreen-gigapan-viewer/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:37 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/fullscreen-gigapan-viewer/</guid>
		<description><![CDATA[<p>Fullscreen Gigapan Viewer
By ageorg</p>
<p>This bookmark links to http://gigapan.org/viewGigapanFullscreen.php?auth=033ef14483ee899496648c2b4b06233c</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (2)
	The Google Android Platform (1)
	Pattie Maes demos the Sixth Sense &#124; Video on TED.com (0)
	NAS for shared storage (0)


]]></description>
			<content:encoded><![CDATA[<p>Fullscreen Gigapan Viewer<br />
By <a href="http://gigapan.org">ageorg</a></p>
<p>This bookmark links to <a href="http://gigapan.org/viewGigapanFullscreen.php?auth=033ef14483ee899496648c2b4b06233c">http://gigapan.org/viewGigapanFullscreen.php?auth=033ef14483ee899496648c2b4b06233c</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2008/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/03/pattie-maes-demos-the-sixth-sense-video-on-tedcom/" title="Pattie Maes demos the Sixth Sense | Video on TED.com (19/03/2009)">Pattie Maes demos the Sixth Sense | Video on TED.com</a> (0)</li>
	<li><a href="http://dipot.com/2007/11/nas-for-shared-storage/" title="NAS for shared storage (29/11/2007)">NAS for shared storage</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/fullscreen-gigapan-viewer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HERMES &#8211; Homepage</title>
		<link>http://dipot.com/2009/02/hermes-homepage/</link>
		<comments>http://dipot.com/2009/02/hermes-homepage/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:37 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/hermes-homepage/</guid>
		<description><![CDATA[<p>&#8220;Navigate in the Hellenic government portal &#8220;ERMIS&#8221; and take advantage of the published news, the offered services, the frequently asked questions and the useful links under the categories you will choose.&#8221;&#8230; In Greek also
By ageorg</p>
<p>This bookmark links to http://www.ermis.gov.gr/portal/page/portal/ermis/</p>

	Possibly related posts (auto generated)
	
	PCs and the Internet: Addiction Magnets or just Tools? (1)
	News Reading Thoughts (4)
	Green [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;Navigate in the Hellenic government portal &#8220;ERMIS&#8221; and take advantage of the published news, the offered services, the frequently asked questions and the useful links under the categories you will choose.&#8221;&#8230; In Greek also<br />
By <a href="http://ermis.gov.gr">ageorg</a></p>
<p>This bookmark links to <a href="http://www.ermis.gov.gr/portal/page/portal/ermis/">http://www.ermis.gov.gr/portal/page/portal/ermis/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/" title="PCs and the Internet: Addiction Magnets or just Tools? (05/04/2009)">PCs and the Internet: Addiction Magnets or just Tools?</a> (1)</li>
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (4)</li>
	<li><a href="http://dipot.com/2009/03/green-it-services-catalyst-for-cost-optimization-it-articles-hardware-software-computer-vendors-in-india-it-industry-in-india-latest-it-news/" title="Green IT Services : Catalyst for Cost Optimization &#8211; IT articles, Hardware &amp; Software, Computer vendors in India, IT industry in India : Latest IT News (25/03/2009)">Green IT Services : Catalyst for Cost Optimization &#8211; IT articles, Hardware &amp; Software, Computer vendors in India, IT industry in India : Latest IT News</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/world-panoramic-photography-360-cities/" title="World Panoramic Photography &#8211; 360 Cities (21/03/2009)">World Panoramic Photography &#8211; 360 Cities</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/hermes-homepage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Use the New FriendFeed Search for Social Media Intelligence &#8211; ReadWriteWeb</title>
		<link>http://dipot.com/2009/02/how-to-use-the-new-friendfeed-search-for-social-media-intelligence-readwriteweb/</link>
		<comments>http://dipot.com/2009/02/how-to-use-the-new-friendfeed-search-for-social-media-intelligence-readwriteweb/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:37 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/how-to-use-the-new-friendfeed-search-for-social-media-intelligence-readwriteweb/</guid>
		<description><![CDATA[<p>How to Use the New FriendFeed Search for Social Media Intelligence &#8211; ReadWriteWeb
By ageorg</p>
<p>This bookmark links to http://www.readwriteweb.com/archives/how_to_use_the_new_friendfeed.php</p>

	Possibly related posts (auto generated)
	
	PCs and the Internet: Addiction Magnets or just Tools? (1)
	Athens Startup Weekend 2008 (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (2)
	News Reading Thoughts (4)


]]></description>
			<content:encoded><![CDATA[<p>How to Use the New FriendFeed Search for Social Media Intelligence &#8211; ReadWriteWeb<br />
By <a href="http://readwriteweb.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.readwriteweb.com/archives/how_to_use_the_new_friendfeed.php">http://www.readwriteweb.com/archives/how_to_use_the_new_friendfeed.php</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/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/how-to-use-the-new-friendfeed-search-for-social-media-intelligence-readwriteweb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Friend Mom, Dad, and the Boss on Facebook&#8230;Safely &#8211; ReadWriteWeb</title>
		<link>http://dipot.com/2009/02/how-to-friend-mom-dad-and-the-boss-on-facebooksafely-readwriteweb/</link>
		<comments>http://dipot.com/2009/02/how-to-friend-mom-dad-and-the-boss-on-facebooksafely-readwriteweb/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:36 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/how-to-friend-mom-dad-and-the-boss-on-facebooksafely-readwriteweb/</guid>
		<description><![CDATA[<p>How to Friend Mom, Dad, and the Boss on Facebook&#8230;Safely &#8211; ReadWriteWeb
By ageorg</p>
<p>This bookmark links to http://www.readwriteweb.com/archives/how_to_friend_mom_dad_and_the.php</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (2)
	The Google Android Platform (1)
	Pattie Maes demos the Sixth Sense &#124; Video on TED.com (0)
	NAS for shared storage (0)


]]></description>
			<content:encoded><![CDATA[<p>How to Friend Mom, Dad, and the Boss on Facebook&#8230;Safely &#8211; ReadWriteWeb<br />
By <a href="http://readwriteweb.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.readwriteweb.com/archives/how_to_friend_mom_dad_and_the.php">http://www.readwriteweb.com/archives/how_to_friend_mom_dad_and_the.php</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2008/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/03/pattie-maes-demos-the-sixth-sense-video-on-tedcom/" title="Pattie Maes demos the Sixth Sense | Video on TED.com (19/03/2009)">Pattie Maes demos the Sixth Sense | Video on TED.com</a> (0)</li>
	<li><a href="http://dipot.com/2007/11/nas-for-shared-storage/" title="NAS for shared storage (29/11/2007)">NAS for shared storage</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/how-to-friend-mom-dad-and-the-boss-on-facebooksafely-readwriteweb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Main page &#8211; Ubuntu Pocket Guide and Reference</title>
		<link>http://dipot.com/2009/02/main-page-ubuntu-pocket-guide-and-reference/</link>
		<comments>http://dipot.com/2009/02/main-page-ubuntu-pocket-guide-and-reference/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:36 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[PDF]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/main-page-ubuntu-pocket-guide-and-reference/</guid>
		<description><![CDATA[<p>The PDF Edition (eBook) is entirely free of charge and is identical to the print edition. Over 100,000 people have already downloaded it! Grab the PDF or click here to tell a friend!
By ageorg</p>
<p>This bookmark links to http://www.ubuntupocketguide.com/</p>

	Possibly related posts (auto generated)
	
	]]></description>
			<content:encoded><![CDATA[<p>The PDF Edition (eBook) is entirely free of charge and is identical to the print edition. Over 100,000 people have already downloaded it! Grab the PDF or click here to tell a friend!<br />
By <a href="http://ubuntupocketguide.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.ubuntupocketguide.com/">http://www.ubuntupocketguide.com/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/01/optimize-firefox-with-91-must-have-add-ons/" title="<!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--> (25/01/2009)"><!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--></a> (2)</li>
	<li><a href="http://dipot.com/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/02/livestation-watch-instant-interactive-live-tv-on-your-desktop-download-the-free-livestation-player/" title="Livestation  | Watch instant, interactive, live TV on your desktop | Download the free Livestation player (23/02/2009)">Livestation  | Watch instant, interactive, live TV on your desktop | Download the free Livestation player</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/convert-pdf-to-word-convert-pdf-to-doc-convert-online-pdf-to-word/" title="Convert pdf to word &#8211; Convert pdf to doc &#8211; Convert online pdf to word (23/02/2009)">Convert pdf to word &#8211; Convert pdf to doc &#8211; Convert online pdf to word</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/%c2%bb-%ce%bf-%cf%87%ce%ac%cf%81%cf%84%ce%b7%cf%82-%cf%84%ce%b7%cf%82-%ce%b5%ce%bb%ce%bb%ce%b7%ce%bd%ce%b9%ce%ba%ce%ae%cf%82-%ce%bc%cf%80%ce%bb%ce%bf%ce%b3%ce%ba%cf%8c%cf%83%cf%86%ce%b1%ce%b9%cf%81/" title="» Ο χάρτης της Ελληνικής μπλογκόσφαιρας &#8211; links &#038; downloads » NYLON (23/02/2009)">» Ο χάρτης της Ελληνικής μπλογκόσφαιρας &#8211; links &#038; downloads » NYLON</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/main-page-ubuntu-pocket-guide-and-reference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>50 Essential Strategies For Creating A Successful Web 2.0 Product [Dion Hinchcliffe&#039;s Web 2.0 Blog]</title>
		<link>http://dipot.com/2009/02/50-essential-strategies-for-creating-a-successful-web-20-product-dion-hinchcliffes-web-20-blog/</link>
		<comments>http://dipot.com/2009/02/50-essential-strategies-for-creating-a-successful-web-20-product-dion-hinchcliffes-web-20-blog/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:36 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/50-essential-strategies-for-creating-a-successful-web-20-product-dion-hinchcliffes-web-20-blog/</guid>
		<description><![CDATA[<p>50 Essential Strategies For Creating A Successful Web 2.0 Product [Dion Hinchcliffe's Web 2.0 Blog]
By ageorg</p>
<p>This bookmark links to http://web2.socialcomputingmagazine.com/50_essential_strategies_for_creating_a_successful_web_20_pr.htm</p>

	Possibly related posts (auto generated)
	
	PCs and the Internet: Addiction Magnets or just Tools? (1)
	Athens Startup Weekend 2008 (0)
	12 Reasons Why You Should Own Your Blog &#124; BloggerDesign from TopRank Online Marketing (0)
	» Ο χάρτης της Ελληνικής [...]]]></description>
			<content:encoded><![CDATA[<p>50 Essential Strategies For Creating A Successful Web 2.0 Product [Dion Hinchcliffe's Web 2.0 Blog]<br />
By <a href="http://web2.socialcomputingmagazine.com">ageorg</a></p>
<p>This bookmark links to <a href="http://web2.socialcomputingmagazine.com/50_essential_strategies_for_creating_a_successful_web_20_pr.htm">http://web2.socialcomputingmagazine.com/50_essential_strategies_for_creating_a_successful_web_20_pr.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/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/03/12-reasons-why-you-should-own-your-blog-bloggerdesign-from-toprank-online-marketing/" title="12 Reasons Why You Should Own Your Blog | BloggerDesign from TopRank Online Marketing (22/03/2009)">12 Reasons Why You Should Own Your Blog | BloggerDesign from TopRank Online Marketing</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/%c2%bb-%ce%bf-%cf%87%ce%ac%cf%81%cf%84%ce%b7%cf%82-%cf%84%ce%b7%cf%82-%ce%b5%ce%bb%ce%bb%ce%b7%ce%bd%ce%b9%ce%ba%ce%ae%cf%82-%ce%bc%cf%80%ce%bb%ce%bf%ce%b3%ce%ba%cf%8c%cf%83%cf%86%ce%b1%ce%b9%cf%81/" title="» Ο χάρτης της Ελληνικής μπλογκόσφαιρας &#8211; links &#038; downloads » NYLON (23/02/2009)">» Ο χάρτης της Ελληνικής μπλογκόσφαιρας &#8211; links &#038; downloads » NYLON</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/50-essential-strategies-for-creating-a-successful-web-20-product-dion-hinchcliffes-web-20-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FriendFeed Activity Widget • Evan Sims</title>
		<link>http://dipot.com/2009/02/friendfeed-activity-widget-%e2%80%a2-evan-sims/</link>
		<comments>http://dipot.com/2009/02/friendfeed-activity-widget-%e2%80%a2-evan-sims/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:36 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[WordPress]]></category>

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

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization [...]]]></description>
			<content:encoded><![CDATA[<p>The FriendFeed Activity Widget is a simple WordPress widget plugin that pulls your FriendFeed stream, pretties it up a bit and shares it with visitors to your blog. It’s essentially a lifestream plugin that requires just a few steps to set up.<br />
By <a href="http://evansims.com">ageorg</a></p>
<p>This bookmark links to <a href="http://evansims.com/projects/friendfeed_activity_widget">http://evansims.com/projects/friendfeed_activity_widget</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2008/11/athens-startup-weekend-2008/" title="Athens Startup Weekend 2008 (26/11/2008)">Athens Startup Weekend 2008</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/apologies-for-last-days-posts-flood/" title="<!--:en-->Apologies for last days&#8217; posts flood<!--:--> (25/02/2009)"><!--:en-->Apologies for last days&#8217; posts flood<!--:--></a> (0)</li>
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/friendfeed-activity-widget-%e2%80%a2-evan-sims/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Reasons Why You Should Sign Up for FriendFeed &#124; Thomas Hawk Digital Connection</title>
		<link>http://dipot.com/2009/02/10-reasons-why-you-should-sign-up-for-friendfeed-thomas-hawk-digital-connection/</link>
		<comments>http://dipot.com/2009/02/10-reasons-why-you-should-sign-up-for-friendfeed-thomas-hawk-digital-connection/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:36 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/10-reasons-why-you-should-sign-up-for-friendfeed-thomas-hawk-digital-connection/</guid>
		<description><![CDATA[<p>10 Reasons Why You Should Sign Up for FriendFeed &#124; Thomas Hawk Digital Connection
By ageorg</p>
<p>This bookmark links to http://thomashawk.com/2009/01/10-reasons-why-you-should-sign-up-for-friendfeed.html</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress Optimization: Compatibility between Themes &#038; Plugins (2)
	Top FriendFeed Tips for Twitter Users (0)
	The Unofficial Guide to Friendfeed Part 2: Getting Started (0)
	spy :: [...]]]></description>
			<content:encoded><![CDATA[<p>10 Reasons Why You Should Sign Up for FriendFeed | Thomas Hawk Digital Connection<br />
By <a href="http://thomashawk.com">ageorg</a></p>
<p>This bookmark links to <a href="http://thomashawk.com/2009/01/10-reasons-why-you-should-sign-up-for-friendfeed.html">http://thomashawk.com/2009/01/10-reasons-why-you-should-sign-up-for-friendfeed.html</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2009/02/top-friendfeed-tips-for-twitter-users/" title="Top FriendFeed Tips for Twitter Users (23/02/2009)">Top FriendFeed Tips for Twitter Users</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/the-unofficial-guide-to-friendfeed-part-2-getting-started/" title="The Unofficial Guide to Friendfeed Part 2: Getting Started (23/02/2009)">The Unofficial Guide to Friendfeed Part 2: Getting Started</a> (0)</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>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/10-reasons-why-you-should-sign-up-for-friendfeed-thomas-hawk-digital-connection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>35+ Social Media Tools That Make Life Easier &#124; Freelance Folder</title>
		<link>http://dipot.com/2009/02/35-social-media-tools-that-make-life-easier-freelance-folder/</link>
		<comments>http://dipot.com/2009/02/35-social-media-tools-that-make-life-easier-freelance-folder/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:35 +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[tools]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/35-social-media-tools-that-make-life-easier-freelance-folder/</guid>
		<description><![CDATA[<p>35+ Social Media Tools That Make Life Easier &#124; Freelance Folder
By ageorg</p>
<p>This bookmark links to http://freelancefolder.com/35-social-media-tools-make-life-easier/</p>

	Possibly related posts (auto generated)
	
	PCs and the Internet: Addiction Magnets or just Tools? (1)
	Social Media &#8211; from theory to praxis (0)
	News Reading Thoughts (4)
	How to Use the New FriendFeed Search for Social Media Intelligence &#8211; ReadWriteWeb (0)
	Classroom 2.0 (0)


]]></description>
			<content:encoded><![CDATA[<p>35+ Social Media Tools That Make Life Easier | Freelance Folder<br />
By <a href="http://freelancefolder.com">ageorg</a></p>
<p>This bookmark links to <a href="http://freelancefolder.com/35-social-media-tools-make-life-easier/">http://freelancefolder.com/35-social-media-tools-make-life-easier/</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/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/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/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/03/classroom-20/" title="Classroom 2.0 (24/03/2009)">Classroom 2.0</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/35-social-media-tools-that-make-life-easier-freelance-folder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top FriendFeed Tips for Twitter Users</title>
		<link>http://dipot.com/2009/02/top-friendfeed-tips-for-twitter-users/</link>
		<comments>http://dipot.com/2009/02/top-friendfeed-tips-for-twitter-users/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:35 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/top-friendfeed-tips-for-twitter-users/</guid>
		<description><![CDATA[<p>Top FriendFeed Tips for Twitter Users
By ageorg</p>
<p>This bookmark links to http://mashable.com/2009/01/20/friendfeed-tips-for-twitter-users/</p>

	Possibly related posts (auto generated)
	
	spy :: visualizes the conversations on Twitter, Friendfeed, Flickr, Blogs and more. (0)
	News Reading Thoughts (4)
	Clipmarks :: Firefox Add-ons (0)
	]]></description>
			<content:encoded><![CDATA[<p>Top FriendFeed Tips for Twitter Users<br />
By <a href="http://mashable.com">ageorg</a></p>
<p>This bookmark links to <a href="http://mashable.com/2009/01/20/friendfeed-tips-for-twitter-users/">http://mashable.com/2009/01/20/friendfeed-tips-for-twitter-users/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<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/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (4)</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/how-i-post/" title="<!--:en-->Which Service should a Post go to?<!--:--> (12/01/2009)"><!--:en-->Which Service should a Post go to?<!--:--></a> (2)</li>
	<li><a href="http://dipot.com/2009/01/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/02/top-friendfeed-tips-for-twitter-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PatientsLikeMe : Patients Helping Patients Live Better Every Day</title>
		<link>http://dipot.com/2009/02/patientslikeme-patients-helping-patients-live-better-every-day/</link>
		<comments>http://dipot.com/2009/02/patientslikeme-patients-helping-patients-live-better-every-day/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:35 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/patientslikeme-patients-helping-patients-live-better-every-day/</guid>
		<description><![CDATA[<p>&#8220;PatientsLikeMe is committed to providing a better, more effective way to capture valuable results and share them with patients, healthcare professionals, and industry organizations that are trying to treat the disease.&#8221;
By ageorg</p>
<p>This bookmark links to http://www.patientslikeme.com/</p>

	Possibly related posts (auto generated)
	
	World Panoramic Photography &#8211; 360 Cities (0)
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	WordPress [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;PatientsLikeMe is committed to providing a better, more effective way to capture valuable results and share them with patients, healthcare professionals, and industry organizations that are trying to treat the disease.&#8221;<br />
By <a href="http://patientslikeme.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.patientslikeme.com/">http://www.patientslikeme.com/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/03/world-panoramic-photography-360-cities/" title="World Panoramic Photography &#8211; 360 Cities (21/03/2009)">World Panoramic Photography &#8211; 360 Cities</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2007/12/web-browser-standards-opera-software-vs-microsoft/" title="Web browser standards: Opera Software vs Microsoft (16/12/2007)">Web browser standards: Opera Software vs Microsoft</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/twe2-get-your-twitter-alerts-via-sms-worldwide-for-free/" title="Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free (17/03/2009)">Twe2 &#8211; Get your Twitter Alerts via SMS worldwide for Free</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/patientslikeme-patients-helping-patients-live-better-every-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FriendFeed Optimization Feature Requests</title>
		<link>http://dipot.com/2009/02/friendfeed-optimization-feature-requests/</link>
		<comments>http://dipot.com/2009/02/friendfeed-optimization-feature-requests/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 14:55:05 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[feature requests]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[feedback]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[filtering]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[Reader]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WishList]]></category>

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

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

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

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

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

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

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

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

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

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

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

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/01/optimize-firefox-with-91-must-have-add-ons/" title="<!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--> (25/01/2009)"><!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--></a> (2)</li>
	<li><a href="http://dipot.com/2009/02/friendfeed-optimization-feature-requests/" title="<!--:en-->FriendFeed Optimization Feature Requests<!--:--> (02/02/2009)"><!--:en-->FriendFeed Optimization Feature Requests<!--:--></a> (0)</li>
	<li><a href="http://dipot.com/2009/01/7-favorite-value-adding-friendfeed-applications/" title="<!--:en-->7 Favorite, Value Adding FriendFeed Applications<!--:--> (22/01/2009)"><!--:en-->7 Favorite, Value Adding FriendFeed Applications<!--:--></a> (0)</li>
	<li><a href="http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/" title="PCs and the Internet: Addiction Magnets or just Tools? (05/04/2009)">PCs and the Internet: Addiction Magnets or just Tools?</a> (1)</li>
	<li><a href="http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/" title="Feeds to Content &#038; Categories Optimization in WordPress (01/04/2009)">Feeds to Content &#038; Categories Optimization in WordPress</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/01/news-reading-thoughts/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Which Service should a Post go to?</title>
		<link>http://dipot.com/2009/01/how-i-post/</link>
		<comments>http://dipot.com/2009/01/how-i-post/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 17:21:55 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips & How-to]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Delicious]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[DiPot]]></category>
		<category><![CDATA[DiPot.com]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[flowchart]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[Ice Tea tech]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[microblogging]]></category>
		<category><![CDATA[On Anything and Everything]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[SlideShare]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p></p>
<p>I have been trying to organize/visualize the way I post, be it blogging, a comment on FriendFeed, an interesting link a came across etc. During the time it took me to complete the flowchart, more services were added as sources or carriers of my posts. As a result, the chart got more complex than originally [...]]]></description>
			<content:encoded><![CDATA[<p><!--:el--></p>
<p><!--:--><!--:en-->I have been trying to organize/visualize the way I post, be it blogging, a comment on FriendFeed, an interesting link a came across etc. During the time it took me to complete the flowchart, more services were added as sources or carriers of my posts. As a result, the chart got more complex than originally anticipated. Interestingly enough, there is a pattern and the flowchart works for me most of the time.</p>
<p>Also <a href="http://dipot.com/docs/posting_flowchart.dia" target="_blank">get the Posting Flowchart as built in Dia</a> (hence the crudeness), for your own use. So, there it is:</p>
<p style="text-align: center;">
<div id="attachment_65" class="wp-caption aligncenter" style="width: 632px"><a href="http://dipot.com/docs/posting_flowchart.dia"><img class=" " title="Posting Flowchart" src="http://dipot.com/docs/posting_flowchart.png" alt="" width="622" height="355" /><br />
</a><p class="wp-caption-text">Posting Flowchart</p></div>
<p>Please do comment. Is posting a one-way street for you? Are there any general rules or do you post on a case by case basis?<!--:--></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/02/apologies-for-last-days-posts-flood/" title="<!--:en-->Apologies for last days&#8217; posts flood<!--:--> (25/02/2009)"><!--:en-->Apologies for last days&#8217; posts flood<!--:--></a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/01/news-reading-thoughts/" title="News Reading Thoughts (13/01/2009)">News Reading Thoughts</a> (4)</li>
	<li><a href="http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/" title="Feeds to Content &#038; Categories Optimization in WordPress (01/04/2009)">Feeds to Content &#038; Categories Optimization in WordPress</a> (1)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
</ul>

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

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

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

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2008/11/athens-startup-weekend-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Google Android Platform</title>
		<link>http://dipot.com/2008/10/the-google-android-platform/</link>
		<comments>http://dipot.com/2008/10/the-google-android-platform/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 15:47:52 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Communication]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[PDA]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[smartphones]]></category>
		<category><![CDATA[touch screen]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>I read about Open Handset Alliance&#8217;s Android platform and cellular phones with great interest. The web is full of specs, reviews, comparisons and the like. I just can&#8217;t help but share the following thoughts:</p>

Sometimes it seems Google&#8217;s Android is the second touch screen platform after Apple&#8217;s iPhone

<p>I can&#8217;t understand why Android-based HTC G1 and other [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en-->I read about <a onclick="javascript: pageTracker._trackPageview('/home/oha/');" href="http://www.openhandsetalliance.com/" target="_blank">Open Handset Alliance</a>&#8217;s <a href="http://www.android.com/" target="_blank">Android</a> platform and cellular phones with great interest. The web is full of specs, reviews, <a href="http://www.phonearena.com/htmls/compare.php" target="_blank">comparison</a>s and the like. I just can&#8217;t help but share the following thoughts:</p>
<ul>
<li>Sometimes it seems Google&#8217;s Android is the second touch screen platform after Apple&#8217;s iPhone</li>
</ul>
<p>I can&#8217;t understand why Android-based HTC G1 and other touch devices are automatically compared to the iPhone. Yes, it is a great looking device. It has a great touch screen. And that&#8217;s where innovation ends and limitations begin.</p>
<p>Great as the iPhone may (or not) be, it&#8217;s not clearly and objectively superior to Microsoft&#8217;s Windows Mobile devices hardware-, software- nor appearance-wise. Plus, Windows (Mobile and its previous incarnations) has been, so far, dominant in the touch arena. So, how come the iPhone (a new comer with plenty of flaws of its own) is the ad hoc point of reference? And how come all Windows Mobile&#8217;s long-standing features (touch screen, great sofware library, multitasking) are rarely mentioned?</p>
<ul>
<li>Android, anyone? Sure, on what hardware?</li>
</ul>
<p>Maybe I understand a new platform like Android needs to come with new hardware for psychological (marketing) reasons. Now that&#8217;s over and done with, why not introduce Android for old and new hardware? Wasn&#8217;t one of Linux&#8217;s advantages better performance on old PCs? I&#8217;m sure I would love to run Android on my current Windows Mobile Phone but I fear this won&#8217;t happen any day soon, if at all. How about selling the HTC Touch HD (my favorite, in the absence of an Android phone with no hardware keyboard. With a camera flash, please) with a choice between Android and Windows Mobile? Better yet, sell it able to dual-boot both platforms? I would buy it right now. Now this is not so, I just have to wait and I am not happy about it at all.</p>
<p>Consider how nice it would be to compare different platforms&#8217; sales and performance on the same hardware (isn&#8217;t that what Apple avoids at all cost on the PC market?)! How different the HTC G1 is from the Touch HD or any other current model?</p>
<p>It is my prediction that we will see Android and Windows Mobile running on the same hardware not later than 2009. And this will be the start of a new era on the &#8220;choice&#8221; and &#8220;objective comparison&#8221; fronts.<!--:--></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2010/01/wm-android-or-maybe-a-maemo-smartphone/" title="WM, Android, or, maybe, a Maemo smartphone? (16/01/2010)">WM, Android, or, maybe, a Maemo smartphone?</a> (0)</li>
	<li><a href="http://dipot.com/2007/12/microsoft-ie-and-standards-compliance/" title="Microsoft IE and Standards Compliance (29/12/2007)">Microsoft IE and Standards Compliance</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/android-market-business-and-program-policies/" title="Android Market Business and Program Policies (23/02/2009)">Android Market Business and Program Policies</a> (0)</li>
	<li><a href="http://dipot.com/2009/01/optimize-firefox-with-91-must-have-add-ons/" title="<!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--> (25/01/2009)"><!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--></a> (2)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2008/10/the-google-android-platform/feed/</wfw:commentRss>
		<slash:comments>1</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>
		<item>
		<title>Microsoft IE and Standards Compliance</title>
		<link>http://dipot.com/2007/12/microsoft-ie-and-standards-compliance/</link>
		<comments>http://dipot.com/2007/12/microsoft-ie-and-standards-compliance/#comments</comments>
		<pubDate>Sat, 29 Dec 2007 08:17:12 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[DiPot]]></category>
		<category><![CDATA[DiPot.com]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[Opera Software]]></category>
		<category><![CDATA[PDA]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>There is an indirect update to my December 16, 2007 &#8220;Web browser standards: Opera Software vs Microsoft&#8221; post in the &#8220;Internet Explorer 8 and Acid2: A Milestone&#8221; IEBlog post. The way I see it, Microsoft effectively confirms allegations about not complying with standards (by, at least, not seriously updating IE6 in over 5 years and [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en-->There is an indirect update to my December 16, 2007 &#8220;<a href="http://blog.dipot.com/index.php/ice-tea-tech-blog/4-web-browser-standards-opera-software-vs-microsoft.html" target="_blank">Web browser standards: Opera Software vs Microsoft</a>&#8221; post in the &#8220;<a href="http://blogs.msdn.com/ie/archive/2007/12/19/internet-explorer-8-and-acid2-a-milestone.aspx" target="_blank">Internet Explorer 8 and Acid2: A Milestone</a>&#8221; <a href="http://blogs.msdn.com/ie/default.aspx" target="_blank">IEBlog</a> post. The way I see it, Microsoft effectively confirms allegations about not complying with standards (by, at least, not seriously updating IE6 in over 5 years and creating lots of problems with IE7) promising it will do so with IE8:</p>
<p>&#8220;&#8230; <em>IE8 now renders the &#8220;Acid2 Face&#8221; correctly in IE8 standards mode.</em> &#8230;&#8221;</p>
<p>&#8220;&#8230; <em>With respect to standards and interoperability, our goal in developing Internet Explorer 8 is to support the right set of standards with excellent implementations and do so without breaking the existing web. This second goal refers to the lessons we learned during IE 7. IE7&#8217;s CSS improvements made IE more compliant with some standards and less compatible with some sites on the web as they were coded. Many sites and developers have done special work to work well with IE6, mostly as a result of the evolution of the web and standards since 2001 and the level of support in the various versions of IE that pre-date many standards. We have a responsibility to respect the work that sites have already done to work with IE. We must deliver improved standards support and backwards compatibility so that IE8 (1) continues to work with the billions of pages on the web today that already work in IE6 and IE7 and (2) makes the development of the next billion pages, in an interoperable way, much easier.</em> &#8230;&#8221;</p>
<p>If you wonder who made the &#8220;existing web&#8221; prone to &#8220;breaking&#8221;, I don&#8217;t. In my mind, it was Microsoft. When IE was dominant, it never completely adhered to standards, while extending HTML in all sorts of ways. When standards emerged or caught up, was IE updated accordingly? No.</p>
<p>Is Microsoft finally entering a standards compliance era? How, by adding a &#8220;Standards mode&#8221; in IE8? I still have my doubts and for good reason. You see, past experience says otherwise.</p>
<p>Web developers, Microsoft hasn&#8217;t and won&#8217;t ever do it for you. If you are interested in every computer owner being able to fully utilize your sites, please do us all a favor and comply to universal, not Microsoft standards. Windows percentage in the PC market is still very large but dropping. Make them build a decent browser; or not, who cares? Firefox, Opera etc. are excellent, compliant and multiplatform browsers. Don&#8217;t build the Internet depended on ActiveX and anything else non-standard enough so only IE (therefore only Windows) users can view.<br />
<!--:--></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2007/12/web-browser-standards-opera-software-vs-microsoft/" title="Web browser standards: Opera Software vs Microsoft (16/12/2007)">Web browser standards: Opera Software vs Microsoft</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/01/optimize-firefox-with-91-must-have-add-ons/" title="<!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--> (25/01/2009)"><!--:en-->Optimize Firefox with 9+1 Must Have Add-ons <!--:--></a> (2)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2007/12/your-home-on-camera-live/" title="<!--:en-->Your home on camera, live<!--:--> (18/12/2007)"><!--:en-->Your home on camera, live<!--:--></a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2007/12/microsoft-ie-and-standards-compliance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Your home on camera, live</title>
		<link>http://dipot.com/2007/12/your-home-on-camera-live/</link>
		<comments>http://dipot.com/2007/12/your-home-on-camera-live/#comments</comments>
		<pubDate>Tue, 18 Dec 2007 15:06:09 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Tips & How-to]]></category>
		<category><![CDATA[ADSL]]></category>
		<category><![CDATA[AVM]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[DiPot]]></category>
		<category><![CDATA[DiPot.com]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[PDA]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[surveillance]]></category>
		<category><![CDATA[Vivotek]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>Two weeks ago I was asked again to install a couple of cameras to watch a newborn baby at home (with the sitter&#8230;).</p>
<p>Provided there is an ADSL in the premises, the task is trivial, tech-wise. In this case, the heart of the system is an AVM Fritz ADSL modem, 4 port switch, wireless Access Point [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en-->Two weeks ago I was asked again to install a couple of cameras to watch a newborn baby at home (with the sitter&#8230;).</p>
<p>Provided there is an ADSL in the premises, the task is trivial, tech-wise. In this case, the heart of the system is an <a href="http://www.avm.de/en/Produkte/index.html">AVM Fritz</a> ADSL modem, 4 port switch, wireless Access Point with SIP, complemented by 2 <a href="http://www.vivotek.com/products_pt7137.htm" target="_blank">VIVOTEK PT7137</a> wifi IP pan-tilt (but not zoom) VGA cameras.</p>
<p>The first problem in serving content from a non-static (dynamic) IP address is how to hit the correct IP, which is a moving target (I recently came across the fact that, in Greece, ISP OTEnet actually disconnects dynamic ADSL connections every 54 hours, just to change IP address!). The solution to this is dynamic DNS, in this case in the form of the free service <a title="DynDNS -- Dynamic DNS, E-Mail Delivery and Other Services" href="http://www.dyndns.org" target="_blank">DynDNS</a> (other such services also exist). What dynamic DNS does is have a client program automatically update the current IP address of an ADSL connection to a host of the form &lt;myhost&gt;.dyndns.org. In this case (lucky me), both the router and the cameras have dyndns.org support built-in. If this wasn&#8217;t the case, I could set up a dyndns.org client in a windows or linux pc to do the job. I could, alternatively, buy a static IP address, which I do not prefer for security and cost reasons. More than one dynamic DNS client can be set up for redundancy, if needed.</p>
<p>The other problem in serving content this way is that the Internet IP one&#8217;s router uses is different from the local IP address of this same router and each of his local network devices (yes, it&#8217;s too technical). The router takes care of back-and-forth IP translation for the outgoing connections (browsing, email reception &amp; transmission, Instant Messaging etc.) automatically (using NAPT, Network Address Port Translation). However, when a local server needs to listen to Internet incoming traffic, this must be routed to it in a way that cannot be automated (not until UPnP, anyway, which is another story), so port translation must be manually programmed to the router and the method is called &#8220;port forwarding&#8221;. What this does is tell the router what to do with any incoming traffic, depending on the Port it uses: drop it or forward it to a different internal IP and Port, where a server is standing by.</p>
<p>When similar content is served by more than one servers (in this case all the IP cameras transmit audio &amp; video using the http protocol which by default &#8220;listens&#8221; and &#8220;transmits&#8221; on port 80), we have the third problem: We need to reference two (or more) different servers serving the same service (http) using the same single external IP address.</p>
<p>The solution here is in the way protocol calls are made: when our browser shows it connects to http://blog.dipot.com, it is actually connecting to http://blog.dipot.com:80, where 80 represents the connection&#8217;s port number (which has possible values from 1 to 65535). The port value of 80 is implied, because it is the standard port number for the http protocol (other protocols by default, but not necessarily, connect to other ports). This essentially means that we can reference ~65000 different services (protocols) on the same IP address. So, what we do is agree between ourselves and the router to use these two (or more) addresses to call our two (or more) IP cameras (the &#8220;http://&#8221; prefix is important, because the specified ports are not usually intended for this protocol):<br />
Camera 1: http://&lt;myhost&gt;.dyndns.org:12001<br />
Camera 2: http://&lt;myhost&gt;.dyndns.org:12002<br />
Camera n: http://&lt;myhost&gt;.dyndns.org:1200n</p>
<p>So, assuming the cameras addresses are 192.168.1.21, 192.168.1.22 (&amp; 192.168.1.2n) and all transmit to port 80 (the default) we program the router to forward calls to ports 12001, 12002 (&amp; 1200n) to 192.168.1.21:80, 192.168.1.22:80 (&amp; 192.168.1.2n:80). It is important for the cameras IP addresses to be static, so we don&#8217;t have another moving target to cope with.</p>
<p>In case the router didn&#8217;t support forwarding to a different port than the incoming, we should then program the cameras to listen and transmit to ports 12001, 12002, &#8230; 1200n, which is perfectly possible, if not simpler.</p>
<p>This came out larger and more technical than intended. All these, however, can be implemented in about 30&#8242; and are applicable to other services as well.</p>
<p>For router-specific instructions to program port forwarding, refer to the excellent guide &#8220;<a href="http://portforward.com/guides.htm" target="_blank">Free Help Setting up</a><a href="http://portforward.com/guides.htm" target="_blank"> Your Router or Firewall</a>&#8220;.</p>
<p><!--:--></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2007/12/microsoft-ie-and-standards-compliance/" title="Microsoft IE and Standards Compliance (29/12/2007)">Microsoft IE and Standards Compliance</a> (0)</li>
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2009/04/feeds-to-content-categories-optimization-in-wordpress/" title="Feeds to Content &#038; Categories Optimization in WordPress (01/04/2009)">Feeds to Content &#038; Categories Optimization in WordPress</a> (1)</li>
	<li><a href="http://dipot.com/2009/01/how-i-post/" title="<!--:en-->Which Service should a Post go to?<!--:--> (12/01/2009)"><!--:en-->Which Service should a Post go to?<!--:--></a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2007/12/your-home-on-camera-live/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web browser standards: Opera Software vs Microsoft</title>
		<link>http://dipot.com/2007/12/web-browser-standards-opera-software-vs-microsoft/</link>
		<comments>http://dipot.com/2007/12/web-browser-standards-opera-software-vs-microsoft/#comments</comments>
		<pubDate>Sun, 16 Dec 2007 15:45:08 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[Opera Software]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>Don&#8217;t you just hate it when a web page won&#8217;t show correctly in Firefox or any non-Internet Explorer browser?</p>
<p>I have always wondered why any web developer would block all Linux &#38; Mac OS users out of their sites and frustrate a good portion of Windows users, those who prefer Firefox. On top of that, some [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en-->Don&#8217;t you just hate it when a web page won&#8217;t show correctly in Firefox or any non-Internet Explorer browser?</p>
<p>I have always wondered why any web developer would block all Linux &amp; Mac OS users out of their sites and frustrate a good portion of Windows users, those who prefer Firefox. On top of that, some sites don&#8217;t even look the same in IE6 &amp; IE7 due to incompatibilities of their own, which recently forced Microsoft to decide to make IE7 available to illegal Windows owners as well!</p>
<p>Over time, it is a well-known fact that Microsoft won&#8217;t respect standards very much. Java has been a good example and HTML compliance is no different. So, what&#8217;s new about any of that? This extract from the Friday, December 14, 2007 8:00 AM PST Paul Meller and James Niccolai&#8217;s PC World article &#8220;<a title="Opera Seeks Tougher Remedy in Microsoft Case" href="http://www.pcworld.com/article/id,140573-c,internetexplorer/article.html">Opera Seeks Tougher Remedy in Microsoft Case</a>&#8220;, describing the &#8220;&#8230; <em>antitrust suit filed with the Commission this week</em> &#8230;&#8221; by browser maker Opera Software, which I find especially interesting and long overdue:</p>
<p>&#8220;&#8230; <em>In addition to the bundling charge, Opera also complains that Microsoft does not follow Web standards, putting rival browsers at a disadvantage. The issue is significant because if all Web browsers do not use the same standards, Web site developers are likely to design their Web sites to work with the most widely used browser, which is Internet Explorer. That gives people a disincentive to use other browsers.</em></p>
<p><em>Microsoft often takes part in debates over Web standards, and says it will implement them, but ultimately does not, Opera&#8217;s Lie said. He pointed to CSS, XHTML and DOM as areas where Microsoft does not comply with or is inconsistent.</em> &#8230;&#8221;</p>
<p>I will follow up on this with great interest. I would prefer users and the industry to force Microsoft (and web developers) to comply by (prefferably open) standards (the cornerstone of the Internet), but a court might as well do it&#8230;<br />
<!--:--></p>

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

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2007/12/web-browser-standards-opera-software-vs-microsoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NAS for shared storage</title>
		<link>http://dipot.com/2007/11/nas-for-shared-storage/</link>
		<comments>http://dipot.com/2007/11/nas-for-shared-storage/#comments</comments>
		<pubDate>Thu, 29 Nov 2007 11:46:56 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Infrant]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[NAS]]></category>
		<category><![CDATA[Netgear]]></category>
		<category><![CDATA[network attached storage]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Seagate]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>I have been hooked on the idea of NAS (Network Attached Storage) since around 2000, when I first read about it. Of course, capacities and costs back then were out of this world.</p>
<p>Today I installed an Infrant Technologies ReadyNAS NV+ with 4 Seagate ST3500630AS Barracuda 500GB SATA2 hot-swappable hard disks and 1 gigabit ethernet port. [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en-->I have been hooked on the idea of NAS (Network Attached Storage) since around 2000, when I first read about it. Of course, capacities and costs back then were out of this world.</p>
<p>Today I installed an <a title="Infrant Technologies ReadyNAS NV+" href="http://www.infrant.com/products/products_details.php?name=ReadyNAS%20NVPlus" target="_blank">Infrant Technologies ReadyNAS NV+</a> with 4 Seagate ST3500630AS Barracuda 500GB SATA2 hot-swappable hard disks and 1 gigabit ethernet port. For a total cost around 1.400â‚¬, I got a 3-disk RAID5 configuration with 875 usable GB and a hot-spare disk. In plain english, 2 disks have to fail before any data is lost.</p>
<p>I preferred the Infrant (now owned by Netgear) solution to the much cheaper (~900â‚¬) 2 gigabit Ethernet <a title="Intel Entry Storage System SS4000-E" href="http://www.intel.com/design/servers/storage/ss4000-E/" target="_blank">Intel Entry Storage System SS4000-E</a>, (also with 4 500GB SATA2 disks) for its Active Directory support. However, apart from increased peace of mind (thanks to the hot-spare) the NV+ offers some nice built-in backup and media streaming features, in addition to the 3 USB ports with support for a UPS, printers, flash and USB disks.</p>
<p>I am fairly sure that NAS is the way to go for shared storage. With LAN speeds, disk capacities, users and uses increasing at a hectic pace NAS is cheap (starting at &lt;200â‚¬), scalable and very easy to setup. Please note I am not referring to server applications storage; that&#8217;s a different, much more expensive, story.<br />
<!--:--></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<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/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/" title="PCs and the Internet: Addiction Magnets or just Tools? (05/04/2009)">PCs and the Internet: Addiction Magnets or just Tools?</a> (1)</li>
	<li><a href="http://dipot.com/2009/03/wordpress-optimization-compatibility-between-themes-plugins/" title="WordPress Optimization: Compatibility between Themes &#038; Plugins (27/03/2009)">WordPress Optimization: Compatibility between Themes &#038; Plugins</a> (2)</li>
	<li><a href="http://dipot.com/2008/10/the-google-android-platform/" title="The Google Android Platform (20/10/2008)">The Google Android Platform</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2007/11/nas-for-shared-storage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

