<?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"
	>

<channel>
	<title>Cretan Chronicles</title>
	<atom:link href="http://www.oriste.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.oriste.com</link>
	<description>Yvonne and Luc in Wonderland</description>
	<pubDate>Thu, 03 Jul 2008 12:25:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Avatars for Wordpress 2.5.1 and Fjords theme</title>
		<link>http://www.oriste.com/2008/06/25/avatars-for-wordpress-251-and-fjords-theme</link>
		<comments>http://www.oriste.com/2008/06/25/avatars-for-wordpress-251-and-fjords-theme#comments</comments>
		<pubDate>Wed, 25 Jun 2008 08:59:55 +0000</pubDate>
		<dc:creator>luc</dc:creator>
		
		<category><![CDATA[Techno]]></category>

		<category><![CDATA[avatars]]></category>

		<category><![CDATA[default avatar]]></category>

		<category><![CDATA[fjord04]]></category>

		<category><![CDATA[gravatar]]></category>

		<category><![CDATA[recent comments]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.oriste.com/?p=723</guid>
		<description><![CDATA[I recently volunteered to assist in the migration of a wordpress.com hosted blog to a self-hosted installation of the open source wordpress CMS. As far as the technical aspects were concerned all went pretty smooth. The challenge appeared to be to make the self-hosted site look exactly like the wordpress.com hosted blog.
Wordpress.com uses a slightly [...]]]></description>
			<content:encoded><![CDATA[<p>I recently volunteered to assist in the migration of a <a href="http://www.wordpress.com/">wordpress.com</a> hosted blog to a self-hosted installation of the open source <a href="http://www.wordpress.org/">wordpress CMS</a>. As far as the technical aspects were concerned all went pretty smooth. The challenge appeared to be to make the self-hosted site look <em>exactly</em> like the wordpress.com hosted blog.<span id="more-723"></span></p>
<p>Wordpress.com uses a slightly modified version of the publicly available wordpress platform. Moreover wordpress.com also uses a slightly modified version of the <a href="http://www.peterandrej.com/wordpress/">Fjords04 theme</a>, the theme the site was using, which needed to be ported <em>exactly</em> as-was. The differences were in the use of avatars. (1) Although wordpress as per version 2.5 has support for avatars built-in, the Fjords theme doesn&#8217;t support them. (2) Another difference was in the option that wordpress.com offers to select a default avatar when the user doesn&#8217;t have a registered gravatar from <a href="http://www.gravatar.com/">gravatar.com</a>. (3) Finally a third nice touch in wordpress.com and not available in the public domain wordpress software, is the use of avatars in the Recent Comments.</p>
<p>After fiddling for more than a day with a number of wordpress plug-ins &#8212; each of which took care of 1 aspect of our challenge, but combined seemed to interfere with each other and not co-operate well with the built-in avatar functions of wordpress 2.5 &#8212; I found a <a href="http://wordpress.org/support/topic/176566?replies=7">posting in a forum</a> by <a href="http://wp.dembowski.net/">Jan Dembowski</a>, pointing to a <a href="http://svn.automattic.com/wpcom-themes/">wordpress.com repository for their modified themes</a>. That was the start. From there I discovered the availability of the <a href="http://svn.automattic.com/wordpress/trunk/">bleeding edge version of the upcoming wordpress 2.6</a>, which has the functionality under (2) built-in. After studying the differences between the wordpress.com version of the Fjords theme and the publicly available version of the same theme, and the differences between version 2.5.1 and 2.6 or the wordpress software, I started to figure out how it worked. I could have just used that theme and the latest 2.6 version, but since version 2.6 is still labeled as unstable and I had no time to figure out what differences there were with the publicly available version, I decided on the approach outlined below. <em>Note that I have only 5 months exposure to the wordpress software as a user, and minimal knowledge of PHP, the language under the wordpress software, so my solution might be far from optimal. But it works!</em></p>
<p>Below I&#8217;ve outlined in as much detail as I can the steps I went through to include support for avatars in the Fjords theme, to include avatars with the Recent Comments widget, and to offer the same choice as wordpress.com for setting a default avatar if the user doesn&#8217;t have a registered gravatar. Note that quite a bit of the code was &#8220;borrowed&#8221; from the bleeding edge release of the upcoming Wordpress version 2.6.</p>
<ol>
<li>Edit <strong>comments.php</strong> in the Fjords theme to insert the following <code><em><span style="color: #3366ff;">&lt;?php echo get_avatar( $comment, 32 ); ?&gt;</span></em></code> on line 14, such that the complete line looks like this: <code><em><span style="color: #3366ff;">&lt;div class=&#8221;comentarios&#8221;&gt;&lt;?php echo get_avatar( $comment, 32 ); ?&gt; </span></em></code> The number 32 that you see is the size of the avatar that will be displayed. This will display the avatars in the comments.</li>
<li>In preparation of the modifications for the Recent Comments widget, edit <strong>style.css</strong> in the Fjords theme to add the following code at the end:
<pre class="syntax-highlight:css">
/* for avatars in comments */
.avatar { float: right; }
/* for avatars in recent comments */
.recentcomments img { float: left; margin: 0px 4px 0px -20px; }
.sidebar ul ul li.recentcomments { padding: 0px 0px 4px 20px; border-bottom: 0px; }
.sidebar ul ul#recentcomments { border-top: 0px; }
</pre>
</li>
<li>Create a 1 x 1 blank pixel image in any graphics program you like, and save it as <strong>wp-includes/images/blank.gif</strong>. We will need this for the customizable default avatars control panel in the admin section.</li>
<li>Edit <strong>wp-includes/functions.php</strong> to add the following code block at the end (before the &#8220;<span style="color: #3366ff;"><em>?&gt;</em></span>&#8221; symbol on the last line). These are support functions for the default avatar control panel in the admin section.
<pre class="syntax-highlight:php">
/**
* Determine if SSL is used.
* @since 2.6
* @return bool True if SSL, false if not used.
*/
function is_ssl() {
return ( &#039;on&#039; == strtolower($_SERVER[&#039;HTTPS&#039;]) ) ? true : false;
}   

/**
* Whether SSL login should be forced.
* @since 2.6
* @param string|bool $force Optional.
* @return bool True if forced, false if not forced.
*/
function force_ssl_login($force = &#039;&#039;) {
static $forced;
if ( &#039;&#039; != $force ) {
$old_forced = $forced;
$forced = $force;
return $old_forced;
}
return $forced;
}

/**
* Whether to force SSL used for the Administration Panels.
* @since 2.6
* @param string|bool $force
* @return bool True if forced, false if not forced.
*/
function force_ssl_admin($force = &#039;&#039;) {
static $forced;
if ( &#039;&#039; != $force ) {
$old_forced = $forced;
$forced = $force;
return $old_forced;
}
return $forced;
}

// return the site_url option, using https if is_ssl() is true
// if $scheme is &#039;http&#039; or &#039;https&#039; it will override is_ssl()
function site_url($path = &#039;&#039;, $scheme = null) {
// should the list of allowed schemes be maintained elsewhere?
if ( !in_array($scheme, array(&#039;http&#039;, &#039;https&#039;)) ) {
if ( (&#039;login&#039; == $scheme) &amp;amp;amp;amp;amp;amp;amp;amp;&amp;amp;amp;amp;amp;amp;amp;amp; ( force_ssl_login() || force_ssl_admin() ) )
$scheme = &#039;https&#039;;
elseif ( (&#039;admin&#039; == $scheme) &amp;amp;amp;amp;amp;amp;amp;amp;&amp;amp;amp;amp;amp;amp;amp;amp; force_ssl_admin() )
$scheme = &#039;https&#039;;
else
$scheme = ( is_ssl() ? &#039;https&#039; : &#039;http&#039; );
}
$url = str_replace( &#039;http://&#039;, &quot;{$scheme}://&quot;, get_option(&#039;siteurl&#039;) );
if ( !empty($path) &amp;amp;amp;amp;amp;amp;amp;amp;&amp;amp;amp;amp;amp;amp;amp;amp; is_string($path) &amp;amp;amp;amp;amp;amp;amp;amp;&amp;amp;amp;amp;amp;amp;amp;amp; strpos($path, &#039;..&#039;) === false )
$url .= &#039;/&#039; . ltrim($path, &#039;/&#039;);
return $url;
}

function admin_url($path = &#039;&#039;) {
global $_wp_admin_url;
$url = site_url(&#039;wp-admin/&#039;, &#039;admin&#039;);
if ( !empty($path) &amp;amp;amp;amp;amp;amp;amp;amp;&amp;amp;amp;amp;amp;amp;amp;amp; is_string($path) &amp;amp;amp;amp;amp;amp;amp;amp;&amp;amp;amp;amp;amp;amp;amp;amp; strpos($path, &#039;..&#039;) === false )
$url .= ltrim($path, &#039;/&#039;);
return $url;
}

function includes_url($path = &#039;&#039;) {
global $_wp_includes_url;
$url = site_url() . &#039;/&#039; . WPINC . &#039;/&#039;;
if ( !empty($path) &amp;amp;amp;amp;amp;amp;amp;amp;&amp;amp;amp;amp;amp;amp;amp;amp; is_string($path) &amp;amp;amp;amp;amp;amp;amp;amp;&amp;amp;amp;amp;amp;amp;amp;amp; strpos($path, &#039;..&#039;) === false )
$url .= ltrim($path, &#039;/&#039;);
return $url;
}
</pre>
</li>
<li>Edit <strong>wp-admin/options-discussions.php</strong> to add the following code block at the end of the existing table, before the <em><span style="color: #3366ff;">&lt;/table&gt;</span></em> statement. This and the following modification will insert the default avatar control panel in the admin section.
<pre class="syntax-highlight:php">
&lt;tr valign=&quot;top&quot;&gt;
&lt;th scope=&quot;row&quot;&gt;&lt; ?php _e(&#039;Default Avatar&#039;) ?&gt;&lt;/th&gt;
&lt;td class=&quot;defaultavatarpicker&quot;&gt;&lt;fieldset&gt;&lt;legend class=&quot;hidden&quot;&gt;&lt; ?php _e(&#039;Default Avatar&#039;) ?&gt;&lt;/legend&gt;   

&lt; ?php _e(&#039;For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their e-mail address.&#039;); ?&gt;&lt;br /&gt;

&lt; ?php
$avatar_defaults = array(
&#039;mystery&#039; =&gt; __(&#039;Mystery Man&#039;),
&#039;blank&#039; =&gt; __(&#039;Blank&#039;),
&#039;gravatar_default&#039; =&gt; __(&#039;Gravatar Logo&#039;),
&#039;identicon&#039; =&gt; __(&#039;Identicon (Generated)&#039;),
&#039;wavatar&#039; =&gt; __(&#039;Wavatar (Generated)&#039;),
&#039;monsterid&#039; =&gt; __(&#039;MonsterID (Generated)&#039;)
);
$avatar_defaults = apply_filters(&#039;avatar_defaults&#039;, $avatar_defaults);
$default = get_option(&#039;avatar_default&#039;);
if ( empty($default) )
$default = &#039;mystery&#039;;
$size = 32;
$avatar_list = &#039;&#039;;
foreach ( $avatar_defaults as $default_key =&gt; $default_name ) {
$selected = ($default == $default_key) ? &#039;checked=&quot;checked&quot; &#039; : &#039;&#039;;
$avatar_list .= &quot;\n\t&lt;label&gt;&lt;input type=&#039;radio&#039; name=&#039;avatar_default&#039; id=&#039;avatar_{$default_key}&#039; value=&#039;{$default_key}&#039; {$selected}/&gt; &quot;;

$avatar = get_avatar( $user_email, $size, $default_key );
$avatar_list .= preg_replace(&quot;/src=&#039;(.+?)&#039;/&quot;, &quot;src=&#039;\$1&amp;amp;amp;amp;amp;amp;amp;amp;forcedefault=1&#039;&quot;, $avatar);

$avatar_list .= &#039; &#039; . $default_name . &#039;&lt;/label&gt;&#039;;
$avatar_list .= &#039;&lt;br /&gt;&#039;;
}
echo apply_filters(&#039;default_avatar_select&#039;, $avatar_list);
?&gt;

&lt;/fieldset&gt;&lt;/td&gt;
&lt;/tr&gt;
</pre>
</li>
<li>Edit the same <strong>wp-admin/options-discussions.php</strong> to replace the line starting with <em><span style="color: #3366ff;">&lt;input type=&#8221;hidden&#8221; name=&#8221;page_options&#8221;</span></em> (near the end) with the line:
<pre class="syntax-highlight:html">
&lt;input type=&quot;hidden&quot; name=&quot;page_options&quot; value=&quot;default_pingback_flag,default_ping_status,default_comment_status,comments_notify,moderation_notify,comment_moderation,require_name_email,comment_whitelist,comment_max_links,moderation_keys,blacklist_keys,show_avatars,avatar_rating,avatar_default&quot; /&gt;
</pre>
</li>
<li>Edit <strong>wp-includes/pluggable.php</strong> to replace 2 lines in the function <em><span style="color: #3366ff;">get_avatar</span></em> with a block as follows (at line 1243 and below). This will pick the default avatar, as selected in the default avatar control panel of the admin section, and display that wherever an avatar need to be displayed.
<pre class="syntax-highlight:php">
/** Replaced this original statement here with the block below from wp2.6
if ( empty($default) )
$default = &quot;http://www.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=$size&quot;; // ad516503a11cd5ca435acc9bb6523536 == md5(&#039;unknown@gravatar.com&#039;)
*/   

if ( empty($default) ) {
$avatar_default = get_option(&#039;avatar_default&#039;);
if ( empty($avatar_default) )
$default = &#039;mystery&#039;;
else
$default = $avatar_default;
}

if ( &#039;custom&#039; == $default )
$default = add_query_arg( &#039;s&#039;, $size, $defaults[$avatar_default][1] );
elseif ( &#039;mystery&#039; == $default )
$default = &quot;http://www.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s={$size}&quot;; // ad516503a11cd5ca435acc9bb6523536 == md5(&#039;unknown@gravatar.com&#039;)
elseif ( &#039;blank&#039; == $default )
$default = includes_url(&#039;images/blank.gif&#039;);
elseif ( !empty($email) &amp;amp;amp;amp;amp;amp;amp;amp;&amp;amp;amp;amp;amp;amp;amp;amp; &#039;gravatar_default&#039; == $default )
$default = &#039;&#039;;
elseif ( &#039;gravatar_default&#039; == $default )
$default = &quot;http://www.gravatar.com/avatar/s={$size}&quot;;
elseif ( empty($email) )
$default = &quot;http://www.gravatar.com/avatar/?d=$default&amp;amp;amp;amp;amp;amp;amp;amp;s={$size}&quot;;

/** inserted the above block from wp2.6 */
</pre>
</li>
<li>Edit <strong>wp-include/widgets.php</strong> to change 2 lines in the function <em>wp_widget_recent_comments</em> as follows. The first modification starts at line 966. Comment out the existing code (starting with <em><span style="color: #3366ff;">$comments</span></em>) and replace it with the one as shown below. After you&#8217;ve done that, the second modification starts at line 979. Comment out the original code line (starting with <em><span style="color: #3366ff;">echo</span></em>) and replace with the one as shown below. This modification displays the default avatar in the Recent Comments widget.
<pre class="syntax-highlight:php">
// $comments = $wpdb-&gt;get_results(&quot;SELECT comment_author, comment_author_url, comment_ID, comment_post_ID FROM $wpdb-&gt;comments WHERE comment_approved = &#039;1&#039; ORDER BY comment_date_gmt DESC LIMIT $number&quot;);
// Hereafter is the modified statement to display the avatar together with the comment
$comments = $wpdb-&gt;get_results(&quot;SELECT comment_author, comment_author_url, comment_author_email, comment_ID, comment_post_ID FROM $wpdb-&gt;comments WHERE comment_approved = &#039;1&#039; ORDER BY comment_date_gmt DESC LIMIT $number&quot;);
// End of modification
...
...
// echo  &#039;&lt;/li&gt;&lt;li class=&quot;recentcomments&quot;&gt;&#039; . sprintf(__(&#039;%1$s on %2$s&#039;), get_comment_author_link(), &#039;&lt;a href=&quot;&#039;. get_permalink($comment-&gt;comment_post_ID) . &#039;#comment-&#039; . $comment-&gt;comment_ID . &#039;&quot;&gt;&#039; . get_the_title($comment-&gt;comment_post_ID) . &#039;&lt;/a&gt;&#039;) . &#039;&lt;/li&gt;&#039;;
// Hereafter is the modified statement to display the avatar together with the comment
echo  &#039;&lt;li class=&quot;recentcomments&quot;&gt;&#039; . get_avatar(get_comment_author_email(),16) . sprintf(__(&#039;%1$s on %2$s&#039;), get_comment_author_link(), &#039;&lt;a href=&quot;&#039;. get_permalink($comment-&gt;comment_post_ID) . &#039;#comment-&#039; . $comment-&gt;comment_ID . &#039;&quot;&gt;&#039; . get_the_title($comment-&gt;comment_post_ID) . &#039;&lt;/a&gt;&#039;) . &#039;&lt;/li&gt;&#039;;
// End of modification
</pre>
<p> 
</ol>
<p><img class="alignleft size-full wp-image-724" title="wp26-avatars" src="http://www.oriste.com/wp/wp-content/uploads/2008/06/wp26-avatars.png" alt="" width="240" height="250" />That&#8217;s it! You should now have an extra option in Settings&gt;Discussions where you can pick a default avatar in case a user doesn&#8217;t have a registered gravatar (from gravatar.com). Moreover, the avatar will now appear in the single post comments (size 32, but you can change that in the code, see 1. above), and in the recent comments (size 16, but you can change that too in the code, see 8. above). For styling, all you want to change is done through the CSS (see 2. above). Please remember that the <a href="http://boren.nu/archives/2008/06/23/wordpress-26-beta-1/">upcoming version 2.6</a> will implement this by default, except for the avatars in the recent comments.</p>
<p>DISCLAIMER: the usual disclaimer applies, if you decide to hack the wordpress code as I outlined above, I&#8217;m not responsible for any damage to your blog, your keyboard, your house, your family, your dog or anything else that you value. Proceed at your own risk. I will try to answer questions posed here in the comments though.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oriste.com/2008/06/25/avatars-for-wordpress-251-and-fjords-theme/feed</wfw:commentRss>
		</item>
		<item>
		<title>Monday morning</title>
		<link>http://www.oriste.com/2008/06/23/monday-morning</link>
		<comments>http://www.oriste.com/2008/06/23/monday-morning#comments</comments>
		<pubDate>Mon, 23 Jun 2008 11:06:12 +0000</pubDate>
		<dc:creator>luc</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[afternoon]]></category>

		<category><![CDATA[cockroach]]></category>

		<category><![CDATA[pump]]></category>

		<category><![CDATA[water]]></category>

		<guid isPermaLink="false">http://www.oriste.com/?p=732</guid>
		<description><![CDATA[That&#8217;s the answer to my last question &#8220;How long does a Saturday afternoon in Greece last?&#8221;. Answer: until Monday morning.
We did get a visit by a technician from the water works on Sunday though. But it wasn&#8217;t clear to me what he came to do. He ascertained that we had indeed no water, gave the [...]]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s the answer to <a href="http://www.oriste.com/2008/06/22/saturday-afternoon/" target="_self">my last question</a> &#8220;How long does a Saturday afternoon in Greece last?&#8221;. Answer: until Monday morning.</p>
<p>We <em>did</em> get a visit by a technician from the water works on Sunday though. But it wasn&#8217;t clear to me what he came to do. He ascertained that we had indeed no water, gave the umpteenth version of how the water network was constructed as an explanation why we had no water. We&#8217;ve heard many different versions of the same story before, from different servicemen of the same company that came to examine the situation.<span id="more-732"></span> My summary of all these explanations is this: we are either at the beginning or at the end of one of 3 possibly different circuits. That&#8217;s why we have a water problem when our neighbors don&#8217;t. Figures, huh?</p>
<p>Τέλος πάντων, we had another barbecue last night, the second in a row, and got to bed around 2 o&#8217;clock. It was a good thing that I was woken up this morning by a huge cockroach crawling over my face a 6:30. After skillfully exterminating the attacker I was fully awake and checked the water. <strong>YES! Water had arrived! Glory Hallelujah!</strong> I could now devote myself to what I fear will become a frequent routine: get up at dawn &#8212; when there is still some water in the pipes before everybody else starts filling up their reservoir, leaving me with only a few measly drops &#8212; and start the electric water pump to fill the 1000 liter tank on the rooftop. The pump has a capacity of 50 liters per minute, but because of the low pressure and the clogged pipes it takes about 2 hours to fill up the reservoir. All that time I have to sit next to the pump, because there is no safety system for a) when the reservoir is full, and b) when the water supply stops. If I don&#8217;t react to either of these conditions &#8212; which I detect by a change in the sound of the running motor &#8212; within a reasonably short time, I risk burning the pump. Oh, did I tell you that the tank is on a 7 meter high flat rooftop with no access whatsoever, except if I can borrow a 8 meter high ladder somewhere? If anybody has any ideas of how to improve this situation through pressure valves or something like it, without running extra electric cables because that is not possible, I&#8217;d like to hear from you.</p>
<p>I&#8217;m off for my siesta now. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.oriste.com/2008/06/23/monday-morning/feed</wfw:commentRss>
		</item>
		<item>
		<title>Saturday afternoon</title>
		<link>http://www.oriste.com/2008/06/22/saturday-afternoon</link>
		<comments>http://www.oriste.com/2008/06/22/saturday-afternoon#comments</comments>
		<pubDate>Sat, 21 Jun 2008 22:52:55 +0000</pubDate>
		<dc:creator>luc</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[afternoon]]></category>

		<category><![CDATA[water]]></category>

		<guid isPermaLink="false">http://www.oriste.com/?p=729</guid>
		<description><![CDATA[We have been rationed for our water supply since October last year. If we had one hour of water a day we counted our blessings. When we had water, we would be so lucky to have sufficient pressure to fill the tank on the roof, so that when water was cut off again we would [...]]]></description>
			<content:encoded><![CDATA[<p>We have been rationed for our water supply since October last year. If we had one hour of water a day we counted our blessings. When we had water, we would be so lucky to have sufficient pressure to fill the tank on the roof, so that when water was cut off again we would have some reserve for the life essentials. You know, like toilet flushing, washing dishes and clothes, those things.<span id="more-729"></span></p>
<p>Anyway, that has lasted for months and yesterday I read in the local newspaper that the problem had been solved and that Iraklio would be once more be served with a normal water supply. That was yesterday. We had been without water for 2 days already. So, like children waiting for Santa Claus we went asleep, expecting to have a normal water supply today. At 7 this morning, when we woke up, there was no water. At noon there was still no water. At 2 I called the service, telling them that we were in dire need of some water. &#8220;Not to worry, normal supply would be restored in the afternoon&#8221;. The Greek afternoon (apógevma) starts anywhere between 3 and 5 and ends anywhere between 7 and 9. So, we had to wait. It would be well worthwhile. We had been invited to a BBQ in the evening and left the house at 8:30. There was no water yet. </p>
<p>We just came back (it&#8217;s now almost 2 o&#8217;clock) and there is still no water. What I would like to know is this: an &#8220;afternoon&#8221;, on a Saturday, how long does that last?</p>
<p>Is it still Saturday afternoon? Because I sure could do with some water.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oriste.com/2008/06/22/saturday-afternoon/feed</wfw:commentRss>
		</item>
		<item>
		<title>Microblogging</title>
		<link>http://www.oriste.com/2008/06/17/microblogging</link>
		<comments>http://www.oriste.com/2008/06/17/microblogging#comments</comments>
		<pubDate>Tue, 17 Jun 2008 17:10:35 +0000</pubDate>
		<dc:creator>luc</dc:creator>
		
		<category><![CDATA[Techno]]></category>

		<category><![CDATA[microblog]]></category>

		<category><![CDATA[microblogging]]></category>

		<category><![CDATA[social networks]]></category>

		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.oriste.com/?p=714</guid>
		<description><![CDATA[That was kind of a long break. I&#8217;ve been exploring the social networks, what I call the sociosphere™, sometimes referred to as the Microblog Community. I didn&#8217;t find the whole idea attractive over a year ago when it started, but now I&#8217;m fascinated by it. It&#8217;s compelling, addictive even. The whole idea is that you [...]]]></description>
			<content:encoded><![CDATA[<p>That was kind of a long break. I&#8217;ve been exploring the social networks, what I call the <em>sociosphere™</em>, sometimes referred to as the Microblog Community. I didn&#8217;t find the whole idea attractive over a year ago when it started, but now I&#8217;m fascinated by it. It&#8217;s compelling, addictive even. <span id="more-714"></span>The whole idea is that you write small snippets, of whatever comes to your mind, any time of the day and night. Some people use it as a marketing tool, some just want to share with you when they go to the toilet. In between there is a whole spectrum of information that competes for your attention. You can use the web, SMS on your mobile phone or your IM client to send and receive messages. You can integrate your microblog in your regular blog, like I did (see an example in the left sidebar, under the search field) or you can interface your regular blog with your microblog, to send out the titles of your new blog posts automatically, something akin to an RSS feed. <a title="Twitter" href="http://twitter.com" target="_blank">Twitter</a> is the site that popularized the whole phenomenon, but is is by no means the only site that wants to aggregate whatever it is that you have to say to the world. You can find a complete overview <a href="http://www.thws.cn/articles/twitter-clones.html" target="_blank">here</a>.</p>
<p>We&#8217;ll see where it all leads us.</p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.oriste.com/2008/06/17/microblogging/feed</wfw:commentRss>
		</item>
		<item>
		<title>Bo Diddley</title>
		<link>http://www.oriste.com/2008/06/03/bo-diddley</link>
		<comments>http://www.oriste.com/2008/06/03/bo-diddley#comments</comments>
		<pubDate>Tue, 03 Jun 2008 18:10:52 +0000</pubDate>
		<dc:creator>luc</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[rock'n roll]]></category>

		<guid isPermaLink="false">http://www.oriste.com/?p=661</guid>
		<description><![CDATA[Sadly &#8212; for us &#8212; another legend goes to rock heaven. They must be having a hell of a welcome party there now.

]]></description>
			<content:encoded><![CDATA[<p>Sadly &#8212; for us &#8212; another legend goes to rock heaven. They must be having a hell of a welcome party there now.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/w2XkjBVnpos&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/w2XkjBVnpos&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.oriste.com/2008/06/03/bo-diddley/feed</wfw:commentRss>
		</item>
		<item>
		<title>More motorbikes and helmets</title>
		<link>http://www.oriste.com/2008/06/01/more-motorbikes-and-helmets</link>
		<comments>http://www.oriste.com/2008/06/01/more-motorbikes-and-helmets#comments</comments>
		<pubDate>Sun, 01 Jun 2008 19:44:12 +0000</pubDate>
		<dc:creator>luc</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Athens]]></category>

		<category><![CDATA[helmet]]></category>

		<category><![CDATA[motorbike]]></category>

		<category><![CDATA[royal enfield]]></category>

		<guid isPermaLink="false">http://www.oriste.com/?p=649</guid>
		<description><![CDATA[Piraeás was still sleeping when I arrived. I wandered around for a few hours before the shops would open. No need to hurry since my appointment with Michalis was at 11:00, and the one with the seller at 15:00. Michalis&#8217; shop, called Classic Motorcycles Ltd is at Kalliroïs Street, south of the Acropolis, where a [...]]]></description>
			<content:encoded><![CDATA[<p>Piraeás was still sleeping when I arrived. I wandered around for a few hours before the shops would open. No need to hurry since my appointment with Michalis was at 11:00, and the one with the seller at 15:00. Michalis&#8217; shop, called Classic Motorcycles Ltd is at Kalliroïs Street, south of the Acropolis, where a dozen or so motorbike shops are located. I would have 2 hours to visit them all &nbsp;and peruse all the helmets (see previous article for the why) and finally &#8212; hopefully &#8212; come out with a fit before my first appointment. The seller was located in Ilion, in the north-east of Athens. If traffic was smooth I would even have more time to peruse more helmets in between the two appointments.<span id="more-649"></span></p>
<p>But first I was to go see a shop in Piraeás which was advertising in one of the motorbike magazines that I bought. Easier said than done. I could of course have taken a taxi and have me delivered to the address given, but I&#8217;m too cheap for that.&nbsp;At a periptero I had bought a street map of the greater Athens area, which was of the usual low quality, outdated and missing all but the most important streets as I soon discovered.&nbsp;But I decided to walk anyway. Big mistake. Piraeás &#8212; and I had completely forgotten about that since the last time I came here some years ago &#8212; is loud and chaotic and dirty. It&#8217;s completely run down. Most importantly there are no street names to be seen anywhere. One can see the spots were the plates used to be, attached to the corner houses. They probably fell off and nobody bothered to replace them. Anyway, I got completely lost and by the time I found the shop I had walked for more than a hour. A sign on the door indicated that he shop was closed all day.</p>
<p>Bummer.</p>
<p>Back on foot to the port, where I purchased a day pass for the metro. By then I must have covered more than 5 kilometers on foot already&#8230; Unlike in other metropolitan areas that I know, you can&#8217;t get a map of the metro system in Athens. The system is less complex than in let&#8217;s say Paris or London, so that&#8217;s maybe why nobody bothers. I only had to change trains once at Omonia. Getting out of the Pygrou-Fix metro station I was surrounded by bike shops immediately. It was close to 9 o&#8217;clock and most shops had signs telling that they would open at 10. Fair enough, I had time to have a coffee and a <em>spanakópita</em>, a small pastry filled with spinach, feta cheese and herbs, and give my hot feet a rest.</p>
<p>At 10 I was back on my feet and made the round of the shops. I&#8217;ll spare you the details, I tried all the brand names, Arai, Mobo, Nolan, Airoh, AVG, Caberg, even but-ugly Shoei, but to not avail. One obscure brand I had never heard of, by the name of LS2, had a model that almost fitted more or less, maybe a bit&nbsp;too tight, so when asked for me to try the next bigger size in order to compare, they didn&#8217;t have that in stock and they wouldn&#8217;t replenish on it for this season. I didn&#8217;t risk taking the smaller size because I was afraid it would feel uncomfortable and when a helmet feels uncomfortable you don&#8217;t wear it. Which is all too easy here because practically nobody wears a helmet. I&#8217;d rather avoid that temptation. Bummer again.</p>
<p><span style="color: #0000ee;"><span style="text-decoration: underline;"><a href="http://www.oriste.com/wp/wp-content/uploads/2008/06/royal-enfield-dealer-athens1.jpg"><img class="alignleft size-medium wp-image-656" title="royal-enfield-dealer-athens1" src="http://www.oriste.com/wp/wp-content/uploads/2008/06/royal-enfield-dealer-athens1-225x300.jpg" alt="Royal Enfield dealer Athens, Greece" width="225" height="300" /></a></span></span>Next stop was Michalis&#8217; shop, only a block away. Michalis is a very decent chap who obviously enjoys what he&#8217;s doing. Even though he normally closes on Saturday, and it was still closed when I arrived, after a quick phone call he came down to the shop for me and we had a very pleasant time chatting about the pros and cons of the various Enfield models. I got even more convinced that the Electra version was the one for me. We made a ride on one of his showroom models right into the traffic of Athens, first me on the pillion seat, after a few kilometers we switched places.&nbsp;I hadn&#8217;t ridden a motorbike in over 25 years and&nbsp;I was terrified with the traffic! But we survived. I want one, no I <em>need</em> one! But I don&#8217;t want to spend the €5500 for a new one, just the basic version. It&#8217;s not a life necessity for me and we have other more important things to pay for. So I considered myself only too lucky that I would soon be able to buy a slightly used model (2 years, 2400km) for only €3000.</p>
<p>Alas! It was not to be&#8230;</p>
<p>After I said goodbye to Michalis I headed back to the metro station, but not without first trying a few more helmets in shops at the opposite side of the street. I grew more&nbsp;desperate&nbsp;with every helmet that I tried. It&#8217;s enough to give an otherwise reasonably well balanced guy a serious complex! Good thing that I have extensive psychological assistance at home&#8230;</p>
<p>At two thirty, after another ride on the metro and a short taxi drive I was at the sellers place. The Royal Enfield was parked outside on the street. Due to all the highly informational conversations I&#8217;d had with Asterix and Michalis I noticed immediately that this was <em>not</em> an Electra! Even before I opened the door of the cab. The seller had seen me arriving and came out on the street. We discussed for a while the mint condition the bike was in (I have to admit that) and how this was a really exceptional deal, nowhere would I find a bike in this condition at this price, etcetera, etcetera, and then I dropped the deadly question.</p>
<ul>
<li>Me: Are you sure this is an Electra?</li>
<li>He: Why yes, of course, it has electronic ignition, it has a five&nbsp;speed&nbsp;gearbox, it has everything.</li>
<li>Me: But it&#8217;s not an Electra</li>
<li>He: Ah, don&#8217;t worry, it&#8217;s exactly <em>like</em> an Electra. You will love this bike.</li>
</ul>
<p>Well, maybe, but I don&#8217;t love being treated like an idiot. I was really disappointed but tried not to show it. It&#8217;s like having a nice tournedos&nbsp;dangled&nbsp;before your nose and at the end being served a burger. They&#8217;re both beef (well, <em>one</em> of them at least is for sure), but that&#8217;s where the similarity ends. The point was that I came all the way for an <em>Electra</em> and it wasn&#8217;t an Electra. For some reason that concept was difficult to grasp for the seller. In the mean time reinforcement was brought into the field when the rest of the household apparently had noticed that negotiation didn&#8217;t go as smooth as expected. First came the mother, with a tray of freshly squeezed orange juice and tiropita (pastry made of layers of phyllo filled with cheese). Then the father followed: &#8220;I&#8217;m an engineer, are you an engineer?&#8221;. But I stood firm, didn&#8217;t fall for either the charm offensive nor the intimidation tactics. In the end we all agreed that the deal was not going to happen, we had some more conversation about old-timers, motorbikes in general and more chit-chat, after which I thanked them cordially for their hospitality and bode them farewell.</p>
<p>The rest of the day was pretty uneventful, the trip back to the port of Piraeás, where I arrived too early to be admitted on the ferry, the waiting in what once was a rather colorful local cafeteria on the port grounds, now replaced by a dull Starbucks &#8212; I don&#8217;t even like their coffee, I find it highly overrated, being the first to embark, found a nice place on a double couch in a corner of the bar, where I tried to sleep a bit during the night, not before having my rakí, I arrived home around 7 o&#8217;clock this morning and slept well into the mid day. We had a nice lunch at the beach of Karteros, went for a swim afterwards and lingered on the beach until 8 o&#8217;clock.</p>
<p>Now the search for a secondhand Royal Enfield Electra will begin in earnest&#8230;</p>
<p> </p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.oriste.com/2008/06/01/more-motorbikes-and-helmets/feed</wfw:commentRss>
		</item>
		<item>
		<title>Motorbikes and helmets</title>
		<link>http://www.oriste.com/2008/05/30/motorbikes-and-helmets</link>
		<comments>http://www.oriste.com/2008/05/30/motorbikes-and-helmets#comments</comments>
		<pubDate>Fri, 30 May 2008 20:39:51 +0000</pubDate>
		<dc:creator>luc</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Athens]]></category>

		<category><![CDATA[ferry]]></category>

		<category><![CDATA[helmet]]></category>

		<category><![CDATA[iraklio]]></category>

		<category><![CDATA[motorbike]]></category>

		<category><![CDATA[royal enfield]]></category>

		<guid isPermaLink="false">http://www.oriste.com/?p=648</guid>
		<description><![CDATA[I&#8217;m on the ferry to Piraeás, destination Athens. Two weeks ago I saw Manolis&#8217; Royal Enfield Bullet 500 and I knew immediately that that was the motorbike I had been saving my money for for the last 5 years. Simple, spartan and with this oh-so seductive old-timer&#8217;s look. After some research I decide not to [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m on the ferry to Piraeás, destination Athens. Two weeks ago I saw Manolis&#8217; <a href="http://www.royal-enfield.com/motorcycles.htm">Royal Enfield Bullet 500</a> and I knew immediately that <em>that</em> was the motorbike I had been saving my money for for the last 5 years. Simple, spartan and with this oh-so seductive old-timer&#8217;s look. After some research I decide not to take the Bullet, like Manolis has, which is the classic version, basically unchanged since the fifties and manufactured in India, but to go for the slightly more modern version, called the Electra. In the UK the Electra ranges in price from €4.700 to €5.300, depending on the options. All Electra models share the same 500 CC mono-cylindric engine. Of course, this being Greece, price here start at €5.500 for the basic model.<span id="more-648"></span></p>
<p><span style="color: #551a8b;"><span style="text-decoration: underline;"><a href="http://www.oriste.com/wp/wp-content/uploads/2008/06/electra-classic.jpg"><img class="alignleft size-medium wp-image-650" title="electra-classic" src="http://www.oriste.com/wp/wp-content/uploads/2008/06/electra-classic-300x223.jpg" alt="Royal Enfield Electra 500, classic version" width="300" height="223" /></a></span></span>I had been to the local Royal Enfield dealer here in Iraklio, a guy who goes by the nickname of Asterix, real name Kostos Spiridakis, and who mainly specializes in long gone models of Harley, Norton, Triumph, BSA, Ariel and BMW. His workshop is like a heaven for old-timers. He didn&#8217;t have any Enfields on display but he called around to see if there were any secondhand bikes available locally. None were. Then he got me in touch with the importer/dealer in Athens, Michalis Savaïdis, who was very accommodating in me coming to see him on a Saturday when his shop is normally closed.</p>
<p>I also traced 2 second-hand Electra&#8217;s in Athens through the small adverts in a motorbike magazine. They ranged from €3.000 to €3.800 for 1 to 2 year old models. One of the sellers I could not reach, his phone was never picked up. The other, with the €3.000 asking price, was equally willing to see me on a Saturday. I made appointments for this Saturday, 31st of May, tomorrow as we speak.</p>
<p>In the meantime I had been running around the motorbike and accessory shops here in Iraklio to find a helmet. This is a major problem for me. I have a very strangely formed big head. Or so I am led to believe by all these helmets. None of them will fit. I need at least an L size, and for a number of makes and models only an XL will do. I want an open face helmet and the choice for those is already very limited here. You will usually find only half a dozen of them in a shop with hundreds of helmets. After 3 or 4 shops I was willing to take any helmet regardless of price. It didn&#8217;t help. So I decided to take the opportunity and combine my visit to the dealer and the seller in Athens to make the round of the bike shops there, expecting a wider choice.</p>
<p>That&#8217;s how far I am. I&#8217;ll have a very busy schedule tomorrow. Now I&#8217;m off to have one last rakí at the bar, my night cap every time I take the ferry, find a quiet place somewhere in a corner and try to sleep a few hours before we get to Piraeas at 6 in the morning.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oriste.com/2008/05/30/motorbikes-and-helmets/feed</wfw:commentRss>
		</item>
		<item>
		<title>Stop staring at my iPee</title>
		<link>http://www.oriste.com/2008/05/23/stop-staring-at-my-ipee</link>
		<comments>http://www.oriste.com/2008/05/23/stop-staring-at-my-ipee#comments</comments>
		<pubDate>Thu, 22 May 2008 22:05:54 +0000</pubDate>
		<dc:creator>luc</dc:creator>
		
		<category><![CDATA[Techno]]></category>

		<category><![CDATA[ACCEPT-LANGUAGE]]></category>

		<category><![CDATA[HTTP header]]></category>

		<category><![CDATA[multi-lingual]]></category>

		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.oriste.com/?p=625</guid>
		<description><![CDATA[Dear webmasters of multi-lingual sites (that includes you, blogspot.com!),
Please, STOP STARING AT MY iPEE! I&#8217;m not staring at your &#8230; okay, we don&#8217;t need to go into that, you get my point already.
That being said, now that I have your attention, here&#8217;s the deal.
I live in a country of which I don&#8217;t fully master the [...]]]></description>
			<content:encoded><![CDATA[<p>Dear webmasters of multi-lingual sites (that includes <em>you</em>, blogspot.com!),</p>
<p>Please, STOP STARING AT MY <strong>iPEE</strong>! I&#8217;m not staring at your &#8230; okay, we don&#8217;t need to go into <em>that</em>, you get my point already.</p>
<p>That being said, now that I have your attention, here&#8217;s the deal.<span id="more-625"></span></p>
<p>I live in a country of which I don&#8217;t fully master the language. This is Europe, a real melting pot of cultures and languages, and I can go and reside wherever I please. Language is not going to stop me from doing that. So I chose to live in Greece. Very difficult language, Greek is.</p>
<p>Here in my neighborhood, when I enter a shop and open my mouth to inquire about something in this language that I don&#8217;t have full command of, they immediately reply in English.</p>
<p>Why?</p>
<p>Because these people can look beyond my uttered words. They go directly to my Hopelessly Twisted Tongue Protocol (HTTP) header so to speak. And this header says: &#8220;ACCEPT-LANGUAGE: en, nl, de, fr, el&#8221;, in that order. Stopping short of staring at my <strong>iPee</strong> and saying &#8220;hey, you&#8217;re in Greece, we only speak Greek to you&#8221; would be considered very rude here.</p>
<p>These people don&#8217;t have PhD&#8217;s or engineering degrees, yet they are smart enough &#8212; and hospitable enough &#8212; to go the extra mile (or yard, inch, whatever) and actually <em>look</em> at my HTTP header. Now, as I understand it, you have herds of PhD&#8217;s and engineering whizz kids in your stables, yet you don&#8217;t have the smarts to look beyond my <strong>iPee</strong> and go to my HTTP header? I know my <strong>iPee</strong> says I&#8217;m in Greece, but my HTTP header has been carefully construed to tell you that my preferred language is in fact <em>not</em> Greek.</p>
<p>Is that so difficult?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oriste.com/2008/05/23/stop-staring-at-my-ipee/feed</wfw:commentRss>
		</item>
		<item>
		<title>Greece doesn&#8217;t rush</title>
		<link>http://www.oriste.com/2008/05/22/greece-doesnt-hurry</link>
		<comments>http://www.oriste.com/2008/05/22/greece-doesnt-hurry#comments</comments>
		<pubDate>Thu, 22 May 2008 13:18:59 +0000</pubDate>
		<dc:creator>luc</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[greece]]></category>

		<category><![CDATA[late]]></category>

		<category><![CDATA[slow]]></category>

		<guid isPermaLink="false">http://www.oriste.com/?p=624</guid>
		<description><![CDATA[As far as reading goes, I&#8217;m not a gourmet, I&#8217;m a gourmand. I read everything that falls into my hands. Today, while I was taking my daily infusion of &#8220;ellinikó métrio&#8221; at the Internet Cafe opposite our street on Knossou, I read an article by Rika Vagiani in Ethnos newspaper. You can find the original [...]]]></description>
			<content:encoded><![CDATA[<p>As far as reading goes, I&#8217;m not a gourmet, I&#8217;m a gourmand. I read everything that falls into my hands. Today, while I was taking my daily infusion of &#8220;ellinikó métrio&#8221; at the Internet Cafe opposite our street on Knossou, I read an article by Rika Vagiani in Ethnos newspaper. You can find the original in Greek <a rel="nofollow" href="http://www.ethnos.gr/article.asp?catid=11418&amp;subid=2&amp;tag=8403&amp;pubid=1006479">here</a>. I have tried to translate it as follows:<span id="more-624"></span></p>
<h3><em>The country that doesn&#8217;t rush</em></h3>
<p><em>We are not bad. We are slow! As a country, I mean. We are not retarded, we are delayed. The day before yesterday I understood this while waiting for a bus which simply did not come. I waited and waited and waited some more.</em></p>
<p><em> In the end I gave up. The work for which I had left would not happen [that day], because, quite simply, I was already late. I decided to anchor there, at the bus stop, with an orange juice, three newspapers and a magazine, just out of curiosity.</em></p>
<p><em>Eventually the bus came, took me and transported me in a period of time that would have been enough for me to go on foot twice to my destination (and back!). What counted was that the itinerary took place.</em></p>
<p><em>The bus just came late. But it came.</em></p>
<p><em>What are you fretting now, my little pony? Everything happens. Always. In its own time. Eventually. Modern laws are passed, but &#8230; fifty years after the time they should have passed. And they are applied, if implemented, after a hundred more years. New paths (literally and figuratively) are beaten, but by the time of completion they are already outdated.</em></p>
<p><em>«The ambulance arrived, the patient died», the story of our lives - and sometimes death. Greece does not hurry - the Greeks however don&#8217;t have time, that&#8217;s why we all wear our hearts on our sleeves. </em></p>
<p><em>Nobody is to blame. In the end, we&#8217;ll all get there. We are just late, in growing up, in finding work, in creating a family. By the time we make these things happen, we have grown old. Were did life go? It was late.</em></p>
<p><em>Yesterday my husband and I realized that Barak Obama is a contemporary of ours. We could have been in the same kindergarten. The young man is a few steps away from the global steering wheel. And we? We said it was depressing, but &#8230; it was too late anyway. After that we became sleepy and went nappy-poo in beddy-by land. It was already late &#8230;</em></p>
<p>Very good, Rika, albeit a bit late&#8230; <img src='http://www.oriste.com/wp/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>P.S. my command of the Greek language is far from perfect. I would appreciate any corrections if you find my translation faulty.</p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.oriste.com/2008/05/22/greece-doesnt-hurry/feed</wfw:commentRss>
		</item>
		<item>
		<title>Greek home sweet home</title>
		<link>http://www.oriste.com/2008/05/19/greek-home-sweet-home</link>
		<comments>http://www.oriste.com/2008/05/19/greek-home-sweet-home#comments</comments>
		<pubDate>Mon, 19 May 2008 09:22:52 +0000</pubDate>
		<dc:creator>luc</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[apartments]]></category>

		<category><![CDATA[houses]]></category>

		<category><![CDATA[real estate]]></category>

		<guid isPermaLink="false">http://www.oriste.com/?p=610</guid>
		<description><![CDATA[&#8220;A plunge in the Greek real estate sector&#8221;. That&#8217;s what a number of local newspaper headlined over the past days. It was about time, not the action of the newspapers, but the plunge.&#160;
Since our arrival here in early 2003 I&#8217;ve tried to make sense of the prices of real estate. It just seemed to be [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;A plunge in the Greek real estate sector&#8221;. That&#8217;s what a number of local newspaper headlined over the past days. It was about time, not the action of the newspapers, but the plunge.<span id="more-610"></span>&nbsp;</p>
<p>Since our arrival here in early 2003 I&#8217;ve tried to make sense of the prices of real estate. It just seemed to be so totally detached from reality. At first I thought it was because we were taken advantage of, being foreigners and so. And to an extent that was certainly the case. But I also learned that even locals were subjected to these rising prices (even if they were paying less that what we were asked for), that were completely out of balance with what everybody claims as income.</p>
<p>What&#8217;s going on now? In Iraklio sales of new apartments have fallen by 30 to 40 percent and people are turning to second-hand apartments or look for land to build their own house. Moreover this year seizures of apartments by banks have tripled as a large number of buyers are unable to pay their installments. This can be attributed to the wild purchase boom in 2006 that erupted when it became known that by 2007 the government would apply a different set of rules to asses the value of properties for tax reasons, effectively raising the &#8220;objective value&#8221; by more than 50% in some cases. This assessment is only done at the time of purchase.</p>
<p>To give you an idea of the prices here today: a building plot of 400 square meters in the more popular suburbs of Iraklio (Kipoupolis, Agios Ioannis - where we live, Mastambas, Mesambelies) costs 230.000€ to 250.000€! Putting a small house of 100 square meters on that land will add another 120.000€ to 130.000€. Total cost 350.000€ to 380.000€. You have to understand that there is nothing particularly attractive in these areas that would justify such a premium price. The same dusty and dirty roads, broken pavement, telephone wires strung from one house to the other. It&#8217;s just that these are some of the few areas where there is still room to build.</p>
<p>For a new apartment in Iraklio centre you have to count on 3.500 to 4.500€ per square meter, a 10 year old used apartment will cost you 1.500 to 1.800€ per square meter, while a really old apartment (extremely high energy costs) will set you back around 1.000€ per square meter. New or old, I found the quality of <em>all</em> constructions here serious lacking in quality: sloppy finishing, thin walls, amateurish plumbing and electricity.</p>
<p>A real estate advisor was quoted by one of the newspapers as saying &#8212; possibly in an urge to end on a positive note &#8212; that you can still buy a house with a garden a few kilometers outside of Iraklio for &#8220;a mere&#8221; 200.000 to 300.000€. I went to see some of these houses. In my own country each of them wouldn&#8217;t go for more than 130.000 to 180.000€.</p>
<p>A brand new apartment of 130 square meters in a newly erected complex just opposite our street has an asking price of half a million euros!</p>
<p>To quote <a title="Obelix" href="http://en.wikipedia.org/wiki/Obelix" target="_blank">Obelix</a>: &#8220;Mais ils sont fous, ces Romains!&#8221;</p>
<p>For the moment we stick to stuff that is affordable to us and gives us a whole lot more bang for our bucks than a house of our own: the sea, the sky, the sun, the tavernas, the company, the music and the dances.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oriste.com/2008/05/19/greek-home-sweet-home/feed</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.581 seconds -->
<!-- Cached page served by WP-Cache -->
