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

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

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

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

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

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

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>PCs and the Internet: Addiction Magnets or just Tools?</title>
		<link>http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/</link>
		<comments>http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 20:44:38 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Communication]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[addiction]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[microblogging]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[nintendo]]></category>
		<category><![CDATA[overuse]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[RSS feeds]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[Tab]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[wii]]></category>

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

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

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/04/pcs-and-the-internet-addiction-magnets-or-just-tools/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Blogging &#8211; Msokorea.com &#8211; Use Keywords On Your Blog To Optimize Ads</title>
		<link>http://dipot.com/2009/03/blogging-msokoreacom-use-keywords-on-your-blog-to-optimize-ads/</link>
		<comments>http://dipot.com/2009/03/blogging-msokoreacom-use-keywords-on-your-blog-to-optimize-ads/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 15:57:02 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[MS]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/03/blogging-msokoreacom-use-keywords-on-your-blog-to-optimize-ads/</guid>
		<description><![CDATA[<p>Blogging &#8211; Msokorea.com &#8211; Use Keywords On Your Blog To Optimize Ads
By ageorg</p>
<p>This bookmark links to http://www.msokorea.com/blogging/0,6600,399498,00.html</p>

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


]]></description>
			<content:encoded><![CDATA[<p>Blogging &#8211; Msokorea.com &#8211; Use Keywords On Your Blog To Optimize Ads<br />
By <a href="http://msokorea.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.msokorea.com/blogging/0,6600,399498,00.html">http://www.msokorea.com/blogging/0,6600,399498,00.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/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/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/03/blogging-msokoreacom-use-keywords-on-your-blog-to-optimize-ads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Present While People are Twittering &#124; Pistachio</title>
		<link>http://dipot.com/2009/02/how-to-present-while-people-are-twittering-pistachio/</link>
		<comments>http://dipot.com/2009/02/how-to-present-while-people-are-twittering-pistachio/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 15:26:11 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/how-to-present-while-people-are-twittering-pistachio/</guid>
		<description><![CDATA[<p>#ioc09 &#8220;&#8230;a survey of leadership conferences from Weber Shandwick shows that there is a significant increase in blogging and twittering at conferences. So the next time you present at a conference, instead of being confronted by a sea of faces looking at you, you may be phased by a sea of heads looking down at [...]]]></description>
			<content:encoded><![CDATA[<p>#ioc09 &#8220;&#8230;a survey of leadership conferences from Weber Shandwick shows that there is a significant increase in blogging and twittering at conferences. So the next time you present at a conference, instead of being confronted by a sea of faces looking at you, you may be phased by a sea of heads looking down at their laptops. The challenge is how to adapt to presenting with the back-channel&#8230;&#8221;<br />
By <a href="http://pistachioconsulting.com">ageorg</a></p>
<p>This bookmark links to <a href="http://pistachioconsulting.com/twitter-presentations/">http://pistachioconsulting.com/twitter-presentations/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<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/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/twitter-optimization-part-4-10-tools-you-need-for-business-%e2%80%94-seoptimise/" title="Twitter Optimization Part 4: 10 Tools You Need for Business — SEOptimise (23/02/2009)">Twitter Optimization Part 4: 10 Tools You Need for Business — SEOptimise</a> (0)</li>
	<li><a href="http://dipot.com/2009/03/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>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/how-to-present-while-people-are-twittering-pistachio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flokio Create Micro blogging group</title>
		<link>http://dipot.com/2009/02/flokio-create-micro-blogging-group/</link>
		<comments>http://dipot.com/2009/02/flokio-create-micro-blogging-group/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 13:42:07 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/flokio-create-micro-blogging-group/</guid>
		<description><![CDATA[<p>Flokio Create Micro blogging group
By ageorg</p>
<p>This bookmark links to http://flokio.com/</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	PCs and the Internet: Addiction Magnets or just Tools? (1)
	How to use TweetDeck &#8211; Blogging Art and Practice (0)
	How to Present While People are Twittering &#124; Pistachio (0)
	How to Create a Blogging Plan [...]]]></description>
			<content:encoded><![CDATA[<p>Flokio Create Micro blogging group<br />
By <a href="http://flokio.com">ageorg</a></p>
<p>This bookmark links to <a href="http://flokio.com/">http://flokio.com/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/04/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/how-to-use-tweetdeck-blogging-art-and-practice/" title="How to use TweetDeck &#8211; Blogging Art and Practice (23/02/2009)">How to use TweetDeck &#8211; Blogging Art and Practice</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/how-to-present-while-people-are-twittering-pistachio/" title="How to Present While People are Twittering | Pistachio (27/02/2009)">How to Present While People are Twittering | Pistachio</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/how-to-create-a-blogging-plan-and-actually-reach-your-goals-this-year/" title="How to Create a Blogging Plan and Actually Reach Your Goals This Year (23/02/2009)">How to Create a Blogging Plan and Actually Reach Your Goals This Year</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/flokio-create-micro-blogging-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use TweetDeck &#8211; Blogging Art and Practice</title>
		<link>http://dipot.com/2009/02/how-to-use-tweetdeck-blogging-art-and-practice/</link>
		<comments>http://dipot.com/2009/02/how-to-use-tweetdeck-blogging-art-and-practice/#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[blogging]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/how-to-use-tweetdeck-blogging-art-and-practice/</guid>
		<description><![CDATA[<p>How to use TweetDeck &#8211; Blogging Art and Practice
By ageorg</p>
<p>This bookmark links to http://www.yourbloghelper.com/2009/01/26/how-to-use-tweetdeck/</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	PCs and the Internet: Addiction Magnets or just Tools? (1)
	How to Present While People are Twittering &#124; Pistachio (0)
	How to Create a Blogging Plan and Actually Reach Your Goals [...]]]></description>
			<content:encoded><![CDATA[<p>How to use TweetDeck &#8211; Blogging Art and Practice<br />
By <a href="http://yourbloghelper.com">ageorg</a></p>
<p>This bookmark links to <a href="http://www.yourbloghelper.com/2009/01/26/how-to-use-tweetdeck/">http://www.yourbloghelper.com/2009/01/26/how-to-use-tweetdeck/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/04/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/how-to-present-while-people-are-twittering-pistachio/" title="How to Present While People are Twittering | Pistachio (27/02/2009)">How to Present While People are Twittering | Pistachio</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/how-to-create-a-blogging-plan-and-actually-reach-your-goals-this-year/" title="How to Create a Blogging Plan and Actually Reach Your Goals This Year (23/02/2009)">How to Create a Blogging Plan and Actually Reach Your Goals This Year</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/flokio-create-micro-blogging-group/" title="Flokio Create Micro blogging group (27/02/2009)">Flokio Create Micro blogging group</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/how-to-use-tweetdeck-blogging-art-and-practice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create a Blogging Plan and Actually Reach Your Goals This Year</title>
		<link>http://dipot.com/2009/02/how-to-create-a-blogging-plan-and-actually-reach-your-goals-this-year/</link>
		<comments>http://dipot.com/2009/02/how-to-create-a-blogging-plan-and-actually-reach-your-goals-this-year/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:02:35 +0000</pubDate>
		<dc:creator>ageor</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://dipot.com/2009/02/how-to-create-a-blogging-plan-and-actually-reach-your-goals-this-year/</guid>
		<description><![CDATA[<p>How to Create a Blogging Plan and Actually Reach Your Goals This Year
By ageorg</p>
<p>This bookmark links to http://www.problogger.net/archives/2009/01/22/how-to-create-a-blogging-plan-and-actually-reach-your-goals-this-year/</p>

	Possibly related posts (auto generated)
	
	WordPress: External RSS Feeds Optimization with KB Advanced RSS (6)
	PCs and the Internet: Addiction Magnets or just Tools? (1)
	How to use TweetDeck &#8211; Blogging Art and Practice (0)
	How to Present While People are Twittering [...]]]></description>
			<content:encoded><![CDATA[<p>How to Create a Blogging Plan and Actually Reach Your Goals This Year<br />
By <a href="http://problogger.net">ageorg</a></p>
<p>This bookmark links to <a href="http://www.problogger.net/archives/2009/01/22/how-to-create-a-blogging-plan-and-actually-reach-your-goals-this-year/">http://www.problogger.net/archives/2009/01/22/how-to-create-a-blogging-plan-and-actually-reach-your-goals-this-year/</a></p>

	<h4>Possibly related posts (auto generated)</h4>
	<ul class="st-related-posts">
	<li><a href="http://dipot.com/2009/04/wordpress-external-rss-feeds-optimization-with-kb-advanced-rss/" title="WordPress: External RSS Feeds Optimization with KB Advanced RSS (22/04/2009)">WordPress: External RSS Feeds Optimization with KB Advanced RSS</a> (6)</li>
	<li><a href="http://dipot.com/2009/04/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/how-to-use-tweetdeck-blogging-art-and-practice/" title="How to use TweetDeck &#8211; Blogging Art and Practice (23/02/2009)">How to use TweetDeck &#8211; Blogging Art and Practice</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/how-to-present-while-people-are-twittering-pistachio/" title="How to Present While People are Twittering | Pistachio (27/02/2009)">How to Present While People are Twittering | Pistachio</a> (0)</li>
	<li><a href="http://dipot.com/2009/02/flokio-create-micro-blogging-group/" title="Flokio Create Micro blogging group (27/02/2009)">Flokio Create Micro blogging group</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://dipot.com/2009/02/how-to-create-a-blogging-plan-and-actually-reach-your-goals-this-year/feed/</wfw:commentRss>
		<slash:comments>0</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>
	</channel>
</rss>

