<?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>Le Blog de Pierre</title>
	<atom:link href="http://www.pierreherman.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.pierreherman.com/blog</link>
	<description>... C&#039;est du solide!</description>
	<lastBuildDate>Thu, 12 Aug 2010 19:16:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Quick and dirty: From database hierarchy to XHTML unordered list (UL) using PHP</title>
		<link>http://www.pierreherman.com/blog/?p=470</link>
		<comments>http://www.pierreherman.com/blog/?p=470#comments</comments>
		<pubDate>Fri, 25 Dec 2009 20:16:04 +0000</pubDate>
		<dc:creator>Pierre</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Quick and Dirty Tutorial]]></category>
		<category><![CDATA[Connect by]]></category>
		<category><![CDATA[Hierarchical]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[ul]]></category>
		<category><![CDATA[Unordered list]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.pierreherman.com/blog/?p=470</guid>
		<description><![CDATA[This article is about displaying a set of nested XHTML unordered lists starting from an Oracle database hierarchy made of a parent/id relationship. I&#8217;ve had to browse an infinite quantity of articles to gather the necessary information to be able to code this. It is in no way the result of my own work but [...]]]></description>
			<content:encoded><![CDATA[<p>This article is about displaying a set of nested XHTML unordered lists starting from an Oracle database hierarchy made of a parent/id relationship.</p>
<p>I&#8217;ve had to browse an infinite quantity of articles to gather the necessary information to be able to code this. It is in no way the result of my own work but rather a compilation of some others ideas and scripts.<br />
I take the opportunity to thank them all for their advices and remarks.</p>
<p>I haven&#8217;t taken the time to adapt this to <a href="http://www.mysql.com/" target="_blank">MySQL</a> because at the time of writing this <a href="http://www.mysql.com/" target="_blank">MySQL</a> doesn&#8217;t handle the &#8220;<a href="http://download.oracle.com/docs/cd/B12037_01/server.101/b10759/queries003.htm" target="_blank">CONNECT BY</a>&#8221; hierarchical queries but I&#8217;m sure some of you will easily hack that script and adapt it.</p>
<p>I&#8217;ll assume that:</p>
<ul>
<li>You have an Oracle database up and running (this example has been implemented on <a href="http://www.oracle.com/technology/products/database/xe/index.html" target="_blank">Oracle XE</a> the free database edition from Oracle)</li>
<li>You have a web server (mine is <a href="http://httpd.apache.org/" target="_blank">Apache</a> on Fedora Linux) running with <a href="http://www.php.net" target="_blank">PHP</a> and everything set up correctly to talk to the database.</li>
<li>You know what I&#8217;m talking about when you read the title.</li>
</ul>
<h4><span style="text-decoration: underline;">1.  Creating the table:</span></h4>
<pre class="brush: sql;">CREATE TABLE hierarchy (
 id           NUMBER
 , parent       NUMBER NULL
 , name         VARCHAR2(255)
 , child_order  NUMBER NOT NULL
 , CONSTRAINT hierarchy_pk_id PRIMARY KEY (id)
 , CONSTRAINT hierarchy_uq_child UNIQUE (parent,child_order)
);
/
CREATE INDEX hierarchy_ix_parent ON hierarchy(parent);
/
</pre>
<p>The field &#8220;id&#8221; is the primary key.<br />
The field &#8220;parent&#8221; contains the id of the node to which this item belongs to.<br />
The field &#8220;name&#8221; is the name of the node (doh!).<br />
The field &#8220;child_order&#8221; is used to be able to order the children in the hierarchy (alphabetical order is not always convenient).</p>
<p>We then create the CONSTRAINT to define the primary key the we create a unique index to avoid any duplicate &#8220;child_order&#8221; under the same &#8220;parent&#8221;.</p>
<p>Finally an index is created on the &#8220;parent&#8221; column. Take a look at the explain plan and you&#8217;ll understand <img src='http://www.pierreherman.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h4><span style="text-decoration: underline;">2. Inserting some data:</span></h4>
<pre class="brush: sql;">
INSERT INTO hierarchy (id,parent,name,child_order) VALUES (1,NULL,'Sciences',1);
INSERT INTO hierarchy (id,parent,name,child_order) VALUES (2,1,'Mathematics',1);
INSERT INTO hierarchy (id,parent,name,child_order) VALUES (3,1,'Chemistry',2);
INSERT INTO hierarchy (id,parent,name,child_order) VALUES (4,1,'Biology',3);
INSERT INTO hierarchy (id,parent,name,child_order) VALUES (5,1,'Physics',4);
INSERT INTO hierarchy (id,parent,name,child_order) VALUES (6,2,'Algebra',1);
INSERT INTO hierarchy (id,parent,name,child_order) VALUES (7,2,'Geometry',2);
INSERT INTO hierarchy (id,parent,name,child_order) VALUES (8,2,'Analysis',3);
INSERT INTO hierarchy (id,parent,name,child_order) VALUES (9,3,'Analytical Chemistry',1);
INSERT INTO hierarchy (id,parent,name,child_order) VALUES (10,3,'Inorganic Chemistry',2);
INSERT INTO hierarchy (id,parent,name,child_order) VALUES (11,3,'Organic Chemistry',3);
INSERT INTO hierarchy (id,parent,name,child_order) VALUES (12,4,'Botany',1);
INSERT INTO hierarchy (id,parent,name,child_order) VALUES (13,4,'Zoology',2);
INSERT INTO hierarchy (id,parent,name,child_order) VALUES (14,4,'Virology',3);
INSERT INTO hierarchy (id,parent,name,child_order) VALUES (15,5,'Mechanics',1);
INSERT INTO hierarchy (id,parent,name,child_order) VALUES (16,5,'Thermodynamics',2);
INSERT INTO hierarchy (id,parent,name,child_order) VALUES (17,5,'Optics',3);
INSERT INTO hierarchy (id,parent,name,child_order) VALUES (18,5,'Electricity and Magnetism',4);
/
COMMIT;
/
</pre>
<p>Of course, you might want to create a sequence and a trigger on the table but you&#8217;ll loose the visibility and/or the control of your hierarchy when performing bulk inserts.<br />
I have done the inserts without the sequence and the trigger but I have created them later.</p>
<h4><span style="text-decoration: underline;">3. Testing the structure of the hierarchy</span></h4>
<pre class="brush: sql;">
SELECT LPAD('   ',12*(level-1)) || TO_CHAR(child_order) || ' - ' || name s
FROM hierarchy
START WITH parent IS NULL
CONNECT BY PRIOR id = parent
ORDER SIBLINGS BY child_order;
/
</pre>
<p>This query outputs sort of a &#8220;tree&#8221; that will allow you to check if the data inserted is correct.</p>
<p>I personally use <a href="http://www.oracle.com/technology/products/database/sql_developer/index.html" target="_blank">Oracle SQL developer</a> which is a great tool if (like me) you can&#8217;t afford a license for <a href="http://www.quest.com/toad/" target="_blank">Quest Software&#8217;s TOAD</a>.<br />
Toad is a great tool and I&#8217;ve been using it for many years professionally but SQL developer does more or less the same job at no cost.</p>
<p>Nothing special here but more info in the <a href="http://download.oracle.com/docs/cd/B12037_01/server.101/b10759/queries003.htm" target="_blank">documentation from Oracle</a>.</p>
<h4><span style="text-decoration: underline;">4. Deleting a node and at the same time dropping all its siblings</span>.</h4>
<p>For maintenance purpose, you might be interested in deleting a node and all its siblings.<br />
Here is the solution&#8230; A radical solution because it will delete anything below the dropped node without a warning and without being able to rollback (once committed) unless you have a valid export of your hierarchy table.</p>
<p>So the solution is to alter the table and to add a self referring FOREIGN KEY with ON DELETE CASCADE.</p>
<pre class="brush: sql;">ALTER TABLE hierarchy ADD CONSTRAINT hierarchy_fk_parent FOREIGN KEY (parent) REFERENCES hierarchy(id) ON DELETE CASCADE;</pre>
<p>So, be aware that with this technique if you delete the row with the ID=1&#8230; You&#8217;ll empty your table!  To be forewarned is to be forearmed.</p>
<h4><span style="text-decoration: underline;">5. The PHP function to get and format the data</span></h4>
<pre class="brush: php;">
function ul_hierarchy_list(){
$tree = array();
global $connect_db;
$query_tree = oci_parse($connect_db,'SELECT level
 , id
 , parent
 , name
 , child_order
 FROM hierarchy
 START WITH PARENT IS NULL
 CONNECT BY PRIOR id = parent
 ORDER SIBLINGS BY child_order');
oci_execute($query_tree) or die ('ERROR GETTING TREE DATA : ' . oci_error());

while ($row_hierarchy = oci_fetch_array($query_tree)) {
   $tree[] = array(htmlspecialchars($row_hierarchy['NAME']), $row_hierarchy['LEVEL'], $row_hierarchy['ID'], $row_hierarchy['PARENT']);
}

$depth = 0;
$flag = false;
foreach ($tree as $row) {
   while ($row[1] &gt; $depth) {
      echo &quot;&lt;ul&gt;&quot;, &quot;&lt;li id=\&quot;id_&quot;.$row[2].&quot;\&quot;&gt;&quot;;
      $flag = false;
      $depth++;
   }
   while ($row[1] &lt; $depth) {
      echo &quot;&lt;/li&gt;&quot;, &quot;&lt;/ul&gt;&quot;;
      $depth--;
   }
   if ($flag) {
      echo &quot;&lt;/li&gt;&quot;, &quot;&lt;li id=\&quot;id_&quot;.$row[2].&quot;\&quot;&gt;&quot;;
      $flag = false;
   }
   echo '&lt;ins&gt; &lt;/ins&gt;&lt;a href=&quot;#&quot;&gt;'.$row[0].'&lt;/a&gt;';
   $flag = true;
}
while ($depth-- &gt; 0) {
   echo &quot;&lt;/li&gt;&quot;, &quot;&lt;/ul&gt;&quot;;
}

}
</pre>
<h4><span style="text-decoration: underline;">6. The XHTML stuff</span></h4>
<pre class="brush: xml;">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.1//EN&quot; &quot;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;en&quot;&gt;
&lt;head&gt;
	&lt;title&gt;Branch Tree&lt;/title&gt;
	&lt;meta http-equiv=&quot;Content-type&quot; content=&quot;text/html;charset=UTF-8&quot; /&gt;

	&lt;style type=&quot;text/css&quot;&gt;
		ul {font-family: Verdana, Arial, Helvetica; font-size: 10px;}
	&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;

&lt;?php
   ul_hierarchy_list();
?&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<h4><span style="text-decoration: underline;">7. The result.</span></h4>
<p><span style="text-decoration: underline;"><br />
</span></p>
<p><span style="text-decoration: underline;"><a href="http://www.pierreherman.com/blog/wp-content/uploads/2009/12/hierarchy.png"><img class="size-full wp-image-517 alignnone" title="hierarchy" src="http://www.pierreherman.com/blog/wp-content/uploads/2009/12/hierarchy.png" alt="" width="316" height="256" /></a></span></p>
<h4><span style="text-decoration: underline;">8. What&#8217;s next?</span></h4>
<p><span style="text-decoration: underline;"><br />
</span></p>
<p>Great! You&#8217;ve been through this quick and dirty tutorial and you might want to go further and create some nice desktop like folder trees.</p>
<p>Using the javascript <a href="http://jquery.com/" target="_blank">jQuery</a> framework with the fantastic <a href="http://www.jstree.com/" target="_blank">jsTree</a> plugin you&#8217;d be able to achieve something like this:</p>
<p><a href="http://www.pierreherman.com/blog/wp-content/uploads/2009/12/hierarchy2.png"><img class="size-full wp-image-519 alignnone" title="hierarchy2" src="http://www.pierreherman.com/blog/wp-content/uploads/2009/12/hierarchy2.png" alt="" width="250" height="408" /></a></p>
<p><span style="text-decoration: underline;"> </span></p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 1791px; width: 1px; height: 1px;">
<pre>function ul_hierarchy_list(){
$tree = array();
$connect_db = oci_connect('dbuser', 'dbpassword', 'localhost/XE');
$query_tree = oci_parse($connect_db,'SELECT level
 , id
 , parent
 , name
 , child_order
 FROM hierarchy
 START WITH PARENT IS NULL
 CONNECT BY PRIOR id = parent
 ORDER SIBLINGS BY child_order');
oci_execute($query_tree) or die ('ERROR GETTING TREE DATA : ' . oci_error());

while ($row_hierarchy = oci_fetch_array($query_tree)) {
   $tree[] = array(htmlspecialchars($row_hierarchy['NAME']), $row_hierarchy['LEVEL'], $row_hierarchy['ID'], $row_hierarchy['PARENT']);
}

$depth = 0;
$flag = false;
foreach ($tree as $row) {
   while ($row[1] &gt; $depth) {
      echo "&lt;ul&gt;", "&lt;li id="id_".$row[2]."_".$row[3].""&gt;";
      $flag = false;
      $depth++;
   }
   while ($row[1] &lt; $depth) {
      echo "&lt;/li&gt;", "&lt;/ul&gt;";
      $depth--;
   }
   if ($flag) {
      echo "&lt;/li&gt;", "&lt;li id="id_".$row[2]."_".$row[3].""&gt;";
      $flag = false;
   }
   echo '&lt;ins&gt; &lt;/ins&gt;&lt;a href="#"&gt;'.$row[0].'&lt;/a&gt;';
   $flag = true;
}
while ($depth-- &gt; 0) {
   echo "&lt;/li&gt;", "&lt;/ul&gt;";
}

}</pre>
</div>
<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.pierreherman.com/blog/?feed=rss2&amp;p=470</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The Sun&#8230; The Shine&#8230;</title>
		<link>http://www.pierreherman.com/blog/?p=237</link>
		<comments>http://www.pierreherman.com/blog/?p=237#comments</comments>
		<pubDate>Wed, 10 Sep 2008 11:34:02 +0000</pubDate>
		<dc:creator>Pierre</dc:creator>
				<category><![CDATA[La nature]]></category>
		<category><![CDATA[Québec Septembre 2008]]></category>
		<category><![CDATA[Arbres]]></category>
		<category><![CDATA[Canada]]></category>
		<category><![CDATA[Exactair]]></category>
		<category><![CDATA[Lac Sébastien]]></category>
		<category><![CDATA[Québec]]></category>
		<category><![CDATA[St-David-de-Falardeau]]></category>

		<guid isPermaLink="false">http://www.pierreherman.com/blog/?p=237</guid>
		<description><![CDATA[My girl, my girl, don&#8217;t lie to me, Tell me where did you sleep last night. In the pines, in the pines, Where the sun don&#8217;t ever shine. I would shiver the whole night through. My girl, my girl, where will you go? I&#8217;m going where the cold wind blows. Her husband, was a hard [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">
<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080910_darknight/20080910_img_7275.jpg" title="" rel="lightbox[singlepic235]" >
	<img class="ngg-singlepic ngg-center" src="http://www.pierreherman.com/blog/wp-content/gallery/cache/235__x640_20080910_img_7275.jpg" alt="20080910_img_7275.jpg" title="20080910_img_7275.jpg" />
</a>
</p>
<p style="text-align: center;">My girl, my girl, don&#8217;t lie to me,<br />
Tell me where did you sleep last night.</p>
<p style="text-align: center;">In the pines, in the pines,<br />
Where the sun don&#8217;t ever shine.<br />
I would shiver the whole night through.</p>
<p style="text-align: center;">My girl, my girl, where will you go?<br />
I&#8217;m going where the cold wind blows.</p>
<p style="text-align: center;">
<p style="text-align: center;">Her husband, was a hard working man,<br />
Just about a mile from here.<br />
His head was found in a driving wheel,<br />
But his body never was found.</p>
<p style="text-align: center;">In the pines, …the pines,<br />
The sun,<br />
The shine.</p>
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: left;">These lyrics are taken from an old blues song made famous by <a href="http://en.wikipedia.org/wiki/Leadbelly" target="_blank">Lead Belly</a> and coverd by <a href="http://en.wikipedia.org/wiki/Nirvana_(band)" target="_blank">Nirvana</a> on their Unplugged Album. The picture is dedicated to Stephen Thomas, a Canadian guy who taught me this song when I was living in Zürich.</p>
<p style="text-align: left;">The picture was taken by the <a href="http://maps.google.com/maps?f=q&amp;hl=en&amp;q=Saint+David+de+Falardeau,+Falardeau,+Quebec,+Canada&amp;ie=UTF8&amp;cd=1&amp;geocode=FcDZ5QIdO-nC-w&amp;ll=48.649016,-71.165657&amp;spn=0.097534,0.260239&amp;t=h&amp;z=13" target="_blank">Lake Sebastien, North of St-David de Falardeau, QC</a></p>



Partagez ce post:


	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D237&amp;title=The%20Sun...%20The%20Shine...&amp;notes=%0D%0AMy%20girl%2C%20my%20girl%2C%20don%27t%20lie%20to%20me%2C%0D%0ATell%20me%20where%20did%20you%20sleep%20last%20night.%0D%0AIn%20the%20pines%2C%20in%20the%20pines%2C%0D%0AWhere%20the%20sun%20don%27t%20ever%20shine.%0D%0AI%20would%20shiver%20the%20whole%20night%20through.%0D%0AMy%20girl%2C%20my%20girl%2C%20where%20will%20you%20go%3F%0D%0AI%27m%20going%20where%20the%20cold%20wind%20" title="del.icio.us"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D237&amp;title=The%20Sun...%20The%20Shine...&amp;bodytext=%0D%0AMy%20girl%2C%20my%20girl%2C%20don%27t%20lie%20to%20me%2C%0D%0ATell%20me%20where%20did%20you%20sleep%20last%20night.%0D%0AIn%20the%20pines%2C%20in%20the%20pines%2C%0D%0AWhere%20the%20sun%20don%27t%20ever%20shine.%0D%0AI%20would%20shiver%20the%20whole%20night%20through.%0D%0AMy%20girl%2C%20my%20girl%2C%20where%20will%20you%20go%3F%0D%0AI%27m%20going%20where%20the%20cold%20wind%20" title="Digg"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D237&amp;title=The%20Sun...%20The%20Shine..." title="Reddit"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D237" title="Technorati"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D237&amp;t=The%20Sun...%20The%20Shine..." title="Facebook"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D237&amp;title=The%20Sun...%20The%20Shine..." title="StumbleUpon"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.pierreherman.com/blog/?feed=rss2&amp;p=237</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Envol</title>
		<link>http://www.pierreherman.com/blog/?p=207</link>
		<comments>http://www.pierreherman.com/blog/?p=207#comments</comments>
		<pubDate>Mon, 08 Sep 2008 21:57:19 +0000</pubDate>
		<dc:creator>Pierre</dc:creator>
				<category><![CDATA[En vol]]></category>
		<category><![CDATA[La nature]]></category>
		<category><![CDATA[Les Animaux]]></category>
		<category><![CDATA[Québec Septembre 2008]]></category>
		<category><![CDATA[Aéroport]]></category>
		<category><![CDATA[CYDO]]></category>
		<category><![CDATA[CYRC]]></category>
		<category><![CDATA[Dolbeau]]></category>
		<category><![CDATA[Exactair]]></category>
		<category><![CDATA[Lac St-Jean]]></category>
		<category><![CDATA[Oiseaux]]></category>
		<category><![CDATA[Québec]]></category>
		<category><![CDATA[St-Félicien]]></category>
		<category><![CDATA[St-Honoré]]></category>

		<guid isPermaLink="false">http://www.pierreherman.com/blog/?p=207</guid>
		<description><![CDATA[Aujourd&#8217;hui nous sommes partis pour pratiquer des circuits d&#8217;attente aux instruments sur le radiophare NDB de Dolbeau St-Félicien (CYDO). Nous en avons profité pour faire le tour du Lac Saint Jean et, cerise sur le gâteau, on a fait deux &#8220;touch &#38; go&#8221; à Roberval (CYRJ) avant de rentrer sur St-Honoré. Ce vol clôturait les [...]]]></description>
			<content:encoded><![CDATA[<p>Aujourd&#8217;hui nous sommes partis pour pratiquer des circuits d&#8217;attente aux instruments sur le radiophare NDB de Dolbeau St-Félicien (CYDO). Nous en avons profité pour faire le tour du Lac Saint Jean et, cerise sur le gâteau, on a fait deux &#8220;touch &amp; go&#8221; à Roberval (CYRJ) avant de rentrer sur St-Honoré. Ce vol clôturait les 5 heures de vol aux instruments (avec le &#8220;hood&#8221; et non pas IFR) nécessaires pour obtenir la licence de vol canadienne. Demain je dois passer le test de language&#8230; en Français qui devrait valider mes connaissances de base de la langue de Molière&#8230; Sait-on jamais.</p>
<p>En rentrant à la maison, j&#8217;ai profité de la présence de quelques graines de tournesol pour prendre une ou deux photos des oiseaux qui nous font l&#8217;hospitalité de leur coin de fôret.</p>
<div class="ngg-galleryoverview" id="ngg-gallery-18-207">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-233" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080908_dolbeaubirds/20080908_img_5416.jpg" title=" " rel="lightbox[set_18]" >
								<img title="20080908_img_5416.jpg" alt="20080908_img_5416.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080908_dolbeaubirds/thumbs/thumbs_20080908_img_5416.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-230" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080908_dolbeaubirds/20080908_img_7186.jpg" title=" " rel="lightbox[set_18]" >
								<img title="20080908_img_7186.jpg" alt="20080908_img_7186.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080908_dolbeaubirds/thumbs/thumbs_20080908_img_7186.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-232" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080908_dolbeaubirds/20080908_img_7180.jpg" title=" " rel="lightbox[set_18]" >
								<img title="20080908_img_7180.jpg" alt="20080908_img_7180.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080908_dolbeaubirds/thumbs/thumbs_20080908_img_7180.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>




Partagez ce post:


	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D207&amp;title=Envol&amp;notes=Aujourd%27hui%20nous%20sommes%20partis%20pour%20pratiquer%20des%20circuits%20d%27attente%20aux%20instruments%20sur%20le%20radiophare%20NDB%20de%20Dolbeau%20St-F%C3%A9licien%20%28CYDO%29.%20Nous%20en%20avons%20profit%C3%A9%20pour%20faire%20le%20tour%20du%20Lac%20Saint%20Jean%20et%2C%20cerise%20sur%20le%20g%C3%A2teau%2C%20on%20a%20fait%20deux%20%22touch%20%26a" title="del.icio.us"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D207&amp;title=Envol&amp;bodytext=Aujourd%27hui%20nous%20sommes%20partis%20pour%20pratiquer%20des%20circuits%20d%27attente%20aux%20instruments%20sur%20le%20radiophare%20NDB%20de%20Dolbeau%20St-F%C3%A9licien%20%28CYDO%29.%20Nous%20en%20avons%20profit%C3%A9%20pour%20faire%20le%20tour%20du%20Lac%20Saint%20Jean%20et%2C%20cerise%20sur%20le%20g%C3%A2teau%2C%20on%20a%20fait%20deux%20%22touch%20%26a" title="Digg"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D207&amp;title=Envol" title="Reddit"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D207" title="Technorati"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D207&amp;t=Envol" title="Facebook"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D207&amp;title=Envol" title="StumbleUpon"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.pierreherman.com/blog/?feed=rss2&amp;p=207</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Au plus profond de ma mémoire</title>
		<link>http://www.pierreherman.com/blog/?p=177</link>
		<comments>http://www.pierreherman.com/blog/?p=177#comments</comments>
		<pubDate>Thu, 04 Sep 2008 17:24:40 +0000</pubDate>
		<dc:creator>Pierre</dc:creator>
				<category><![CDATA[La nature]]></category>
		<category><![CDATA[Les Animaux]]></category>
		<category><![CDATA[Québec Septembre 2008]]></category>
		<category><![CDATA[Aviation]]></category>
		<category><![CDATA[Baleines]]></category>
		<category><![CDATA[Canada]]></category>
		<category><![CDATA[Cessna 172]]></category>
		<category><![CDATA[CYRC]]></category>
		<category><![CDATA[essipit]]></category>
		<category><![CDATA[Exactair]]></category>
		<category><![CDATA[Fjord]]></category>
		<category><![CDATA[Instruments]]></category>
		<category><![CDATA[Les Bergeronnes]]></category>
		<category><![CDATA[Québec]]></category>
		<category><![CDATA[Saguenay]]></category>
		<category><![CDATA[St-Honoré]]></category>
		<category><![CDATA[Tadoussac]]></category>
		<category><![CDATA[Vol]]></category>

		<guid isPermaLink="false">http://www.pierreherman.com/blog/?p=177</guid>
		<description><![CDATA[Je suis allé voir les baleines Et elles m&#8217;ont emmené Au plus profond de ma mémoire Où gisaient les ancres de ma volonté J&#8217;ai suivi les baleines Et elles m&#8217;ont raconté L&#8217;histoire d&#8217;un enfant paisible Que j&#8217;avais oublié Laissez-moi avec les baleines Que je puisse inventer Un futur tant possible Qu&#8217;il n&#8217;y aurait plus qu&#8217;à [...]]]></description>
			<content:encoded><![CDATA[<p>Je suis allé voir les baleines<br />
Et elles m&#8217;ont emmené<br />
Au plus profond de ma mémoire<br />
Où gisaient les ancres de ma volonté</p>
<p>J&#8217;ai suivi les baleines<br />
Et elles m&#8217;ont raconté<br />
L&#8217;histoire d&#8217;un enfant paisible<br />
Que j&#8217;avais oublié</p>
<p>Laissez-moi avec les baleines<br />
Que je puisse inventer<br />
Un futur tant possible<br />
Qu&#8217;il n&#8217;y aurait plus qu&#8217;à le rêver.</p>
<div class="ngg-galleryoverview" id="ngg-gallery-16-177">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-207" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/20080904_img_6806.jpg" title=" " rel="lightbox[set_16]" >
								<img title="20080904_img_6806.jpg" alt="20080904_img_6806.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/thumbs/thumbs_20080904_img_6806.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-208" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/20080904_img_6771.jpg" title=" " rel="lightbox[set_16]" >
								<img title="20080904_img_6771.jpg" alt="20080904_img_6771.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/thumbs/thumbs_20080904_img_6771.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-209" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/20080904_img_6761.jpg" title=" " rel="lightbox[set_16]" >
								<img title="20080904_img_6761.jpg" alt="20080904_img_6761.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/thumbs/thumbs_20080904_img_6761.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-203" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/20080904_img_6921.jpg" title=" " rel="lightbox[set_16]" >
								<img title="20080904_img_6921.jpg" alt="20080904_img_6921.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/thumbs/thumbs_20080904_img_6921.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-204" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/20080904_img_6847.jpg" title=" " rel="lightbox[set_16]" >
								<img title="20080904_img_6847.jpg" alt="20080904_img_6847.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/thumbs/thumbs_20080904_img_6847.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-206" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/20080904_img_6811.jpg" title=" " rel="lightbox[set_16]" >
								<img title="20080904_img_6811.jpg" alt="20080904_img_6811.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/thumbs/thumbs_20080904_img_6811.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-215" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/20080904_img_6929.jpg" title=" " rel="lightbox[set_16]" >
								<img title="20080904_img_6929.jpg" alt="20080904_img_6929.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/thumbs/thumbs_20080904_img_6929.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-205" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/20080904_img_6812.jpg" title=" " rel="lightbox[set_16]" >
								<img title="20080904_img_6812.jpg" alt="20080904_img_6812.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/thumbs/thumbs_20080904_img_6812.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-210" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/20080904_img_6949.jpg" title=" " rel="lightbox[set_16]" >
								<img title="20080904_img_6949.jpg" alt="20080904_img_6949.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/thumbs/thumbs_20080904_img_6949.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-213" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/20080904_img_6942.jpg" title=" " rel="lightbox[set_16]" >
								<img title="20080904_img_6942.jpg" alt="20080904_img_6942.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/thumbs/thumbs_20080904_img_6942.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-214" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/20080904_img_6937.jpg" title=" " rel="lightbox[set_16]" >
								<img title="20080904_img_6937.jpg" alt="20080904_img_6937.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/thumbs/thumbs_20080904_img_6937.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-212" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/20080904_img_7010.jpg" title=" " rel="lightbox[set_16]" >
								<img title="20080904_img_7010.jpg" alt="20080904_img_7010.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/thumbs/thumbs_20080904_img_7010.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-211" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/20080904_img_7019.jpg" title=" " rel="lightbox[set_16]" >
								<img title="20080904_img_7019.jpg" alt="20080904_img_7019.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080904_baleines/thumbs/thumbs_20080904_img_7019.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>




Partagez ce post:


	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D177&amp;title=Au%20plus%20profond%20de%20ma%20m%C3%A9moire&amp;notes=Je%20suis%20all%C3%A9%20voir%20les%20baleines%0AEt%20elles%20m%27ont%20emmen%C3%A9%0AAu%20plus%20profond%20de%20ma%20m%C3%A9moire%0AO%C3%B9%20gisaient%20les%20ancres%20de%20ma%20volont%C3%A9%0A%0AJ%27ai%20suivi%20les%20baleines%0AEt%20elles%20m%27ont%20racont%C3%A9%0AL%27histoire%20d%27un%20enfant%20paisible%0AQue%20j%27avais%20oubli%C3%A9%0A%0ALaissez-moi%20avec%20les%20ba" title="del.icio.us"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D177&amp;title=Au%20plus%20profond%20de%20ma%20m%C3%A9moire&amp;bodytext=Je%20suis%20all%C3%A9%20voir%20les%20baleines%0AEt%20elles%20m%27ont%20emmen%C3%A9%0AAu%20plus%20profond%20de%20ma%20m%C3%A9moire%0AO%C3%B9%20gisaient%20les%20ancres%20de%20ma%20volont%C3%A9%0A%0AJ%27ai%20suivi%20les%20baleines%0AEt%20elles%20m%27ont%20racont%C3%A9%0AL%27histoire%20d%27un%20enfant%20paisible%0AQue%20j%27avais%20oubli%C3%A9%0A%0ALaissez-moi%20avec%20les%20ba" title="Digg"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D177&amp;title=Au%20plus%20profond%20de%20ma%20m%C3%A9moire" title="Reddit"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D177" title="Technorati"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D177&amp;t=Au%20plus%20profond%20de%20ma%20m%C3%A9moire" title="Facebook"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D177&amp;title=Au%20plus%20profond%20de%20ma%20m%C3%A9moire" title="StumbleUpon"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.pierreherman.com/blog/?feed=rss2&amp;p=177</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Chicoutimi et pas le contraire.</title>
		<link>http://www.pierreherman.com/blog/?p=171</link>
		<comments>http://www.pierreherman.com/blog/?p=171#comments</comments>
		<pubDate>Wed, 03 Sep 2008 19:37:22 +0000</pubDate>
		<dc:creator>Pierre</dc:creator>
				<category><![CDATA[En vol]]></category>
		<category><![CDATA[Québec Septembre 2008]]></category>
		<category><![CDATA[Aviation]]></category>
		<category><![CDATA[Cessna 172]]></category>
		<category><![CDATA[Chicoutimi]]></category>
		<category><![CDATA[Exactair]]></category>
		<category><![CDATA[Lac Kénogami]]></category>
		<category><![CDATA[Lac Sébastien]]></category>
		<category><![CDATA[Québec]]></category>
		<category><![CDATA[Vol]]></category>

		<guid isPermaLink="false">http://www.pierreherman.com/blog/?p=171</guid>
		<description><![CDATA[Ce matin, après avoir avalé un petit-déjeuner comme seule Agnès peut les faire; deux oeufs retournés avec des toasts, du bacon et un magnifique café, nous sommes partis pour  un vol aux instruments de deux heures avec le &#8220;hood&#8221;. On est allé dans la zone du lac Kénogami qui est, parait-il très beau (j&#8217;avais le [...]]]></description>
			<content:encoded><![CDATA[<p>Ce matin, après avoir avalé un petit-déjeuner comme seule Agnès peut les faire; deux oeufs retournés avec des toasts, du bacon et un magnifique café, nous sommes partis pour  un vol aux instruments de deux heures avec le &#8220;hood&#8221;. On est allé dans la zone du lac Kénogami qui est, parait-il très beau (j&#8217;avais le hood et le but est de ne pas regarder dehors).</p>
<p>L&#8217;après-midi fut à la découverte de Chicoutimi et le soir a célébrer la mort du soleil dans les eaux du lac Sébastien.</p>
<div class="ngg-galleryoverview" id="ngg-gallery-15-171">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-202" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080903_chicoutimi/20080903_img_6731.jpg" title=" " rel="lightbox[set_15]" >
								<img title="20080903_img_6731.jpg" alt="20080903_img_6731.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080903_chicoutimi/thumbs/thumbs_20080903_img_6731.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-199" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080903_chicoutimi/20080903_img_6736.jpg" title=" " rel="lightbox[set_15]" >
								<img title="20080903_img_6736.jpg" alt="20080903_img_6736.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080903_chicoutimi/thumbs/thumbs_20080903_img_6736.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-197" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080903_chicoutimi/20080903_img_6754.jpg" title=" " rel="lightbox[set_15]" >
								<img title="20080903_img_6754.jpg" alt="20080903_img_6754.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080903_chicoutimi/thumbs/thumbs_20080903_img_6754.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-198" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080903_chicoutimi/20080903_img_6742.jpg" title=" " rel="lightbox[set_15]" >
								<img title="20080903_img_6742.jpg" alt="20080903_img_6742.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080903_chicoutimi/thumbs/thumbs_20080903_img_6742.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-201" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080903_chicoutimi/20080903_img_6733.jpg" title=" " rel="lightbox[set_15]" >
								<img title="20080903_img_6733.jpg" alt="20080903_img_6733.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080903_chicoutimi/thumbs/thumbs_20080903_img_6733.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-200" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080903_chicoutimi/20080903_img_6734.jpg" title=" " rel="lightbox[set_15]" >
								<img title="20080903_img_6734.jpg" alt="20080903_img_6734.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080903_chicoutimi/thumbs/thumbs_20080903_img_6734.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-196" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080903_chicoutimi/20080903_img_5406.jpg" title=" " rel="lightbox[set_15]" >
								<img title="20080903_img_5406.jpg" alt="20080903_img_5406.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080903_chicoutimi/thumbs/thumbs_20080903_img_5406.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-195" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080903_chicoutimi/20080903_img_5407.jpg" title=" " rel="lightbox[set_15]" >
								<img title="20080903_img_5407.jpg" alt="20080903_img_5407.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080903_chicoutimi/thumbs/thumbs_20080903_img_5407.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>




Partagez ce post:


	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D171&amp;title=Chicoutimi%20et%20pas%20le%20contraire.&amp;notes=Ce%20matin%2C%20apr%C3%A8s%20avoir%20aval%C3%A9%20un%20petit-d%C3%A9jeuner%20comme%20seule%20Agn%C3%A8s%20peut%20les%20faire%3B%20deux%20oeufs%20retourn%C3%A9s%20avec%20des%20toasts%2C%20du%20bacon%20et%20un%20magnifique%20caf%C3%A9%2C%20nous%20sommes%20partis%20pour%C2%A0%20un%20vol%20aux%20instruments%20de%20deux%20heures%20avec%20le%20%22hood%22.%20On%20est%20all%C3%A9%20d" title="del.icio.us"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D171&amp;title=Chicoutimi%20et%20pas%20le%20contraire.&amp;bodytext=Ce%20matin%2C%20apr%C3%A8s%20avoir%20aval%C3%A9%20un%20petit-d%C3%A9jeuner%20comme%20seule%20Agn%C3%A8s%20peut%20les%20faire%3B%20deux%20oeufs%20retourn%C3%A9s%20avec%20des%20toasts%2C%20du%20bacon%20et%20un%20magnifique%20caf%C3%A9%2C%20nous%20sommes%20partis%20pour%C2%A0%20un%20vol%20aux%20instruments%20de%20deux%20heures%20avec%20le%20%22hood%22.%20On%20est%20all%C3%A9%20d" title="Digg"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D171&amp;title=Chicoutimi%20et%20pas%20le%20contraire." title="Reddit"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D171" title="Technorati"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D171&amp;t=Chicoutimi%20et%20pas%20le%20contraire." title="Facebook"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D171&amp;title=Chicoutimi%20et%20pas%20le%20contraire." title="StumbleUpon"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.pierreherman.com/blog/?feed=rss2&amp;p=171</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>En entrée&#8230; Le Premier vol!</title>
		<link>http://www.pierreherman.com/blog/?p=166</link>
		<comments>http://www.pierreherman.com/blog/?p=166#comments</comments>
		<pubDate>Tue, 02 Sep 2008 10:34:36 +0000</pubDate>
		<dc:creator>Pierre</dc:creator>
				<category><![CDATA[En vol]]></category>
		<category><![CDATA[Québec Septembre 2008]]></category>
		<category><![CDATA[découverte]]></category>
		<category><![CDATA[Exactair]]></category>
		<category><![CDATA[St-Honoré]]></category>
		<category><![CDATA[Vol]]></category>

		<guid isPermaLink="false">http://www.pierreherman.com/blog/?p=166</guid>
		<description><![CDATA[Voilà, j&#8217;ai poussé la porte de chez Exactair et j&#8217;ai découvert un univers différent. Une autre aviation, d&#8217;autres distances, d&#8217;autres notions et je m&#8217;y sens avec la même sensation de confort que celle qui vous prend lorsque vous vous allongez dans des draps frais. Les distances ici sont en impressionantes. Rolling take off sur une [...]]]></description>
			<content:encoded><![CDATA[<p>Voilà, j&#8217;ai poussé la porte de chez Exactair et j&#8217;ai découvert un univers différent. Une autre aviation, d&#8217;autres distances, d&#8217;autres notions et je m&#8217;y sens avec la même sensation de confort que celle qui vous prend lorsque vous vous allongez dans des draps frais.</p>
<p>Les distances ici sont en impressionantes. Rolling take off sur une piste de plus de 6000ft&#8230; Que du bonheur! Ca me change des pistes suisses <img src='http://www.pierreherman.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Allez hop! Vous avez été sages. Je vous ajoute quelques photos.</p>
<p>Un chausson avec ça?</p>
<div class="ngg-galleryoverview" id="ngg-gallery-14-166">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-190" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080902_premiers_vols/20080902_img_5389_1.jpg" title=" " rel="lightbox[set_14]" >
								<img title="20080902_img_5389_1.jpg" alt="20080902_img_5389_1.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080902_premiers_vols/thumbs/thumbs_20080902_img_5389_1.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-191" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080902_premiers_vols/20080902_img_5387.jpg" title=" " rel="lightbox[set_14]" >
								<img title="20080902_img_5387.jpg" alt="20080902_img_5387.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080902_premiers_vols/thumbs/thumbs_20080902_img_5387.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-192" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080902_premiers_vols/20080902_img_5386.jpg" title=" " rel="lightbox[set_14]" >
								<img title="20080902_img_5386.jpg" alt="20080902_img_5386.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080902_premiers_vols/thumbs/thumbs_20080902_img_5386.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-194" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/20080902_premiers_vols/20080902_img_5369.jpg" title=" " rel="lightbox[set_14]" >
								<img title="20080902_img_5369.jpg" alt="20080902_img_5369.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/20080902_premiers_vols/thumbs/thumbs_20080902_img_5369.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>




Partagez ce post:


	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D166&amp;title=En%20entr%C3%A9e...%20Le%20Premier%20vol%21&amp;notes=Voil%C3%A0%2C%20j%27ai%20pouss%C3%A9%20la%20porte%20de%20chez%20Exactair%20et%20j%27ai%20d%C3%A9couvert%20un%20univers%20diff%C3%A9rent.%20Une%20autre%20aviation%2C%20d%27autres%20distances%2C%20d%27autres%20notions%20et%20je%20m%27y%20sens%20avec%20la%20m%C3%AAme%20sensation%20de%20confort%20que%20celle%20qui%20vous%20prend%20lorsque%20vous%20vous%20allongez%20da" title="del.icio.us"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D166&amp;title=En%20entr%C3%A9e...%20Le%20Premier%20vol%21&amp;bodytext=Voil%C3%A0%2C%20j%27ai%20pouss%C3%A9%20la%20porte%20de%20chez%20Exactair%20et%20j%27ai%20d%C3%A9couvert%20un%20univers%20diff%C3%A9rent.%20Une%20autre%20aviation%2C%20d%27autres%20distances%2C%20d%27autres%20notions%20et%20je%20m%27y%20sens%20avec%20la%20m%C3%AAme%20sensation%20de%20confort%20que%20celle%20qui%20vous%20prend%20lorsque%20vous%20vous%20allongez%20da" title="Digg"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D166&amp;title=En%20entr%C3%A9e...%20Le%20Premier%20vol%21" title="Reddit"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D166" title="Technorati"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D166&amp;t=En%20entr%C3%A9e...%20Le%20Premier%20vol%21" title="Facebook"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D166&amp;title=En%20entr%C3%A9e...%20Le%20Premier%20vol%21" title="StumbleUpon"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.pierreherman.com/blog/?feed=rss2&amp;p=166</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Québec 2008&#8230; Un os à ronger&#8230;</title>
		<link>http://www.pierreherman.com/blog/?p=154</link>
		<comments>http://www.pierreherman.com/blog/?p=154#comments</comments>
		<pubDate>Mon, 01 Sep 2008 16:46:13 +0000</pubDate>
		<dc:creator>Pierre</dc:creator>
				<category><![CDATA[Québec Septembre 2008]]></category>
		<category><![CDATA[Aviation]]></category>
		<category><![CDATA[Canada]]></category>
		<category><![CDATA[Cessna 172]]></category>
		<category><![CDATA[Chicoutimi]]></category>
		<category><![CDATA[CYRC]]></category>
		<category><![CDATA[Falardeau]]></category>
		<category><![CDATA[Instruments]]></category>
		<category><![CDATA[Lac Sébastien]]></category>
		<category><![CDATA[Québec]]></category>
		<category><![CDATA[Saguenay]]></category>
		<category><![CDATA[St-David-de-Falardeau]]></category>
		<category><![CDATA[St-Honoré]]></category>
		<category><![CDATA[Vol]]></category>

		<guid isPermaLink="false">http://www.pierreherman.com/blog/?p=154</guid>
		<description><![CDATA[Partagez ce post:]]></description>
			<content:encoded><![CDATA[
<div class="ngg-galleryoverview" id="ngg-gallery-13-154">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-154" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080829_IMG_5232.jpg" title="Airbus A330, HB-IQR, Swiss Airlines, South of Greenland, 39000ft" rel="lightbox[set_13]" >
								<img title="20080829_IMG_5232.jpg" alt="20080829_IMG_5232.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080829_IMG_5232.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-155" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080830_IMG_5297.jpg" title="A house in Québec" rel="lightbox[set_13]" >
								<img title="20080830_IMG_5297.jpg" alt="20080830_IMG_5297.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080830_IMG_5297.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-157" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080830_IMG_5335.jpg" title="Even close is far" rel="lightbox[set_13]" >
								<img title="20080830_IMG_5335.jpg" alt="20080830_IMG_5335.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080830_IMG_5335.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-156" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080830_IMG_5306.jpg" title="Calling Elvis" rel="lightbox[set_13]" >
								<img title="20080830_IMG_5306.jpg" alt="20080830_IMG_5306.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080830_IMG_5306.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-158" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080830_IMG_5347.jpg" title=" " rel="lightbox[set_13]" >
								<img title="20080830_IMG_5347.jpg" alt="20080830_IMG_5347.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080830_IMG_5347.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-159" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080830_IMG_5350.jpg" title=" " rel="lightbox[set_13]" >
								<img title="20080830_IMG_5350.jpg" alt="20080830_IMG_5350.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080830_IMG_5350.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-165" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_6430.jpg" title="Between the night and the jet lag" rel="lightbox[set_13]" >
								<img title="20080831_IMG_6430.jpg" alt="20080831_IMG_6430.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_6430.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-168" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_6472.jpg" title="Following the wind" rel="lightbox[set_13]" >
								<img title="20080831_IMG_6472.jpg" alt="20080831_IMG_6472.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_6472.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-166" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_6440.jpg" title=" " rel="lightbox[set_13]" >
								<img title="20080831_IMG_6440.jpg" alt="20080831_IMG_6440.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_6440.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-167" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_6449.jpg" title=" " rel="lightbox[set_13]" >
								<img title="20080831_IMG_6449.jpg" alt="20080831_IMG_6449.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_6449.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-162" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_5355.jpg" title=" " rel="lightbox[set_13]" >
								<img title="20080831_IMG_5355.jpg" alt="20080831_IMG_5355.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_5355.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-161" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_5354.jpg" title=" " rel="lightbox[set_13]" >
								<img title="20080831_IMG_5354.jpg" alt="20080831_IMG_5354.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_5354.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-160" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_5352.jpg" title=" " rel="lightbox[set_13]" >
								<img title="20080831_IMG_5352.jpg" alt="20080831_IMG_5352.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_5352.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-164" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_5366.jpg" title=" " rel="lightbox[set_13]" >
								<img title="20080831_IMG_5366.jpg" alt="20080831_IMG_5366.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_5366.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-169" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_6485.jpg" title="Driving dog" rel="lightbox[set_13]" >
								<img title="20080831_IMG_6485.jpg" alt="20080831_IMG_6485.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_6485.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-177" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_6547.jpg" title=" " rel="lightbox[set_13]" >
								<img title="20080831_IMG_6547.jpg" alt="20080831_IMG_6547.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_6547.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-175" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_6532.jpg" title="Looking through your eyes" rel="lightbox[set_13]" >
								<img title="20080831_IMG_6532.jpg" alt="20080831_IMG_6532.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_6532.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-182" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_6567.jpg" title=" " rel="lightbox[set_13]" >
								<img title="20080831_IMG_6567.jpg" alt="20080831_IMG_6567.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_6567.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-178" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_6550.jpg" title=" " rel="lightbox[set_13]" >
								<img title="20080831_IMG_6550.jpg" alt="20080831_IMG_6550.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_6550.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-176" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_6541.jpg" title="The Saguenay" rel="lightbox[set_13]" >
								<img title="20080831_IMG_6541.jpg" alt="20080831_IMG_6541.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_6541.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-174" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_6529.jpg" title=" " rel="lightbox[set_13]" >
								<img title="20080831_IMG_6529.jpg" alt="20080831_IMG_6529.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_6529.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-173" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_6527.jpg" title=" " rel="lightbox[set_13]" >
								<img title="20080831_IMG_6527.jpg" alt="20080831_IMG_6527.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_6527.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-172" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_6526.jpg" title="Chicoutimi" rel="lightbox[set_13]" >
								<img title="20080831_IMG_6526.jpg" alt="20080831_IMG_6526.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_6526.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-171" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_6513.jpg" title=" " rel="lightbox[set_13]" >
								<img title="20080831_IMG_6513.jpg" alt="20080831_IMG_6513.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_6513.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-170" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_6499.jpg" title=" " rel="lightbox[set_13]" >
								<img title="20080831_IMG_6499.jpg" alt="20080831_IMG_6499.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_6499.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-184" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_6591.jpg" title=" " rel="lightbox[set_13]" >
								<img title="20080831_IMG_6591.jpg" alt="20080831_IMG_6591.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_6591.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-183" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080831_IMG_6568.jpg" title=" " rel="lightbox[set_13]" >
								<img title="20080831_IMG_6568.jpg" alt="20080831_IMG_6568.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080831_IMG_6568.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-185" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080901_IMG_6603.jpg" title=" " rel="lightbox[set_13]" >
								<img title="20080901_IMG_6603.jpg" alt="20080901_IMG_6603.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080901_IMG_6603.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-186" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080901_IMG_6620.jpg" title="The mirror is not the end" rel="lightbox[set_13]" >
								<img title="20080901_IMG_6620.jpg" alt="20080901_IMG_6620.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080901_IMG_6620.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-187" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/20080901_IMG_6625.jpg" title="Second morning" rel="lightbox[set_13]" >
								<img title="20080901_IMG_6625.jpg" alt="20080901_IMG_6625.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/quebec2008/thumbs/thumbs_20080901_IMG_6625.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>




Partagez ce post:


	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D154&amp;title=Qu%C3%A9bec%202008...%20Un%20os%20%C3%A0%20ronger...&amp;notes=" title="del.icio.us"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D154&amp;title=Qu%C3%A9bec%202008...%20Un%20os%20%C3%A0%20ronger...&amp;bodytext=" title="Digg"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D154&amp;title=Qu%C3%A9bec%202008...%20Un%20os%20%C3%A0%20ronger..." title="Reddit"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D154" title="Technorati"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D154&amp;t=Qu%C3%A9bec%202008...%20Un%20os%20%C3%A0%20ronger..." title="Facebook"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D154&amp;title=Qu%C3%A9bec%202008...%20Un%20os%20%C3%A0%20ronger..." title="StumbleUpon"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.pierreherman.com/blog/?feed=rss2&amp;p=154</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Je rêve donc je suis</title>
		<link>http://www.pierreherman.com/blog/?p=72</link>
		<comments>http://www.pierreherman.com/blog/?p=72#comments</comments>
		<pubDate>Sat, 16 Aug 2008 09:50:54 +0000</pubDate>
		<dc:creator>Pierre</dc:creator>
				<category><![CDATA[Famille]]></category>
		<category><![CDATA[Québec Septembre 2008]]></category>

		<guid isPermaLink="false">http://www.pierreherman.com/blog/?p=72</guid>
		<description><![CDATA[J&#8217;ai reçu ce mercredi la décision du client pour lequel je travaille pour le moment à Genève. Ils n&#8217;auront pas besoin de mes services en octobre. La table est rase. Prête à accueillir une nouvelle feuille blanche, un nouveau crayon taillé pour écrire une nouvelle histoire. Les fenêtres de mon esprit son ouvertes comme un [...]]]></description>
			<content:encoded><![CDATA[<p>J&#8217;ai reçu ce mercredi la décision du client pour lequel je travaille pour le moment à Genève. Ils n&#8217;auront pas besoin de mes services en octobre. La table est rase. Prête à accueillir une nouvelle feuille blanche, un nouveau crayon taillé pour écrire une nouvelle histoire. Les fenêtres de mon esprit son ouvertes comme un jour de grand nettoyage. Le souffle de l&#8217;Aventure nouvelle peut entrer sans retenue. C&#8217;est le sentiment d&#8217;être au bord du plongeoir à 10 mètres. Ce même bonheur à la saveur d&#8217;adrénaline qui monte lorsqu&#8217;on aligne un avion sur la piste. Cette fraction de seconde avant de pousser les gaz au maximum. Cet inexplicable bonheur d&#8217;être aux commandes.</p>
<p>Je pars donc au Québec dans 10 jours l&#8217;esprit libre. Les jours passent et me rapprochent de la date du départ. Chaque matin je sens un petit picotement supplémentaire. J&#8217;ai la même sentiment innocent et étonné que ma fille d&#8217;un an qui boit de l&#8217;eau gazeuse. Ce mélange de surprise et d&#8217;émerveillement. Le parfum de la chose nouvelle suffit à me faire sourire. Mon âme respire à pleins poumons.</p>
<p>Devenir pilote était mon plus lointain mais aussi mon plus incertain rêve d&#8217;enfant. Aller au Canada est depuis toujours la source de mille rêves mystérieux. Le fantasme des indiens et les songes de grands espaces qui défilent à toute vitesse à quelques centimètres sous mes pieds. Je ne réalise pas encore vraiment que tout ça sera là dans quelques jours. Chaque soir avant de fermer les yeux je me fais des films de survol de la forêt de sang et d&#8217;or. Je me vois assis sur une berge avec le seul bruit d&#8217;une rivière pour douce mélodie. Mais ce qui par dessus tout me rend heureux c&#8217;est de savoir que je ne serai pas seul. Mona est là à 110% pour suivre son mari volant un peu fou. Il y a aussi nos filles, plus merveilleuses chaque jour. Je ne serais pas un homme entier sans mes petites femmes. Je me régale déjà de pouvoir leur conter des histoires autour du feu que je ferai avec elles devant notre chalet au bord du lac Clair.</p>
<p>Je pars avec mille désirs et cent fois plus de rêves. Je n&#8217;ai pas l&#8217;intention d&#8217;être déçu et je guette comme un premier bourgeon de mars le moment où je n&#8217;aurai plus envie de revenir. J&#8217;ai préparé cet instant comme on préparerait un repas de Noël. J&#8217;ai fait de la place pour ceux que j&#8217;aime et j&#8217;ai dressé un couvert de plus pour l&#8217;inconnu improviste qui viendrait nous conter son pays.</p>
<p>Je ne vois pas ce que je pourrais demander de plus. Accomplir un rêve en communion avec le bonheur intense de se savoir entouré de son clan.</p>
<p>Je rêve donc je suis.</p>



Partagez ce post:


	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D72&amp;title=Je%20r%C3%AAve%20donc%20je%20suis&amp;notes=J%27ai%20re%C3%A7u%20ce%20mercredi%20la%20d%C3%A9cision%20du%20client%20pour%20lequel%20je%20travaille%20pour%20le%20moment%20%C3%A0%20Gen%C3%A8ve.%20Ils%20n%27auront%20pas%20besoin%20de%20mes%20services%20en%20octobre.%20La%20table%20est%20rase.%20Pr%C3%AAte%20%C3%A0%20accueillir%20une%20nouvelle%20feuille%20blanche%2C%20un%20nouveau%20crayon%20taill%C3%A9%20pour" title="del.icio.us"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D72&amp;title=Je%20r%C3%AAve%20donc%20je%20suis&amp;bodytext=J%27ai%20re%C3%A7u%20ce%20mercredi%20la%20d%C3%A9cision%20du%20client%20pour%20lequel%20je%20travaille%20pour%20le%20moment%20%C3%A0%20Gen%C3%A8ve.%20Ils%20n%27auront%20pas%20besoin%20de%20mes%20services%20en%20octobre.%20La%20table%20est%20rase.%20Pr%C3%AAte%20%C3%A0%20accueillir%20une%20nouvelle%20feuille%20blanche%2C%20un%20nouveau%20crayon%20taill%C3%A9%20pour" title="Digg"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D72&amp;title=Je%20r%C3%AAve%20donc%20je%20suis" title="Reddit"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D72" title="Technorati"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D72&amp;t=Je%20r%C3%AAve%20donc%20je%20suis" title="Facebook"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D72&amp;title=Je%20r%C3%AAve%20donc%20je%20suis" title="StumbleUpon"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.pierreherman.com/blog/?feed=rss2&amp;p=72</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Au bord de la mare</title>
		<link>http://www.pierreherman.com/blog/?p=11</link>
		<comments>http://www.pierreherman.com/blog/?p=11#comments</comments>
		<pubDate>Fri, 01 Aug 2008 12:04:01 +0000</pubDate>
		<dc:creator>Pierre</dc:creator>
				<category><![CDATA[La nature]]></category>
		<category><![CDATA[Les Animaux]]></category>
		<category><![CDATA[Grenouille]]></category>
		<category><![CDATA[Mare]]></category>
		<category><![CDATA[Mouche]]></category>
		<category><![CDATA[Papillon]]></category>

		<guid isPermaLink="false">http://www.pierreherman.com/blog/?p=11</guid>
		<description><![CDATA[Quelques photos prises fin juillet 2008 au bord de la mare dans le jardin de ma mère. Partagez ce post:]]></description>
			<content:encoded><![CDATA[
<div class="ngg-galleryoverview" id="ngg-gallery-3-11">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-48" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/au_bord_de_la_mare/img_4956.jpg" title=" " rel="lightbox[set_3]" >
								<img title="img_4956.jpg" alt="img_4956.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/au_bord_de_la_mare/thumbs/thumbs_img_4956.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-49" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/au_bord_de_la_mare/img_4933.jpg" title=" " rel="lightbox[set_3]" >
								<img title="img_4933.jpg" alt="img_4933.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/au_bord_de_la_mare/thumbs/thumbs_img_4933.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-47" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/au_bord_de_la_mare/img_4992.jpg" title=" " rel="lightbox[set_3]" >
								<img title="img_4992.jpg" alt="img_4992.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/au_bord_de_la_mare/thumbs/thumbs_img_4992.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

Quelques photos prises fin juillet 2008 au bord de la mare dans le jardin de ma mère.</p>



Partagez ce post:


	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D11&amp;title=Au%20bord%20de%20la%20mare&amp;notes=%20Quelques%20photos%20prises%20fin%20juillet%202008%20au%20bord%20de%20la%20mare%20dans%20le%20jardin%20de%20ma%20m%C3%A8re." title="del.icio.us"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D11&amp;title=Au%20bord%20de%20la%20mare&amp;bodytext=%20Quelques%20photos%20prises%20fin%20juillet%202008%20au%20bord%20de%20la%20mare%20dans%20le%20jardin%20de%20ma%20m%C3%A8re." title="Digg"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D11&amp;title=Au%20bord%20de%20la%20mare" title="Reddit"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D11" title="Technorati"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D11&amp;t=Au%20bord%20de%20la%20mare" title="Facebook"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D11&amp;title=Au%20bord%20de%20la%20mare" title="StumbleUpon"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.pierreherman.com/blog/?feed=rss2&amp;p=11</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Le Milan Noir</title>
		<link>http://www.pierreherman.com/blog/?p=20</link>
		<comments>http://www.pierreherman.com/blog/?p=20#comments</comments>
		<pubDate>Fri, 01 Aug 2008 11:51:09 +0000</pubDate>
		<dc:creator>Pierre</dc:creator>
				<category><![CDATA[La nature]]></category>
		<category><![CDATA[Les Animaux]]></category>
		<category><![CDATA[Milan Noir]]></category>
		<category><![CDATA[Oiseaux]]></category>
		<category><![CDATA[rapaces]]></category>
		<category><![CDATA[Suisse]]></category>

		<guid isPermaLink="false">http://www.pierreherman.com/blog/?p=20</guid>
		<description><![CDATA[Deux ou trois photos du Milan Noir. Partagez ce post:]]></description>
			<content:encoded><![CDATA[<p><strong>Deux ou trois photos du Milan Noir.</strong></p>
<div class="ngg-galleryoverview" id="ngg-gallery-4-20">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-54" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/milan-noir/img_2936.jpg" title=" " rel="lightbox[set_4]" >
								<img title="img_2936.jpg" alt="img_2936.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/milan-noir/thumbs/thumbs_img_2936.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-53" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/milan-noir/img_4063.jpg" title=" " rel="lightbox[set_4]" >
								<img title="img_4063.jpg" alt="img_4063.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/milan-noir/thumbs/thumbs_img_4063.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-52" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/milan-noir/img_1274.jpg" title=" " rel="lightbox[set_4]" >
								<img title="img_1274.jpg" alt="img_1274.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/milan-noir/thumbs/thumbs_img_1274.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-51" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/milan-noir/img_1290.jpg" title=" " rel="lightbox[set_4]" >
								<img title="img_1290.jpg" alt="img_1290.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/milan-noir/thumbs/thumbs_img_1290.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-50" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pierreherman.com/blog/wp-content/gallery/milan-noir/img_1293.jpg" title=" " rel="lightbox[set_4]" >
								<img title="img_1293.jpg" alt="img_1293.jpg" src="http://www.pierreherman.com/blog/wp-content/gallery/milan-noir/thumbs/thumbs_img_1293.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>




Partagez ce post:


	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D20&amp;title=Le%20Milan%20Noir&amp;notes=Deux%20ou%20trois%20photos%20du%20Milan%20Noir.%0D%0A%0D%0A" title="del.icio.us"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D20&amp;title=Le%20Milan%20Noir&amp;bodytext=Deux%20ou%20trois%20photos%20du%20Milan%20Noir.%0D%0A%0D%0A" title="Digg"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D20&amp;title=Le%20Milan%20Noir" title="Reddit"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D20" title="Technorati"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D20&amp;t=Le%20Milan%20Noir" title="Facebook"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.pierreherman.com%2Fblog%2F%3Fp%3D20&amp;title=Le%20Milan%20Noir" title="StumbleUpon"><img src="http://www.pierreherman.com/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.pierreherman.com/blog/?feed=rss2&amp;p=20</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
