<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-32354023</id><updated>2024-09-12T04:05:48.269+00:00</updated><category term="Blogger"/><category term="cook"/><category term="security"/><category term="Linux"/><category term="Google"/><category term="photo"/><category term="Internet"/><category term="wiki"/><category term="book"/><category term="mathematics"/><category term="China"/><category term="howto"/><category term="receipt"/><category term="restaurant"/><category term="Comic"/><category term="MacOSX"/><category term="Python"/><category term="cake"/><category term="game"/><category term="search engine"/><category term="site"/><category term="Brussels"/><category term="Chrome"/><category term="Exalead"/><category term="Paris"/><category term="health"/><category term="manga"/><category term="movie"/><category term="recipe"/><category term="script"/><category term="second life"/><category term="unix"/><category term="video"/><title type='text'>Some Thinks about everything</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default?alt=atom'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default?alt=atom&amp;start-index=26&amp;max-results=25'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>129</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-32354023.post-5334081691271689781</id><published>2010-05-19T19:46:00.001+00:00</published><updated>2010-05-19T19:50:23.096+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Python"/><category scheme="http://www.blogger.com/atom/ns#" term="script"/><category scheme="http://www.blogger.com/atom/ns#" term="wiki"/><title type='text'>Dokuwiki, Gource : color now</title><content type='html'>In response to  various requests, I just added the color to the Dokuwiki representation with Gource. &lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;You can now download &lt;a href=&quot;http://www.dokuwiki.org/_export/code/tips:gource_analysis?codeblock=0&quot;&gt;the  new version&lt;/a&gt; .&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;#!/bin/python&lt;br /&gt;&lt;br /&gt;&quot;&quot;&quot;&lt;br /&gt;This program parse logs of a dokuwiki&lt;br /&gt;and tranform them for gource (a log viewer)&lt;br /&gt;http://code.google.com/p/gource/&lt;br /&gt;&lt;br /&gt;developped by WolverineX02&lt;br /&gt;site : http://wolverinex02.blogspot.com&lt;br /&gt;&lt;br /&gt;&quot;&quot;&quot;&lt;br /&gt;import glob&lt;br /&gt;import os.path&lt;br /&gt;import getopt&lt;br /&gt;import sys&lt;br /&gt;import re&lt;br /&gt;&lt;br /&gt;WHITE = &quot;11FFAA&quot;&lt;br /&gt;GREEN = &quot;00F000&quot;&lt;br /&gt;vector = (1,10,100)&lt;br /&gt;start_page_name = &quot;start&quot;&lt;br /&gt;&lt;br /&gt;def RGBToHTMLColor(rgb_tuple):&lt;br /&gt;   &quot;&quot;&quot; convert an (R, G, B) tuple to #RRGGBB &quot;&quot;&quot;&lt;br /&gt;   hexcolor = &#39;#%02x%02x%02x&#39; % rgb_tuple&lt;br /&gt;   # that&#39;s it! &#39;%02x&#39; means zero-padded, 2-digit hex values&lt;br /&gt;   return hexcolor&lt;br /&gt;&lt;br /&gt;def HTMLColorToRGB(colorstring):&lt;br /&gt;   &quot;&quot;&quot; convert #RRGGBB to an (R, G, B) tuple &quot;&quot;&quot;&lt;br /&gt;   colorstring = colorstring.strip()&lt;br /&gt;   if colorstring[0] == &#39;#&#39;: colorstring = colorstring[1:]&lt;br /&gt;   if len(colorstring) != 6:&lt;br /&gt;       raise ValueError, &quot;input #%s is not in #RRGGBB format&quot; % colorstring&lt;br /&gt;   r, g, b = colorstring[:2], colorstring[2:4], colorstring[4:]&lt;br /&gt;   r, g, b = [int(n, 16) for n in (r, g, b)]&lt;br /&gt;   return (r, g, b)&lt;br /&gt;&lt;br /&gt;def colormodify(colorstring):&lt;br /&gt;   rgb_tuple = HTMLColorToRGB(colorstring)&lt;br /&gt;   r, g, b = (rgb_tuple[0]+vector[0]) % 255,(rgb_tuple[1]+vector[1]) % 255,(rgb_tuple[2]+vector[2]) % 255&lt;br /&gt;   return RGBToHTMLColor((r, g, b))&lt;br /&gt;&lt;br /&gt;def listdirectory(path,color):&lt;br /&gt;   l = glob.glob(path+&quot;/*&quot;)&lt;br /&gt;   for i in l:&lt;br /&gt;       if os.path.isdir(i):&lt;br /&gt;               listdirectory(i,colormodify(color))&lt;br /&gt;       else:&lt;br /&gt;               readfile(i,color)&lt;br /&gt;&lt;br /&gt;def listdirectory2(path):&lt;br /&gt;   &quot;&quot;&quot;list all the files like *.changes,&lt;br /&gt;      read them and output them in gource&#39;s log syntax&lt;br /&gt;   &quot;&quot;&quot;&lt;br /&gt;   for root, dirs, files in os.walk(path):&lt;br /&gt;       for i in files:&lt;br /&gt;           if  (re.search(&#39;\.changes$&#39;, i)):&lt;br /&gt;               fichier = os.path.join(root, i)&lt;br /&gt;               readfile(fichier,GREEN)&lt;br /&gt;&lt;br /&gt;def readfile(fichier,color):&lt;br /&gt;   &quot;&quot;&quot;read the file and output for each line of this&lt;br /&gt;      file a log line for Gource&lt;br /&gt;   &quot;&quot;&quot;&lt;br /&gt;&lt;br /&gt;   myfile = open(fichier, &#39;r&#39;)&lt;br /&gt;   for line in myfile.readlines():&lt;br /&gt;       mots = line.split(&#39;\t&#39;)&lt;br /&gt;       if len(mots)&gt;=6:&lt;br /&gt;           resultat = mots[0] + &quot;|&quot;&lt;br /&gt;           if mots[4] == &#39;&#39;:&lt;br /&gt;               mots[4]  = &#39;Anonymous&#39;&lt;br /&gt;           resultat += mots[4] + &quot;|&quot;&lt;br /&gt;           resultat += translate(mots[2]) + &quot;|&quot;&lt;br /&gt;           resultat += mots[3].replace(&#39;:&#39;, &#39;/&#39;)&lt;br /&gt;           if mots[3].rfind(start_page_name) == len(mots[3])-len(start_page_name):&lt;br /&gt;               resultat += &quot;|&quot; + color&lt;br /&gt;           else:&lt;br /&gt;               resultat += &quot;|&quot; + colormodify(color)&lt;br /&gt;           print resultat&lt;br /&gt;   myfile.close()&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;def translate(mot):&lt;br /&gt;   &quot;&quot;&quot;translate the dokuwiki vocabulary to the gource one&lt;br /&gt;      C (also cc and sc from discussion plugin) -&gt;A&lt;br /&gt;      E (also ec from discussion plugin) -&gt; M&lt;br /&gt;      D (also dc and hc from discssion plugin) -&gt; D&lt;br /&gt;      other -&gt; M&lt;br /&gt;   &quot;&quot;&quot;&lt;br /&gt;   if mot.upper == &quot;C&quot; or mot == &#39;cc&#39; or mot == &#39;sc&#39;:&lt;br /&gt;       return &quot;A&quot;&lt;br /&gt;   elif mot.upper == &quot;E&quot; or mot == &#39;ec&#39;:&lt;br /&gt;       return &quot;M&quot;&lt;br /&gt;   elif mot.upper == &quot;D&quot; or mot == &#39;dc&#39; or mot == &#39;hc&#39;:&lt;br /&gt;       return &quot;D&quot;&lt;br /&gt;   else:&lt;br /&gt;       return &quot;M&quot;&lt;br /&gt;&lt;br /&gt;def main(argv):&lt;br /&gt;   &quot;&quot;&quot;principal function&lt;br /&gt;   &quot;&quot;&quot;&lt;br /&gt;   try:&lt;br /&gt;       opts, args = getopt.getopt(argv, &quot;hd:&quot;, [&quot;help&quot;, &quot;dokuwiki=&quot;])&lt;br /&gt;   except getopt.GetoptError:&lt;br /&gt;       usage()&lt;br /&gt;       sys.exit(2)&lt;br /&gt;   for opt, arg in opts:&lt;br /&gt;       if opt in (&quot;-h&quot;,&quot;--help&quot;):&lt;br /&gt;           usage()&lt;br /&gt;           sys.exit()&lt;br /&gt;       elif opt in (&quot;-d&quot;,&quot;--dokuwiki&quot;):&lt;br /&gt;           print listdirectory(arg,WHITE)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;def usage():&lt;br /&gt;   &quot;&quot;&quot;this function will display how to use this script&lt;br /&gt;   &quot;&quot;&quot;&lt;br /&gt;   print &quot;This script will output change logs of a dokuwiki&quot;&lt;br /&gt;   print &quot;in a friendly way for gource&quot;&lt;br /&gt;   print &quot;how to use it :&quot;&lt;br /&gt;   print &quot;python gourcedoku.py -d ~/Sites/MyDokuwiki/ | sort &gt; dokusort.log&quot;&lt;br /&gt;   print &quot;and then :&quot;&lt;br /&gt;   print &quot;gource --log-format custom dokusort.log --stop-position 1.0 \ &quot;&lt;br /&gt;   print &quot;--stop-on-idle --file-idle-time 10000000&quot;&lt;br /&gt;   print &quot;---&quot;&lt;br /&gt;   print &quot;-h : help &quot;&lt;br /&gt;   print &quot;-d : meta directory of your dokuwiki&quot;&lt;br /&gt;&lt;br /&gt;if __name__ == &quot;__main__&quot;:&lt;br /&gt;   main(sys.argv[1:])&lt;br /&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/5334081691271689781/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/5334081691271689781' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5334081691271689781'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5334081691271689781'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2010/05/dokuwiki-gource-color-now.html' title='Dokuwiki, Gource : color now'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-5345534221417605419</id><published>2010-05-16T14:29:00.000+00:00</published><updated>2010-05-16T14:30:16.606+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="cook"/><title type='text'>Wasab emulsion</title><content type='html'>We tasted this preparation in a very good restaurant ... By guessing the ingredients that could be present ...  we managed to recreate a recipe for wasabi emulsion well nice and very easy to make :-)&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5ik8k51yrFxPKwZE7wNCgaHewHc10Ls-_BAHaN5abubXjSN97qPIS-jrjctGAUamE7o0xgZl04Gb85uqsP4Um9wVu6jElOjCODoWzvB5fepeQFhaPf70yylmiIRSiL2tBEF20/s1600/IMG_1909.JPG&quot;&gt;&lt;img style=&quot;display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 300px; height: 400px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5ik8k51yrFxPKwZE7wNCgaHewHc10Ls-_BAHaN5abubXjSN97qPIS-jrjctGAUamE7o0xgZl04Gb85uqsP4Um9wVu6jElOjCODoWzvB5fepeQFhaPf70yylmiIRSiL2tBEF20/s400/IMG_1909.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5471874463211436018&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;Here is the recipe:&lt;br /&gt;&lt;br /&gt;List of ingredients:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;    1 tsp wasabi (in a tube and not powder)&lt;/li&gt;&lt;li&gt;1 tbsp soy sauce&lt;/li&gt;&lt;li&gt;juice of half a lemon&lt;/li&gt;&lt;li&gt;200 ml of cream&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;Preparation:&lt;br /&gt;&lt;br /&gt;Mix the wasabi in soy sauce. Add lemon juice, whipping cream and beat all until a stiff emulsion.&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhORuXGB_DuI3O2Sa0toP9QSI8pqeGuoEtHEKduym-2BwHQYKDMPIIqhe50xGgw1HGxNZ8leLHn31CIMnKYci0iJAflUkXuyg9XbKLeo9sKLGyruT2EhAiBFRMgaHfdJnjkWFIW/s1600/IMG_1910.JPG&quot;&gt;&lt;img style=&quot;display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 400px; height: 300px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhORuXGB_DuI3O2Sa0toP9QSI8pqeGuoEtHEKduym-2BwHQYKDMPIIqhe50xGgw1HGxNZ8leLHn31CIMnKYci0iJAflUkXuyg9XbKLeo9sKLGyruT2EhAiBFRMgaHfdJnjkWFIW/s400/IMG_1910.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5471874715368230210&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Suggestion:&lt;br /&gt;&lt;br /&gt;You can serve as an appetizer with bread sticks, as an accompaniment to salmon sashimi.&lt;br /&gt;&lt;br /&gt;Enjoy!</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/5345534221417605419/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/5345534221417605419' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5345534221417605419'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5345534221417605419'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2010/05/wasab-emulsion.html' title='Wasab emulsion'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5ik8k51yrFxPKwZE7wNCgaHewHc10Ls-_BAHaN5abubXjSN97qPIS-jrjctGAUamE7o0xgZl04Gb85uqsP4Um9wVu6jElOjCODoWzvB5fepeQFhaPf70yylmiIRSiL2tBEF20/s72-c/IMG_1909.JPG" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-3406967168922372211</id><published>2010-05-16T14:20:00.001+00:00</published><updated>2010-05-16T14:22:14.855+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="video"/><category scheme="http://www.blogger.com/atom/ns#" term="wiki"/><title type='text'>Gource and Dokuwiki : the video</title><content type='html'>The video :&lt;br /&gt;&lt;br /&gt;&lt;object height=&quot;360&quot; width=&quot;480&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.dailymotion.com/swf/video/xdbdv9&quot;&gt;&lt;br /&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;br /&gt;&lt;param name=&quot;allowScriptAccess&quot; value=&quot;always&quot;&gt;&lt;br /&gt;&lt;embed type=&quot;application/x-shockwave-flash&quot; src=&quot;http://www.dailymotion.com/swf/video/xdbdv9&quot; allowfullscreen=&quot;true&quot; allowscriptaccess=&quot;always&quot; height=&quot;360&quot; width=&quot;480&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;obtain with the followinf command line :&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;gource --log-format custom dokusort.log --stop-position 1.0 --stop-on-idle --file-idle-time 10000000 --output-ppm-stream - | ffmpeg -y -b 3000K -r 60 -f image2pipe -vcodec ppm -i - -vcodec mpeg4 gource.mp4&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;It takes a little time but the result is wonderful</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/3406967168922372211/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/3406967168922372211' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3406967168922372211'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3406967168922372211'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2010/05/gource-and-dokuwiki-video.html' title='Gource and Dokuwiki : the video'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-7520605287294487631</id><published>2010-05-16T14:01:00.002+00:00</published><updated>2010-05-16T14:16:50.848+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="howto"/><category scheme="http://www.blogger.com/atom/ns#" term="Python"/><category scheme="http://www.blogger.com/atom/ns#" term="wiki"/><title type='text'>Gource and Dokuwiki</title><content type='html'>Like everyone, I am fond of the wonderful videos made with Gource. The goal of this tool is to make a representation of the changes made on a version control system like git or SVN. But my favorite wiki ( DokuWiki  ) is a version control system tool... Have a look to the folder tree to find the directory &quot;dokuwiki/data/meta&quot; in which the files &quot;*. changes&quot; contain exactly the information sought. For example, the file &quot;systemes_visualisation.changes&quot; looks like:&lt;br /&gt;&lt;br /&gt;   &lt;blockquote&gt;1263135717 ::1 C informatique:systemes_visualisation Wolverine créée 1263135717:: 1 C computer: Wolverine created systemes_visualisation&lt;br /&gt;   1263135988 ::1 E informatique:systemes_visualisation Wolverine 1263135988:: 1 E it: Wolverine systemes_visualisation&lt;br /&gt;   1263136423 ::1 E informatique:systemes_visualisation Wolverine 1263136423:: E a computer: Wolverine systemes_visualisation&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;Explanation :&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;   the first column is a Unix Timestamp ,&lt;/li&gt;&lt;li&gt;the second is the IP address (I&#39;m working on localhost ;-))&lt;/li&gt;&lt;li&gt;the third is the action performed (C created, E edited ,...)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;the fourth is straightforward,&lt;br /&gt;&lt;/li&gt;&lt;li&gt;the fifth is the ID of the person who modified the page&lt;/li&gt;&lt;li&gt;and the last column is the smallest text you can perform when you edit a page ...&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;Now just turn this tree into a log file readable by Gource . To do this, I developed a small python script named gourcedoku.py:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;#!/bin/python&lt;br /&gt;&lt;br /&gt;&quot;&quot;&quot;&lt;br /&gt;This program parse logs of a dokuwiki&lt;br /&gt;and tranform them for gource (a log viewer)&lt;br /&gt;http://code.google.com/p/gource/&lt;br /&gt;&lt;br /&gt;developped by WolverineX02&lt;br /&gt;site : http://wolverinex02.blogspot.com&lt;br /&gt;&lt;br /&gt;&quot;&quot;&quot;&lt;br /&gt;&lt;br /&gt;import os.path&lt;br /&gt;import getopt&lt;br /&gt;import sys&lt;br /&gt;import re&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;def listdirectory2(path):&lt;br /&gt;    &quot;&quot;&quot;list all the files like *.changes,&lt;br /&gt;       read them and output them in gource&#39;s log syntax&lt;br /&gt;    &quot;&quot;&quot;&lt;br /&gt;    for root, dirs, files in os.walk(path):&lt;br /&gt;        for i in files:&lt;br /&gt;            if  (re.search(&#39;\.changes$&#39;, i)):&lt;br /&gt;                fichier = os.path.join(root, i)&lt;br /&gt;                myfile = open(fichier, &#39;r&#39;)&lt;br /&gt;                for line in myfile.readlines():&lt;br /&gt;                    mots = line.split()&lt;br /&gt;                    if len(mots)&gt;=5:&lt;br /&gt;                        resultat = mots[0] + &quot;|&quot;&lt;br /&gt;                        resultat += mots[4] + &quot;|&quot;&lt;br /&gt;                        resultat += translate(mots[2]) + &quot;|&quot;&lt;br /&gt;                        resultat += fichier&lt;br /&gt;                        print resultat&lt;br /&gt;                    elif len(mots)==4:&lt;br /&gt;                        resultat = mots[0] + &quot;|Anonymous|&quot;&lt;br /&gt;                        resultat += translate(mots[2]) + &quot;|&quot;&lt;br /&gt;                        resultat += fichier&lt;br /&gt;                        print resultat&lt;br /&gt;                myfile.close()&lt;br /&gt;&lt;br /&gt;def translate(mot):&lt;br /&gt;    &quot;&quot;&quot;translate the dokuwiki vocabulary to the gource one&lt;br /&gt;       C -&gt; A&lt;br /&gt;       E -&gt; M&lt;br /&gt;       other -&gt; M&lt;br /&gt;    &quot;&quot;&quot;&lt;br /&gt;    if mot == &quot;C&quot;:&lt;br /&gt;        return &quot;A&quot;&lt;br /&gt;    elif mot == &quot;E&quot;:&lt;br /&gt;        return &quot;M&quot;&lt;br /&gt;    else:&lt;br /&gt;        return &quot;M&quot;&lt;br /&gt;&lt;br /&gt;def main(argv):&lt;br /&gt;    &quot;&quot;&quot;principal function&lt;br /&gt;    &quot;&quot;&quot;&lt;br /&gt;    try:&lt;br /&gt;        opts, args = getopt.getopt(argv, &quot;hd:&quot;, [&quot;help&quot;, &quot;dokuwiki=&quot;])&lt;br /&gt;    except getopt.GetoptError:&lt;br /&gt;        usage()&lt;br /&gt;        sys.exit(2)&lt;br /&gt;    for opt, arg in opts:&lt;br /&gt;        if opt in (&quot;-h&quot;,&quot;--help&quot;):&lt;br /&gt;            usage()&lt;br /&gt;            sys.exit()&lt;br /&gt;        elif opt in (&quot;-d&quot;,&quot;--dokuwiki&quot;):&lt;br /&gt;            print listdirectory2(arg)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;def usage():&lt;br /&gt;    &quot;&quot;&quot;this function will display how to use this script&lt;br /&gt;    &quot;&quot;&quot;&lt;br /&gt;    print &quot;This script will output change logs of a dokuwiki&quot;&lt;br /&gt;    print &quot;in a friendly way for gource&quot;&lt;br /&gt;    print &quot;how to use it :&quot;&lt;br /&gt;    print &quot;python gourcedoku.py -d ~/Sites/MyDokuwiki/ | sort &gt; dokusort.log&quot;&lt;br /&gt;    print &quot;and then :&quot;&lt;br /&gt;    print &quot;gource --log-format custom dokusort.log --stop-position 1.0 \ &quot;&lt;br /&gt;    print &quot;--stop-on-idle --file-idle-time 10000000&quot;&lt;br /&gt;    print &quot;---&quot;&lt;br /&gt;    print &quot;-h : help &quot;&lt;br /&gt;    print &quot;-d : meta directory of your dokuwiki&quot;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;if __name__ == &quot;__main__&quot;:&lt;br /&gt;    main(sys.argv[1:])&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/blockquote&gt;To start it, nothing more simple, launch the script in yout dokuwiki directory :&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;    python gourcedoku.py -d ~/Sites/MyDokuwiki/ | sort &gt; dokusort.log&lt;br /&gt;&lt;/blockquote&gt;then view the result with Gource with the following command:&lt;br /&gt;   &lt;blockquote&gt;gource --log-format custom dokusort.log --stop-position 1.0 --stop-on-idle --file-idle-time 10000000&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;I will try to put this code on the site Gource site ;-) Feel free to ask me questions or to improve my script.</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/7520605287294487631/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/7520605287294487631' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/7520605287294487631'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/7520605287294487631'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2010/05/gource-and-dokuwiki.html' title='Gource and Dokuwiki'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-6278535082725737236</id><published>2010-01-24T21:19:00.000+00:00</published><updated>2010-01-24T21:20:51.901+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Chrome"/><category scheme="http://www.blogger.com/atom/ns#" term="Internet"/><category scheme="http://www.blogger.com/atom/ns#" term="MacOSX"/><title type='text'>Chromoxy</title><content type='html'>&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;I have just read  the &lt;span style=&quot;text-decoration: underline;&quot;&gt;article&lt;/span&gt; &lt;a href=&quot;http://translate.googleusercontent.com/translate_c?hl=fr&amp;amp;langpair=fr%7Cen&amp;amp;u=http://lifehacker.com/5046529/how-to-block-ads-in-google-chrome&amp;amp;rurl=translate.google.com&amp;amp;twu=1&amp;amp;client=tmpg&amp;amp;usg=ALkJrhgRXXj1p54N6Ntc9psIhNV4wzRc5Q&quot;&gt;from  LifeHacker&lt;/a&gt; on how to block ads in Chrome browser Goolge ...&lt;/span&gt; &lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;ce  serait un peu comme l&#39;extension AdBlock Plus pour Chrome ;-) voir même  encore un peu plus que seulement filtrer les publicités sur Chrome...&lt;/span&gt;  This would be like the AdBlock Plus extension for Chrome ;-) see even a  little more than just filter the ads on Chrome ...&lt;/span&gt; &lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;Je me  suis dit que c&#39;est pas mal mais pas très automatique ;-) j&#39;ai donc écrit  un petit script pour cela :&lt;/span&gt; I told myself that it&#39;s not bad but  not very automatic ;-) so I wrote a little script for that:&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt; &lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;#!/bin/sh&lt;/span&gt;  / bin / sh&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;# Demarrage de Privoxy&lt;/span&gt; # Starting Privoxy&lt;/span&gt; &lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;cd  /Applications/privoxy/&lt;/span&gt; cd / Applications / privoxy /&lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;./privoxy  &amp;amp;&lt;/span&gt; . / privoxy &amp;amp;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;#  demarrage de Chrome&lt;/span&gt; # START Chrome&lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;/Applications/Google\  Chrome.app/Contents/MacOS/Google\ Chrome  --proxy-server=&quot;http://127.0.0.1:8118&quot;&lt;/span&gt; / Applications / Google \  Chrome.app / Contents / MacOS / Google Chrome - proxy-server =  &quot;http://127.0.0.1:8118&quot;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;# retour maison&lt;/span&gt; # Return home&lt;/span&gt;&lt;br /&gt; &lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;cd&lt;/span&gt;  cd&lt;/span&gt; &lt;/blockquote&gt; &lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;et en utilisant &lt;a href=&quot;http://translate.googleusercontent.com/translate_c?hl=fr&amp;amp;langpair=fr%7Cen&amp;amp;u=http://www.sveinbjorn.org/platypus&amp;amp;rurl=translate.google.com&amp;amp;twu=1&amp;amp;client=tmpg&amp;amp;usg=ALkJrhjWlKKmLun5IpCzKMsgJ--ePTC0kg&quot;&gt;Platypus&lt;/a&gt;  , il devient super facile de créer ensuite une véritable application :&lt;/span&gt;  and using &lt;a href=&quot;http://translate.googleusercontent.com/translate_c?hl=fr&amp;amp;langpair=fr%7Cen&amp;amp;u=http://www.sveinbjorn.org/platypus&amp;amp;rurl=translate.google.com&amp;amp;twu=1&amp;amp;client=tmpg&amp;amp;usg=ALkJrhjWlKKmLun5IpCzKMsgJ--ePTC0kg&quot;&gt;Platypus,&lt;/a&gt;  it becomes super easy to then create a real application:&lt;/span&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi4UCptn943GaFE8rKAOC4AmUrrrEfQyq8i5ZEI0qPHu8qJLjqmurKVrw1mfpQwJNYXAw7zBIPignRtSa2q5IECRm2ki2Tv5atrTPzDLmULAhJgMbd7rl3WiQhBqaD_bEYQ_WqW4w/s1600-h/Capture+d%E2%80%99%C3%A9cran+2010-01-24+%C3%A0+22.03.36.png&quot;&gt;&lt;img style=&quot;display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 257px; height: 356px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi4UCptn943GaFE8rKAOC4AmUrrrEfQyq8i5ZEI0qPHu8qJLjqmurKVrw1mfpQwJNYXAw7zBIPignRtSa2q5IECRm2ki2Tv5atrTPzDLmULAhJgMbd7rl3WiQhBqaD_bEYQ_WqW4w/s400/Capture+d%E2%80%99%C3%A9cran+2010-01-24+%C3%A0+22.03.36.png&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5430415282853519074&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;Facile  non ;-) si vous êtes intéressés, je peux continuer à développer cette  &quot;application&quot;.&lt;/span&gt; ;-) Not easy if you&#39;re interested, I can continue  to develop this &quot;application&quot;.&lt;/span&gt; &lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;J&#39;attends vos retours&lt;/span&gt; I await your return&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/6278535082725737236/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/6278535082725737236' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/6278535082725737236'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/6278535082725737236'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2010/01/chromoxy.html' title='Chromoxy'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi4UCptn943GaFE8rKAOC4AmUrrrEfQyq8i5ZEI0qPHu8qJLjqmurKVrw1mfpQwJNYXAw7zBIPignRtSa2q5IECRm2ki2Tv5atrTPzDLmULAhJgMbd7rl3WiQhBqaD_bEYQ_WqW4w/s72-c/Capture+d%E2%80%99%C3%A9cran+2010-01-24+%C3%A0+22.03.36.png" height="72" width="72"/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-6557136965833209792</id><published>2009-12-13T16:31:00.005+00:00</published><updated>2009-12-13T16:51:31.877+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="howto"/><category scheme="http://www.blogger.com/atom/ns#" term="MacOSX"/><title type='text'>How to import Mac OS X&#39;s icons in Visio</title><content type='html'>&lt;span id=&quot;result_box&quot; class=&quot;long_text&quot;&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;Vous connaissez certainement le programme Visio de suite Microsoft Office qui permet de faire de très beaux schémas...&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;You certainly know the program Visio (Microsoft Office) that allows to make beautiful diagrams ... &lt;/span&gt;&lt;span title=&quot;le seul petit hic, ce sont les icônes qui elles sont particulièrement moches...&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;the only small snag, Visio&#39;s icons are particularly ugly... &lt;/span&gt;&lt;/span&gt;&lt;span id=&quot;result_box&quot; class=&quot;long_text&quot;&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;Je vous propose donc deux petites techniques pour importer les très belles icônes de Snow Leopard dans votre Visio.&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;Therefore &lt;/span&gt;&lt;/span&gt;&lt;span id=&quot;result_box&quot; class=&quot;long_text&quot;&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;Je vous propose donc deux petites techniques pour importer les très belles icônes de Snow Leopard dans votre Visio.&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;let me show you two techniques to import the beautiful Snow Leopard icons in your Visio.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;Première méthode : à la main&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Method: by hand&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;Sélectionnez l&#39;application dont vous voulez récupérer l&#39;icône (avec le fameux Pomme+C), puis ouvrez l&#39;application Aperçu&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;Select the application whose you want import the icon (with the famous &lt;span style=&quot;font-weight: bold;&quot;&gt;Apple + C&lt;/span&gt;), then open the Preview application &lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;et choisissez &amp;quot;Créer à partir du presse-papiers&amp;quot;&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;and choose &quot;New from clipboard&quot;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhh8UDsAwOTYBIWnEaPgpTv7sbIfja0C8jkga032ssekdZNTbCVvAMwaRU_aK88TyTWEtfF_PX5iJUnLUWA-YAteOIf2tZBfn8wTHmZSHzroYWpiV-CLauLhwtvyhdq-uvt6iPpsw/s1600-h/Capture+d%E2%80%99%C3%A9cran+2009-12-13+%C3%A0+17.14.26.png&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 313px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhh8UDsAwOTYBIWnEaPgpTv7sbIfja0C8jkga032ssekdZNTbCVvAMwaRU_aK88TyTWEtfF_PX5iJUnLUWA-YAteOIf2tZBfn8wTHmZSHzroYWpiV-CLauLhwtvyhdq-uvt6iPpsw/s400/Capture+d%E2%80%99%C3%A9cran+2009-12-13+%C3%A0+17.14.26.png&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5414762892851424450&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span id=&quot;result_box&quot; class=&quot;long_text&quot;&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;il ne vous reste plus qu&#39;à enregistrer sous et choisir le format PNG.&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;you will just have to &lt;span style=&quot;font-weight: bold;&quot;&gt;save it as&lt;/span&gt; and choose the PNG format. &lt;/span&gt;&lt;span title=&quot;Vous pouvez maintenant importer votre image dans Visio.&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;You can now import your image into Visio.&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjvNqTD6uKWljfXypjWUZ3aumCDXgPmtueR-Z28bZNLiFKglzV1v7nplrAUb6KH-I0pIhzg9h2XzG7JmFjVJjaz9xYRuG-jVdMaoYeMQy8OvbjhET6wX_eTozM2yI9P8zp36YKgxg/s1600-h/Capture+d%E2%80%99%C3%A9cran+2009-12-13+%C3%A0+17.17.18.png&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 254px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjvNqTD6uKWljfXypjWUZ3aumCDXgPmtueR-Z28bZNLiFKglzV1v7nplrAUb6KH-I0pIhzg9h2XzG7JmFjVJjaz9xYRuG-jVdMaoYeMQy8OvbjhET6wX_eTozM2yI9P8zp36YKgxg/s400/Capture+d%E2%80%99%C3%A9cran+2009-12-13+%C3%A0+17.17.18.png&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5414763013700459042&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span id=&quot;result_box&quot; class=&quot;long_text&quot;&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;Deuxième méthode : avec un script&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Second method: using a script &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;La précédente méthode permet d&#39;extraire une image à la fois, si vous voulez récupérer toutes les icônes d&#39;un Mac OS X, vous pouvez utiliser le script python suivant :&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;The previous method let you to extract only an icon at a time, if you want to retrieve all the icons of Mac OS X, you can use the following python script:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span title=&quot;#!/bin/python&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;/bin/python&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;import os&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;import os&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;import re&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;import re&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;text = &amp;quot;0000&amp;quot;&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;text = &quot;0000&quot;&lt;br /&gt;&lt;/span&gt;&lt;span title=&quot;out = &amp;quot;~/Pictures/&amp;quot;&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;out = &quot;~/Pictures/&quot;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;stdout_handle = os.popen(&amp;quot;find / -name *.icns&amp;quot;, &amp;quot;r&amp;quot;)&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;stdout_handle = os.popen ( &quot;find / -name *. icns&quot;, &quot;r&quot;)&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;while (text!=&amp;quot;&amp;quot;):&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;while (text !=&quot;&quot;):&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;text = stdout_handle.readline()&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;stdout_handle.readline text = ()&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;regnamefile = re.compile(&#39;\/([^//]*)\.icns&#39;)&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;regnamefile = re.compile ( &#39;\/([^//]*)\. icns&#39;)&lt;br /&gt;&lt;/span&gt;&lt;span title=&quot;namefile = regnamefile.findall(text)[0]&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;namefile = regnamefile.findall (text) [0]&lt;br /&gt;&lt;/span&gt;&lt;span title=&quot;regline = re.compile(&#39;(\/.*\.icns)&#39;)&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;Reglin = re.compile ( &#39;(\/ .*\. icns)&#39;)&lt;br /&gt;&lt;/span&gt;&lt;span title=&quot;line = regline.findall(text)[0]&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;line = regline.findall (text) [0]&lt;br /&gt;&lt;/span&gt;&lt;span title=&quot;os.system(&amp;quot;sips -s format png &amp;quot;+line+&amp;quot; --out &amp;quot;+out+namefile+&amp;quot;.png&amp;quot;)&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;os.system ( &quot;sips-s format png&quot;+line+&quot;-out&quot;+out+namefile+&quot;.png&quot;)&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span title=&quot;Attention à l&#39;indentation, c&#39;est du python ;-) ...&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;Beware the indentation : it is the python ... ;-) &lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;Vous cherchez dans un premier temps l&#39;ensemble des fichiers au format icns (c&#39;est le format des icônes de Mac OS X ;-) ;-) ), puis vous appliquez une transformation de format grâce à l&#39;utilitaite sips disponible sous Mac&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;The script first look for all icns file (the format of the icons of Mac OS X ;-) ;-)), then apply a transformation using the application sips available on Mac &lt;/span&gt;&lt;span title=&quot;OS X.&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;OS X. &lt;/span&gt;&lt;span title=&quot;L&#39;ensemble des fichiers au format PNG sera disponible dans votre répertoire photos...&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;All files in PNG format will be created in your pictures folder ...&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;Voilà ;-) j&#39;espère que vous ferez de beaux schèmas après ça.&quot; onmouseover=&quot;this.style.backgroundColor=&#39;#ebeff9&#39;&quot; onmouseout=&quot;this.style.backgroundColor=&#39;#fff&#39;&quot;&gt;That ;-) I hope you will make beautiful patterns after that. &lt;/span&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/6557136965833209792/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/6557136965833209792' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/6557136965833209792'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/6557136965833209792'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2009/12/how-to-import-mac-os-xs-icons-in-visio.html' title='How to import Mac OS X&#39;s icons in Visio'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhh8UDsAwOTYBIWnEaPgpTv7sbIfja0C8jkga032ssekdZNTbCVvAMwaRU_aK88TyTWEtfF_PX5iJUnLUWA-YAteOIf2tZBfn8wTHmZSHzroYWpiV-CLauLhwtvyhdq-uvt6iPpsw/s72-c/Capture+d%E2%80%99%C3%A9cran+2009-12-13+%C3%A0+17.14.26.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-6785823400210977182</id><published>2008-06-08T09:17:00.002+00:00</published><updated>2008-06-08T09:48:13.459+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="howto"/><category scheme="http://www.blogger.com/atom/ns#" term="Internet"/><category scheme="http://www.blogger.com/atom/ns#" term="site"/><category scheme="http://www.blogger.com/atom/ns#" term="wiki"/><title type='text'>Installing Wikicalc: the most beautiful OpenSource spreadsheets</title><content type='html'>&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;As I indicated in my last post: WikiCalc is a collaborative spreadsheet operating on the principle of wiki.&lt;/span&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;&lt;/span&gt; It is completely written in Perl.&lt;/span&gt; &lt;span style=&quot;&quot; onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;&lt;/span&gt;To install Wikicalc, nothing more simple, just start by installing the necessary tools for your good old Debian:&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt; &lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;apt-get install apache2 libapache2-mod-perl2&lt;/span&gt; &lt;/span&gt; &lt;/blockquote&gt; &lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;&lt;/span&gt;Then download sources: &lt;a href=&quot;http://66.102.9.104/translate_c?hl=fr&amp;amp;sl=fr&amp;amp;tl=en&amp;amp;u=http://www.softwaregarden.com/products/wikicalc/downloads.html&quot;&gt;wikicalc-1-0.tar.gz.&lt;/a&gt;&lt;/span&gt; &lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;&lt;/span&gt;Then can begin the installation process itself:&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt; &lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;cd /var/www&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;tar xvzf wikicalc-1-0.tar.gz&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;ln -s wikicalc-1-0 wikicalc&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;&lt;/span&gt;Now you have to let the Wikicalc engine to be accessible from your Web server: compared to the configuration by default, you just need to add these few lines :&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;NameVirtualHost *&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;&lt;virtualhost&gt;&lt;/virtualhost&gt;&lt;/span&gt; &lt;virtualhost&gt;&lt;/virtualhost&gt;&lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;ServerAdmin webmaster@localhost&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;DocumentRoot /var/www/wikicalc/&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;&lt;directory&gt;&lt;/directory&gt;&lt;/span&gt; &lt;directory&gt;&lt;/directory&gt;&lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;Options FollowSymLinks&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;AllowOverride None&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;&lt;/span&gt; &lt;!-- directory--&gt;&lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;&lt;directory&gt;&lt;/directory&gt;&lt;/span&gt; &lt;directory&gt;&lt;/directory&gt;&lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;Options Indexes FollowSymLinks MultiViews ExecCGI&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;AddHandler cgi-script .cgi .pl&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;AllowOverride None&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;Order allow,deny&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;allow from all&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;&lt;/span&gt; &lt;!-- directory--&gt;&lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;&lt;/span&gt; &lt;!-- virtualhost--&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;/blockquote&gt;&lt;pre&gt;&lt;br /&gt;&lt;/pre&gt; &lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;&lt;/span&gt;Load Perl module:&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt; &lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;a2enmod perl&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;restart /etc/init.d/apache2&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;span class=&quot;google-src-text&quot; style=&quot;direction: ltr; text-align: left;&quot;&gt;&lt;/span&gt;To finish the installation, go to &lt;a href=&quot;http://66.102.9.104/translate_c?hl=fr&amp;amp;sl=fr&amp;amp;tl=en&amp;amp;u=http://wolverine-linux.blogspot.com/&quot;&gt;http://wikicalc.monsite.com/wikicalccgi.pl&lt;/a&gt; and follow the instructions ....&lt;/span&gt;&lt;br /&gt;&lt;span onmouseover=&quot;_tipon(this)&quot; onmouseout=&quot;_tipoff()&quot;&gt;&lt;br /&gt;Now you can play with this imressive spreedsheat&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/6785823400210977182/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/6785823400210977182' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/6785823400210977182'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/6785823400210977182'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2008/06/installing-wikicalc-most-beautiful.html' title='Installing Wikicalc: the most beautiful OpenSource spreadsheets'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-4425787834122485392</id><published>2008-03-22T17:44:00.000+00:00</published><updated>2008-03-22T17:49:02.219+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Blogger"/><category scheme="http://www.blogger.com/atom/ns#" term="Comic"/><category scheme="http://www.blogger.com/atom/ns#" term="Internet"/><category scheme="http://www.blogger.com/atom/ns#" term="site"/><title type='text'>Fulguro</title><content type='html'>A new site, soon... I am sure you will enjoy it, so come and join me at &lt;a href=&quot;http://fulguro.fr/&quot;&gt;http://fulguro.fr/&lt;/a&gt; . People who like Goldorak will enjoy this site, I am sure of it ;-)&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://fulguro.fr/&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiNocCoUu6fWJN_aK6til3ZD0zm1K5RkGvgF5n5e5pQOcrr4VAQ9y3RYgjXeFgjAEe7PXZi_EIbHHNglNedggIpLXFA6Waz-7xb050Oa_C7DbU7eb0NRYbSd6_qqz9I9RsFu5Cgig/s400/fulguro.gif&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5180623792139049538&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/4425787834122485392/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/4425787834122485392' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4425787834122485392'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4425787834122485392'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2008/03/fulguro.html' title='Fulguro'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiNocCoUu6fWJN_aK6til3ZD0zm1K5RkGvgF5n5e5pQOcrr4VAQ9y3RYgjXeFgjAEe7PXZi_EIbHHNglNedggIpLXFA6Waz-7xb050Oa_C7DbU7eb0NRYbSd6_qqz9I9RsFu5Cgig/s72-c/fulguro.gif" height="72" width="72"/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-8121861405198344909</id><published>2008-01-02T20:15:00.000+00:00</published><updated>2008-01-02T20:20:10.507+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="China"/><category scheme="http://www.blogger.com/atom/ns#" term="photo"/><title type='text'>Simataï : the best part of the great wall</title><content type='html'>&lt;div style=&quot;text-align: justify;&quot;&gt;Simataï is probably the best part of the great wall, it is a bit farer than the other part of the great wall, nevertheless it is probably the more typical part of this monument. You will need good shoes to go there and a good health. Be careful there are some bees in the wall and if you are lucky you might be see some bats.&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj14RU0XrKd3rbz-ew3oncN6igml6NKknzkvkEcD3ZMvx-4eHrQKzZob8uwsXYWQMz2I6P904G3UVKKsJV5ucq-mVLaCOGPw3oiw2ddOdfWrU0D7ugU4oh6Z5xjJesYv0h73ikrcQ/s1600-h/PICT0521.JPG&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj14RU0XrKd3rbz-ew3oncN6igml6NKknzkvkEcD3ZMvx-4eHrQKzZob8uwsXYWQMz2I6P904G3UVKKsJV5ucq-mVLaCOGPw3oiw2ddOdfWrU0D7ugU4oh6Z5xjJesYv0h73ikrcQ/s400/PICT0521.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5150975658414240738&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/8121861405198344909/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/8121861405198344909' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8121861405198344909'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8121861405198344909'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2008/01/simata-best-part-of-great-wall.html' title='Simataï : the best part of the great wall'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj14RU0XrKd3rbz-ew3oncN6igml6NKknzkvkEcD3ZMvx-4eHrQKzZob8uwsXYWQMz2I6P904G3UVKKsJV5ucq-mVLaCOGPw3oiw2ddOdfWrU0D7ugU4oh6Z5xjJesYv0h73ikrcQ/s72-c/PICT0521.JPG" height="72" width="72"/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-6818035499577434280</id><published>2008-01-02T20:10:00.000+00:00</published><updated>2008-01-02T20:13:29.079+00:00</updated><title type='text'>The best way to wish a happy new year</title><content type='html'>May this new year 2004 will be more prosperous for us all! We wish you all the best for the year 2004. We hope you will get good luck in your life.&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg8R6MACtUuT_U44EZh-P1yKJ-XijV-EOFKwVT8GVZH15gzvgXPdvRmjPn0dizagf_QVWKhvN5PvGoGnIfI9eXKfL-FfXcuKgOPO2xWKHgq5T_EBBWC-X8vcXdIslEijm5JK5SzKg/s1600-h/bonneannee.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg8R6MACtUuT_U44EZh-P1yKJ-XijV-EOFKwVT8GVZH15gzvgXPdvRmjPn0dizagf_QVWKhvN5PvGoGnIfI9eXKfL-FfXcuKgOPO2xWKHgq5T_EBBWC-X8vcXdIslEijm5JK5SzKg/s400/bonneannee.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5150974399988822994&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/6818035499577434280/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/6818035499577434280' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/6818035499577434280'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/6818035499577434280'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2008/01/best-way-to-wish-happy-new-year.html' title='The best way to wish a happy new year'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg8R6MACtUuT_U44EZh-P1yKJ-XijV-EOFKwVT8GVZH15gzvgXPdvRmjPn0dizagf_QVWKhvN5PvGoGnIfI9eXKfL-FfXcuKgOPO2xWKHgq5T_EBBWC-X8vcXdIslEijm5JK5SzKg/s72-c/bonneannee.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-5406546448396761877</id><published>2007-08-29T16:55:00.000+00:00</published><updated>2007-08-29T17:03:18.782+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="China"/><category scheme="http://www.blogger.com/atom/ns#" term="restaurant"/><title type='text'>A good hotel in Beijing</title><content type='html'>&lt;div style=&quot;text-align: justify;&quot;&gt;I went in China this summer and I spent one week in the Beijing King&#39;s Joy Hotel, whose address is : No. 81, Meishi Street, Xuanwu District, Beijing&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgiRAAzFS9bI6pcMckaXmS0Q7rsMMmlzUr43u4w5ADcFXxWIqRNUK97_MQWOMZaYdCO_US01EQjzfkIX3lvd7Y_fFW8tOFhWVw4iFz5Y1h9mvOwfJYBD5DRxztgkPn6SjfOCwhW9Q/s1600-h/king_joy_hotel.jpeg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgiRAAzFS9bI6pcMckaXmS0Q7rsMMmlzUr43u4w5ADcFXxWIqRNUK97_MQWOMZaYdCO_US01EQjzfkIX3lvd7Y_fFW8tOFhWVw4iFz5Y1h9mvOwfJYBD5DRxztgkPn6SjfOCwhW9Q/s400/king_joy_hotel.jpeg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5104168211800885730&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;this hotel is not very far from the Tienanmen place, is very cheap (40$) and there is a very good restaurant in the hutong near the hotel. Hope it can help you...&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;tag_list&quot;&gt;Tags: &lt;span class=&quot;tags&quot;&gt;&lt;a href=&quot;http://technorati.com/tag/China&quot; rel=&quot;tag&quot;&gt;China&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/Beijing&quot; rel=&quot;tag&quot;&gt;Beijing&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/Hotel&quot; rel=&quot;tag&quot;&gt;Hotel&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/Tienanmen&quot; rel=&quot;tag&quot;&gt;Tienanmen&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/Meishi+Street&quot; rel=&quot;tag&quot;&gt;Meishi Street&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/Xuanwu+District&quot; rel=&quot;tag&quot;&gt;Xuanwu District&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/5406546448396761877/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/5406546448396761877' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5406546448396761877'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5406546448396761877'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/08/good-hotel-in-beijing.html' title='A good hotel in Beijing'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgiRAAzFS9bI6pcMckaXmS0Q7rsMMmlzUr43u4w5ADcFXxWIqRNUK97_MQWOMZaYdCO_US01EQjzfkIX3lvd7Y_fFW8tOFhWVw4iFz5Y1h9mvOwfJYBD5DRxztgkPn6SjfOCwhW9Q/s72-c/king_joy_hotel.jpeg" height="72" width="72"/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-3242795539417555428</id><published>2007-08-23T07:11:00.000+00:00</published><updated>2007-08-23T07:22:03.158+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="cook"/><category scheme="http://www.blogger.com/atom/ns#" term="movie"/><title type='text'>Ratatouille : a great great movie</title><content type='html'>&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://bp3.blogger.com/_sJwc_Uvy5q4/RrSQNgADtvI/AAAAAAAAAK8/hGdAYBjAJYw/s1600-h/ratatouille.htm&amp;prev=/language_tools&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQPEVkZFMgSyASk8-PBhEfzVkvdTzJIpjySPEwKHYYoGyYm6Ae4WSCFZX8pJojyS_eoVcqwGRbeJozY_AARjJwUxDjYryYQ-cg8cJ-93mzlpIU81yDt_ktxGffe2sl50IBfMU3ow/s400/ratatouille.htm&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5094855640065750770&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;It has been a long time since, since I laughed because of  a great comic movie… Ratatouille is a little rat, who wand to become a great chief in Paris. When you watch this movie, you become hungry and this movie is very well realized, there is a good timing and rhythm. The drawings of Paris are marvelous. It is worth seeing this movie, even if you are no more a child.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;tag_list&quot;&gt;Tags: &lt;span class=&quot;tags&quot;&gt;&lt;a href=&quot;http://technorati.com/tag/Ratatouille&quot; rel=&quot;tag&quot;&gt;Ratatouille&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/Paris&quot; rel=&quot;tag&quot;&gt;Paris&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/rat&quot; rel=&quot;tag&quot;&gt;rat&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/movie&quot; rel=&quot;tag&quot;&gt;movie&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/3242795539417555428/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/3242795539417555428' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3242795539417555428'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3242795539417555428'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/08/ratatouille-great-great-movie.html' title='Ratatouille : a great great movie'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQPEVkZFMgSyASk8-PBhEfzVkvdTzJIpjySPEwKHYYoGyYm6Ae4WSCFZX8pJojyS_eoVcqwGRbeJozY_AARjJwUxDjYryYQ-cg8cJ-93mzlpIU81yDt_ktxGffe2sl50IBfMU3ow/s72-c/ratatouille.htm" height="72" width="72"/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-5630543511381791935</id><published>2007-08-23T07:05:00.000+00:00</published><updated>2007-08-23T07:10:58.742+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="China"/><category scheme="http://www.blogger.com/atom/ns#" term="photo"/><title type='text'>Simataï: marvellous the chinese Great Wall</title><content type='html'>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjW0gKP6r5mKI4Z40nGmgy3UjyyFViGuNHWK1_TUuErx94Eh9SHoYE1W-UYffGnIcQKOrBJAEkBj-tNHnD-Op6UudCEyKCeYP6xChW3jVIW0R0S5MYnALbcoo6Kv9JL1EDxbICO/s1600-h/PICT0493.JPG&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjW0gKP6r5mKI4Z40nGmgy3UjyyFViGuNHWK1_TUuErx94Eh9SHoYE1W-UYffGnIcQKOrBJAEkBj-tNHnD-Op6UudCEyKCeYP6xChW3jVIW0R0S5MYnALbcoo6Kv9JL1EDxbICO/s400/PICT0493.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5094858427499525890&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;After two weeks of holidays in China, some pics of the Great Wall: the part of Simataï. This part is worth be seeing, it has only very few tourists there, it was not rebuilt yet and thus kept any sound charms… Moreover there is low almost no salesman on the run. To make or see absolutly if you pass near it. It is necessary to be in good physical condition to be able to go up in Simataï and especially a good pair of walking shoe…&lt;br /&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYnWm0i9DxsfItGnZxz6O39suwsP1ixT77SStCWYP-4TQ5QMACUtqevAvsLWgsgkiPFy3QroxTLp2Sy3tWGN5DhhQ0iyZOWl-QVs0luAvFk1AgStovwHktWSC2fZg4gomSsbjq/s400/PICT0497.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5094859754644420370&quot; border=&quot;0&quot; /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;                               &lt;span class=&quot;post-author vcard&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;tag_list&quot;&gt;Tags: &lt;span class=&quot;tags&quot;&gt;&lt;a href=&quot;http://technorati.com/tag/Simata%C3%AF&quot; rel=&quot;tag&quot;&gt;Simataï&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/Great+Wall&quot; rel=&quot;tag&quot;&gt;Great Wall&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/China&quot; rel=&quot;tag&quot;&gt;China&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/5630543511381791935/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/5630543511381791935' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5630543511381791935'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5630543511381791935'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/08/simata-marvellous-chinese-great-wall.html' title='Simataï: marvellous the chinese Great Wall'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjW0gKP6r5mKI4Z40nGmgy3UjyyFViGuNHWK1_TUuErx94Eh9SHoYE1W-UYffGnIcQKOrBJAEkBj-tNHnD-Op6UudCEyKCeYP6xChW3jVIW0R0S5MYnALbcoo6Kv9JL1EDxbICO/s72-c/PICT0493.JPG" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-4445715871816130558</id><published>2007-08-23T06:58:00.000+00:00</published><updated>2007-08-23T07:03:10.865+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="book"/><title type='text'>My week Harry Potter: The Deathly Hollows and the movie</title><content type='html'>&lt;p style=&quot;text-align: justify;&quot;&gt;I was in the FNAC (a big french store for books, disks, computers...), and I did not resist to buy the last Harry Potter : “Harry Potter and The Deathly Hollows”. The intrigue puts a little time to set up itself, but one is glad finally to know the fate of Harry Potter. Poor Albus sees its will have put a little at evil but the final he will be rehabilitated… As a conclusion, it is not great literature (good it is true it is written in English…) but that slackens… On the other hand I went to see the same week : “Harry Potter and the Order of the Phoenix”&lt;br /&gt;&lt;/p&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjT2peT8phNky7t_go-zC4EmTvS3g8o63It-laxREwuy-qd81Wt2hTW8pW6Vg8ABfP0f-5n2bXPrt0o46dVGrifuyXpzZDReqETi8XaQJ20wDU_TaMiktlZqxs6wXXvNsJCPCAhaQ/s1600-h/harrypotter_ordrephenix.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjT2peT8phNky7t_go-zC4EmTvS3g8o63It-laxREwuy-qd81Wt2hTW8pW6Vg8ABfP0f-5n2bXPrt0o46dVGrifuyXpzZDReqETi8XaQJ20wDU_TaMiktlZqxs6wXXvNsJCPCAhaQ/s400/harrypotter_ordrephenix.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5100485828764847586&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;there too the intrigue puts much time to set up itself… certain elements overlooked and others are presented in an unmethodical way! I am fan of the 4 first opus, where the dream and fairyhood are omnipresent… I know the last Harry Potter want to be much darker as Voldemort seizes the power… But that does not want to say that the film must all sacrifice to the darkness. In conclusion, I was very disappointed! A good film: to see in DVD not more&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;tag_list&quot;&gt;Tags: &lt;span class=&quot;tags&quot;&gt;&lt;a href=&quot;http://technorati.com/tag/Harry+Potter+and+The+Deathly+Hollows&quot; rel=&quot;tag&quot;&gt;Harry Potter and The Deathly Hollows&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/Albus&quot; rel=&quot;tag&quot;&gt;Albus&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/Voldemort&quot; rel=&quot;tag&quot;&gt;Voldemort&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/Harry+Potter+and+the+Order+of+the+Phoenix&quot; rel=&quot;tag&quot;&gt;Harry Potter and the Order of the Phoenix&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/Harry&quot; rel=&quot;tag&quot;&gt;Harry&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/fairyhood&quot; rel=&quot;tag&quot;&gt;fairyhood&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/4445715871816130558/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/4445715871816130558' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4445715871816130558'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4445715871816130558'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/08/my-week-harry-potter-deathly-hollows.html' title='My week Harry Potter: The Deathly Hollows and the movie'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjT2peT8phNky7t_go-zC4EmTvS3g8o63It-laxREwuy-qd81Wt2hTW8pW6Vg8ABfP0f-5n2bXPrt0o46dVGrifuyXpzZDReqETi8XaQJ20wDU_TaMiktlZqxs6wXXvNsJCPCAhaQ/s72-c/harrypotter_ordrephenix.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-796060516805805538</id><published>2007-08-23T06:53:00.000+00:00</published><updated>2007-08-23T07:03:51.561+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Blogger"/><category scheme="http://www.blogger.com/atom/ns#" term="Exalead"/><category scheme="http://www.blogger.com/atom/ns#" term="Google"/><category scheme="http://www.blogger.com/atom/ns#" term="Internet"/><category scheme="http://www.blogger.com/atom/ns#" term="search engine"/><title type='text'>Enough of Google: test Exalead</title><content type='html'>&lt;p style=&quot;text-align: justify;&quot;&gt;If you are fed up of the oneself-saying supremacy of Google as &quot;search engine&quot; on Internet, I propose you to test a new search engine, of the new generation: &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://www.exalead.com/search&amp;prev=/language_tools&quot;&gt;Exalead&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhrMwgy3scoR6AGzTLvgJSPA6JzdyBmqY4-zm7_tlfEXIgVzrKvdO6KiU8nvCxqywsnQwaK7GSp5xx24dSHwvG7lNSN_8UXN_Y7sRcHlRtcb29q23DMHR8ir-k2ZwiaqokzaWnbtA/s1600-h/exalead_1.png&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhrMwgy3scoR6AGzTLvgJSPA6JzdyBmqY4-zm7_tlfEXIgVzrKvdO6KiU8nvCxqywsnQwaK7GSp5xx24dSHwvG7lNSN_8UXN_Y7sRcHlRtcb29q23DMHR8ir-k2ZwiaqokzaWnbtA/s400/exalead_1.png&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5101036976148139506&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;this search engine was or is still implied in the European search engine &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://www.gtfa-2007.com/&amp;prev=/language_tools&quot;&gt;Quaero&lt;/a&gt;, if this last is born or not…. The strong points of Exalead are thumbnail previews of the sites&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiqticc9NphC7XaMjtZXOMgRmX8nv9GCJZaHuqv2AgTjzj7pBJXuFyJsk253oTZB8T1ma-ysyi9N-p972GXc8-3aG01ggef6ePjF09iGs-bzek14amP8-ieZPXlVGCuEQwSdWe07Q/s1600-h/exalead_2.png&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiqticc9NphC7XaMjtZXOMgRmX8nv9GCJZaHuqv2AgTjzj7pBJXuFyJsk253oTZB8T1ma-ysyi9N-p972GXc8-3aG01ggef6ePjF09iGs-bzek14amP8-ieZPXlVGCuEQwSdWe07Q/s400/exalead_2.png&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5101039295430479362&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;I like also the possibility of making research directly in Wikipédia, the search engine for films is very good and the zapette is a brilliant idea: try it absolutely&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzHwpjwBqpdCEXoUmaB3Uj4SZbKw6PfKNNrTWMu8VbZUWTkKnFA0pgpeChYOq7D7qpnphV2_kHu3DCWePHhwf4Tk0ALjvr4r5kXPI1I1P7DlS3F6hVqTUX7VMx0wLI2_ELVtUCRw/s1600-h/exalead_3.png&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzHwpjwBqpdCEXoUmaB3Uj4SZbKw6PfKNNrTWMu8VbZUWTkKnFA0pgpeChYOq7D7qpnphV2_kHu3DCWePHhwf4Tk0ALjvr4r5kXPI1I1P7DlS3F6hVqTUX7VMx0wLI2_ELVtUCRw/s400/exalead_3.png&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5101039299725446674&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt; moreover Exalead allows you to carry out research with regular expressions, the famous RegEx: the experts will appreciate. To finish and like quality guarantees: COCK-A-DOODLE-DOO, this search engine is French and was founded by &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://fr.wikipedia.org/wiki/Fran%25C3%25A7ois_Bourdoncle&amp;prev=/language_tools&quot;&gt;François Bourdoncle&lt;/a&gt;: a pure product of the best French schools (Polytechnique and Mines)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot; class=&quot;tag_list&quot;&gt;Tags: &lt;span class=&quot;tags&quot;&gt;&lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/Exalead&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;Exalead&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/Google&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;Google&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/RegEx&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;RegEx&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/expression%2Br%25C3%25A9guli%25C3%25A8re&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;regular expression&lt;/a&gt;&lt;/span&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/zapette&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;zapette&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/Wikipedia&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;Wikipedia&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/Fran%25C3%25A7ois%2BBourdoncle&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;François Bourdoncle&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/Bourdoncle&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;Bourdoncle&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/Polytechnique&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;Polytechnic&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/X&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;X&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/Mines&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;Mines&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/796060516805805538/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/796060516805805538' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/796060516805805538'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/796060516805805538'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/08/enough-of-google-test-exalead.html' title='Enough of Google: test Exalead'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhrMwgy3scoR6AGzTLvgJSPA6JzdyBmqY4-zm7_tlfEXIgVzrKvdO6KiU8nvCxqywsnQwaK7GSp5xx24dSHwvG7lNSN_8UXN_Y7sRcHlRtcb29q23DMHR8ir-k2ZwiaqokzaWnbtA/s72-c/exalead_1.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-4043907563900501286</id><published>2007-08-21T15:35:00.000+00:00</published><updated>2007-08-21T15:38:44.148+00:00</updated><title type='text'>Help for your MacBook and other Howtos</title><content type='html'>I will encourage the blog of a friend of mine : a small blog entirely dedicated &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://mymacbook.blogspot.com/&amp;amp;prev=/language_tools&quot;&gt;to the wonderfull universe of MacBook&lt;/a&gt;… Happy guy or girl, who has a MacBook, do not hesitate to visit him&lt;div class=&quot;tag_list&quot;&gt;Tags: &lt;span class=&quot;tags&quot;&gt;&lt;a href=&quot;http://technorati.com/tag/macbook&quot; rel=&quot;tag&quot;&gt;macbook&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/howto&quot; rel=&quot;tag&quot;&gt;howto&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/4043907563900501286/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/4043907563900501286' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4043907563900501286'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4043907563900501286'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/08/help-for-your-macbook-and-other-howtos.html' title='Help for your MacBook and other Howtos'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-6093871929901539946</id><published>2007-06-19T18:27:00.000+00:00</published><updated>2007-06-19T18:30:17.550+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Brussels"/><category scheme="http://www.blogger.com/atom/ns#" term="Comic"/><title type='text'>A little walk in Brussels</title><content type='html'>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://maps.google.com/maps/ms%3Fie%3DUTF8%26hl%3Dfr%26msa%3D0%26msid%3D112215694493990902644.00000112ed6ab5309515d%26om%3D1%26ll%3D50.85115,4.347968%26spn%3D0.011488,0.036392%26z%3D15&amp;prev=/language_tools&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhEzvQWQyKnA5SrOv6ImiBj-q9kAczCi-qlYG427lKTV3Me5hzGf-uSlJuHn6gMfE_7k7jQIX8svIp_m08HKRYApmNKIMpVjrP2rIXq0Vy3VsbUpICHZd-kHuo9Y_-BI0nIPZwlJA/s400/ballade_bruxelloise_BD.png&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5077838680155751154&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;A small walk in Brussels with some &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://maps.google.com/maps/ms%3Fie%3DUTF8%26hl%3Dfr%26msa%3D0%26msid%3D112215694493990902644.00000112ed6ab5309515d%26amp%3Bamp%3Bz%3D16%26om%3D1&amp;amp;prev=/language_tools&quot;&gt;Comic strips&lt;/a&gt; on walls. Good walk but be careful to not knock your head against a wall… Who knows what it could happen</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/6093871929901539946/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/6093871929901539946' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/6093871929901539946'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/6093871929901539946'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/06/little-walk-in-brussels.html' title='A little walk in Brussels'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhEzvQWQyKnA5SrOv6ImiBj-q9kAczCi-qlYG427lKTV3Me5hzGf-uSlJuHn6gMfE_7k7jQIX8svIp_m08HKRYApmNKIMpVjrP2rIXq0Vy3VsbUpICHZd-kHuo9Y_-BI0nIPZwlJA/s72-c/ballade_bruxelloise_BD.png" height="72" width="72"/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-9024057885157588206</id><published>2007-06-08T16:28:00.000+00:00</published><updated>2007-06-08T16:36:35.051+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="cake"/><category scheme="http://www.blogger.com/atom/ns#" term="recipe"/><title type='text'>Cake with Etorki, prune and Italian ham</title><content type='html'>An easy recipe for a delicious cake… Again... YES, because a cake is practical, easy and most of the time mine are delicious&lt;br /&gt;&lt;p&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Ingredients:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;3 eggs&lt;/li&gt;&lt;li&gt;150g of flour&lt;/li&gt;&lt;li&gt;1 bag of yeast&lt;br /&gt;&lt;/li&gt;&lt;li&gt;8cl oil&lt;br /&gt;&lt;/li&gt;&lt;li&gt;13cl of full-cream milk&lt;br /&gt;&lt;/li&gt;&lt;li&gt;100g Gruyere&lt;br /&gt;&lt;/li&gt;&lt;li&gt;salt and pepper&lt;/li&gt;&lt;li&gt;100g of Etorki (cheese)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;4 piece of Italian ham&lt;br /&gt;&lt;/li&gt;&lt;li&gt;125g stoned prune&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Preparation&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Before anything, it is necessary to preheat the furnace on 180°C. During this time, in a salad bowl, mix the flour with yeast then with eggs.&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhf35So_305SVif1eP2Xthgz7RgHs5WtCRh9z-2nEplAEGJA12FKGjM7610SjUnHzwRAYY1IWPehlZk_iQ3prw-s6kj_pArLQQDzcoRaBQeL1LQVWRbTeUuvxW4RnEghy4d_YH4ug/s1600-h/pict0008.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhf35So_305SVif1eP2Xthgz7RgHs5WtCRh9z-2nEplAEGJA12FKGjM7610SjUnHzwRAYY1IWPehlZk_iQ3prw-s6kj_pArLQQDzcoRaBQeL1LQVWRbTeUuvxW4RnEghy4d_YH4ug/s400/pict0008.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5073727795158057362&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;Incroporate oil gradually then the milk heated beforehand in the microwaves (1 minute is sufficient). Add the Gruyere, mix and add salt and pepper.&lt;br /&gt;&lt;br /&gt;Now the recipe is quite finish, add Etorki cut in small dice, ham in plates and prunes half cutted.&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnPq68SxAXUQ7nVbZonM9kLS9aG3KdHnFXuoak6jWcToiIRejnQ3gBJBDtV6O0WYByklwiQt7ddCyXY43dtvJAajLGOABUf8TKPlOVSrvCsmX3sNvle7KBxtAU81gr_tVxOJne8w/s1600-h/pict0009.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnPq68SxAXUQ7nVbZonM9kLS9aG3KdHnFXuoak6jWcToiIRejnQ3gBJBDtV6O0WYByklwiQt7ddCyXY43dtvJAajLGOABUf8TKPlOVSrvCsmX3sNvle7KBxtAU81gr_tVxOJne8w/s400/pict0009.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5073727799453024674&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;Pour the preparation inside the moult and to charge during 45 minutes in the furnace.&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhcW96vftkwCFGaq1uLQ50X7fO3oDUVtB4yZ9fstpML7E73Xfjoff5FoHgZdp3y-BDfl_2frTVt6Kq63noqE3yX490U_rXJvIyMlhwIUq-FpkkNR8F0M2JYaBu50EnxBdGV7cseSA/s1600-h/pict0010.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhcW96vftkwCFGaq1uLQ50X7fO3oDUVtB4yZ9fstpML7E73Xfjoff5FoHgZdp3y-BDfl_2frTVt6Kq63noqE3yX490U_rXJvIyMlhwIUq-FpkkNR8F0M2JYaBu50EnxBdGV7cseSA/s400/pict0010.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5073727803747991986&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The recipe is simple and delicious. I am sure you will love it&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiR3FIcG_raW0CRq04WRwy0PimWJIY038ExHJFNVclTKcDgzgOy6iGGUosj9MNC94OegnpPKXiRjSkwdIs_zdP-uVcbdkuegnf3yKmfNiRV3k8xy_0dO5jMLsGHizw6BU29ecMmkA/s1600-h/pict0012.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiR3FIcG_raW0CRq04WRwy0PimWJIY038ExHJFNVclTKcDgzgOy6iGGUosj9MNC94OegnpPKXiRjSkwdIs_zdP-uVcbdkuegnf3yKmfNiRV3k8xy_0dO5jMLsGHizw6BU29ecMmkA/s400/pict0012.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5073727812337926610&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;tag_list&quot;&gt;Tags: &lt;span class=&quot;tags&quot;&gt;&lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/etorki&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;etorki&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/jambon&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;ham&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/cake&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;cake&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/pruneau&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;prune&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/9024057885157588206/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/9024057885157588206' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/9024057885157588206'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/9024057885157588206'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/06/cake-in-etorki-prune-and-italian-ham.html' title='Cake with Etorki, prune and Italian ham'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhf35So_305SVif1eP2Xthgz7RgHs5WtCRh9z-2nEplAEGJA12FKGjM7610SjUnHzwRAYY1IWPehlZk_iQ3prw-s6kj_pArLQQDzcoRaBQeL1LQVWRbTeUuvxW4RnEghy4d_YH4ug/s72-c/pict0008.jpg" height="72" width="72"/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-2459240272892483011</id><published>2007-05-15T06:21:00.000+00:00</published><updated>2007-05-15T06:24:47.789+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="cook"/><category scheme="http://www.blogger.com/atom/ns#" term="Paris"/><category scheme="http://www.blogger.com/atom/ns#" term="restaurant"/><title type='text'>La Butte aux Cailles and its restaurant: &quot;Les Cailloux&quot;</title><content type='html'>&lt;p&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.verlaine-langue.com/images/situation2bis.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 259px; height: 412px;&quot; src=&quot;http://www.verlaine-langue.com/images/situation2bis.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;If you walk one day on the side of the Butte aux Cailles and that you start to feel the hunger to come, I advise you a small halt at the restaurant “Les Cailloux”. It is a small Italian restaurant not too far from the place of the Butte aux Cailles (XIII), with a middle-class Bohemian environment… but that&#39;s why we like the Butte aux Cailles, isn&#39;t it? The decoration is sober although a little sinks, with lamps which do not finish any going down… The reception is cordial and the service is fast. I can simply advise it to you for a meal with friends.&lt;br /&gt;&lt;br /&gt;(The picture is borrowed from the site of the &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://www.verlaine-langue.com/&amp;amp;prev=/language_tools&quot;&gt;Verlaine Institute&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;tag_list&quot;&gt;Tags: &lt;span class=&quot;tags&quot;&gt;&lt;a href=&quot;http://technorati.com/tag/restaurant&quot; rel=&quot;tag&quot;&gt;restaurant&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/Les+Cailloux&quot; rel=&quot;tag&quot;&gt;Les Cailloux&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/Paris&quot; rel=&quot;tag&quot;&gt;Paris&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/Buttes+aux+Cailles&quot; rel=&quot;tag&quot;&gt;Buttes aux Cailles&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/Cailles&quot; rel=&quot;tag&quot;&gt;Cailles&lt;/a&gt;, &lt;a href=&quot;http://technorati.com/tag/Butte&quot; rel=&quot;tag&quot;&gt;Butte&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;tags&quot;&gt;&lt;a href=&quot;http://technorati.com/tag/Butte&quot; rel=&quot;tag&quot;&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/2459240272892483011/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/2459240272892483011' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2459240272892483011'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2459240272892483011'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/05/la-butte-aux-cailles-and-its-restaurant.html' title='La Butte aux Cailles and its restaurant: &quot;Les Cailloux&quot;'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-6417876155709313247</id><published>2007-05-15T06:01:00.000+00:00</published><updated>2007-05-15T06:07:12.861+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="game"/><category scheme="http://www.blogger.com/atom/ns#" term="second life"/><title type='text'>Second Life: my first avatar</title><content type='html'>Second Life is very hype so I have  just created my avatar and plug me to Second Life… I am not yet totally accustomed with the interface, but it is rather easy to move and interact with the objects. The inhabitants of Second Life (avatars) are very cool and never hesitate to guide you and to help you.&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEix2zr5WijjjxCUQOzfNHnP84S8D1xmS9tQgrrJfCk7URjfSnjiqV3Etwf6sJbfXo8w35cM99z2n_rlLC2eaAQHruRfw7w20szwlppl2JawNw7LNDuFqZ9E01KBso-mACE-tY-g8A/s1600-h/secondlife-2.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEix2zr5WijjjxCUQOzfNHnP84S8D1xmS9tQgrrJfCk7URjfSnjiqV3Etwf6sJbfXo8w35cM99z2n_rlLC2eaAQHruRfw7w20szwlppl2JawNw7LNDuFqZ9E01KBso-mACE-tY-g8A/s400/secondlife-2.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5064306639933378706&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;Above a small island that I discovered thanks to Zelena (an avatar met on SL), normally it is a beach of nudists, there is some one of them but not every people… The good point of this small island is that it is rather easy  to gain Linden (the local dollar, which will enable you to buy new accessories for your avatar, or to take part in other activities of this world). Indeed on this beach, you can gain 2L$ for 10 minutes sunbathing and you can take part in a lottery and gain even more Linden (not later than yesterday, I gained 238L$)&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhrD73F5MR6E_frQsXYtEM-AyzvUkXD_a03swc5vIeXIomAAfJtR0qrttkqP7Z5TkwL1vHI24EeBo_fXfOUPNE7DWoKAAZtUwMFRd1WqALzSAHQoLMQUVnqKRvlt1ckiSuTRYhH7A/s1600-h/secondlife-1.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhrD73F5MR6E_frQsXYtEM-AyzvUkXD_a03swc5vIeXIomAAfJtR0qrttkqP7Z5TkwL1vHI24EeBo_fXfOUPNE7DWoKAAZtUwMFRd1WqALzSAHQoLMQUVnqKRvlt1ckiSuTRYhH7A/s400/secondlife-1.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5064306635638411394&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;My avatar, on the bath towel which pays you to sunbathe… As you have probably noticed, my avatar is a default one and looks like a first 3D game of Sega, I advise you to seek a news skin (skin) and to modify your avatar a little… Hair flex adds also much to realism…&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgEb2ZQMwARbtEO4f-PJTQf8MoX_-dumrEg8iqWDqKtXbaIl3IDUFvGp1uqptAEKukSVfHwQ_W6Qjr8TMFXHFsHaBdbJgK9vSO0tIPV575ahYCiwmkgSw64PGHl4I5Ic6C5chsk3w/s1600-h/secondlife-3.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgEb2ZQMwARbtEO4f-PJTQf8MoX_-dumrEg8iqWDqKtXbaIl3IDUFvGp1uqptAEKukSVfHwQ_W6Qjr8TMFXHFsHaBdbJgK9vSO0tIPV575ahYCiwmkgSw64PGHl4I5Ic6C5chsk3w/s400/secondlife-3.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5064306639933378722&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;An air sight of the dancefloor. I hope to find you on SL (do not hesitate to contact me if you want to be escorted)</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/6417876155709313247/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/6417876155709313247' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/6417876155709313247'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/6417876155709313247'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/05/second-life-my-first-avatar.html' title='Second Life: my first avatar'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEix2zr5WijjjxCUQOzfNHnP84S8D1xmS9tQgrrJfCk7URjfSnjiqV3Etwf6sJbfXo8w35cM99z2n_rlLC2eaAQHruRfw7w20szwlppl2JawNw7LNDuFqZ9E01KBso-mACE-tY-g8A/s72-c/secondlife-2.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-9080683022813058299</id><published>2007-05-10T06:47:00.000+00:00</published><updated>2007-05-10T06:50:33.894+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="cook"/><title type='text'>Vitaminized salad with banana and apple</title><content type='html'>&lt;div style=&quot;text-align: justify;&quot;&gt;A small salad, with banana: a true delight &lt;img class=&quot;emoticon&quot; src=&quot;http://wolverinex02.googlepages.com/icon_razz.gif&quot; alt=&quot;razz&quot; title=&quot;razz&quot; height=&quot;15&quot; width=&quot;15&quot; /&gt; Prepared in a few minutes, you will enjoy it&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Ingredients:&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;ul style=&quot;text-align: justify;&quot;&gt;&lt;li&gt;2 bananas&lt;/li&gt;&lt;li&gt;1/2 cucumber&lt;/li&gt;&lt;li&gt;1 apple&lt;/li&gt;&lt;li&gt;2 big spoons of pinions of pine&lt;/li&gt;&lt;li&gt;some mesclun (a salad)&lt;/li&gt;&lt;li&gt;a little olive oil&lt;/li&gt;&lt;li&gt;1/2 lemon&lt;/li&gt;&lt;li&gt;1/2 grapefruit&lt;/li&gt;&lt;li&gt;salt and pepper&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Preparation:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Prepare salad. Heat the pinions of pine on a frying pan, stop when they start to roast. Press lemon and grapefruit, put the juice in a large dish at salad, cut bananas out of discs and add them to it. Raper the apple and add it, cut cucumber in small pieces and add it too. Finally, it only remains to add all: the salad, pinions, salt, pepper and oil… Mix a little to homogenize the preparation: it is done…&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The banana adds a little heat and sweetened to salad: enjoy and do not hesitate to eat this dish  again and again &lt;img class=&quot;emoticon&quot; src=&quot;http://wolverinex02.googlepages.com/icon_wink.gif&quot; alt=&quot;wink&quot; title=&quot;wink&quot; height=&quot;15&quot; width=&quot;15&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;tag_list&quot;&gt;Tags: &lt;span class=&quot;tags&quot;&gt;&lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/banane&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;banana&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/mesclun&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;mesclun&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/pignons%2Bde%2Bpin&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;pinions of pine&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/salade&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;salad&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/citron&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;lemon&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/pamplemousse&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;grapefruit&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/concombre&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;cucumber&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/9080683022813058299/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/9080683022813058299' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/9080683022813058299'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/9080683022813058299'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/05/vitaminized-salad-with-banana-and-apple.html' title='Vitaminized salad with banana and apple'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-8590066877349154816</id><published>2007-05-04T16:17:00.000+00:00</published><updated>2007-05-04T16:24:47.473+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="cook"/><category scheme="http://www.blogger.com/atom/ns#" term="receipt"/><title type='text'>Muffins with Parmesan and Parma ham</title><content type='html'>&lt;p&gt;A receipt of Gordon Ramsay, again… It is the third receipt which we test &lt;img class=&quot;emoticon&quot; src=&quot;http://wolverinex02.googlepages.com/icon_wink.gif&quot; alt=&quot;wink&quot; title=&quot;wink&quot; height=&quot;15&quot; width=&quot;15&quot; /&gt; and the third receipt is quite as delicious as the preceding ones… It is a book which I advise you to buy and use to impress your guests at the time of an &quot;aperitif dinatoire&quot;, or for a &quot;tête à tête&quot;&lt;img class=&quot;emoticon&quot; src=&quot;http://wolverinex02.googlepages.com/icon_razz.gif&quot; alt=&quot;razz&quot; title=&quot;razz&quot; height=&quot;15&quot; width=&quot;15&quot; /&gt; This time it is a receipt of muffins with Parmesan and Parma ham whose preparation is a little strange at the beginning but whose result is excellent&lt;img class=&quot;emoticon&quot; src=&quot;http://wolverinex02.googlepages.com/icon_wink.gif&quot; alt=&quot;wink&quot; title=&quot;wink&quot; height=&quot;15&quot; width=&quot;15&quot; /&gt;. Without waiting more, the receipt:&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi-h-Md6x3jwyPKj6kaZ8Zi7WyeIHqzhJSOm3pejcjyJCJRzJ_msHVCIL0JeVCbwTw2Kdima5_rra9fnbETAN9g8-pqmKNUn4OI39yXStKrYSTqGM3afLUiZvjvQTjK2ibMa4_79w/s1600-h/pict0166.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi-h-Md6x3jwyPKj6kaZ8Zi7WyeIHqzhJSOm3pejcjyJCJRzJ_msHVCIL0JeVCbwTw2Kdima5_rra9fnbETAN9g8-pqmKNUn4OI39yXStKrYSTqGM3afLUiZvjvQTjK2ibMa4_79w/s400/pict0166.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5060737723973865586&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Ingredients:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;85g butter not salted&lt;/li&gt;&lt;li&gt;100g of flour&lt;/li&gt;&lt;li&gt;a pinch of salt&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Parma ham 100g, (small pieces)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;3 eggs&lt;br /&gt;&lt;/li&gt;&lt;li&gt;4 sage sheets&lt;/li&gt;&lt;li&gt;40g Parmesan&lt;br /&gt;&lt;/li&gt;&lt;li&gt;220ml of water&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Preparation:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;First of all, put the oven to 200°. During this time, make gently heat water with butter in a pan, to mix them &lt;img class=&quot;emoticon&quot; src=&quot;http://wolverinex02.googlepages.com/icon_eek.gif&quot; alt=&quot;eek&quot; title=&quot;eek&quot; height=&quot;15&quot; width=&quot;15&quot; /&gt; … I know water and fat does not mix… But I had not warned you that this receipt is a little strange &lt;img class=&quot;emoticon&quot; src=&quot;http://wolverinex02.googlepages.com/icon_razz.gif&quot; alt=&quot;razz&quot; title=&quot;razz&quot; height=&quot;15&quot; width=&quot;15&quot; /&gt; When butter is quite molten increase fire. During this time mix salt with the flour. When the mixture starts to boil, add the salt-flour mixture and to withdraw fire to it. Mix vigorously until obtaining a homogeneous paste. Let cool.&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixKnzMreJ5jV5nbzJy8UVXQ1VIJDJDsj1G0VpmVdBfezNiWs4-D9yaHIewryb48-OptE0b6O9ZoB6Uy-bI5kp5BlvtWRqbxIVevdJGWWyAsxjUaj6oq12YtYw74A2r3rD7vH4Rig/s1600-h/pict0161.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixKnzMreJ5jV5nbzJy8UVXQ1VIJDJDsj1G0VpmVdBfezNiWs4-D9yaHIewryb48-OptE0b6O9ZoB6Uy-bI5kp5BlvtWRqbxIVevdJGWWyAsxjUaj6oq12YtYw74A2r3rD7vH4Rig/s400/pict0161.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5060737698204061746&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;Add eggs little by little to the mixture in order to obtain a homogeneous and flexible paste.&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiJ4aZVXG_MJ8hjyQLx4GvuiynpHUzJLRik7NfoX1ZIi72hcCMT8yeMEBXRJrosOXhXFnTV4Fa_FMX8Db8VQGYelJmIl1XKt7vPlZuklCU2pAxnSqvofcL42bjdzk_TB8WYB7eZ3g/s1600-h/pict0162.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiJ4aZVXG_MJ8hjyQLx4GvuiynpHUzJLRik7NfoX1ZIi72hcCMT8yeMEBXRJrosOXhXFnTV4Fa_FMX8Db8VQGYelJmIl1XKt7vPlZuklCU2pAxnSqvofcL42bjdzk_TB8WYB7eZ3g/s400/pict0162.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5060737702499029058&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;Then add the Parmesan, sage and Parma ham.&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgv7wNHZEaTIqT-yiKOrMIZKwO0gHW1IIswhE7POAoveLOfjrHeQdd49azrxhpEyTioJE1KwuP20GfQVNUBljWxB_oNhSSSj4ozeu0ms3NGpw-uh45qCigKRwllqsgQyB94HYx0iA/s1600-h/pict0163.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgv7wNHZEaTIqT-yiKOrMIZKwO0gHW1IIswhE7POAoveLOfjrHeQdd49azrxhpEyTioJE1KwuP20GfQVNUBljWxB_oNhSSSj4ozeu0ms3NGpw-uh45qCigKRwllqsgQyB94HYx0iA/s400/pict0163.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5060737711088963666&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;On a plate going to the oven, place a greaseproof paper sheet and made small heaps with the preparation (not more than 3 cm in diameter). Let cook during 20 to 25 minutes until muffins take a a little gilded color. Eat them hot or cold. Enjoy&lt;img class=&quot;emoticon&quot; src=&quot;http://wolverinex02.googlepages.com/icon_wink.gif&quot; alt=&quot;wink&quot; title=&quot;wink&quot; height=&quot;15&quot; width=&quot;15&quot; /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgTlIg3r2eVmlc-E2QTpxp2hBGhBBzgyoXc6yZiryMn73lZyzJSwFKuPVkDXPzim7SBlA4FL9uv9Kof-PApjEMKkmU-jSjVTicr56316DdTuwDqz-QV-SoEDxjsWxm_wHTH58yabg/s1600-h/pict0164.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgTlIg3r2eVmlc-E2QTpxp2hBGhBBzgyoXc6yZiryMn73lZyzJSwFKuPVkDXPzim7SBlA4FL9uv9Kof-PApjEMKkmU-jSjVTicr56316DdTuwDqz-QV-SoEDxjsWxm_wHTH58yabg/s400/pict0164.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5060737715383930978&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div class=&quot;tag_list&quot;&gt;Tags: &lt;span class=&quot;tags&quot;&gt;&lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/Gordon%2BRamsay&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;Gordon Ramsay&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/jambon&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;ham&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/Parme&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;Parma&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/Parmesan&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;Parmesan&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/sauge&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;sage&lt;/a&gt;, &lt;a href=&quot;http://66.249.91.104/translate_c?hl=fr&amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/muffin&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;muffin&lt;/a&gt;&lt;/span&gt; &lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/8590066877349154816/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/8590066877349154816' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8590066877349154816'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8590066877349154816'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/05/muffins-with-parmesan-and-parma-ham.html' title='Muffins with Parmesan and Parma ham'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi-h-Md6x3jwyPKj6kaZ8Zi7WyeIHqzhJSOm3pejcjyJCJRzJ_msHVCIL0JeVCbwTw2Kdima5_rra9fnbETAN9g8-pqmKNUn4OI39yXStKrYSTqGM3afLUiZvjvQTjK2ibMa4_79w/s72-c/pict0166.jpg" height="72" width="72"/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-5538030989447683093</id><published>2007-04-02T12:57:00.000+00:00</published><updated>2007-04-02T13:02:48.955+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="cake"/><category scheme="http://www.blogger.com/atom/ns#" term="cook"/><category scheme="http://www.blogger.com/atom/ns#" term="receipt"/><title type='text'>My banana-chocolate</title><content type='html'>&lt;div style=&quot;text-align: justify;&quot;&gt;Delicious receipt of banana-chocolate cake&lt;img class=&quot;emoticon&quot; src=&quot;http://wolverinex02.googlepages.com/icon_wink.gif&quot; alt=&quot;wink&quot; title=&quot;wink&quot; height=&quot;15&quot; width=&quot;15&quot; /&gt;   only for you  &lt;img class=&quot;emoticon&quot; src=&quot;http://wolverinex02.googlepages.com/icon_wink.gif&quot; alt=&quot;wink&quot; title=&quot;wink&quot; height=&quot;15&quot; width=&quot;15&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Ingredients:&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;ul style=&quot;text-align: justify;&quot;&gt;&lt;li&gt;3 eggs&lt;/li&gt;&lt;li&gt;sugar (brown sugar) 130g&lt;/li&gt;&lt;li&gt;50g of flour&lt;/li&gt;&lt;li&gt;1/2 yeast sachet&lt;/li&gt;&lt;li&gt;butter 150g&lt;/li&gt;&lt;li&gt;black chocolate 150g&lt;/li&gt;&lt;li&gt;10 black chocolate squares&lt;br /&gt;&lt;/li&gt;&lt;li&gt;1 banana&lt;/li&gt;&lt;/ul&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Receipt:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Preheat the oven  (180°c). Mix eggs with sugar, add the flour and mix again. Put the chocolate with the butter in the microwaves. Incorporate the butter-chocolate melted in the preparation. Add slices of banana and the black chocolate squares. Pour the preparation in a cake pan (butter it and add some flour) Let cook the mixture approximately 35 minutes. It is necessary to remove the pan when the cake is tepid then let it cool at ambient temperature. Personally I advise you to taste this cake with homemade chantilly&lt;img class=&quot;emoticon&quot; src=&quot;http://wolverinex02.googlepages.com/icon_wink.gif&quot; alt=&quot;wink&quot; title=&quot;wink&quot; height=&quot;15&quot; width=&quot;15&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;tag_list&quot;&gt;Tags: &lt;span class=&quot;tags&quot;&gt;&lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/cake&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;cake&lt;/a&gt;, &lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/banane&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;banana&lt;/a&gt;, &lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/chocolat&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;chocolate&lt;/a&gt;, &lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/cassonade&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;brown sugar&lt;/a&gt;, &lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/farine&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;flour&lt;/a&gt;, &lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/beurre&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;butter&lt;/a&gt;&lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/papilles%2Bgustatives&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;&lt;br /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/5538030989447683093/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/5538030989447683093' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5538030989447683093'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5538030989447683093'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/04/my-banana-chocolate.html' title='My banana-chocolate'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-5953708549557646629</id><published>2007-04-02T06:01:00.000+00:00</published><updated>2007-04-02T06:03:15.597+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="restaurant"/><title type='text'>Restaurant: Les délices d&#39;Aphtodite</title><content type='html'>&lt;div style=&quot;text-align: justify;&quot;&gt;A small Greek restaurant not far from the Latin Quarter, forget the kebabs, chips, Coke and other white sauces &lt;img class=&quot;emoticon&quot; src=&quot;http://wolverinex02.googlepages.com/icon_razz.gif&quot; alt=&quot;razz&quot; title=&quot;razz&quot; height=&quot;15&quot; width=&quot;15&quot; /&gt; !!! We are very far from the ordinary Greek, the price is there for you to recall it &lt;img class=&quot;emoticon&quot; src=&quot;http://wolverinex02.googlepages.com/icon_razz.gif&quot; alt=&quot;razz&quot; title=&quot;razz&quot; height=&quot;15&quot; width=&quot;15&quot; /&gt;  &lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://maps.google.fr/maps%3Ff%3Dq%26hl%3Dfr%26q%3D4,%2BRue%2BCandolle,%2B,%2B75005,%2BParis%26sll%3D47.15984,2.988281%26sspn%3D14.01553,39.023438%26layer%3D%26amp%3Bie%3DUTF8%26z%3D17%26ll%3D48.840204,2.351031%26spn%3D0.003312,0.012617%26amp%3Bt%3Dh%26om%3D1%26iwloc%3Daddr&amp;prev=/language_tools&quot;&gt;for you go there&lt;/a&gt; follow the guide. I highly recommend Pikilias to you, the reception is warm and elegant and finally the wines are very good! A must&lt;img class=&quot;emoticon&quot; src=&quot;http://wolverinex02.googlepages.com/icon_razz.gif&quot; alt=&quot;razz&quot; title=&quot;razz&quot; height=&quot;15&quot; width=&quot;15&quot; /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;tag_list&quot;&gt;Tags: &lt;span class=&quot;tags&quot;&gt;&lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/restaurant&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;restaurant&lt;/a&gt;, &lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/grec&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;Greek&lt;/a&gt;, &lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/Pikilias&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;Pikilias&lt;/a&gt;, &lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/kebab&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;kebab&lt;/a&gt;, &lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/Paris&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;Paris&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/5953708549557646629/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/5953708549557646629' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5953708549557646629'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5953708549557646629'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/04/restaurant-les-dlices-daphtodite.html' title='Restaurant: Les délices d&#39;Aphtodite'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-8071763449991329367</id><published>2007-04-02T05:15:00.000+00:00</published><updated>2007-04-02T05:33:53.666+00:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="cook"/><title type='text'>My receipt of fajitas</title><content type='html'>&lt;p&gt;My first tests for the fajitas were limited to buy a prepared sauce… But it is not really funny &lt;img class=&quot;emoticon&quot; src=&quot;http://wolverinex02.googlepages.com/icon_razz.gif&quot; alt=&quot;razz&quot; title=&quot;razz&quot; height=&quot;15&quot; width=&quot;15&quot; /&gt; thus I created my own receipt &lt;img class=&quot;emoticon&quot; src=&quot;http://wolverinex02.googlepages.com/icon_lol.gif&quot; alt=&quot;lol&quot; title=&quot;lol&quot; height=&quot;15&quot; width=&quot;15&quot; /&gt;:&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Ingredients:&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;3 onions (average)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;1 large green pepper&lt;/li&gt;&lt;li&gt;2 tomatoes well wall&lt;/li&gt;&lt;li&gt;2 limp of tomato puree (2*70g)&lt;/li&gt;&lt;li&gt;tabasco (for those which like)&lt;/li&gt;&lt;/ul&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Receipt:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Cut onions in very small pieces. Put some olive oil on the bottom of a large pan, add onions and make them bleach. During this time, cut tomatoes and sweet pepper in very small pieces… Add to onions, and to let it on the fire during a few minutes. Add the tomato puree finally, cover and let cook a good 10 minutes. Your sauce for the fajitas is ready.&lt;br /&gt;&lt;br /&gt;Good appetite  &lt;img class=&quot;emoticon&quot; src=&quot;http://wolverinex02.googlepages.com/icon_biggrin.gif&quot; alt=&quot;biggrin&quot; title=&quot;biggrin&quot; height=&quot;15&quot; width=&quot;15&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;tag_list&quot;&gt;Tags: &lt;span class=&quot;tags&quot;&gt;&lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/fajitas&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;fajitas&lt;/a&gt;, &lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/tabasco&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;tabasco&lt;/a&gt;, &lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/tomate&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;tomato&lt;/a&gt;, &lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/poivron%2Brouge&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;green pepper&lt;/a&gt;, &lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/oignon&amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;onion&lt;/a&gt;, &lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;amp;ie=UTF-8&amp;oe=UTF-8&amp;amp;langpair=fr%7Cen&amp;u=http://technorati.com/tag/mijoter&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;mijoter&lt;/a&gt;, &lt;a href=&quot;http://66.249.93.104/translate_c?hl=fr&amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;langpair=fr%7Cen&amp;amp;u=http://technorati.com/tag/napper&amp;amp;prev=/language_tools&quot; rel=&quot;tag&quot;&gt;napper&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/8071763449991329367/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/32354023/8071763449991329367' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8071763449991329367'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8071763449991329367'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/04/my-receipt-of-fajitas.html' title='My receipt of fajitas'/><author><name>ServalX02</name><uri>http://www.blogger.com/profile/17565492042196531090</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://photos1.blogger.com/blogger2/5454/3588/400/Snap_1821251270451182f559543.0.jpg'/></author><thr:total>0</thr:total></entry></feed>