<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet title="XSL formatting" type="text/xsl" href="http://prendreuncafe.com/blog/feed/rss2/xslt" ?><rss version="2.0"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:wfw="http://wellformedweb.org/CommentAPI/"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
  <title>Prendre un Café - Tag - geo</title>
  <link>http://prendreuncafe.com/blog/</link>
  <atom:link href="http://prendreuncafe.com/blog/feed/tag/geo/rss2" rel="self" type="application/rss+xml"/>
  <description></description>
  <language>fr</language>
  <pubDate>Tue, 03 Aug 2010 08:41:02 +0200</pubDate>
  <copyright>Contenus sous licence Creative Commons BY-SA</copyright>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Dotclear</generator>
  
    
  <item>
    <title>Utiliser les fonctions GeoIP de PHP sous Ubuntu</title>
    <link>http://prendreuncafe.com/blog/post/2009/06/02/Utiliser-les-fonctions-GeoIP-de-PHP-sous-Ubuntu</link>
    <guid isPermaLink="false">urn:md5:96aae74d1d8d1a45023dce91001dfb01</guid>
    <pubDate>Tue, 02 Jun 2009 08:00:00 +0200</pubDate>
    <dc:creator>NiKo</dc:creator>
        <category>Dev</category>
        <category>geo</category><category>geoip</category><category>linux</category><category>pecl</category><category>php</category><category>ubuntu</category>    
    <description>    &lt;p&gt;Mon Dieu, les billets techniques refleuriraient-ils au &lt;a href=&quot;http://www.flickr.com/photos/n1k0/3558287917/&quot;&gt;printemps&lt;/a&gt;&amp;#160;? Si vous désirez récupérer des informations géographiques à partir de l&amp;#8217;adresse IP (ou du hostname) d&amp;#8217;un utilisateur, vous pouvez utiliser les fonctions fournies par &lt;a href=&quot;http://pecl.php.net/package/geoip&quot; hreflang=&quot;en&quot;&gt;l&amp;#8217;extension PECL GeoIP&lt;/a&gt;.&lt;/p&gt;


&lt;p&gt;Voici la procédure d&amp;#8217;installation sur une &lt;a href=&quot;http://ubuntu-fr.org/&quot; hreflang=&quot;fr&quot;&gt;Ubuntu&lt;/a&gt; 8.04:&lt;/p&gt;


&lt;pre&gt;$ sudo -s
# apt-get install build-essential php5-dev php5-cli libgeoip-dev libgeoip1 php-pear
# pecl install geoip&lt;/pre&gt;


&lt;p&gt;Si toiut s&amp;#8217;est bien passé&amp;#160;:&lt;/p&gt;


&lt;pre&gt;# echo &amp;quot;extension=geoip.so&amp;quot; &amp;gt;&amp;gt; /etc/php5/cli/php.ini&lt;/pre&gt;


&lt;p&gt;Si vous utilisez Apache comme serveur&amp;#160;:&lt;/p&gt;


&lt;pre&gt;# echo &amp;quot;extension=geoip.so&amp;quot; &amp;gt;&amp;gt; /etc/php5/apache2/php.ini&lt;/pre&gt;


&lt;p&gt;Il faut également installer la base GeoIPCity de &lt;a href=&quot;http://www.maxmind.com/app/ip-location&quot; hreflang=&quot;en&quot;&gt;Maxmind&lt;/a&gt;&amp;#160;:&lt;/p&gt;


&lt;pre&gt;# wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
# gunzip GeoLiteCity.dat.gz
# mv GeoLiteCity.dat /usr/share/GeoIP/GeoIPCity.dat&lt;/pre&gt;


&lt;p&gt;Vous pouvez maintenant tester l&amp;#8217;extension avec une ligne du genre&lt;sup&gt;[&lt;a href=&quot;http://prendreuncafe.com/blog/post/2009/06/02/Utiliser-les-fonctions-GeoIP-de-PHP-sous-Ubuntu#pnote-1116-1&quot; id=&quot;rev-pnote-1116-1&quot;&gt;1&lt;/a&gt;]&lt;/sup&gt;&amp;#160;:&lt;/p&gt;


&lt;pre&gt;$ echo &amp;quot;&amp;lt;?php var_dump(geoip_record_by_name('209.202.168.**'));&amp;quot;|php&lt;/pre&gt;


&lt;p&gt;Ça donne ici&amp;#160;:&lt;/p&gt;

&lt;pre&gt;
array(11) {  [&amp;quot;continent_code&amp;quot;]=&amp;gt;
  string(2) &amp;quot;NA&amp;quot;
  [&amp;quot;country_code&amp;quot;]=&amp;gt;
  string(2) &amp;quot;US&amp;quot;
  [&amp;quot;country_code3&amp;quot;]=&amp;gt;
  string(3) &amp;quot;USA&amp;quot;
  [&amp;quot;country_name&amp;quot;]=&amp;gt;
  string(13) &amp;quot;United States&amp;quot;
  [&amp;quot;region&amp;quot;]=&amp;gt;
  string(2) &amp;quot;NC&amp;quot;
  [&amp;quot;city&amp;quot;]=&amp;gt;
  string(4) &amp;quot;Cary&amp;quot;
  [&amp;quot;postal_code&amp;quot;]=&amp;gt;
  string(5) &amp;quot;27511&amp;quot;
  [&amp;quot;latitude&amp;quot;]=&amp;gt;
  float(35.7********)
  [&amp;quot;longitude&amp;quot;]=&amp;gt;
  float(-78.7*******)
  [&amp;quot;dma_code&amp;quot;]=&amp;gt;
  int(560)
  [&amp;quot;area_code&amp;quot;]=&amp;gt;
  int(919)
}
&lt;/pre&gt;


&lt;p&gt;Enjoy.&lt;/p&gt;
&lt;div class=&quot;footnotes&quot;&gt;&lt;h4&gt;Notes&lt;/h4&gt;
&lt;p&gt;[&lt;a href=&quot;http://prendreuncafe.com/blog/post/2009/06/02/Utiliser-les-fonctions-GeoIP-de-PHP-sous-Ubuntu#rev-pnote-1116-1&quot; id=&quot;pnote-1116-1&quot;&gt;1&lt;/a&gt;] J&amp;#8217;ai volontairement masqué certaines informations pour d&amp;#8217;évidentes raisons de confidentialité.&lt;/p&gt;&lt;/div&gt;&lt;hr/&gt;&lt;p style=&quot;margin:.5em 0;padding:.5em;border:1px solid #333;background:#eee;color:#222&quot;&gt;&lt;small&gt;Ce billet intitulé &lt;a href=&quot;http://prendreuncafe.com/blog/post/2009/06/02/Utiliser-les-fonctions-GeoIP-de-PHP-sous-Ubuntu&quot;&gt;Utiliser les fonctions GeoIP de PHP sous Ubuntu&lt;/a&gt; a été rédigé par &lt;a href=&quot;http://prendreuncafe.com/cv&quot;&gt;Nicolas Perriault&lt;/a&gt; et publié sur le blog &lt;a href=&quot;http://prendreuncafe.com/blog/&quot;&gt;Prendre un Café&lt;/a&gt; sous licence &lt;a href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.5/&quot;&gt;Creative Commons BY-NC-SA&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Enkin, ou vivement demain</title>
    <link>http://prendreuncafe.com/blog/post/2008/05/23/Enkin-ou-vivement-demain</link>
    <guid isPermaLink="false">urn:md5:e5e71373e970c19fd1b24813f7e9180a</guid>
    <pubDate>Fri, 23 May 2008 15:53:00 +0200</pubDate>
    <dc:creator>NiKo</dc:creator>
        <category>Divers</category>
        <category>android</category><category>geo</category><category>google</category>    
    <description>    &lt;p&gt;Je viens de tomber sur le projet &lt;a href=&quot;http://enkin.net/&quot; hreflang=&quot;en&quot;&gt;Enkin&lt;/a&gt;, un logiciel de géopositionnement temps-réel basé sur &lt;a href=&quot;http://code.google.com/android/&quot; hreflang=&quot;en&quot;&gt;Google Android&lt;/a&gt;, l'OS pour mobile de Google dont j'ai &lt;a href=&quot;http://prendreuncafe.com/blog/post/2007/11/14/LiPhone-a-du-mourron-a-se-faire&quot; hreflang=&quot;fr&quot;&gt;déjà parlé&lt;/a&gt;. Ce projet est impressionnant techniquement, mais surtout révolutionnairement pratique&lt;sup&gt;[&lt;a href=&quot;http://prendreuncafe.com/blog/post/2008/05/23/Enkin-ou-vivement-demain#pnote-971-1&quot; id=&quot;rev-pnote-971-1&quot;&gt;1&lt;/a&gt;]&lt;/sup&gt;. Le mieux est encore de regarder la vidéo de présentation du projet par ses concepteurs, qui parle d'elle-même :&lt;/p&gt;

&lt;div style=&quot;width:400px;margin:0 auto&quot;&gt;
&lt;object width=&quot;400&quot; height=&quot;267&quot; type=&quot;application/x-shockwave-flash&quot; data=&quot;http://www.vimeo.com/moogaloop.swf?clip_id=843168&amp;amp;server=www.vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1&quot;&gt;
  &lt;param name=&quot;allowfullscreen&quot; value=&quot;true&quot; /&gt;	
  &lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot; /&gt;	
  &lt;param name=&quot;movie&quot; value=&quot;http://www.vimeo.com/moogaloop.swf?clip_id=843168&amp;amp;server=www.vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1&quot; /&gt;
  &lt;p&gt;&lt;a href=&quot;http://www.vimeo.com/843168?pg=embed&amp;amp;sec=843168&quot;&gt;Enkin&lt;/a&gt; on &lt;a href=&quot;http://vimeo.com?pg=embed&amp;amp;sec=843168&quot;&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;
&lt;/object&gt;
&lt;/div&gt;



&lt;p&gt;Ils s'étaient inscrits au concours &lt;a href=&quot;http://code.google.com/android/adc.html&quot; hreflang=&quot;en&quot;&gt;Android Developer Challenge&lt;/a&gt;, mais n'ont malheureusement pas été retenus dans &lt;a href=&quot;http://android-developers.blogspot.com/2008/05/top-50-applications.html&quot; hreflang=&quot;en&quot;&gt;la liste des finalistes&lt;/a&gt;. Par contre, il ont reçu un coup de fil de Google qui semble t-il est &lt;a href=&quot;http://enkinblog.blogspot.com/2008/05/after-challenge.html&quot; hreflang=&quot;en&quot;&gt;très intéressé&lt;/a&gt; &lt;img src=&quot;/blog/themes/battlestar/smilies/tongue.gif&quot; alt=&quot;:p&quot; class=&quot;smiley&quot; /&gt;&lt;/p&gt;


&lt;p&gt;Souhaitons-leur tout le succès qu'ils méritent, et &lt;strong&gt;vivement demain&lt;/strong&gt;.&lt;/p&gt;
&lt;div class=&quot;footnotes&quot;&gt;&lt;h4&gt;Notes&lt;/h4&gt;
&lt;p&gt;[&lt;a href=&quot;http://prendreuncafe.com/blog/post/2008/05/23/Enkin-ou-vivement-demain#rev-pnote-971-1&quot; id=&quot;pnote-971-1&quot;&gt;1&lt;/a&gt;] Imaginez une seconde l'outil intégré à des lunettes en mode &lt;a href=&quot;http://fr.wikipedia.org/wiki/Head_up_display&quot; hreflang=&quot;fr&quot;&gt;HUD&lt;/a&gt; :o&lt;/p&gt;&lt;/div&gt;&lt;hr/&gt;&lt;p style=&quot;margin:.5em 0;padding:.5em;border:1px solid #333;background:#eee;color:#222&quot;&gt;&lt;small&gt;Ce billet intitulé &lt;a href=&quot;http://prendreuncafe.com/blog/post/2008/05/23/Enkin-ou-vivement-demain&quot;&gt;Enkin, ou vivement demain&lt;/a&gt; a été rédigé par &lt;a href=&quot;http://prendreuncafe.com/cv&quot;&gt;Nicolas Perriault&lt;/a&gt; et publié sur le blog &lt;a href=&quot;http://prendreuncafe.com/blog/&quot;&gt;Prendre un Café&lt;/a&gt; sous licence &lt;a href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.5/&quot;&gt;Creative Commons BY-NC-SA&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Un client de geolocalisation en cinq lignes de PHP avec l'API Google Maps</title>
    <link>http://prendreuncafe.com/blog/post/2008/01/29/Un-client-de-geolocalisation-en-cinq-lignes-de-PHP-avec-lAPI-Google-Maps</link>
    <guid isPermaLink="false">urn:md5:2b4b5d21a5498b82eb3cddc1c0cdee9e</guid>
    <pubDate>Tue, 29 Jan 2008 17:16:00 +0100</pubDate>
    <dc:creator>NiKo</dc:creator>
        <category>Dev</category>
        <category>api</category><category>geo</category><category>google</category><category>maps</category><category>php</category>    
    <description>    &lt;p&gt;Google propose des choses vraiment intéressantes au travers de ses &lt;a href=&quot;http://code.google.com/apis/&quot; hreflang=&quot;en&quot;&gt;API&lt;/a&gt;, comme par exemple son méconnu (car planqué dans la doc) &lt;a href=&quot;http://code.google.com/apis/maps/documentation/services.html#Geocoding_Direct&quot; hreflang=&quot;en&quot;&gt;webservice HTTP de géolocalisation&lt;/a&gt;. L'idée ici est de récupérer la lattitude et la longitude d'un endroit géographique à partir de sa description, par exemple &lt;em&gt;Paris, France&lt;/em&gt; ou encore &lt;em&gt;3 allée des allouettes, 35000 Rennes, France&lt;/em&gt;.&lt;/p&gt;


&lt;p&gt;Il vous faut posséder au préalable une clé d'API Google, que vous pouvez obtenir gratuitement &lt;a href=&quot;http://code.google.com/apis/maps/signup.html&quot; hreflang=&quot;en&quot;&gt;par là&lt;/a&gt;.&lt;/p&gt;

&lt;pre class=&quot;php&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;?php&lt;/span&gt;
&lt;a href=&quot;http://www.php.net/define&quot;&gt;&lt;span style=&quot;color: #000066;&quot;&gt;define&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #ff0000;&quot;&gt;'GOOGLE_API_KEY'&lt;/span&gt;, &lt;span style=&quot;color: #ff0000;&quot;&gt;'your_google_api_key_here'&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#41;&lt;/span&gt;;
&lt;span style=&quot;color: #0000ff;&quot;&gt;$wsurl&lt;/span&gt; = &lt;span style=&quot;color: #ff0000;&quot;&gt;'http://maps.google.com/maps/geo?q=%s&amp;amp;output=csv&amp;amp;key=%s'&lt;/span&gt;;
&lt;span style=&quot;color: #0000ff;&quot;&gt;$location&lt;/span&gt; = &lt;span style=&quot;color: #ff0000;&quot;&gt;'Paris, France'&lt;/span&gt;;
&lt;span style=&quot;color: #0000ff;&quot;&gt;$data&lt;/span&gt; = &lt;a href=&quot;http://www.php.net/explode&quot;&gt;&lt;span style=&quot;color: #000066;&quot;&gt;explode&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #ff0000;&quot;&gt;','&lt;/span&gt;, &lt;a href=&quot;http://www.php.net/file_get_contents&quot;&gt;&lt;span style=&quot;color: #000066;&quot;&gt;file_get_contents&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;a href=&quot;http://www.php.net/sprintf&quot;&gt;&lt;span style=&quot;color: #000066;&quot;&gt;sprintf&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #0000ff;&quot;&gt;$wsurl&lt;/span&gt;, &lt;a href=&quot;http://www.php.net/urlencode&quot;&gt;&lt;span style=&quot;color: #000066;&quot;&gt;urlencode&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #0000ff;&quot;&gt;$location&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#41;&lt;/span&gt;, GOOGLE_API_KEY&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#41;&lt;/span&gt;;
&lt;span style=&quot;color: #0000ff;&quot;&gt;$coord&lt;/span&gt; = &lt;span style=&quot;color: #cc66cc;&quot;&gt;200&lt;/span&gt; === &lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#40;&lt;/span&gt;int&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #0000ff;&quot;&gt;$data&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#91;&lt;/span&gt;&lt;span style=&quot;color: #cc66cc;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#93;&lt;/span&gt; ? &lt;a href=&quot;http://www.php.net/array&quot;&gt;&lt;span style=&quot;color: #000066;&quot;&gt;array&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#40;&lt;/span&gt;float&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #0000ff;&quot;&gt;$data&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#91;&lt;/span&gt;&lt;span style=&quot;color: #cc66cc;&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#93;&lt;/span&gt;, &lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#40;&lt;/span&gt;float&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #0000ff;&quot;&gt;$data&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#91;&lt;/span&gt;&lt;span style=&quot;color: #cc66cc;&quot;&gt;3&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#93;&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#41;&lt;/span&gt; : &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;null&lt;/span&gt;;
&lt;a href=&quot;http://www.php.net/var_dump&quot;&gt;&lt;span style=&quot;color: #000066;&quot;&gt;var_dump&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #0000ff;&quot;&gt;$coord&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#41;&lt;/span&gt;;&lt;/pre&gt;


&lt;p&gt;Ce qui nous donne :&lt;/p&gt;

&lt;pre class=&quot;bash&quot;&gt;array&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #cc66cc;&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#41;&lt;/span&gt; &lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#123;&lt;/span&gt;
  &lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#91;&lt;/span&gt;&lt;span style=&quot;color: #cc66cc;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#93;&lt;/span&gt;=&amp;gt;
  float&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #cc66cc;&quot;&gt;48.856667&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#41;&lt;/span&gt;
  &lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#91;&lt;/span&gt;&lt;span style=&quot;color: #cc66cc;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#93;&lt;/span&gt;=&amp;gt;
  float&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #cc66cc;&quot;&gt;2.350987&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#41;&lt;/span&gt;
&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#125;&lt;/span&gt;&lt;/pre&gt;


&lt;p&gt;On prendra soin de cacher autant que faire se peut les résultats renvoyés par le webservice, afin de soulager les serveurs de Google et accessoirement de pas fusiller le crédit-requête associé à sa clé d'API.&lt;/p&gt;


&lt;p&gt;&lt;strong&gt;Disclaimer :&lt;/strong&gt; Ce billet n'est pas un appel au troll, je me doute qu'on peut faire la même chose en 3 lignes de Ruby, 2 lignes de Python et -10 lignes de Fotran77. C'est juste pour dire que les services Google, ça déchire quand même un petit peu.&lt;/p&gt;&lt;hr/&gt;&lt;p style=&quot;margin:.5em 0;padding:.5em;border:1px solid #333;background:#eee;color:#222&quot;&gt;&lt;small&gt;Ce billet intitulé &lt;a href=&quot;http://prendreuncafe.com/blog/post/2008/01/29/Un-client-de-geolocalisation-en-cinq-lignes-de-PHP-avec-lAPI-Google-Maps&quot;&gt;Un client de geolocalisation en cinq lignes de PHP avec l'API Google Maps&lt;/a&gt; a été rédigé par &lt;a href=&quot;http://prendreuncafe.com/cv&quot;&gt;Nicolas Perriault&lt;/a&gt; et publié sur le blog &lt;a href=&quot;http://prendreuncafe.com/blog/&quot;&gt;Prendre un Café&lt;/a&gt; sous licence &lt;a href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.5/&quot;&gt;Creative Commons BY-NC-SA&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>J'aime les brocolis</title>
    <link>http://prendreuncafe.com/blog/post/2006/04/25/440-j-aime-les-brocolis</link>
    <guid isPermaLink="false">urn:md5:6961247024452227f01ab4a04e6b3241</guid>
    <pubDate>Tue, 25 Apr 2006 11:41:35 +0000</pubDate>
    <dc:creator>NiKo</dc:creator>
        <category>Divers</category>
        <category>css</category><category>dev</category><category>extensions</category><category>firefox</category><category>flash</category><category>geo</category><category>google</category><category>haha</category><category>ie</category><category>jeu</category><category>microsoft</category><category>musique</category><category>web</category>    
    <description>    &lt;p&gt;Désolé pour le titre, j'ai plus d'imagination pour titrer les billets en vrac...&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Un petit &lt;a href=&quot;http://www.typorganism.com/visualcomposer/index.html&quot; hreflang=&quot;fr&quot;&gt;séquenceur musical en ligne&lt;/a&gt; complètement addictif (Flash requis).&lt;/li&gt;
&lt;li&gt;Le &lt;a href=&quot;http://www.spore.com/&quot; hreflang=&quot;en&quot;&gt;site officiel de Spore&lt;/a&gt;, un des jeux les plus prometteurs du moment, est bien marrant (Flash requis).&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://maps.google.com&quot; hreflang=&quot;en&quot;&gt;Google Maps|Local&lt;/a&gt; s'étend à l'&lt;a href=&quot;http://maps.google.com/?ll=53.225768,10.546875&amp;amp;spn=37.289183,92.988281&amp;amp;om=1&quot; hreflang=&quot;fr&quot;&gt;Europe&lt;/a&gt; côté cartographie routière, itinéraires et services de proximité&amp;nbsp;: c'est assez réussi. Bon, les &lt;a href=&quot;http://pagesjaunes.fr&quot; hreflang=&quot;fr&quot;&gt;pages jaunes&lt;/a&gt; ont encore quelques beaux jours devant elles pour ce qui est des &lt;a href=&quot;http://maps.google.com/maps?f=l&amp;amp;hl=fr&amp;amp;sll=48.81342,2.312965&amp;amp;sspn=0.157579,0.360489&amp;amp;q=pizza&amp;amp;near=paris,+france&amp;amp;cid=48856662,2351019,8010556608058906379&amp;amp;li=lmd&amp;amp;z=14&amp;amp;t=m&quot; hreflang=&quot;en&quot;&gt;recherches de pizzerias&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://addons.mozilla.org/firefox/1122/&quot; hreflang=&quot;en&quot;&gt;Tab Mix Plus&lt;/a&gt;, une de mes extensions préférées pour &lt;a href=&quot;http://www.mozilla-europe.org/fr/&quot; hreflang=&quot;fr&quot;&gt;Firefox&lt;/a&gt;, en fait toujours plus dans sa dernière mouture. Le top&amp;nbsp;: on peut sauvegarder les nombreux réglages effectués dans un fichier de configuration.&lt;/li&gt;
&lt;li&gt;Des fois, &lt;a href=&quot;http://www.prweb.com/releases/2006/04/prweb375398.htm&quot; hreflang=&quot;en&quot;&gt;la science&lt;/a&gt;, c'est vraiment beau.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.microsoft.com/windows/ie/downloads/default.mspx&quot; hreflang=&quot;en&quot;&gt;IE7 beta 2 disponible au téléchargement&lt;/a&gt;. Un miracle est-il encore possible&amp;nbsp;? J'en doûte. &lt;strong&gt;Edit :&lt;/strong&gt; de &lt;a href=&quot;http://www.thinkvitamin.com/features/css/stop-css-hacking&quot; hreflang=&quot;en&quot;&gt;nouveaux problèmes&lt;/a&gt; s'annoncent...&lt;/li&gt;
&lt;li&gt;Signer une &lt;a href=&quot;http://www.danyboon.com/dotclear/&quot; hreflang=&quot;fr&quot;&gt;pétition contre la licence globale&lt;/a&gt; (&lt;a href=&quot;http://www.pcinpact.com/actu/news/26997-Nouvelle-campagne-contre-la-licence-globale.htm&quot; hreflang=&quot;fr&quot;&gt;source&lt;/a&gt;) ne dispense pas de &lt;a href=&quot;http://www.jeuxdemaux.com/2006/04/24/825-et-ca-recommence&quot; hreflang=&quot;fr&quot;&gt;respecter la licence Creative Commons &lt;/a&gt; &lt;img src=&quot;/blog/themes/battlestar/smilies/mad.gif&quot; alt=&quot;:-C&quot; class=&quot;smiley&quot; /&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Edit :&lt;/strong&gt; J'oubliais&amp;nbsp;: &lt;a href=&quot;http://www.youtube.com/watch?v=ywSnld_fXpA&quot; hreflang=&quot;en&quot;&gt;hahahahaha&lt;/a&gt; (via &lt;a href=&quot;http://nouvelle-aire.net&quot; hreflang=&quot;fr&quot;&gt;mEga&lt;/a&gt;).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Edit :&lt;/strong&gt; &lt;a href=&quot;http://video.google.com/videoplay?docid=-5120299724584837019&amp;amp;pl=true&quot; hreflang=&quot;fr&quot;&gt;Wow&lt;/a&gt;&amp;nbsp;! (via &lt;a href=&quot;http://www.scoopeo.com/videos/gardien-contre-gardien&quot; hreflang=&quot;fr&quot;&gt;Scoopeo&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;acronym title=&quot;Post Scriptum&quot;&gt;PS&lt;/acronym&gt;&amp;nbsp;: ça devient vraiment n'importe quoi ces billets. Promis, bientôt je me recentre.&lt;/p&gt;&lt;hr/&gt;&lt;p style=&quot;margin:.5em 0;padding:.5em;border:1px solid #333;background:#eee;color:#222&quot;&gt;&lt;small&gt;Ce billet intitulé &lt;a href=&quot;http://prendreuncafe.com/blog/post/2006/04/25/440-j-aime-les-brocolis&quot;&gt;J'aime les brocolis&lt;/a&gt; a été rédigé par &lt;a href=&quot;http://prendreuncafe.com/cv&quot;&gt;Nicolas Perriault&lt;/a&gt; et publié sur le blog &lt;a href=&quot;http://prendreuncafe.com/blog/&quot;&gt;Prendre un Café&lt;/a&gt; sous licence &lt;a href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.5/&quot;&gt;Creative Commons BY-NC-SA&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Aïe, pas Frappr</title>
    <link>http://prendreuncafe.com/blog/post/2005/11/20/343-aie-pas-frappr</link>
    <guid isPermaLink="false">urn:md5:eb3820d3c1def9e357cae2a3318ad33d</guid>
    <pubDate>Sun, 20 Nov 2005 12:19:13 +0000</pubDate>
    <dc:creator>NiKo</dc:creator>
        <category>Rigolo</category>
        <category>geo</category><category>google</category><category>prendreuncafe</category>    
    <description>    &lt;p&gt;&lt;a href=&quot;http://www.frappr.com/&quot; hreflang=&quot;en&quot;&gt;Frappr&lt;/a&gt; est un service de géolocalisation communautaire que j'ai découvert chez &lt;a href=&quot;http://www.standblog.org&quot; hreflang=&quot;fr&quot;&gt;Tristan&lt;/a&gt;, permettant de localiser sur une carte les membres d'une même communauté, comme celle des &lt;a href=&quot;http://www.frappr.com/firefoxusers&quot; hreflang=&quot;fr&quot;&gt;utilisateurs de Firefox&lt;/a&gt;.&lt;/p&gt;


&lt;p&gt;Juste pour rigoler, j'ai ouvert un compte pour &lt;em&gt;Prendre un café&lt;/em&gt;, j'aimerai bien que vous y déposiez vos trombines&amp;nbsp;: &lt;a href=&quot;http://www.frappr.com/prendreuncafe&quot; hreflang=&quot;fr&quot;&gt;Buveurs de café&lt;/a&gt; &lt;img src=&quot;/blog/themes/battlestar/smilies/smile.gif&quot; alt=&quot;:)&quot; class=&quot;smiley&quot; /&gt;&lt;/p&gt;&lt;hr/&gt;&lt;p style=&quot;margin:.5em 0;padding:.5em;border:1px solid #333;background:#eee;color:#222&quot;&gt;&lt;small&gt;Ce billet intitulé &lt;a href=&quot;http://prendreuncafe.com/blog/post/2005/11/20/343-aie-pas-frappr&quot;&gt;Aïe, pas Frappr&lt;/a&gt; a été rédigé par &lt;a href=&quot;http://prendreuncafe.com/cv&quot;&gt;Nicolas Perriault&lt;/a&gt; et publié sur le blog &lt;a href=&quot;http://prendreuncafe.com/blog/&quot;&gt;Prendre un Café&lt;/a&gt; sous licence &lt;a href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.5/&quot;&gt;Creative Commons BY-NC-SA&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Une extension Firefox de geolocalisation via Google Maps</title>
    <link>http://prendreuncafe.com/blog/post/2005/06/28/173-une-extension-firefox-de-geolocalisation-via-google-maps</link>
    <guid isPermaLink="false">urn:md5:b792002630de619b0815e6ccc597888f</guid>
    <pubDate>Tue, 28 Jun 2005 12:44:00 +0000</pubDate>
    <dc:creator>NiKo</dc:creator>
        <category>Divers</category>
        <category>extensions</category><category>firefox</category><category>geo</category><category>google</category>    
    <description>    &lt;p&gt;Je vous avais &lt;a href=&quot;http://www.prendreuncafe.com/blog/2005/03/22/36-geolocalisation&quot; hreflang=&quot;fr&quot;&gt;déjà parlé de géolocalisation&lt;/a&gt;, et notamment de l'excellente extension Firefox réalisée par &lt;a href=&quot;http://www.splintered.co.uk&quot; hreflang=&quot;en&quot;&gt;Patrick H. Lauke&lt;/a&gt;, &lt;a href=&quot;http://www.splintered.co.uk/experiments/71/&quot; hreflang=&quot;en&quot;&gt;GeoURL&lt;/a&gt;.&lt;/p&gt;


&lt;p&gt;Cette dernière version, même si le site n'en parle pas encore, vient de sortir en &lt;a href=&quot;http://www.splintered.co.uk/extensions/&quot;&gt;version 0.3&lt;/a&gt; et permet la geolocalisation d'un site web via notamment l'outil cartographique dans le &lt;em&gt;buzz&lt;/em&gt;, &lt;a href=&quot;http://maps.google.com&quot; hreflang=&quot;fr&quot;&gt;Google Maps&lt;/a&gt;, ainsi que d'autres outils en ligne du même accabit (&lt;a href=&quot;http://www.multimap.com&quot; hreflang=&quot;en&quot;&gt;MultiMap&lt;/a&gt;, &lt;a href=&quot;http://www.allthegoodness.com/projects/map/firefox/index.php&quot; hreflang=&quot;en&quot;&gt;Flickr nearby&lt;/a&gt; et &lt;a href=&quot;http://www.mapquest.com&quot; hreflang=&quot;en&quot;&gt;Mapquest&lt;/a&gt;) &lt;img src=&quot;/blog/themes/battlestar/smilies/smile.gif&quot; alt=&quot;:)&quot; class=&quot;smiley&quot; /&gt;&lt;/p&gt;


&lt;p&gt;Il suffit de spécifier dans les options du plugin que vous désirez utiliser les services de Google Maps plutôt que ceux de &lt;a href=&quot;http://www.geourl.org&quot; hreflang=&quot;en&quot;&gt;geourl.org&lt;/a&gt; (par défaut), et un click sur l'icône du plugin vous redirigera vers la carte correspondante. Hélas, dans le cas de &lt;acronym title=&quot;Google Maps&quot;&gt;GM&lt;/acronym&gt; ce n'est pas la vue satellite qui est affichée, mais la vue en carte routière... pour le moment non-renseignée pour la France &lt;img src=&quot;/blog/themes/battlestar/smilies/icon_ohwell.gif&quot; alt=&quot;:-/&quot; class=&quot;smiley&quot; /&gt;&lt;/p&gt;


&lt;p&gt;Si comme moi vous voulez afficher la vue satellitaire en français et non pas la carte routière en anglais, il faut - une fois l'extension GeoURL proprement installée - tapez &lt;code&gt;about:config&lt;/code&gt; dans la barre d'adresse de Firefox pour accéder aux variables utilisateurs. Localisez la valeur &lt;code&gt;geourl.destinations.2.url&lt;/code&gt; et renseignez-y la valeur &lt;code&gt;http://maps.google.com/?sll=[LAT],[LONG]&amp;amp;t=k&amp;amp;hl=fr&amp;amp;spn=0.05,0.05&lt;/code&gt;.&lt;/p&gt;


&lt;p&gt;Enjoy &lt;img src=&quot;/blog/themes/battlestar/smilies/cool.gif&quot; alt=&quot;8-)&quot; class=&quot;smiley&quot; /&gt;&lt;/p&gt;&lt;hr/&gt;&lt;p style=&quot;margin:.5em 0;padding:.5em;border:1px solid #333;background:#eee;color:#222&quot;&gt;&lt;small&gt;Ce billet intitulé &lt;a href=&quot;http://prendreuncafe.com/blog/post/2005/06/28/173-une-extension-firefox-de-geolocalisation-via-google-maps&quot;&gt;Une extension Firefox de geolocalisation via Google Maps&lt;/a&gt; a été rédigé par &lt;a href=&quot;http://prendreuncafe.com/cv&quot;&gt;Nicolas Perriault&lt;/a&gt; et publié sur le blog &lt;a href=&quot;http://prendreuncafe.com/blog/&quot;&gt;Prendre un Café&lt;/a&gt; sous licence &lt;a href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.5/&quot;&gt;Creative Commons BY-NC-SA&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Googlus-Betrand</title>
    <link>http://prendreuncafe.com/blog/post/2005/06/26/169-googlus-betrand</link>
    <guid isPermaLink="false">urn:md5:84bbe6b78e9c33df6b0b2b22c682e82d</guid>
    <pubDate>Sun, 26 Jun 2005 03:23:36 +0000</pubDate>
    <dc:creator>NiKo</dc:creator>
        <category>Divers</category>
        <category>geo</category><category>google</category>    
    <description>    &lt;p&gt;À l'instar de &lt;a href=&quot;http://www.estvideo.com/dew/index/2005/06/25/462-le-monde-a-la-carte&quot; hreflang=&quot;fr&quot;&gt;Dew&lt;/a&gt; qui a pris les devants, voici quelques images satellites belles/intéressantes/insolites captées par &lt;a href=&quot;http://maps.google.com&quot; hreflang=&quot;fr&quot;&gt;Google Maps&lt;/a&gt;, un peu à la manière de &lt;a href=&quot;http://www.yannarthusbertrand.com/&quot; hreflang=&quot;fr&quot;&gt;Yann Arthus-Bertrand&lt;/a&gt;. Je pourrais passer des heures à me balader sur notre planète bleue, tel un &lt;a href=&quot;http://img172.echo.cx/my.php?image=footprints7ux.jpg&quot; hreflang=&quot;fr&quot;&gt;Gulliver&lt;/a&gt; des temps modernes &lt;img src=&quot;/blog/themes/battlestar/smilies/smile.gif&quot; alt=&quot;:)&quot; class=&quot;smiley&quot; /&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://maps.google.com/maps?ll=40.693359,102.167358&amp;amp;spn=0.122910,0.190201&amp;amp;t=k&amp;amp;hl=fr&quot; hreflang=&quot;fr&quot;&gt;Fractales&lt;/a&gt;&amp;nbsp;?&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://maps.google.com/maps?ll=67.101059,-65.097427&amp;amp;spn=0.491638,0.760803&amp;amp;t=k&amp;amp;hl=fr&quot; hreflang=&quot;fr&quot;&gt;Autoroutes de glace&lt;/a&gt;&amp;nbsp;?&lt;/li&gt;
&lt;li&gt;Y'a pas le feu&amp;nbsp;! &lt;a href=&quot;http://maps.google.com/maps?ll=66.898499,134.369831&amp;amp;spn=0.061455,0.095100&amp;amp;t=k&amp;amp;hl=fr&quot; hreflang=&quot;fr&quot;&gt;Ah&lt;/a&gt;, &lt;a href=&quot;http://maps.google.com/maps?ll=50.888672,107.204590&amp;amp;spn=0.122910,0.190201&amp;amp;t=k&amp;amp;hl=fr&quot; hreflang=&quot;fr&quot;&gt;si&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://maps.google.com/maps?ll=61.617165,120.327415&amp;amp;spn=0.122910,0.190201&amp;amp;t=k&amp;amp;hl=fr&quot; hreflang=&quot;fr&quot;&gt;Arabesques&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Et dire que certains se font construire des &lt;a href=&quot;http://maps.google.com/maps?ll=70.861130,137.800140&amp;amp;spn=0.245819,0.380402&amp;amp;t=k&amp;amp;hl=fr&quot; hreflang=&quot;fr&quot;&gt;piscines&lt;/a&gt; &lt;img src=&quot;/blog/themes/battlestar/smilies/icon_rolleyes.gif&quot; alt=&quot;:roll:&quot; class=&quot;smiley&quot; /&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://maps.google.com/maps?ll=-34.744112,-58.411174&amp;amp;spn=0.014720,0.023775&amp;amp;t=k&amp;amp;hl=fr&quot; hreflang=&quot;fr&quot;&gt;Sim City 3000&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Le &lt;a href=&quot;http://maps.google.com/maps?ll=18.748169,22.984772&amp;amp;spn=0.942078,1.521606&amp;amp;t=k&amp;amp;hl=fr&quot; hreflang=&quot;fr&quot;&gt;Mordor&lt;/a&gt;&amp;nbsp;?&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://maps.google.com/maps?ll=64.185905,44.385452&amp;amp;spn=0.235519,0.380402&amp;amp;t=k&amp;amp;hl=fr&quot; hreflang=&quot;fr&quot;&gt;Yoda&lt;/a&gt;&amp;nbsp;?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Vite, profitons du bel outil et des &lt;a href=&quot;http://googleglobetrotting.com/&quot; hreflang=&quot;en&quot;&gt;agences de voyage virtuelles&lt;/a&gt; avant que la &lt;a href=&quot;http://www.zorgloob.com/2005/06/images-interdites-sur-google-maps.asp&quot; hreflang=&quot;fr&quot;&gt;censure ne fasse peut-être son office&lt;/a&gt; &lt;img src=&quot;/blog/themes/battlestar/smilies/wink.gif&quot; alt=&quot;;)&quot; class=&quot;smiley&quot; /&gt;&lt;/p&gt;&lt;hr/&gt;&lt;p style=&quot;margin:.5em 0;padding:.5em;border:1px solid #333;background:#eee;color:#222&quot;&gt;&lt;small&gt;Ce billet intitulé &lt;a href=&quot;http://prendreuncafe.com/blog/post/2005/06/26/169-googlus-betrand&quot;&gt;Googlus-Betrand&lt;/a&gt; a été rédigé par &lt;a href=&quot;http://prendreuncafe.com/cv&quot;&gt;Nicolas Perriault&lt;/a&gt; et publié sur le blog &lt;a href=&quot;http://prendreuncafe.com/blog/&quot;&gt;Prendre un Café&lt;/a&gt; sous licence &lt;a href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.5/&quot;&gt;Creative Commons BY-NC-SA&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Google Maps : au tour de la France</title>
    <link>http://prendreuncafe.com/blog/post/2005/06/25/167-google-maps-au-tour-de-la-france</link>
    <guid isPermaLink="false">urn:md5:9a80c75748ee11ad697aae3f6bfc0765</guid>
    <pubDate>Sat, 25 Jun 2005 15:07:21 +0000</pubDate>
    <dc:creator>NiKo</dc:creator>
        <category>Divers</category>
        <category>geo</category><category>google</category>    
    <description>    &lt;p&gt;&lt;img src=&quot;http://prendreuncafe.com/blog/images/icones/Terre.png&quot; alt=&quot;Terre&quot; style=&quot;float:right; margin: 0 0 1em 1em;&quot; /&gt; &lt;a href=&quot;http://maps.google.com/&quot; hreflang=&quot;en&quot;&gt;Google Maps&lt;/a&gt; a ajouté la &lt;a href=&quot;http://maps.google.com/maps?ll=47.109375,1.757813&amp;amp;spn=15.732422,24.345703&amp;amp;t=k&amp;amp;hl=fr&quot; hreflang=&quot;fr&quot;&gt;France&lt;/a&gt; à son tableau de chasse sattelitaire (ne souriez pas, c'est votre cuir chevelu qui est filmé).&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;J'habite  &lt;a href=&quot;http://maps.google.com/maps?ll=48.802804,2.326033&amp;amp;spn=0.007682,0.011888&amp;amp;t=k&amp;amp;hl=fr&quot; hreflang=&quot;fr&quot;&gt;ici&lt;/a&gt; (Ouaaaah, c'est somptueux).&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Je travaille &lt;a href=&quot;http://maps.google.com/maps?ll=48.832737,2.245277&amp;amp;spn=0.007360,0.011888&amp;amp;t=k&amp;amp;hl=fr&quot; hreflang=&quot;fr&quot;&gt;là&lt;/a&gt; (Ouaiiiiis, ça donne trop envie).&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Mes racines sont &lt;a href=&quot;http://maps.google.com/maps?ll=45.596867,6.450777&amp;amp;spn=0.061455,0.095100&amp;amp;t=k&amp;amp;hl=fr&quot; hreflang=&quot;fr&quot;&gt;là&lt;/a&gt; et &lt;a href=&quot;http://maps.google.com/maps?ll=43.545513,-1.104984&amp;amp;spn=0.061455,0.095100&amp;amp;t=k&amp;amp;hl=fr&quot; hreflang=&quot;fr&quot;&gt;là&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;&lt;hr/&gt;&lt;p style=&quot;margin:.5em 0;padding:.5em;border:1px solid #333;background:#eee;color:#222&quot;&gt;&lt;small&gt;Ce billet intitulé &lt;a href=&quot;http://prendreuncafe.com/blog/post/2005/06/25/167-google-maps-au-tour-de-la-france&quot;&gt;Google Maps : au tour de la France&lt;/a&gt; a été rédigé par &lt;a href=&quot;http://prendreuncafe.com/cv&quot;&gt;Nicolas Perriault&lt;/a&gt; et publié sur le blog &lt;a href=&quot;http://prendreuncafe.com/blog/&quot;&gt;Prendre un Café&lt;/a&gt; sous licence &lt;a href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.5/&quot;&gt;Creative Commons BY-NC-SA&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;</description>
    
    
    
      </item>
    
</channel>
</rss>
