<?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: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>2011-11-27T23:49:39.580Z</updated><category term='Python'/><category term='MacOSX'/><category term='wiki'/><category term='Internet'/><category term='manga'/><category term='Exalead'/><category term='China'/><category term='restaurant'/><category term='howto'/><category term='security'/><category term='cook'/><category term='search engine'/><category term='Blogger'/><category term='Comic'/><category term='game'/><category term='book'/><category term='Brussels'/><category term='Google'/><category term='site'/><category term='movie'/><category term='second life'/><category term='recipe'/><category term='receipt'/><category term='photo'/><category term='Chrome'/><category term='unix'/><category term='Linux'/><category term='Paris'/><category term='script'/><category term='video'/><category term='mathematics'/><category term='cake'/><category term='health'/><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?max-results=100'/><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?start-index=101&amp;max-results=100'/><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>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-32354023.post-5334081691271689781</id><published>2010-05-19T19:46:00.001Z</published><updated>2010-05-19T19:50:23.096Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='wiki'/><category scheme='http://www.blogger.com/atom/ns#' term='Python'/><category scheme='http://www.blogger.com/atom/ns#' term='script'/><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="_tipon(this)" onmouseout="_tipoff()"&gt;You can now download &lt;a href="http://www.dokuwiki.org/_export/code/tips:gource_analysis?codeblock=0"&gt;the  new version&lt;/a&gt; .&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;#!/bin/python&lt;br /&gt;&lt;br /&gt;"""&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;"""&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 = "11FFAA"&lt;br /&gt;GREEN = "00F000"&lt;br /&gt;vector = (1,10,100)&lt;br /&gt;start_page_name = "start"&lt;br /&gt;&lt;br /&gt;def RGBToHTMLColor(rgb_tuple):&lt;br /&gt;   """ convert an (R, G, B) tuple to #RRGGBB """&lt;br /&gt;   hexcolor = '#%02x%02x%02x' % rgb_tuple&lt;br /&gt;   # that's it! '%02x' means zero-padded, 2-digit hex values&lt;br /&gt;   return hexcolor&lt;br /&gt;&lt;br /&gt;def HTMLColorToRGB(colorstring):&lt;br /&gt;   """ convert #RRGGBB to an (R, G, B) tuple """&lt;br /&gt;   colorstring = colorstring.strip()&lt;br /&gt;   if colorstring[0] == '#': colorstring = colorstring[1:]&lt;br /&gt;   if len(colorstring) != 6:&lt;br /&gt;       raise ValueError, "input #%s is not in #RRGGBB format" % 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+"/*")&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;   """list all the files like *.changes,&lt;br /&gt;      read them and output them in gource's log syntax&lt;br /&gt;   """&lt;br /&gt;   for root, dirs, files in os.walk(path):&lt;br /&gt;       for i in files:&lt;br /&gt;           if  (re.search('\.changes$', 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;   """read the file and output for each line of this&lt;br /&gt;      file a log line for Gource&lt;br /&gt;   """&lt;br /&gt;&lt;br /&gt;   myfile = open(fichier, 'r')&lt;br /&gt;   for line in myfile.readlines():&lt;br /&gt;       mots = line.split('\t')&lt;br /&gt;       if len(mots)&gt;=6:&lt;br /&gt;           resultat = mots[0] + "|"&lt;br /&gt;           if mots[4] == '':&lt;br /&gt;               mots[4]  = 'Anonymous'&lt;br /&gt;           resultat += mots[4] + "|"&lt;br /&gt;           resultat += translate(mots[2]) + "|"&lt;br /&gt;           resultat += mots[3].replace(':', '/')&lt;br /&gt;           if mots[3].rfind(start_page_name) == len(mots[3])-len(start_page_name):&lt;br /&gt;               resultat += "|" + color&lt;br /&gt;           else:&lt;br /&gt;               resultat += "|" + 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;   """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;   """&lt;br /&gt;   if mot.upper == "C" or mot == 'cc' or mot == 'sc':&lt;br /&gt;       return "A"&lt;br /&gt;   elif mot.upper == "E" or mot == 'ec':&lt;br /&gt;       return "M"&lt;br /&gt;   elif mot.upper == "D" or mot == 'dc' or mot == 'hc':&lt;br /&gt;       return "D"&lt;br /&gt;   else:&lt;br /&gt;       return "M"&lt;br /&gt;&lt;br /&gt;def main(argv):&lt;br /&gt;   """principal function&lt;br /&gt;   """&lt;br /&gt;   try:&lt;br /&gt;       opts, args = getopt.getopt(argv, "hd:", ["help", "dokuwiki="])&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 ("-h","--help"):&lt;br /&gt;           usage()&lt;br /&gt;           sys.exit()&lt;br /&gt;       elif opt in ("-d","--dokuwiki"):&lt;br /&gt;           print listdirectory(arg,WHITE)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;def usage():&lt;br /&gt;   """this function will display how to use this script&lt;br /&gt;   """&lt;br /&gt;   print "This script will output change logs of a dokuwiki"&lt;br /&gt;   print "in a friendly way for gource"&lt;br /&gt;   print "how to use it :"&lt;br /&gt;   print "python gourcedoku.py -d ~/Sites/MyDokuwiki/ | sort &gt; dokusort.log"&lt;br /&gt;   print "and then :"&lt;br /&gt;   print "gource --log-format custom dokusort.log --stop-position 1.0 \ "&lt;br /&gt;   print "--stop-on-idle --file-idle-time 10000000"&lt;br /&gt;   print "---"&lt;br /&gt;   print "-h : help "&lt;br /&gt;   print "-d : meta directory of your dokuwiki"&lt;br /&gt;&lt;br /&gt;if __name__ == "__main__":&lt;br /&gt;   main(sys.argv[1:])&lt;br /&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-5334081691271689781?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&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.g?blogID=32354023&amp;postID=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.000Z</published><updated>2010-05-16T14:30:16.606Z</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="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_OVEdg0gDJ4E/S_AA1UM_t_I/AAAAAAAAACk/rcOy741MS84/s1600/IMG_1909.JPG"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 300px; height: 400px;" src="http://3.bp.blogspot.com/_OVEdg0gDJ4E/S_AA1UM_t_I/AAAAAAAAACk/rcOy741MS84/s400/IMG_1909.JPG" alt="" id="BLOGGER_PHOTO_ID_5471874463211436018" border="0" /&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="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_OVEdg0gDJ4E/S_ABD_j3DUI/AAAAAAAAACs/LipNgb8Brbw/s1600/IMG_1910.JPG"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_OVEdg0gDJ4E/S_ABD_j3DUI/AAAAAAAAACs/LipNgb8Brbw/s400/IMG_1910.JPG" alt="" id="BLOGGER_PHOTO_ID_5471874715368230210" border="0" /&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!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-5345534221417605419?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</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.g?blogID=32354023&amp;postID=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='http://3.bp.blogspot.com/_OVEdg0gDJ4E/S_AA1UM_t_I/AAAAAAAAACk/rcOy741MS84/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.001Z</published><updated>2010-05-16T14:22:14.855Z</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="360" width="480"&gt;&lt;param name="movie" value="http://www.dailymotion.com/swf/video/xdbdv9"&gt;&lt;br /&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;br /&gt;&lt;param name="allowScriptAccess" value="always"&gt;&lt;br /&gt;&lt;embed type="application/x-shockwave-flash" src="http://www.dailymotion.com/swf/video/xdbdv9" allowfullscreen="true" allowscriptaccess="always" height="360" width="480"&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&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-3406967168922372211?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</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.g?blogID=32354023&amp;postID=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.002Z</published><updated>2010-05-16T14:16:50.848Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='wiki'/><category scheme='http://www.blogger.com/atom/ns#' term='howto'/><category scheme='http://www.blogger.com/atom/ns#' term='Python'/><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 "dokuwiki/data/meta" in which the files "*. changes" contain exactly the information sought. For example, the file "systemes_visualisation.changes" 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'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;"""&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;"""&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;    """list all the files like *.changes,&lt;br /&gt;       read them and output them in gource's log syntax&lt;br /&gt;    """&lt;br /&gt;    for root, dirs, files in os.walk(path):&lt;br /&gt;        for i in files:&lt;br /&gt;            if  (re.search('\.changes$', i)):&lt;br /&gt;                fichier = os.path.join(root, i)&lt;br /&gt;                myfile = open(fichier, 'r')&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] + "|"&lt;br /&gt;                        resultat += mots[4] + "|"&lt;br /&gt;                        resultat += translate(mots[2]) + "|"&lt;br /&gt;                        resultat += fichier&lt;br /&gt;                        print resultat&lt;br /&gt;                    elif len(mots)==4:&lt;br /&gt;                        resultat = mots[0] + "|Anonymous|"&lt;br /&gt;                        resultat += translate(mots[2]) + "|"&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;    """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;    """&lt;br /&gt;    if mot == "C":&lt;br /&gt;        return "A"&lt;br /&gt;    elif mot == "E":&lt;br /&gt;        return "M"&lt;br /&gt;    else:&lt;br /&gt;        return "M"&lt;br /&gt;&lt;br /&gt;def main(argv):&lt;br /&gt;    """principal function&lt;br /&gt;    """&lt;br /&gt;    try:&lt;br /&gt;        opts, args = getopt.getopt(argv, "hd:", ["help", "dokuwiki="])&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 ("-h","--help"):&lt;br /&gt;            usage()&lt;br /&gt;            sys.exit()&lt;br /&gt;        elif opt in ("-d","--dokuwiki"):&lt;br /&gt;            print listdirectory2(arg)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;def usage():&lt;br /&gt;    """this function will display how to use this script&lt;br /&gt;    """&lt;br /&gt;    print "This script will output change logs of a dokuwiki"&lt;br /&gt;    print "in a friendly way for gource"&lt;br /&gt;    print "how to use it :"&lt;br /&gt;    print "python gourcedoku.py -d ~/Sites/MyDokuwiki/ | sort &gt; dokusort.log"&lt;br /&gt;    print "and then :"&lt;br /&gt;    print "gource --log-format custom dokusort.log --stop-position 1.0 \ "&lt;br /&gt;    print "--stop-on-idle --file-idle-time 10000000"&lt;br /&gt;    print "---"&lt;br /&gt;    print "-h : help "&lt;br /&gt;    print "-d : meta directory of your dokuwiki"&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;if __name__ == "__main__":&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.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-7520605287294487631?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</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.g?blogID=32354023&amp;postID=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.000Z</published><updated>2010-01-24T21:20:51.901Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='MacOSX'/><category scheme='http://www.blogger.com/atom/ns#' term='Chrome'/><category scheme='http://www.blogger.com/atom/ns#' term='Internet'/><title type='text'>Chromoxy</title><content type='html'>&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;I have just read  the &lt;span style="text-decoration: underline;"&gt;article&lt;/span&gt; &lt;a href="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"&gt;from  LifeHacker&lt;/a&gt; on how to block ads in Chrome browser Goolge ...&lt;/span&gt; &lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;ce  serait un peu comme l'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="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;Je me  suis dit que c'est pas mal mais pas très automatique ;-) j'ai donc écrit  un petit script pour cela :&lt;/span&gt; I told myself that it'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="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;#!/bin/sh&lt;/span&gt;  / bin / sh&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;# Demarrage de Privoxy&lt;/span&gt; # Starting Privoxy&lt;/span&gt; &lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;cd  /Applications/privoxy/&lt;/span&gt; cd / Applications / privoxy /&lt;/span&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;./privoxy  &amp;amp;&lt;/span&gt; . / privoxy &amp;amp;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;#  demarrage de Chrome&lt;/span&gt; # START Chrome&lt;/span&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;/Applications/Google\  Chrome.app/Contents/MacOS/Google\ Chrome  --proxy-server="http://127.0.0.1:8118"&lt;/span&gt; / Applications / Google \  Chrome.app / Contents / MacOS / Google Chrome - proxy-server =  "http://127.0.0.1:8118"&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;# retour maison&lt;/span&gt; # Return home&lt;/span&gt;&lt;br /&gt; &lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;cd&lt;/span&gt;  cd&lt;/span&gt; &lt;/blockquote&gt; &lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;et en utilisant &lt;a href="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"&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="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"&gt;Platypus,&lt;/a&gt;  it becomes super easy to then create a real application:&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sJwc_Uvy5q4/S1y17Z1WHuI/AAAAAAAAAaw/cFuct1KfKp4/s1600-h/Capture+d%E2%80%99%C3%A9cran+2010-01-24+%C3%A0+22.03.36.png"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 257px; height: 356px;" src="http://2.bp.blogspot.com/_sJwc_Uvy5q4/S1y17Z1WHuI/AAAAAAAAAaw/cFuct1KfKp4/s400/Capture+d%E2%80%99%C3%A9cran+2010-01-24+%C3%A0+22.03.36.png" alt="" id="BLOGGER_PHOTO_ID_5430415282853519074" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;Facile  non ;-) si vous êtes intéressés, je peux continuer à développer cette  "application".&lt;/span&gt; ;-) Not easy if you're interested, I can continue  to develop this "application".&lt;/span&gt; &lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;J'attends vos retours&lt;/span&gt; I await your return&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-6278535082725737236?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&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.g?blogID=32354023&amp;postID=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='http://2.bp.blogspot.com/_sJwc_Uvy5q4/S1y17Z1WHuI/AAAAAAAAAaw/cFuct1KfKp4/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.005Z</published><updated>2009-12-13T16:51:31.877Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='MacOSX'/><category scheme='http://www.blogger.com/atom/ns#' term='howto'/><title type='text'>How to import Mac OS X's icons in Visio</title><content type='html'>&lt;span id="result_box" class="long_text"&gt;&lt;span style="background-color: rgb(255, 255, 255);" title="Vous connaissez certainement le programme Visio de suite Microsoft Office qui permet de faire de très beaux schémas..." onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;You certainly know the program Visio (Microsoft Office) that allows to make beautiful diagrams ... &lt;/span&gt;&lt;span title="le seul petit hic, ce sont les icônes qui elles sont particulièrement moches..." onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;the only small snag, Visio's icons are particularly ugly... &lt;/span&gt;&lt;/span&gt;&lt;span id="result_box" class="long_text"&gt;&lt;span style="background-color: rgb(255, 255, 255);" title="Je vous propose donc deux petites techniques pour importer les très belles icônes de Snow Leopard dans votre Visio." onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;Therefore &lt;/span&gt;&lt;/span&gt;&lt;span id="result_box" class="long_text"&gt;&lt;span style="background-color: rgb(255, 255, 255);" title="Je vous propose donc deux petites techniques pour importer les très belles icônes de Snow Leopard dans votre Visio." onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&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="background-color: rgb(255, 255, 255);" title="Première méthode : à la main" onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;&lt;span style="font-weight: bold;"&gt;Method: by hand&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="background-color: rgb(255, 255, 255);" title="Sélectionnez l'application dont vous voulez récupérer l'icône (avec le fameux Pomme+C), puis ouvrez l'application Aperçu" onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;Select the application whose you want import the icon (with the famous &lt;span style="font-weight: bold;"&gt;Apple + C&lt;/span&gt;), then open the Preview application &lt;/span&gt;&lt;span style="background-color: rgb(255, 255, 255);" title="et choisissez &amp;quot;Créer à partir du presse-papiers&amp;quot;" onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;and choose "New from clipboard"&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_OVEdg0gDJ4E/SyUaKZNgLMI/AAAAAAAAACQ/FafANjnjOV4/s1600-h/Capture+d%E2%80%99%C3%A9cran+2009-12-13+%C3%A0+17.14.26.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 313px;" src="http://1.bp.blogspot.com/_OVEdg0gDJ4E/SyUaKZNgLMI/AAAAAAAAACQ/FafANjnjOV4/s400/Capture+d%E2%80%99%C3%A9cran+2009-12-13+%C3%A0+17.14.26.png" alt="" id="BLOGGER_PHOTO_ID_5414762892851424450" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span id="result_box" class="long_text"&gt;&lt;span style="background-color: rgb(255, 255, 255);" title="il ne vous reste plus qu'à enregistrer sous et choisir le format PNG." onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;you will just have to &lt;span style="font-weight: bold;"&gt;save it as&lt;/span&gt; and choose the PNG format. &lt;/span&gt;&lt;span title="Vous pouvez maintenant importer votre image dans Visio." onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;You can now import your image into Visio.&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_OVEdg0gDJ4E/SyUaRbaKGiI/AAAAAAAAACY/tlU4_R9LE2k/s1600-h/Capture+d%E2%80%99%C3%A9cran+2009-12-13+%C3%A0+17.17.18.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 254px;" src="http://3.bp.blogspot.com/_OVEdg0gDJ4E/SyUaRbaKGiI/AAAAAAAAACY/tlU4_R9LE2k/s400/Capture+d%E2%80%99%C3%A9cran+2009-12-13+%C3%A0+17.17.18.png" alt="" id="BLOGGER_PHOTO_ID_5414763013700459042" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span id="result_box" class="long_text"&gt;&lt;span style="background-color: rgb(255, 255, 255);" title="Deuxième méthode : avec un script" onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;&lt;span style="font-weight: bold;"&gt;Second method: using a script &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="background-color: rgb(255, 255, 255);" title="La précédente méthode permet d'extraire une image à la fois, si vous voulez récupérer toutes les icônes d'un Mac OS X, vous pouvez utiliser le script python suivant :" onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&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="#!/bin/python" onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;/bin/python&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="background-color: rgb(255, 255, 255);" title="import os" onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;import os&lt;br /&gt;&lt;/span&gt;&lt;span style="background-color: rgb(255, 255, 255);" title="import re" onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;import re&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="background-color: rgb(255, 255, 255);" title="text = &amp;quot;0000&amp;quot;" onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;text = "0000"&lt;br /&gt;&lt;/span&gt;&lt;span title="out = &amp;quot;~/Pictures/&amp;quot;" onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;out = "~/Pictures/"&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="background-color: rgb(255, 255, 255);" title="stdout_handle = os.popen(&amp;quot;find / -name *.icns&amp;quot;, &amp;quot;r&amp;quot;)" onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;stdout_handle = os.popen ( "find / -name *. icns", "r")&lt;br /&gt;&lt;/span&gt;&lt;span style="background-color: rgb(255, 255, 255);" title="while (text!=&amp;quot;&amp;quot;):" onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;while (text !=""):&lt;br /&gt;&lt;/span&gt;&lt;span style="background-color: rgb(255, 255, 255);" title="text = stdout_handle.readline()" onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;stdout_handle.readline text = ()&lt;br /&gt;&lt;/span&gt;&lt;span style="background-color: rgb(255, 255, 255);" title="regnamefile = re.compile('\/([^//]*)\.icns')" onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;regnamefile = re.compile ( '\/([^//]*)\. icns')&lt;br /&gt;&lt;/span&gt;&lt;span title="namefile = regnamefile.findall(text)[0]" onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;namefile = regnamefile.findall (text) [0]&lt;br /&gt;&lt;/span&gt;&lt;span title="regline = re.compile('(\/.*\.icns)')" onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;Reglin = re.compile ( '(\/ .*\. icns)')&lt;br /&gt;&lt;/span&gt;&lt;span title="line = regline.findall(text)[0]" onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;line = regline.findall (text) [0]&lt;br /&gt;&lt;/span&gt;&lt;span title="os.system(&amp;quot;sips -s format png &amp;quot;+line+&amp;quot; --out &amp;quot;+out+namefile+&amp;quot;.png&amp;quot;)" onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;os.system ( "sips-s format png"+line+"-out"+out+namefile+".png")&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span title="Attention à l'indentation, c'est du python ;-) ..." onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;Beware the indentation : it is the python ... ;-) &lt;/span&gt;&lt;span style="background-color: rgb(255, 255, 255);" title="Vous cherchez dans un premier temps l'ensemble des fichiers au format icns (c'est le format des icônes de Mac OS X ;-) ;-) ), puis vous appliquez une transformation de format grâce à l'utilitaite sips disponible sous Mac" onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&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="OS X." onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;OS X. &lt;/span&gt;&lt;span title="L'ensemble des fichiers au format PNG sera disponible dans votre répertoire photos..." onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&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="background-color: rgb(255, 255, 255);" title="Voilà ;-) j'espère que vous ferez de beaux schèmas après ça." onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'"&gt;That ;-) I hope you will make beautiful patterns after that. &lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-6557136965833209792?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&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.g?blogID=32354023&amp;postID=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&apos;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='http://1.bp.blogspot.com/_OVEdg0gDJ4E/SyUaKZNgLMI/AAAAAAAAACQ/FafANjnjOV4/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.002Z</published><updated>2008-06-08T09:48:13.459Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='wiki'/><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'/><title type='text'>Installing Wikicalc: the most beautiful OpenSource spreadsheets</title><content type='html'>&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&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="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;&lt;/span&gt; It is completely written in Perl.&lt;/span&gt; &lt;span style="" onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&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="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;apt-get install apache2 libapache2-mod-perl2&lt;/span&gt; &lt;/span&gt; &lt;/blockquote&gt; &lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;&lt;/span&gt;Then download sources: &lt;a href="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"&gt;wikicalc-1-0.tar.gz.&lt;/a&gt;&lt;/span&gt; &lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;&lt;/span&gt;Then can begin the installation process itself:&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt; &lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;cd /var/www&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;tar xvzf wikicalc-1-0.tar.gz&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&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="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&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="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;NameVirtualHost *&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&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="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;ServerAdmin webmaster@localhost&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;DocumentRoot /var/www/wikicalc/&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&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="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;Options FollowSymLinks&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;AllowOverride None&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;&lt;/span&gt; &lt;!-- directory--&gt;&lt;/span&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&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="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;Options Indexes FollowSymLinks MultiViews ExecCGI&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;AddHandler cgi-script .cgi .pl&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;AllowOverride None&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;Order allow,deny&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;allow from all&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;&lt;/span&gt; &lt;!-- directory--&gt;&lt;/span&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&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="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;&lt;/span&gt;Load Perl module:&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt; &lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;a2enmod perl&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;restart /etc/init.d/apache2&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;&lt;/span&gt;To finish the installation, go to &lt;a href="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/"&gt;http://wikicalc.monsite.com/wikicalccgi.pl&lt;/a&gt; and follow the instructions ....&lt;/span&gt;&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;br /&gt;Now you can play with this imressive spreedsheat&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-6785823400210977182?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&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.g?blogID=32354023&amp;postID=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.000Z</published><updated>2008-03-22T17:49:02.219Z</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="http://fulguro.fr/"&gt;http://fulguro.fr/&lt;/a&gt; . People who like Goldorak will enjoy this site, I am sure of it ;-)&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://fulguro.fr/"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_OVEdg0gDJ4E/R-VF5A1imkI/AAAAAAAAABI/DP2MKlXFSLE/s400/fulguro.gif" alt="" id="BLOGGER_PHOTO_ID_5180623792139049538" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-4425787834122485392?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://fulguro.fr/' title='Fulguro'/><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.g?blogID=32354023&amp;postID=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='http://bp1.blogger.com/_OVEdg0gDJ4E/R-VF5A1imkI/AAAAAAAAABI/DP2MKlXFSLE/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.000Z</published><updated>2008-01-02T20:20:10.507Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='photo'/><category scheme='http://www.blogger.com/atom/ns#' term='China'/><title type='text'>Simataï : the best part of the great wall</title><content type='html'>&lt;div style="text-align: justify;"&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="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_OVEdg0gDJ4E/R3vxEf528-I/AAAAAAAAABA/NJ-qYE4khnM/s1600-h/PICT0521.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_OVEdg0gDJ4E/R3vxEf528-I/AAAAAAAAABA/NJ-qYE4khnM/s400/PICT0521.JPG" alt="" id="BLOGGER_PHOTO_ID_5150975658414240738" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-8121861405198344909?l=servalx02.blogspot.com' alt='' /&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.g?blogID=32354023&amp;postID=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='http://bp0.blogger.com/_OVEdg0gDJ4E/R3vxEf528-I/AAAAAAAAABA/NJ-qYE4khnM/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.000Z</published><updated>2008-01-02T20:13:29.079Z</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="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_OVEdg0gDJ4E/R3vv7P5289I/AAAAAAAAAA4/ZgKJeeV49K4/s1600-h/bonneannee.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_OVEdg0gDJ4E/R3vv7P5289I/AAAAAAAAAA4/ZgKJeeV49K4/s400/bonneannee.jpg" alt="" id="BLOGGER_PHOTO_ID_5150974399988822994" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-6818035499577434280?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&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.g?blogID=32354023&amp;postID=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='http://bp3.blogger.com/_OVEdg0gDJ4E/R3vv7P5289I/AAAAAAAAAA4/ZgKJeeV49K4/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.000Z</published><updated>2007-08-29T17:03:18.782Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='restaurant'/><category scheme='http://www.blogger.com/atom/ns#' term='China'/><title type='text'>A good hotel in Beijing</title><content type='html'>&lt;div style="text-align: justify;"&gt;I went in China this summer and I spent one week in the Beijing King's Joy Hotel, whose address is : No. 81, Meishi Street, Xuanwu District, Beijing&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_OVEdg0gDJ4E/RtWl8hI7ieI/AAAAAAAAAAw/8T35_W80RcM/s1600-h/king_joy_hotel.jpeg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_OVEdg0gDJ4E/RtWl8hI7ieI/AAAAAAAAAAw/8T35_W80RcM/s400/king_joy_hotel.jpeg" alt="" id="BLOGGER_PHOTO_ID_5104168211800885730" border="0" /&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="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/China" rel="tag"&gt;China&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Beijing" rel="tag"&gt;Beijing&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Hotel" rel="tag"&gt;Hotel&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Tienanmen" rel="tag"&gt;Tienanmen&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Meishi+Street" rel="tag"&gt;Meishi Street&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Xuanwu+District" rel="tag"&gt;Xuanwu District&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-5406546448396761877?l=servalx02.blogspot.com' alt='' /&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.g?blogID=32354023&amp;postID=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='http://bp0.blogger.com/_OVEdg0gDJ4E/RtWl8hI7ieI/AAAAAAAAAAw/8T35_W80RcM/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.000Z</published><updated>2007-08-23T07:22:03.158Z</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="text-align: justify;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="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"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_sJwc_Uvy5q4/RrSQNgADtvI/AAAAAAAAAK8/hGdAYBjAJYw/s400/ratatouille.htm" alt="" id="BLOGGER_PHOTO_ID_5094855640065750770" border="0" /&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="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/Ratatouille" rel="tag"&gt;Ratatouille&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Paris" rel="tag"&gt;Paris&lt;/a&gt;, &lt;a href="http://technorati.com/tag/rat" rel="tag"&gt;rat&lt;/a&gt;, &lt;a href="http://technorati.com/tag/movie" rel="tag"&gt;movie&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-3242795539417555428?l=servalx02.blogspot.com' alt='' /&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.g?blogID=32354023&amp;postID=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='http://bp3.blogger.com/_sJwc_Uvy5q4/RrSQNgADtvI/AAAAAAAAAK8/hGdAYBjAJYw/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.000Z</published><updated>2007-08-23T07:10:58.742Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='photo'/><category scheme='http://www.blogger.com/atom/ns#' term='China'/><title type='text'>Simataï: marvellous the chinese Great Wall</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_sJwc_Uvy5q4/RrSSvwADtwI/AAAAAAAAALE/V1rB-4M9_xM/s1600-h/PICT0493.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_sJwc_Uvy5q4/RrSSvwADtwI/AAAAAAAAALE/V1rB-4M9_xM/s400/PICT0493.JPG" alt="" id="BLOGGER_PHOTO_ID_5094858427499525890" border="0" /&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="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_sJwc_Uvy5q4/RrST9AADtxI/AAAAAAAAALM/oLw97jzpE0Y/s400/PICT0497.JPG" alt="" id="BLOGGER_PHOTO_ID_5094859754644420370" border="0" /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;                               &lt;span class="post-author vcard"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/Simata%C3%AF" rel="tag"&gt;Simataï&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Great+Wall" rel="tag"&gt;Great Wall&lt;/a&gt;, &lt;a href="http://technorati.com/tag/China" rel="tag"&gt;China&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-5630543511381791935?l=servalx02.blogspot.com' alt='' /&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.g?blogID=32354023&amp;postID=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='http://bp0.blogger.com/_sJwc_Uvy5q4/RrSSvwADtwI/AAAAAAAAALE/V1rB-4M9_xM/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.000Z</published><updated>2007-08-23T07:03:10.865Z</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="text-align: justify;"&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="text-align: justify;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_sJwc_Uvy5q4/RsiQ1nVxTeI/AAAAAAAAALU/vxtwIK4q-o4/s1600-h/harrypotter_ordrephenix.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_sJwc_Uvy5q4/RsiQ1nVxTeI/AAAAAAAAALU/vxtwIK4q-o4/s400/harrypotter_ordrephenix.jpg" alt="" id="BLOGGER_PHOTO_ID_5100485828764847586" border="0" /&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="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/Harry+Potter+and+The+Deathly+Hollows" rel="tag"&gt;Harry Potter and The Deathly Hollows&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Albus" rel="tag"&gt;Albus&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Voldemort" rel="tag"&gt;Voldemort&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Harry+Potter+and+the+Order+of+the+Phoenix" rel="tag"&gt;Harry Potter and the Order of the Phoenix&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Harry" rel="tag"&gt;Harry&lt;/a&gt;, &lt;a href="http://technorati.com/tag/fairyhood" rel="tag"&gt;fairyhood&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-4445715871816130558?l=servalx02.blogspot.com' alt='' /&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.g?blogID=32354023&amp;postID=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='http://bp1.blogger.com/_sJwc_Uvy5q4/RsiQ1nVxTeI/AAAAAAAAALU/vxtwIK4q-o4/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.000Z</published><updated>2007-08-23T07:03:51.561Z</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="text-align: justify;"&gt;If you are fed up of the oneself-saying supremacy of Google as "search engine" on Internet, I propose you to test a new search engine, of the new generation: &lt;a href="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"&gt;Exalead&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_sJwc_Uvy5q4/RsqGGnVxTfI/AAAAAAAAALc/62rHYBepx_c/s1600-h/exalead_1.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_sJwc_Uvy5q4/RsqGGnVxTfI/AAAAAAAAALc/62rHYBepx_c/s400/exalead_1.png" alt="" id="BLOGGER_PHOTO_ID_5101036976148139506" border="0" /&gt;&lt;/a&gt;this search engine was or is still implied in the European search engine &lt;a href="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"&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="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_sJwc_Uvy5q4/RsqINnVxTgI/AAAAAAAAALk/HIHQn7DG3sY/s1600-h/exalead_2.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_sJwc_Uvy5q4/RsqINnVxTgI/AAAAAAAAALk/HIHQn7DG3sY/s400/exalead_2.png" alt="" id="BLOGGER_PHOTO_ID_5101039295430479362" border="0" /&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="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_sJwc_Uvy5q4/RsqIN3VxThI/AAAAAAAAALs/_8kdq7ufskU/s1600-h/exalead_3.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_sJwc_Uvy5q4/RsqIN3VxThI/AAAAAAAAALs/_8kdq7ufskU/s400/exalead_3.png" alt="" id="BLOGGER_PHOTO_ID_5101039299725446674" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&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="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"&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="text-align: justify;" class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="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" rel="tag"&gt;Exalead&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;Google&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;RegEx&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;regular expression&lt;/a&gt;&lt;/span&gt;, &lt;a href="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" rel="tag"&gt;zapette&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;Wikipedia&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;François Bourdoncle&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;Bourdoncle&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;Polytechnic&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;X&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;Mines&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-796060516805805538?l=servalx02.blogspot.com' alt='' /&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.g?blogID=32354023&amp;postID=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='http://bp3.blogger.com/_sJwc_Uvy5q4/RsqGGnVxTfI/AAAAAAAAALc/62rHYBepx_c/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.000Z</published><updated>2007-08-21T15:38:44.148Z</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="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"&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="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/macbook" rel="tag"&gt;macbook&lt;/a&gt;, &lt;a href="http://technorati.com/tag/howto" rel="tag"&gt;howto&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-4043907563900501286?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://mymacbook.blogspot.com' title='Help for your MacBook and other Howtos'/><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.g?blogID=32354023&amp;postID=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.000Z</published><updated>2007-06-19T18:30:17.550Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Comic'/><category scheme='http://www.blogger.com/atom/ns#' term='Brussels'/><title type='text'>A little walk in Brussels</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="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"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_sJwc_Uvy5q4/RngbYEVsAvI/AAAAAAAAAKg/36kIIPIYBdw/s400/ballade_bruxelloise_BD.png" alt="" id="BLOGGER_PHOTO_ID_5077838680155751154" border="0" /&gt;&lt;/a&gt;A small walk in Brussels with some &lt;a href="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"&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&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-6093871929901539946?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</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.g?blogID=32354023&amp;postID=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='http://bp2.blogger.com/_sJwc_Uvy5q4/RngbYEVsAvI/AAAAAAAAAKg/36kIIPIYBdw/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.000Z</published><updated>2007-06-08T16:36:35.051Z</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="font-weight: bold;"&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="font-weight: bold;"&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="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_sJwc_Uvy5q4/RmmAjEVsAZI/AAAAAAAAAHs/0TNQj04GjGs/s1600-h/pict0008.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_sJwc_Uvy5q4/RmmAjEVsAZI/AAAAAAAAAHs/0TNQj04GjGs/s400/pict0008.jpg" alt="" id="BLOGGER_PHOTO_ID_5073727795158057362" border="0" /&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="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_sJwc_Uvy5q4/RmmAjUVsAaI/AAAAAAAAAH0/EJ2ZLgpoqRg/s1600-h/pict0009.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_sJwc_Uvy5q4/RmmAjUVsAaI/AAAAAAAAAH0/EJ2ZLgpoqRg/s400/pict0009.jpg" alt="" id="BLOGGER_PHOTO_ID_5073727799453024674" border="0" /&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="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_sJwc_Uvy5q4/RmmAjkVsAbI/AAAAAAAAAH8/b7m8G_q-w8s/s1600-h/pict0010.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_sJwc_Uvy5q4/RmmAjkVsAbI/AAAAAAAAAH8/b7m8G_q-w8s/s400/pict0010.jpg" alt="" id="BLOGGER_PHOTO_ID_5073727803747991986" border="0" /&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="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_sJwc_Uvy5q4/RmmAkEVsAdI/AAAAAAAAAIM/yufuU_zVRHQ/s1600-h/pict0012.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_sJwc_Uvy5q4/RmmAkEVsAdI/AAAAAAAAAIM/yufuU_zVRHQ/s400/pict0012.jpg" alt="" id="BLOGGER_PHOTO_ID_5073727812337926610" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="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" rel="tag"&gt;etorki&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;ham&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;cake&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;prune&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-9024057885157588206?l=servalx02.blogspot.com' alt='' /&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.g?blogID=32354023&amp;postID=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='http://bp3.blogger.com/_sJwc_Uvy5q4/RmmAjEVsAZI/AAAAAAAAAHs/0TNQj04GjGs/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.000Z</published><updated>2007-05-15T06:24:47.789Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='cook'/><category scheme='http://www.blogger.com/atom/ns#' term='restaurant'/><category scheme='http://www.blogger.com/atom/ns#' term='Paris'/><title type='text'>La Butte aux Cailles and its restaurant: "Les Cailloux"</title><content type='html'>&lt;p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.verlaine-langue.com/images/situation2bis.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 259px; height: 412px;" src="http://www.verlaine-langue.com/images/situation2bis.jpg" alt="" border="0" /&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's why we like the Butte aux Cailles, isn'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="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"&gt;Verlaine Institute&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/restaurant" rel="tag"&gt;restaurant&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Les+Cailloux" rel="tag"&gt;Les Cailloux&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Paris" rel="tag"&gt;Paris&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Buttes+aux+Cailles" rel="tag"&gt;Buttes aux Cailles&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Cailles" rel="tag"&gt;Cailles&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Butte" rel="tag"&gt;Butte&lt;/a&gt;&lt;/span&gt;&lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/Butte" rel="tag"&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-2459240272892483011?l=servalx02.blogspot.com' alt='' /&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.g?blogID=32354023&amp;postID=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.000Z</published><updated>2007-05-15T06:07:12.861Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='second life'/><category scheme='http://www.blogger.com/atom/ns#' term='game'/><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="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_sJwc_Uvy5q4/RkgIDqLhkJI/AAAAAAAAAHY/8WUnNHiKkXM/s1600-h/secondlife-2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_sJwc_Uvy5q4/RkgIDqLhkJI/AAAAAAAAAHY/8WUnNHiKkXM/s400/secondlife-2.jpg" alt="" id="BLOGGER_PHOTO_ID_5064306639933378706" border="0" /&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="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_sJwc_Uvy5q4/RkgIDaLhkII/AAAAAAAAAHQ/2n5RRteg8tw/s1600-h/secondlife-1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_sJwc_Uvy5q4/RkgIDaLhkII/AAAAAAAAAHQ/2n5RRteg8tw/s400/secondlife-1.jpg" alt="" id="BLOGGER_PHOTO_ID_5064306635638411394" border="0" /&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="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_sJwc_Uvy5q4/RkgIDqLhkKI/AAAAAAAAAHg/u9-0ggzHFXA/s1600-h/secondlife-3.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_sJwc_Uvy5q4/RkgIDqLhkKI/AAAAAAAAAHg/u9-0ggzHFXA/s400/secondlife-3.jpg" alt="" id="BLOGGER_PHOTO_ID_5064306639933378722" border="0" /&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)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-6417876155709313247?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</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.g?blogID=32354023&amp;postID=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='http://bp1.blogger.com/_sJwc_Uvy5q4/RkgIDqLhkJI/AAAAAAAAAHY/8WUnNHiKkXM/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.000Z</published><updated>2007-05-10T06:50:33.894Z</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="text-align: justify;"&gt;A small salad, with banana: a true delight &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt; Prepared in a few minutes, you will enjoy it&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Ingredients:&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;ul style="text-align: justify;"&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="text-align: justify;"&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&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="emoticon" src="http://wolverinex02.googlepages.com/icon_wink.gif" alt="wink" title="wink" height="15" width="15" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="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" rel="tag"&gt;banana&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;mesclun&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;pinions of pine&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;salad&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;lemon&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;grapefruit&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;cucumber&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-9080683022813058299?l=servalx02.blogspot.com' alt='' /&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.g?blogID=32354023&amp;postID=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.000Z</published><updated>2007-05-04T16:24:47.473Z</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="emoticon" src="http://wolverinex02.googlepages.com/icon_wink.gif" alt="wink" title="wink" height="15" width="15" /&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 "aperitif dinatoire", or for a "tête à tête"&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&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="emoticon" src="http://wolverinex02.googlepages.com/icon_wink.gif" alt="wink" title="wink" height="15" width="15" /&gt;. Without waiting more, the receipt:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_sJwc_Uvy5q4/RjtaJaLhkHI/AAAAAAAAAHI/uUvuxfO2_Bs/s1600-h/pict0166.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_sJwc_Uvy5q4/RjtaJaLhkHI/AAAAAAAAAHI/uUvuxfO2_Bs/s400/pict0166.jpg" alt="" id="BLOGGER_PHOTO_ID_5060737723973865586" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&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="font-weight: bold;"&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="emoticon" src="http://wolverinex02.googlepages.com/icon_eek.gif" alt="eek" title="eek" height="15" width="15" /&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="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&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="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_sJwc_Uvy5q4/RjtaH6LhkDI/AAAAAAAAAGo/KFnFIgJ6NPk/s1600-h/pict0161.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_sJwc_Uvy5q4/RjtaH6LhkDI/AAAAAAAAAGo/KFnFIgJ6NPk/s400/pict0161.jpg" alt="" id="BLOGGER_PHOTO_ID_5060737698204061746" border="0" /&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="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_sJwc_Uvy5q4/RjtaIKLhkEI/AAAAAAAAAGw/sOIYjruHx_Y/s1600-h/pict0162.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_sJwc_Uvy5q4/RjtaIKLhkEI/AAAAAAAAAGw/sOIYjruHx_Y/s400/pict0162.jpg" alt="" id="BLOGGER_PHOTO_ID_5060737702499029058" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Then add the Parmesan, sage and Parma ham.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_sJwc_Uvy5q4/RjtaIqLhkFI/AAAAAAAAAG4/ZVPAVmbk6fg/s1600-h/pict0163.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_sJwc_Uvy5q4/RjtaIqLhkFI/AAAAAAAAAG4/ZVPAVmbk6fg/s400/pict0163.jpg" alt="" id="BLOGGER_PHOTO_ID_5060737711088963666" border="0" /&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="emoticon" src="http://wolverinex02.googlepages.com/icon_wink.gif" alt="wink" title="wink" height="15" width="15" /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_sJwc_Uvy5q4/RjtaI6LhkGI/AAAAAAAAAHA/uDcWuVKdKzM/s1600-h/pict0164.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_sJwc_Uvy5q4/RjtaI6LhkGI/AAAAAAAAAHA/uDcWuVKdKzM/s400/pict0164.jpg" alt="" id="BLOGGER_PHOTO_ID_5060737715383930978" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="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" rel="tag"&gt;Gordon Ramsay&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;ham&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;Parma&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;Parmesan&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;sage&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;muffin&lt;/a&gt;&lt;/span&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-8590066877349154816?l=servalx02.blogspot.com' alt='' /&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.g?blogID=32354023&amp;postID=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='http://bp3.blogger.com/_sJwc_Uvy5q4/RjtaJaLhkHI/AAAAAAAAAHI/uUvuxfO2_Bs/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.000Z</published><updated>2007-04-02T13:02:48.955Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='cook'/><category scheme='http://www.blogger.com/atom/ns#' term='cake'/><category scheme='http://www.blogger.com/atom/ns#' term='receipt'/><title type='text'>My banana-chocolate</title><content type='html'>&lt;div style="text-align: justify;"&gt;Delicious receipt of banana-chocolate cake&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_wink.gif" alt="wink" title="wink" height="15" width="15" /&gt;   only for you  &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_wink.gif" alt="wink" title="wink" height="15" width="15" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Ingredients:&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;ul style="text-align: justify;"&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="text-align: justify;"&gt;&lt;span style="font-weight: bold;"&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="emoticon" src="http://wolverinex02.googlepages.com/icon_wink.gif" alt="wink" title="wink" height="15" width="15" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="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" rel="tag"&gt;cake&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;banana&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;chocolate&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;brown sugar&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;flour&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;butter&lt;/a&gt;&lt;a href="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" rel="tag"&gt;&lt;br /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-5538030989447683093?l=servalx02.blogspot.com' alt='' /&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.g?blogID=32354023&amp;postID=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.000Z</published><updated>2007-04-02T06:03:15.597Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='restaurant'/><title type='text'>Restaurant: Les délices d'Aphtodite</title><content type='html'>&lt;div style="text-align: justify;"&gt;A small Greek restaurant not far from the Latin Quarter, forget the kebabs, chips, Coke and other white sauces &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt; !!! We are very far from the ordinary Greek, the price is there for you to recall it &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;  &lt;a href="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"&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="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="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" rel="tag"&gt;restaurant&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;Greek&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;Pikilias&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;kebab&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;Paris&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-5953708549557646629?l=servalx02.blogspot.com' alt='' /&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.g?blogID=32354023&amp;postID=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&apos;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.000Z</published><updated>2007-04-02T05:33:53.666Z</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="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt; thus I created my own receipt &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_lol.gif" alt="lol" title="lol" height="15" width="15" /&gt;:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&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="font-weight: bold;"&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="emoticon" src="http://wolverinex02.googlepages.com/icon_biggrin.gif" alt="biggrin" title="biggrin" height="15" width="15" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="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" rel="tag"&gt;fajitas&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;tabasco&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;tomato&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;green pepper&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;onion&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;mijoter&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;napper&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-8071763449991329367?l=servalx02.blogspot.com' alt='' /&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.g?blogID=32354023&amp;postID=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><entry><id>tag:blogger.com,1999:blog-32354023.post-1526442017534520740</id><published>2007-03-28T16:56:00.000Z</published><updated>2007-03-28T16:58:04.235Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='cook'/><title type='text'>Rollmops and its vegetables</title><content type='html'>&lt;div style="text-align: justify;"&gt;Small fast meal but so good  &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_smile.gif" alt="smile" title="smile" height="15" width="15" /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_sJwc_Uvy5q4/RgqcU6HAWjI/AAAAAAAAAGA/Sd_vGHTmCmk/s1600-h/pict0031.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_sJwc_Uvy5q4/RgqcU6HAWjI/AAAAAAAAAGA/Sd_vGHTmCmk/s400/pict0031.jpg" alt="" id="BLOGGER_PHOTO_ID_5047018215432018482" border="0" /&gt;&lt;/a&gt;The reverse engineering is very simple (for 2 people):&lt;br /&gt;&lt;/div&gt;&lt;ul style="text-align: justify;"&gt;&lt;li&gt;a box of rollmops&lt;/li&gt;&lt;li&gt;a half cucumber&lt;/li&gt;&lt;li&gt;2 tomatoes&lt;/li&gt;&lt;li&gt;a small green pepper&lt;/li&gt;&lt;li&gt;a carrot&lt;/li&gt;&lt;/ul&gt;&lt;div style="text-align: justify;"&gt;Peel and cross with love: here it is ready… You can also prepare a small sauce containing soft white cheese, of a little dill and wine vinegar. Good meal &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_wink.gif" alt="wink" title="wink" height="15" width="15" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;" class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://66.249.93.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/rollmops&amp;prev=/language_tools" rel="tag"&gt;rollmops&lt;/a&gt;, &lt;a href="http://66.249.93.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/concombre&amp;amp;prev=/language_tools" rel="tag"&gt;cucumber&lt;/a&gt;, &lt;a href="http://66.249.93.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/tomate&amp;prev=/language_tools" rel="tag"&gt;tomato&lt;/a&gt;, &lt;a href="http://66.249.93.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/carotte&amp;amp;prev=/language_tools" rel="tag"&gt;carrot&lt;/a&gt;, &lt;a href="http://66.249.93.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/cuisine&amp;amp;prev=/language_tools" rel="tag"&gt;kitchen&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-1526442017534520740?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/1526442017534520740/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=1526442017534520740' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/1526442017534520740'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/1526442017534520740'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/03/small-fast-meal-but-so-good-reverse.html' title='Rollmops and its vegetables'/><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='http://bp3.blogger.com/_sJwc_Uvy5q4/RgqcU6HAWjI/AAAAAAAAAGA/Sd_vGHTmCmk/s72-c/pict0031.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-3089073641614773999</id><published>2007-03-28T16:23:00.000Z</published><updated>2007-04-02T05:34:13.159Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blogger'/><category scheme='http://www.blogger.com/atom/ns#' term='Internet'/><title type='text'>Joost: the P2P TV</title><content type='html'>You probably know Kazaa and Skype… Imagine that their creators started to work on a new service &lt;img src="http://wolverinex02.googlepages.com/icon_twisted.gif" alt="twisted" border="0" /&gt;… According to you which will they choose? The TV!!! Thus the old project known under the name of “Project Venice” is beginning its as Beta version under the name of Joost &lt;img src="http://wolverinex02.googlepages.com/icon_twisted.gif" alt="twisted" border="0" /&gt;   and like many Beta project, you are recruited either directly or by sponsorship &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_biggrin.gif" alt="biggrin" title="biggrin" height="15" width="15" /&gt; &lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_sJwc_Uvy5q4/RgogaaHAWcI/AAAAAAAAAFI/xA5QMMW5TLw/s400/joost_1.bmp" alt="" id="BLOGGER_PHOTO_ID_5046881970479454658" border="0" /&gt; the quality is rather good&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_sJwc_Uvy5q4/Rgoga6HAWdI/AAAAAAAAAFQ/-Pak8iJX4wk/s1600-h/joost2.bmp"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_sJwc_Uvy5q4/Rgoga6HAWdI/AAAAAAAAAFQ/-Pak8iJX4wk/s400/joost2.bmp" alt="" id="BLOGGER_PHOTO_ID_5046881979069389266" border="0" /&gt;&lt;/a&gt;The interface looks like an application written in Flash or something from the Internet world, but it does not look like an interface the Windows world. A little annoying at the beginning but you will quickly enjoy the interface.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_sJwc_Uvy5q4/Rgoga6HAWeI/AAAAAAAAAFY/clMvoZP0UCA/s1600-h/joost_3.bmp"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_sJwc_Uvy5q4/Rgoga6HAWeI/AAAAAAAAAFY/clMvoZP0UCA/s400/joost_3.bmp" alt="" id="BLOGGER_PHOTO_ID_5046881979069389282" border="0" /&gt;&lt;/a&gt;For the moment there are only few channels… But it is a version beta, I guarantee that when the system will be more widespread, many advertisers will want to take benefit from this new service… Moreover I wonder what that will happen when each one will be able to create its own contents and to upload it in the system… It could be the end of VOD &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_twisted.gif" alt="twisted" title="twisted" height="15" width="15" /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_sJwc_Uvy5q4/RgogbKHAWfI/AAAAAAAAAFg/mo4ZcS0jzy4/s1600-h/joost_4.bmp"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_sJwc_Uvy5q4/RgogbKHAWfI/AAAAAAAAAFg/mo4ZcS0jzy4/s400/joost_4.bmp" alt="" id="BLOGGER_PHOTO_ID_5046881983364356594" border="0" /&gt;&lt;/a&gt;of course you will have to wait sometimes… and especially at the beginning… but as a whole, it is largely possible to watch an emission without too much annoyance…&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_sJwc_Uvy5q4/Rgog7aHAWhI/AAAAAAAAAFw/xkSUXhFbuf4/s1600-h/joost_5.bmp"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_sJwc_Uvy5q4/Rgog7aHAWhI/AAAAAAAAAFw/xkSUXhFbuf4/s400/joost_5.bmp" alt="" id="BLOGGER_PHOTO_ID_5046882537415137810" border="0" /&gt;&lt;/a&gt;On the other hand, I do not know very well which software of compression they use, but it is a greedy resource: knowing that I have Pentium M (1,4GHz), that I have just launched Windows and that the only launched program is Joost (made abstraction of MSN and others…) I have an average consumption of my processor of 70%!!! &lt;img src="http://wolverinex02.googlepages.com/icon_twisted.gif" alt="twisted" border="0" /&gt; On the other hand the use of the network remains suitable… I wonder well how that workss… I believe that I will have fun in the following days… and will watch series &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_biggrin.gif" alt="biggrin" title="biggrin" height="15" width="15" /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_sJwc_Uvy5q4/RgogbaHAWgI/AAAAAAAAAFo/JcCc9Se6ays/s1600-h/joost_6.bmp"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_sJwc_Uvy5q4/RgogbaHAWgI/AAAAAAAAAFo/JcCc9Se6ays/s400/joost_6.bmp" alt="" id="BLOGGER_PHOTO_ID_5046881987659323906" border="0" /&gt;&lt;/a&gt;&lt;div style="text-align: justify;" class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://66.249.93.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/joost&amp;prev=/language_tools" rel="tag"&gt;joost&lt;/a&gt;, &lt;a href="http://66.249.93.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/Venice%2BProject&amp;amp;prev=/language_tools" rel="tag"&gt;Venice Project&lt;/a&gt;, &lt;a href="http://66.249.93.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/Kazaa&amp;prev=/language_tools" rel="tag"&gt;Kazaa&lt;/a&gt;, &lt;a href="http://66.249.93.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/Skype&amp;amp;prev=/language_tools" rel="tag"&gt;Skype&lt;/a&gt;, &lt;a href="http://66.249.93.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/parrainage&amp;prev=/language_tools" rel="tag"&gt;sponsorship&lt;/a&gt;, &lt;a href="http://66.249.93.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/Flash&amp;amp;prev=/language_tools" rel="tag"&gt;Flash&lt;/a&gt;, &lt;a href="http://66.249.93.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/Windows&amp;prev=/language_tools" rel="tag"&gt;Windows&lt;/a&gt;, &lt;a href="http://66.249.93.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/VOD&amp;amp;prev=/language_tools" rel="tag"&gt;VOD&lt;/a&gt;, &lt;a href="http://66.249.93.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/compression&amp;amp;prev=/language_tools" rel="tag"&gt;compression&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-3089073641614773999?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/3089073641614773999/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=3089073641614773999' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3089073641614773999'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3089073641614773999'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/03/joost-p2p-tv.html' title='Joost: the P2P TV'/><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='http://bp1.blogger.com/_sJwc_Uvy5q4/RgogaaHAWcI/AAAAAAAAAFI/xA5QMMW5TLw/s72-c/joost_1.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-2806101060709929241</id><published>2007-03-24T18:29:00.000Z</published><updated>2007-03-24T18:33:27.555Z</updated><title type='text'>Richard Stallman and Trusted Computing</title><content type='html'>If you want more information about the &lt;a href="http://www.gnu.org/philosophy/can-you-trust.html"&gt;Trusted Computing&lt;/a&gt;, even if I think that the movie is better&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/Richard+Stallman" rel="tag"&gt;Richard Stallman&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Trusted+Computing" rel="tag"&gt;Trusted Computing&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-2806101060709929241?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/2806101060709929241/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=2806101060709929241' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2806101060709929241'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2806101060709929241'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/03/richard-stallman-and-trusted-computing.html' title='Richard Stallman and Trusted Computing'/><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-8319450978337161497</id><published>2007-03-24T16:54:00.000Z</published><updated>2007-03-24T17:03:01.310Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blogger'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='security'/><title type='text'>Trusted Comuting: a film to warn you</title><content type='html'>&lt;div style="text-align: justify;"&gt;Do you know what "Trusted Computing” is &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_question.gif" alt="question" title="question" height="15" width="15" /&gt;  it is a new idea developed by some great names of computers, according to them to make our computers safer. The guiding principle is very simple, it consists in assigning a signature for each data-processing object (software, document, music), and delegating to a third party the task to check if the handled object is authorized with being used on the local system… Elegant you will say, at the end we will get rid of all theses viruses… But think just a little: who will be the third party, the confidence one? All the signatures will have to be checked by this third party, and thus each signature recorded in the big database of this new Big Brother &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_evil.gif" alt="evil" title="evil" height="15" width="15" /&gt; what, in a Microsoft logic, for example, will mean paid a lot of money to record your signature (if you do not believe me, ask yourself this simple question: “How much would it cost me to have my certificate in Internet Explorer? ”). To explain hazards this concept, here a small film found on Zudeo:&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a href="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://www.zudeo.com/details/ABNPN4JAN2W462BHLGZLCR52FXFNIMW7.html&amp;prev=/language_tools"&gt;&lt;img src="http://www.zudeo.com/magnet/ABNPN4JAN2W462BHLGZLCR52FXFNIMW7.jpg" alt="TrustedComputing_LAFKON_HIGH" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Once again the great computer makers groups or OS makers intend to play Big Brother with the world… But once again, I think that the free software, will be able to answer this threat… If the laws are not voted by and for the million of $ these large companies! &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_evil.gif" alt="evil" title="evil" height="15" width="15" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="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/big%2Bbrother&amp;amp;prev=/language_tools" rel="tag"&gt;big brother&lt;/a&gt;, &lt;a href="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/trusted%2Bcomuting&amp;prev=/language_tools" rel="tag"&gt;trusted comuting&lt;/a&gt;, &lt;a href="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/APRIL&amp;amp;prev=/language_tools" rel="tag"&gt;APRIL&lt;/a&gt;, &lt;a href="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/Zudeo&amp;prev=/language_tools" rel="tag"&gt;Zudeo&lt;/a&gt;, &lt;a href="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/logiciel%2Blibre&amp;amp;prev=/language_tools" rel="tag"&gt;free software&lt;/a&gt;&lt;/span&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-8319450978337161497?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/8319450978337161497/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=8319450978337161497' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8319450978337161497'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8319450978337161497'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/03/trusted-comuting-film-to-warn-you.html' title='Trusted Comuting: a film to warn you'/><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-9188201848515995145</id><published>2007-03-22T08:18:00.000Z</published><updated>2007-03-22T08:28:40.271Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='photo'/><title type='text'>The museum of the primitive arts or the museum of the Quai Branly</title><content type='html'>&lt;b&gt;The museum of the Quai Branly&lt;/b&gt; or museum of arts and civilizations of Africa, of Asia, of Oceania and Americas (nonWestern civilizations) is located as its name indicates on the Quai Branly. Personally, I think that in a near future it will be called Musée Chirac, the BNF is now called Bibliothèque François Mitterrand.  Each  French President has its own monument in France... (except maybe &lt;b&gt;&lt;a href="http://fr.wikipedia.org/wiki/Val%C3%A9ry_Giscard_d%27Estaing" title="Valéry Giscard d'Estaing"&gt;Valéry Giscard d'Estaing&lt;/a&gt;&lt;/b&gt; &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_smile.gif" alt="smile" title="smile" height="15" width="15" /&gt;)&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_sJwc_Uvy5q4/RgI3PTznpsI/AAAAAAAAAEo/opi7gjb4z4U/s400/pict0005.jpg" alt="" id="BLOGGER_PHOTO_ID_5044655268762724034" border="0" /&gt;As you can see on this picture, the museum is all longitudinally and rises a such house on piloti on the top of the garden… Next time you walk in the garden, have a look to the ground, you could discover something &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_smile.gif" alt="smile" title="smile" height="15" width="15" /&gt;, the large cubes of color must correspond to rooms but I am not certain…&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_sJwc_Uvy5q4/RgI3PzznptI/AAAAAAAAAEw/QL4zTpKVblU/s1600-h/pict0007.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_sJwc_Uvy5q4/RgI3PzznptI/AAAAAAAAAEw/QL4zTpKVblU/s400/pict0007.jpg" alt="" id="BLOGGER_PHOTO_ID_5044655277352658642" border="0" /&gt;&lt;/a&gt;Because I did not visit yet, moreover, I suppose that the photograph above must correspond to the library part…&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_sJwc_Uvy5q4/RgI3QDznpuI/AAAAAAAAAE4/RCQVKimQprg/s1600-h/pict0009.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_sJwc_Uvy5q4/RgI3QDznpuI/AAAAAAAAAE4/RCQVKimQprg/s400/pict0009.jpg" alt="" id="BLOGGER_PHOTO_ID_5044655281647625954" border="0" /&gt;&lt;/a&gt;I wonder whether in summer open air conferences will be envisaged… A little like a chief council (OK, I recognize it, that strongly resembles to an amphitheatre… so much more with Latin 's touch…) &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_wink.gif" alt="wink" title="wink" height="15" width="15" /&gt; Finally this museum is worth be seeing, and I think I will visit it soon… So follow this blog  &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_wink.gif" alt="wink" title="wink" height="15" width="15" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/quai+Branly" rel="tag"&gt;quai Branly&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Chirac" rel="tag"&gt;Chirac&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Miterrant" rel="tag"&gt;Miterrant&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Valery+Giscard+d%27Estaing" rel="tag"&gt;Valery Giscard d'Estaing&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Giscard" rel="tag"&gt;Giscard&lt;/a&gt;, &lt;a href="http://technorati.com/tag/BNF" rel="tag"&gt;BNF&lt;/a&gt;, &lt;a href="http://technorati.com/tag/primitive+arts" rel="tag"&gt;primitive arts&lt;/a&gt;, &lt;a href="http://technorati.com/tag/museum" rel="tag"&gt;museum&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-9188201848515995145?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/9188201848515995145/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=9188201848515995145' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/9188201848515995145'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/9188201848515995145'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/03/museum-of-primitive-arts-or-museum-of.html' title='The museum of the primitive arts or the museum of the Quai Branly'/><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='http://bp0.blogger.com/_sJwc_Uvy5q4/RgI3PTznpsI/AAAAAAAAAEo/opi7gjb4z4U/s72-c/pict0005.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-7806133143915471973</id><published>2007-02-21T19:56:00.000Z</published><updated>2007-02-21T20:04:04.861Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='cook'/><title type='text'>A recipe of Gordon Ramsay, again! Marinated mushrooms</title><content type='html'>&lt;p&gt;I am kind of Gordon Ramsay's recipes: as I have a little time during the holidays, I test a receipt one after another &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_wink.gif" alt="wink" title="wink" height="15" width="15" /&gt; as a consequence this evening the dish will be: marinated mushrooms (indeed I prepared them yesterday afternoon &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_wink.gif" alt="wink" title="wink" height="15" width="15" /&gt;)&lt;br /&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;Ingredients:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;mushrooms&lt;/li&gt;&lt;li&gt;shallots&lt;br /&gt;&lt;/li&gt;&lt;li&gt;tarragon&lt;/li&gt;&lt;li&gt;salt, pepper&lt;/li&gt;&lt;li&gt;olive oil&lt;/li&gt;&lt;li&gt;wine vinegar&lt;/li&gt;&lt;/ul&gt;Preparations:&lt;br /&gt;&lt;br /&gt;Cut shallot into small pieces&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_sJwc_Uvy5q4/RdycpTgvFnI/AAAAAAAAAD0/tYehE8zjCns/s1600-h/DSC00015.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_sJwc_Uvy5q4/RdycpTgvFnI/AAAAAAAAAD0/tYehE8zjCns/s400/DSC00015.JPG" alt="" id="BLOGGER_PHOTO_ID_5034070716919518834" border="0" /&gt;&lt;/a&gt;Peel mushrooms and cut them in big pieces (look at the picture)&lt;br /&gt;Put olive oil in a large frying pan. There when oil is almost smoking place mushrooms, from time to time return approximately, let them like this during approximatively 5 minutes until they take a pretty gold-translucent color…&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_sJwc_Uvy5q4/RdycpjgvFoI/AAAAAAAAAD8/JPDGxgRDU0o/s1600-h/DSC00018.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_sJwc_Uvy5q4/RdycpjgvFoI/AAAAAAAAAD8/JPDGxgRDU0o/s400/DSC00018.JPG" alt="" id="BLOGGER_PHOTO_ID_5034070721214486146" border="0" /&gt;&lt;/a&gt;Add shallot: cook to the moment shallot becomes translucent&lt;br /&gt;Pour the wine vinegar on the contour of the frying pan (do not pour on the top!)&lt;br /&gt;Carry the wine vinegar to boiling, then finally add the olive oil…&lt;br /&gt;Let cool in a dish at the temperature of the room&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_sJwc_Uvy5q4/RdycpzgvFpI/AAAAAAAAAEE/ptGeu_2H6Mk/s1600-h/DSC00020.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_sJwc_Uvy5q4/RdycpzgvFpI/AAAAAAAAAEE/ptGeu_2H6Mk/s400/DSC00020.JPG" alt="" id="BLOGGER_PHOTO_ID_5034070725509453458" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;an easy dish &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_biggrin.gif" alt="biggrin" title="biggrin" height="15" width="15" /&gt; you can prepare this dish in advance  &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_biggrin.gif" alt="biggrin" title="biggrin" height="15" width="15" /&gt; Bon appetit&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://66.249.93.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/echalote&amp;prev=/language_tools" rel="tag"&gt;shallot&lt;/a&gt;, &lt;a href="http://66.249.93.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/champignon&amp;amp;prev=/language_tools" rel="tag"&gt;mushroom&lt;/a&gt;, &lt;a href="http://66.249.93.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/Gordon%2BRamsay&amp;prev=/language_tools" rel="tag"&gt;Gordon Ramsay&lt;/a&gt;, &lt;a href="http://66.249.93.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/Ramsay&amp;amp;prev=/language_tools" rel="tag"&gt;Ramsay&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-7806133143915471973?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/7806133143915471973/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=7806133143915471973' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/7806133143915471973'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/7806133143915471973'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/02/receipt-of-gordon-ramsay-again.html' title='A recipe of Gordon Ramsay, again! Marinated mushrooms'/><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='http://bp2.blogger.com/_sJwc_Uvy5q4/RdycpTgvFnI/AAAAAAAAAD0/tYehE8zjCns/s72-c/DSC00015.JPG' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-4610366731817632331</id><published>2007-02-20T07:52:00.000Z</published><updated>2007-02-20T07:58:14.937Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='cook'/><title type='text'>Potato Parmentier and foie gras</title><content type='html'>A small receipt containing foie gras that I would like to test  &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;br /&gt;&lt;br /&gt;Ingredients:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;4 escalopes of foie gras&lt;/li&gt;&lt;li&gt;7 Charlotte potatoes of average size&lt;/li&gt;&lt;li&gt;1 small black truffle&lt;/li&gt;&lt;li&gt;3 spoon of olive oil&lt;/li&gt;&lt;li&gt;salt, pepper&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;Preparation:&lt;br /&gt;&lt;br /&gt;Cut a half of the truffle in fine slice and hash the other half.&lt;br /&gt;Peel potatoes and place them in a large salted cold water pan.&lt;br /&gt;Carry to boiling then let cook 10 min. Verify with the point of a knife.&lt;br /&gt;Drain and crush with a fork all, and in the same time incorporate in it the olive oil and chopped truffle. Add salt and pepper.&lt;br /&gt;Distribute these mashed potaties in 4 plates.&lt;br /&gt;Make heat a frying pan then make cook escalopes of foie gras 2 min on each side. Add salt and pepper. Decorate plates with truffle.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;this dish can be serve with this wine: Sauternes (White, Bordeaux)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/foie+gras" rel="tag"&gt;foie gras&lt;/a&gt;, &lt;a href="http://technorati.com/tag/sauternes" rel="tag"&gt;sauternes&lt;/a&gt;, &lt;a href="http://technorati.com/tag/truffle" rel="tag"&gt;truffle&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-4610366731817632331?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/4610366731817632331/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=4610366731817632331' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4610366731817632331'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4610366731817632331'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/02/potato-parmentier-and-foie-gras.html' title='Potato Parmentier and foie gras'/><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-307359783498032870</id><published>2007-02-18T17:11:00.000Z</published><updated>2007-02-18T17:28:13.683Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='cook'/><title type='text'>Antipasti: Stuffed courgette rolls</title><content type='html'>&lt;div style="text-align: justify;"&gt;Do you know &lt;a href="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://www.gordonramsay.com/&amp;prev=/language_tools"&gt;Gordon Ramsay&lt;/a&gt;? it is one of the "grands chefs" in England &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_twisted.gif" alt="twisted" title="twisted" height="15" width="15" /&gt;. English cook is not the best of the world… &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_twisted.gif" alt="twisted" title="twisted" height="15" width="15" /&gt; but at least, they have very good chiefs. And Gordon Ramsay is not one of these good looking chiefs with no personality like &lt;a href="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://www.jamieoliver.com/&amp;amp;prev=/language_tools"&gt;Jamie Oliver&lt;/a&gt;… Gordon is better, it does not chew its words: it is a kind of &lt;a href="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://www.jeanpierrecoffe.com/site/index.php&amp;prev=/language_tools"&gt;Jean Pierre Coffe&lt;/a&gt; a little younger, more dynamic and much more talented. When I returned from England, I thus brought back two cookbooks by Gordon Ramsay &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_wink.gif" alt="wink" title="wink" height="15" width="15" /&gt; and my girlfriend tested (for me) one of the receipt: Stuffed courgette rolls&lt;br /&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_sJwc_Uvy5q4/RddDaG2VqNI/AAAAAAAAAC8/VE1gQgPHumc/s1600-h/PICT0014.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_sJwc_Uvy5q4/RddDaG2VqNI/AAAAAAAAAC8/VE1gQgPHumc/s400/PICT0014.JPG" alt="" id="BLOGGER_PHOTO_ID_5032565224404003026" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Ingredients:&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;4 small courgettes&lt;br /&gt;&lt;/li&gt;&lt;li&gt;olive oil&lt;/li&gt;&lt;li&gt;250g of ricotta&lt;/li&gt;&lt;li&gt;juice of a half-lemon&lt;/li&gt;&lt;li&gt;salt pepper&lt;/li&gt;&lt;li&gt;sheets of basilica&lt;br /&gt;&lt;/li&gt;&lt;li&gt;pinion of pine&lt;/li&gt;&lt;li&gt;balsamic vinegar&lt;/li&gt;&lt;/ul&gt;Preparation:&lt;br /&gt;&lt;br /&gt;Cut courgettes in length using a mandoline. Place them in a dish, sprinkle them of olive oil, salt, pepper and place in the fridge during 20 minutes.&lt;br /&gt;&lt;br /&gt;Mix the ricotta with the lemon juice, a little olive oil and add salt and pepper as much as you want. Cook pinions of pine in a small frying pan… and add them to the mixture.&lt;br /&gt;&lt;br /&gt;Form small balls of the mixture and to roll up them in the courgettes ribbons.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;If after this receipt you do not want to know Gordon Ramsay… moreover one of its restaurants: &lt;em&gt;Pétrus&lt;/em&gt; in Knightsbridge (London) received its second star with the Michelin guide.&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="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/guide%2BMichelin&amp;prev=/language_tools" rel="tag"&gt;guide Michelin&lt;/a&gt;, &lt;a href="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/mandoline&amp;amp;prev=/language_tools" rel="tag"&gt;mandoline&lt;/a&gt;, &lt;a href="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/courgette&amp;prev=/language_tools" rel="tag"&gt;zucchini&lt;/a&gt;, &lt;a href="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/ricotta&amp;amp;prev=/language_tools" rel="tag"&gt;ricotta&lt;/a&gt;, &lt;a href="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/Gordon%2BRamsay&amp;prev=/language_tools" rel="tag"&gt;Gordon Ramsay&lt;/a&gt;, &lt;a href="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/Jamie%2BOliver&amp;amp;prev=/language_tools" rel="tag"&gt;Jamie Oliver&lt;/a&gt;, &lt;a href="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/Jean-Pierre%2BCoffe&amp;prev=/language_tools" rel="tag"&gt;Jean-Pierre Coffe&lt;/a&gt;, &lt;a href="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" rel="tag"&gt;restaurant&lt;/a&gt;&lt;/span&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-307359783498032870?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/307359783498032870/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=307359783498032870' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/307359783498032870'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/307359783498032870'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/02/antipasti-stuffed-courgette-rolls.html' title='Antipasti: Stuffed courgette rolls'/><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='http://bp2.blogger.com/_sJwc_Uvy5q4/RddDaG2VqNI/AAAAAAAAAC8/VE1gQgPHumc/s72-c/PICT0014.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-446988658198195717</id><published>2007-02-15T17:35:00.000Z</published><updated>2007-02-16T07:25:49.944Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>Sony Ericsson w810i and Linux</title><content type='html'>&lt;div style="text-align: justify;"&gt;Despite all problems I had to stop my phone subscription at Orange  &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_twisted.gif" alt="twisted" title="twisted" height="15" width="15" /&gt;, my new subscription will be an Orange one &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_biggrin.gif" alt="biggrin" title="biggrin" height="15" width="15" /&gt;, after all, they are not so bad &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_lol.gif" alt="lol" title="lol" height="15" width="15" /&gt;, my choice was a little quickly and I chose a Sony Ericsson w810i &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_wink.gif" alt="wink" title="wink" height="15" width="15" /&gt;, I would have to check the compatibility of this telephone with Linux… Indeed I would like to be able to synchronize it with Kontact &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;, in particular the calendar, To-do and the list of contacts… If like me you have large fingers: the keyboard of the portable telephone can be for you a nightmare &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_rolleyes.gif" alt="rolleyes" title="rolleyes" height="15" width="15" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;The good point of Sony Ericsson w810i is that it is provided with a USB cable to connect it with your PC, when it is connected, two modes are available:&lt;br /&gt;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;File transfer&lt;/li&gt;&lt;li&gt;phone mode &lt;/li&gt;&lt;/ol&gt;The “File transfer” mode allows you to transfer the data from your mobile phone to Linux. But I have not yet succeed to make the contrary… &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_sad.gif" alt="sad" title="sad" height="15" width="15" /&gt; The phone mode can be used with Kmobiltools to see contacts, the SMS sent and receives, to telephone and send SMS. But I still did not find the ultimate tool allowing me to synchronize my mobile phone with my KDE &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_rolleyes.gif" alt="rolleyes" title="rolleyes" height="15" width="15" /&gt; with the USB link, for that I am testing some software:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Kandy: hmmm… that does not work!&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Kmobiletools: works very well but it is not what I am looking for&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Wammu/Gammu: the X interface is very ugly but this software seems to works well when it does not freeze&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Gnokii: command line tool and requires to create yourself a configuration file. Kontact uses this tool by default, but that does not work very well&lt;br /&gt;&lt;/li&gt;&lt;li&gt; GCALSYNC: that deviates a little my wired vision of a local synchronisation, but that will at least enable me to manage correctly my schedule.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;For the moment I am reduce to synchronize my telephone under Windows… and synchronise Windows with Linux… this is not the universal panacea &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_evil.gif" alt="evil" title="evil" height="15" width="15" /&gt; but I seek and hope well to find a perfect solution&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://66.249.93.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/kandy&amp;prev=/language_tools" rel="tag"&gt;kandy&lt;/a&gt;, &lt;a href="http://66.249.93.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/t%25C3%25A9l%25C3%25A9phone&amp;amp;prev=/language_tools" rel="tag"&gt;telephone&lt;/a&gt;, &lt;a href="http://66.249.93.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/Sony&amp;prev=/language_tools" rel="tag"&gt;Sony&lt;/a&gt;, &lt;a href="http://66.249.93.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/ericsson&amp;amp;prev=/language_tools" rel="tag"&gt;ericsson&lt;/a&gt;, &lt;a href="http://66.249.93.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/w810i&amp;prev=/language_tools" rel="tag"&gt;w810i&lt;/a&gt;, &lt;a href="http://66.249.93.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/kmobiletools&amp;amp;prev=/language_tools" rel="tag"&gt;kmobiletools&lt;/a&gt;, &lt;a href="http://66.249.93.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/wammu&amp;prev=/language_tools" rel="tag"&gt;wammu&lt;/a&gt;, &lt;a href="http://66.249.93.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/gammu&amp;amp;prev=/language_tools" rel="tag"&gt;gammu&lt;/a&gt;, &lt;a href="http://66.249.93.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/gnokii&amp;prev=/language_tools" rel="tag"&gt;gnokii&lt;/a&gt;, &lt;a href="http://66.249.93.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/gcalsync&amp;amp;prev=/language_tools" rel="tag"&gt;gcalsync&lt;/a&gt;, &lt;a href="http://66.249.93.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/kontact&amp;prev=/language_tools" rel="tag"&gt;kontact&lt;/a&gt;, &lt;a href="http://66.249.93.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/kde&amp;amp;prev=/language_tools" rel="tag"&gt;kde&lt;/a&gt;, &lt;a href="http://66.249.93.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/synchroniser&amp;amp;prev=/language_tools" rel="tag"&gt;to synchronize&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-446988658198195717?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/446988658198195717/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=446988658198195717' title='8 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/446988658198195717'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/446988658198195717'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/02/sony-ericsson-w810i-and-linux.html' title='Sony Ericsson w810i and Linux'/><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>8</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-2286592441721950464</id><published>2007-01-28T22:37:00.000Z</published><updated>2007-01-28T22:50:39.974Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='security'/><title type='text'>Big Brother is getting bigger and bigger</title><content type='html'>&lt;div style="text-align: justify;"&gt;Details of millions of English people could soon be shared by bureaucrats on a giant database. This database is said to improve public services but it will sweep away privacy protection laws too. A lot of civil liberties groups condemned the project as another step towards a Big Brother state! England is already leading the world in video surveillance with more than 4 million CCTV cameras in the country... and now Tony Blair unveils the Big Brother project... It is time that English people put a halt to this and take care about their privacy... English government has already proved its incapacity in big IT project (NHS, or register of criminals...) but when it is matter of money they are always ready for the worse... Let's see if English people will stand up for their privacy... Just a little quotation that everyone should keep in mind:&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;blockquote&gt; First they came for the hackers. But I never did anything illegal with my computer, so I didn't speak up. Then they came for the pornographers. But I thought there was too much smut on the Internet anyway, so I didn't speak up. Then they came for the anonymous remailers. But a lot of nasty stuff gets sent from anon.penet.fi, so I didn't speak up. Then they came for the encryption users. But I could never figure out how to work pgp5 anyway, so I didn't speak up. Then they came for me. And by that time there was no one left to speak up."&lt;br /&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;h5&gt; Alara Rogers (Aleph Press)  &lt;/h5&gt; &lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/privacy" rel="tag"&gt;privacy&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Blair" rel="tag"&gt;Blair&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Big+Brother" rel="tag"&gt;Big Brother&lt;/a&gt;, &lt;a href="http://technorati.com/tag/NHS" rel="tag"&gt;NHS&lt;/a&gt;, &lt;a href="http://technorati.com/tag/criminals" rel="tag"&gt;criminals&lt;/a&gt;, &lt;a href="http://technorati.com/tag/cameras" rel="tag"&gt;cameras&lt;/a&gt;, &lt;a href="http://technorati.com/tag/CCTV" rel="tag"&gt;CCTV&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-2286592441721950464?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/2286592441721950464/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=2286592441721950464' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2286592441721950464'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2286592441721950464'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/01/big-brother-is-getting-bigger-and.html' title='Big Brother is getting bigger and bigger'/><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>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-831952566535411705</id><published>2007-01-27T23:15:00.000Z</published><updated>2007-01-27T23:35:40.217Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='wiki'/><title type='text'>A personal wiki for Math</title><content type='html'>A few weeks ago, I presented &lt;a href="http://www.tiddlywiki.com/"&gt;Tiddlywiki&lt;/a&gt;: a marvellous Javascript &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_biggrin.gif" alt="biggrin" title="biggrin" height="15" width="15" /&gt; which  enables you to have a wiki on your computer without apache… I also explained you that it is very difficult to make maths in HTML and on the occasion, I had spoken about  &lt;a href="http://www.math.union.edu/%7Edpvc/jsMath/"&gt;jsMath&lt;/a&gt;, which enables you to do it &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_biggrin.gif" alt="biggrin" title="biggrin" height="15" width="15" /&gt;… Why not to combine both, to obtain the dream tool to make maths, to take some notes… I will explain you how to make:&lt;br /&gt;&lt;br /&gt;   1. install &lt;a href="http://www.tiddlywiki.com/"&gt;Tiddlywiki&lt;/a&gt;: it is as easy as pie but you should install it in a dedicated directory…&lt;br /&gt;   2. download  &lt;a href="http://www.math.union.edu/%7Edpvc/jsMath/"&gt;jsMath&lt;/a&gt; , decompress it in the same directory as Tiddlywiki&lt;br /&gt;   3. Then open your new personal wiki, “&lt;span style="font-weight: bold;"&gt;options&gt;&gt;&lt;/span&gt;” then “&lt;span style="font-weight: bold;"&gt;ImportTiddlers&lt;/span&gt;”&lt;br /&gt;   4. enter the URL of the plugin allowing to make the connection between Tiddlywiki and jsMath&lt;br /&gt;      &lt;span style="font-weight: bold;"&gt;http://bob.mcelrath.org/tiddlyjsmath-2.0.3.html#%5B%5BPlugin%3A%20Scientific%20Notation%5D%5D&lt;/span&gt;&lt;br /&gt;   5. click fetch and select the good plugin:&lt;br /&gt;      &lt;span style="font-weight: bold;"&gt;Plugin: jsMath    /*** |Name|Plugin: jsMath| |Created by|BobMcElrath    systemConfig systemTiddlers&lt;/span&gt;&lt;br /&gt;   6. reload the page (by pressing F5 for example)&lt;br /&gt;   7. Normally that should work.&lt;br /&gt;&lt;br /&gt;Personally I had a small problem, it did not find &lt;span style="font-weight: bold;"&gt;def.js&lt;/span&gt;… I have thus to create in the file jsMath, this list of directory: &lt;span style="font-weight: bold;"&gt;fonts/cm-fonts/alpha/ &lt;/span&gt; and I copied there the file def.js which could be found in the directory &lt;span style="font-weight: bold;"&gt;uncompressed&lt;/span&gt;. Now it works perfectly. I hope to allow the development of mathematics &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_biggrin.gif" alt="biggrin" title="biggrin" height="15" width="15" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/tiddlywiki" rel="tag"&gt;tiddlywiki&lt;/a&gt;, &lt;a href="http://technorati.com/tag/jsmath" rel="tag"&gt;jsmath&lt;/a&gt;, &lt;a href="http://technorati.com/tag/tiddler" rel="tag"&gt;tiddler&lt;/a&gt;, &lt;a href="http://technorati.com/tag/mathematics" rel="tag"&gt;mathematics&lt;/a&gt;, &lt;a href="http://technorati.com/tag/mathematics+" rel="tag"&gt;mathematics &lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-831952566535411705?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/831952566535411705/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=831952566535411705' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/831952566535411705'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/831952566535411705'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/01/personal-wiki-for-math.html' title='A personal wiki for Math'/><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>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-645312148134062646</id><published>2007-01-26T23:11:00.000Z</published><updated>2007-01-26T23:20:11.277Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blogger'/><title type='text'>Against !!!</title><content type='html'>&lt;div style="text-align: justify;"&gt;Yes I am against programs like Big Brother, I was not very clear in my previous post... It makes me sick to think that I pay TV for doing such things. I have never watch it, but it is programmed every day! All this wonderful program which cannot be broadcasted because of this headless program... Yes it makes me sick! Moreover it is not enough to  pollute the TV, it pollutes the newspapers too! What a society! Where is the progress of the mankind? People who watch it will explain you that this is a great experiment... Rubbish it is only an experiment about spectators... How many million of pounds can you do with old "has-been"? &lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/big+brother" rel="tag"&gt;big brother&lt;/a&gt;, &lt;a href="http://technorati.com/tag/rubbish" rel="tag"&gt;rubbish&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-645312148134062646?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/645312148134062646/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=645312148134062646' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/645312148134062646'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/645312148134062646'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/01/against.html' title='Against !!!'/><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-5893184081683576158</id><published>2007-01-25T22:21:00.000Z</published><updated>2007-01-25T22:28:30.645Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blogger'/><title type='text'>Big Brother</title><content type='html'>&lt;div style="text-align: justify;"&gt;Whereas France forsakes Loft Story for the Star ac… (Frankly I wonder which one of these two emissions is the worst  &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_twisted.gif" alt="twisted" title="twisted" height="15" width="15" /&gt; ) the English are fond for the Celebrity Big Brother (the name is self explaining…) even if at the beginning the audience were not very high, only a little media buzz around behavior of Jade Goody against the Indian actress Shilpa Shetty is necessary to create audience … the whole powdered with the word “racism” and the audience flies away &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_cool.gif" alt="cool" title="cool" height="15" width="15" /&gt; personally if I were the producer of this show, I would be very happy&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_cool.gif" alt="cool" title="cool" height="15" width="15" /&gt;. Personally, I do not think that Jade Goody is really racist, I think especially that she is stupid… that is all… Moreover the participants all are more or less stars on the end which hopes to give an electric shock to their career hoping to make beat the heart of the public one last time while keeping their electroencephalograph to 0 &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_twisted.gif" alt="twisted" title="twisted" height="15" width="15" /&gt;. Small list of participants:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Carole (journalist in Sunday Mirror)&lt;/li&gt;&lt;li&gt;Cleo Rocos&lt;/li&gt;&lt;li&gt;Danielle Lloyd&lt;/li&gt;&lt;li&gt;Dirk (the face in the A-Team)&lt;/li&gt;&lt;li&gt;Donny (a rocker…)&lt;/li&gt;&lt;li&gt;Ian Watkins&lt;/li&gt;&lt;li&gt;Jack (… friend of Jade Goody…)&lt;/li&gt;&lt;li&gt;Jackiey (mother Jade Goody)&lt;/li&gt;&lt;li&gt;Jade Goody (she did absolutely anything… she was only finalist in another Big Brother… )&lt;/li&gt;&lt;li&gt;Muhammad Abdul Aziz (the big brother of Michael Jackson)&lt;/li&gt;&lt;li&gt;OJ (the singer of S Seven Club (that's great artists))&lt;/li&gt;&lt;li&gt;Ken Russell (director of Tommy of Who)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Leo Sayer (a former singer)&lt;/li&gt;&lt;li&gt;Shilpa Shetty (an Indian actress)&lt;/li&gt;&lt;/ul&gt;I told you that they are all great artists &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_lol.gif" alt="lol" title="lol" height="15" width="15" /&gt;  in England, one can make fortune with anything&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="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/big%2Bbrother&amp;prev=/language_tools" rel="tag"&gt;big brother&lt;/a&gt;, &lt;a href="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/Loft%2BStory&amp;amp;prev=/language_tools" rel="tag"&gt;Loft Story&lt;/a&gt;, &lt;a href="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/Carole&amp;prev=/language_tools" rel="tag"&gt;Carole&lt;/a&gt;, &lt;a href="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/Cleo%2BRocos&amp;amp;prev=/language_tools" rel="tag"&gt;Cleo Rocos&lt;/a&gt;, &lt;a href="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/Danielle%2BLloyd&amp;prev=/language_tools" rel="tag"&gt;Danielle Lloyd&lt;/a&gt;, &lt;a href="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/Dirk&amp;amp;prev=/language_tools" rel="tag"&gt;Dirk&lt;/a&gt;, &lt;a href="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/Donny&amp;prev=/language_tools" rel="tag"&gt;Donny&lt;/a&gt;, &lt;a href="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/Ian%2BWatkins&amp;amp;prev=/language_tools" rel="tag"&gt;Ian Watkins&lt;/a&gt;, &lt;a href="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/Jackiey&amp;prev=/language_tools" rel="tag"&gt;Jackiey&lt;/a&gt;, &lt;a href="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/Goody&amp;amp;prev=/language_tools" rel="tag"&gt;Goody&lt;/a&gt;, &lt;a href="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/Jade%2BGoody&amp;prev=/language_tools" rel="tag"&gt;Goody Jade&lt;/a&gt;, &lt;a href="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/Muhammad%2BAbdul%2BAziz&amp;amp;prev=/language_tools" rel="tag"&gt;Muhammad Abdul Aziz&lt;/a&gt;, &lt;a href="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/Michael%2BJackson&amp;prev=/language_tools" rel="tag"&gt;Michael Jackson&lt;/a&gt;, &lt;a href="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/Jo&amp;amp;prev=/language_tools" rel="tag"&gt;OJ&lt;/a&gt;, &lt;a href="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/S%2BClub%2BSeven&amp;prev=/language_tools" rel="tag"&gt;S Seven Club&lt;/a&gt;, &lt;a href="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/Ken%2BRussell&amp;amp;prev=/language_tools" rel="tag"&gt;Ken Russell&lt;/a&gt;, &lt;a href="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/Leo%2BSayer&amp;prev=/language_tools" rel="tag"&gt;Leo Sayer&lt;/a&gt;, &lt;a href="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/Shilpa%2BShetty&amp;amp;prev=/language_tools" rel="tag"&gt;Shilpa Shetty&lt;/a&gt;&lt;/span&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-5893184081683576158?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/5893184081683576158/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=5893184081683576158' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5893184081683576158'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5893184081683576158'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/01/big-brother.html' title='Big Brother'/><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>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-5217319182882818404</id><published>2007-01-24T23:18:00.000Z</published><updated>2007-01-24T23:23:20.734Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='cook'/><title type='text'>The Foie Gras</title><content type='html'>The town of York could be the first English city to prohibit the sale of Foie gras! The production of Foie gras is already prohibited in the country. The city council man Labour Paul Blanchard is at the origin of this motion of banishment. The text must be submited Thursday evening to the vote of the town council of York. The foie gras is the result of the cramming of ducks and of geese, that everyone knows it… I visited even this kind of breeding and attended cramming. Mr. Blanchard estimates that it was about “cruelty towards the animals”. Personally I do not think that it is crueler than to lock up thousands of chick in barraque nonenlightened… I do not know… In any case the foie gras is much better than the chicken &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_biggrin.gif" alt="biggrin" title="biggrin" height="15" width="15" /&gt;  poor English people, lucky geeses…  &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_twisted.gif" alt="twisted" title="twisted" height="15" width="15" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/york" rel="tag"&gt;york&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Blanchard" rel="tag"&gt;Blanchard&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Foie" rel="tag"&gt;Foie&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Gras" rel="tag"&gt;Gras&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Foie+Gras" rel="tag"&gt;Foie Gras&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-5217319182882818404?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/5217319182882818404/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=5217319182882818404' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5217319182882818404'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5217319182882818404'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/01/foie-gras.html' title='The Foie Gras'/><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-3469550437983745516</id><published>2007-01-23T21:58:00.000Z</published><updated>2007-01-23T22:03:25.824Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='security'/><title type='text'>Big Brother Awards</title><content type='html'>Not! it is not a post aboout a stupid English program &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_twisted.gif" alt="twisted" title="twisted" height="15" width="15" /&gt; and I will not speak either about Jade Goody… Big Brother is the “character” created by George Orwell in his book 1984 (if you have not yet read it: you should)… and became synonymous with monitoring, or breaking the private life… and in fact precisely the French personalities (especially politicians) having acted like BigBrother “were rewarded” on January 20… One can find Jacques Lebrot, Paul Anselin, Pascal Clément… Nicolas Sarkozi being declared out of the competition &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_evil.gif" alt="evil" title="evil" height="15" width="15" /&gt;. Follow the link it is realy amusing!&lt;br /&gt; &lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/big" rel="tag"&gt;big&lt;/a&gt;, &lt;a href="http://technorati.com/tag/brother" rel="tag"&gt;brother&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Goody" rel="tag"&gt;Goody&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Big+Brother" rel="tag"&gt;Big Brother&lt;/a&gt;, &lt;a href="http://technorati.com/tag/George+Orwell" rel="tag"&gt;George Orwell&lt;/a&gt;, &lt;a href="http://technorati.com/tag/1984" rel="tag"&gt;1984&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-3469550437983745516?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://bigbrotherawards.eu.org/Palmares-2006-des-Big-Brother-Awards-France.html' title='Big Brother Awards'/><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/3469550437983745516/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=3469550437983745516' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3469550437983745516'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3469550437983745516'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/01/big-brother-awards.html' title='Big Brother Awards'/><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>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-5823823156696921829</id><published>2007-01-20T23:50:00.000Z</published><updated>2007-01-20T23:59:08.849Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='security'/><title type='text'>How to remember several very very complicated passwords?</title><content type='html'>&lt;p&gt;in fact you only need to remember one password  &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_lol.gif" alt="lol" title="lol" height="15" width="15" /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_sJwc_Uvy5q4/RbKlGsnDljI/AAAAAAAAACo/ZS9z-JqeSHA/s1600-h/pass.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_sJwc_Uvy5q4/RbKlGsnDljI/AAAAAAAAACo/ZS9z-JqeSHA/s400/pass.png" alt="" id="BLOGGER_PHOTO_ID_5022258068944295474" border="0" /&gt;&lt;/a&gt;I have just discovered “Password Composer”: the principle is simple: when you install this Greasemonkey script, each time it discovers a password field, it colors this field with green… If you double-click on the fields… a new dialog box appears and asks you for your master password… Script add then this password with the address of the site (with a change or two) and hash the result (md5)… This gives you a quite complicated password &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_lol.gif" alt="lol" title="lol" height="15" width="15" /&gt; Why not use the same password for all the Web sites, because if one of the Web sites is cracked (and that happens very often…) the hacker can retrieve your password with a “rainbow table” or by brute force… he will have both your login and your password… It then he uses Google to know where you connect also and then can access to quite all your accounts… It is then enough to use different passwords but the complicated passwords are difficult to remember…&lt;br /&gt;&lt;/div&gt;The only disadvantage of this script is that you will not have any more access from anywhere on your account, you will always need this script to connect you &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_lol.gif" alt="lol" title="lol" height="15" width="15" /&gt; if safety is at this price, it does not bother me &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_twisted.gif" alt="twisted" title="twisted" height="15" width="15" /&gt; you can always take your key USB with firefox on it &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_lol.gif" alt="lol" title="lol" height="15" width="15" /&gt; but you are likely to become as paranoiac as me and to crypt it  &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_twisted.gif" alt="twisted" title="twisted" height="15" width="15" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="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/password&amp;prev=/language_tools" rel="tag"&gt;password&lt;/a&gt;, &lt;a href="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/greasemonkey&amp;amp;prev=/language_tools" rel="tag"&gt;greasemonkey&lt;/a&gt;, &lt;a href="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/rainbow%2Btable&amp;prev=/language_tools" rel="tag"&gt;rainbow table&lt;/a&gt;, &lt;a href="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/usb&amp;amp;prev=/language_tools" rel="tag"&gt;usb&lt;/a&gt;, &lt;a href="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/firefox&amp;prev=/language_tools" rel="tag"&gt;firefox&lt;/a&gt;, &lt;a href="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/md5&amp;amp;prev=/language_tools" rel="tag"&gt;md5&lt;/a&gt;, &lt;a href="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/mot%2Bde%2Bpasse&amp;prev=/language_tools" rel="tag"&gt;password&lt;/a&gt;, &lt;a href="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/brute%2Bforce&amp;amp;prev=/language_tools" rel="tag"&gt;rough force&lt;/a&gt;&lt;/span&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-5823823156696921829?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/5823823156696921829/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=5823823156696921829' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5823823156696921829'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5823823156696921829'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/01/how-to-remember-several-very-very.html' title='How to remember several very very complicated passwords?'/><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='http://bp1.blogger.com/_sJwc_Uvy5q4/RbKlGsnDljI/AAAAAAAAACo/ZS9z-JqeSHA/s72-c/pass.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-7115036372131713201</id><published>2007-01-18T22:07:00.000Z</published><updated>2007-01-18T22:11:21.017Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='security'/><title type='text'>Benjamin Franklin and the security</title><content type='html'>Security is not only a problem of the 21st century...&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;Those who would give up essential liberty to purchase a little temporary safety, deserve neither liberty nor safety&lt;/blockquote&gt;Benjamin Franklin&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;This quotation is dedicated to all the people who think that the new biometric identity cards will prevent terrorism, but which often forget that nothing distinguishes a terrorist from an honest citizen and that consequently the only manner of fighting against this plague would be to read the most intimate thoughts of each one… I am sure that you are a little less enthusiastic now… If it is not the case, I advise you highly the reading of 1984 of George Orwell.&lt;br /&gt; &lt;/div&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/Franklin" rel="tag"&gt;Franklin&lt;/a&gt;, &lt;a href="http://technorati.com/tag/security" rel="tag"&gt;security&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Orwell" rel="tag"&gt;Orwell&lt;/a&gt;, &lt;a href="http://technorati.com/tag/terrorism" rel="tag"&gt;terrorism&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-7115036372131713201?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/7115036372131713201/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=7115036372131713201' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/7115036372131713201'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/7115036372131713201'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/01/benjamin-franklin-and-security.html' title='Benjamin Franklin and the security'/><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-5032255103794495342</id><published>2007-01-17T22:39:00.000Z</published><updated>2007-01-17T22:43:46.622Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='search engine'/><title type='text'>Google from scratch</title><content type='html'>&lt;div style="text-align: justify;"&gt;Why not become the new Google? Indeed all the ingredients are today at your disposal… the Lucene search engine + an open source crawler like Nutch or Hadoop… You miss nothing except memory and computing power… Just ask Amazon, which for a very competitive price will provide you computing power and space &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;. So why are you waiting for becoming multi-godillonaire like Forrest Gump? &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_lol.gif" alt="lol" title="lol" height="15" width="15" /&gt;a good business model to pay Amazon and to perhaps make cool benefit &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_cool.gif" alt="cool" title="cool" height="15" width="15" /&gt; or you can request the god Web 2.0&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_twisted.gif" alt="twisted" title="twisted" height="15" width="15" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt; &lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/Web2.0" rel="tag"&gt;Web2.0&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Nutch" rel="tag"&gt;Nutch&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Hadoop" rel="tag"&gt;Hadoop&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Lucene" rel="tag"&gt;Lucene&lt;/a&gt;, &lt;a href="http://technorati.com/tag/serach+engine" rel="tag"&gt;serach engine&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-5032255103794495342?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.informationweek.com/news/showArticle.jhtml?articleID=196900347' title='Google from scratch'/><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/5032255103794495342/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=5032255103794495342' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5032255103794495342'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5032255103794495342'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/01/google-from-scratch.html' title='Google from scratch'/><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-1792093692945477176</id><published>2007-01-15T21:43:00.001Z</published><updated>2007-01-15T21:43:48.938Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blogger'/><title type='text'>one more</title><content type='html'>&lt;img class="emoticon" src="http://www.anikaos.com/0011-hellokitty/kaos-hellokitty01.gif" alt="kaos-hellokitty01" title="kaos-hellokitty01" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0011-hellokitty/kaos-hellokitty02.gif" alt="kaos-hellokitty02" title="kaos-hellokitty02" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0011-hellokitty/kaos-hellokitty03.gif" alt="kaos-hellokitty03" title="kaos-hellokitty03" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0011-hellokitty/kaos-hellokitty04.gif" alt="kaos-hellokitty04" title="kaos-hellokitty04" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0011-hellokitty/kaos-hellokitty05.gif" alt="kaos-hellokitty05" title="kaos-hellokitty05" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0011-hellokitty/kaos-hellokitty06.gif" alt="kaos-hellokitty06" title="kaos-hellokitty06" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0011-hellokitty/kaos-hellokitty07.gif" alt="kaos-hellokitty07" title="kaos-hellokitty07" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0011-hellokitty/kaos-hellokitty08.gif" alt="kaos-hellokitty08" title="kaos-hellokitty08" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0011-hellokitty/kaos-hellokitty09.gif" alt="kaos-hellokitty09" title="kaos-hellokitty09" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0011-hellokitty/kaos-hellokitty10.gif" alt="kaos-hellokitty10" title="kaos-hellokitty10" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0011-hellokitty/kaos-hellokitty11.gif" alt="kaos-hellokitty11" title="kaos-hellokitty11" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0011-hellokitty/kaos-hellokitty12.gif" alt="kaos-hellokitty12" title="kaos-hellokitty12" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0011-hellokitty/kaos-hellokitty13.gif" alt="kaos-hellokitty13" title="kaos-hellokitty13" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0011-hellokitty/kaos-hellokitty14.gif" alt="kaos-hellokitty14" title="kaos-hellokitty14" /&gt;&lt;br /&gt;If you want to install them: &lt;a href="http://wolverinex02.googlepages.com/coolemoticonsforblogger"&gt;How to add emoticons on Blogger posts?&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/emoticons" rel="tag"&gt;emoticons&lt;/a&gt;, &lt;a href="http://technorati.com/tag/greasemonkey" rel="tag"&gt;greasemonkey&lt;/a&gt;, &lt;a href="http://technorati.com/tag/blogger" rel="tag"&gt;blogger&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-1792093692945477176?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/1792093692945477176/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=1792093692945477176' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/1792093692945477176'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/1792093692945477176'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/01/one-more.html' title='one more'/><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-6651048194796501849</id><published>2007-01-15T20:47:00.000Z</published><updated>2007-01-15T21:43:02.906Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blogger'/><title type='text'>New set of emoticons for Blogger</title><content type='html'>&lt;img class="emoticon" src="http://www.anikaos.com/0028-pucca_love_emoticons/pucca_love_emoticons_01.gif" alt="pucca_love_01" title="pucca_love_01" height="26" width="45" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0028-pucca_love_emoticons/pucca_love_emoticons_02.gif" alt="pucca_love_02" title="pucca_love_02" height="26" width="45" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0028-pucca_love_emoticons/pucca_love_emoticons_03.gif" alt="pucca_love_03" title="pucca_love_03" height="26" width="45" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0028-pucca_love_emoticons/pucca_love_emoticons_04.gif" alt="pucca_love_04" title="pucca_love_04" height="26" width="45" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0028-pucca_love_emoticons/pucca_love_emoticons_05.gif" alt="pucca_love_05" title="pucca_love_05" height="26" width="45" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0028-pucca_love_emoticons/pucca_love_emoticons_06.gif" alt="pucca_love_06" title="pucca_love_06" height="26" width="45" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0028-pucca_love_emoticons/pucca_love_emoticons_07.gif" alt="pucca_love_07" title="pucca_love_07" height="26" width="45" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0028-pucca_love_emoticons/pucca_love_emoticons_08.gif" alt="pucca_love_08" title="pucca_love_08" height="26" width="45" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0028-pucca_love_emoticons/pucca_love_emoticons_09.gif" alt="pucca_love_09" title="pucca_love_09" height="26" width="45" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0028-pucca_love_emoticons/pucca_love_emoticons_10.gif" alt="pucca_love_10" title="pucca_love_10" height="26" width="45" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0028-pucca_love_emoticons/pucca_love_emoticons_11.gif" alt="pucca_love_11" title="pucca_love_11" height="26" width="45" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0028-pucca_love_emoticons/pucca_love_emoticons_12.gif" alt="pucca_love_12" title="pucca_love_12" height="26" width="45" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0028-pucca_love_emoticons/pucca_love_emoticons_13.gif" alt="pucca_love_13" title="pucca_love_13" height="26" width="45" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0028-pucca_love_emoticons/pucca_love_emoticons_14.gif" alt="pucca_love_14" title="pucca_love_14" height="26" width="45" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0028-pucca_love_emoticons/pucca_love_emoticons_15.gif" alt="pucca_love_15" title="pucca_love_15" height="26" width="45" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0028-pucca_love_emoticons/pucca_love_emoticons_16.gif" alt="pucca_love_16" title="pucca_love_16" height="26" width="45" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0028-pucca_love_emoticons/pucca_love_emoticons_17.gif" alt="pucca_love_17" title="pucca_love_17" height="26" width="45" /&gt;&lt;br /&gt;If you want to install them: &lt;a href="http://wolverinex02.googlepages.com/coolemoticonsforblogger"&gt;How to add emoticons on Blogger posts?&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/emoticons" rel="tag"&gt;emoticons&lt;/a&gt;, &lt;a href="http://technorati.com/tag/greasemonkey" rel="tag"&gt;greasemonkey&lt;/a&gt;, &lt;a href="http://technorati.com/tag/blogger" rel="tag"&gt;blogger&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-6651048194796501849?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/6651048194796501849/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=6651048194796501849' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/6651048194796501849'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/6651048194796501849'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/01/new-set-of-emoticons-for-blogger.html' title='New set of emoticons for Blogger'/><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-1894605970471955168</id><published>2007-01-13T23:22:00.000Z</published><updated>2007-01-13T23:23:09.153Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blogger'/><title type='text'></title><content type='html'>&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_smilies/naruto_brosse.gif" alt="brosse" title="brosse" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_smilies/naruto_choc.gif" alt="choc" title="choc" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_smilies/naruto_doigt.gif" alt="doigt" title="doigt" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_smilies/naruto_happy.gif" alt="happy" title="happy" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_smilies/naruto_kiss.gif" alt="kiss" title="kiss" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_smilies/naruto_langue.gif" alt="langue" title="langue" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_smilies/naruto_lol.gif" alt="lol" title="lol" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_smilies/naruto_nothappy.gif" alt="nohappy" title="nohappy" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_smilies/naruto_ok.gif" alt="ok" title="ok" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_smilies/naruto_victoire.gif" alt="victoire" title="victoire" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_smilies/naruto_venere.gif" alt="venere" title="venere" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_smilies/naruto_smile.gif" alt="smile" title="smile" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_smilies/naruto_clapclap.gif" alt="clapclap" title="clapclap" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_smilies/naruto_cool.gif" alt="cool" title="cool" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_smilies/naruto_cry.gif" alt="cry" title="cry" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_smilies/naruto.gif" alt="naruto" title="naruto" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_smilies/naruto_zzz.gif" alt="zzz" title="zzz" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_smilies/naruto_pff.gif" alt="pfff" title="pfff" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_smilies/naruto_question.gif" alt="question" title="question" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0002-anime/naruto_characters/yondaime.gif" alt="yondaime" title="yondaime" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0020-anime_animated/naruto_kakashifull.gif" alt="kakashifull" title="kakashifull" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0020-anime_animated/naruto_kakashi.gif" alt="kakashi" title="kakashi" height="50" width="50" /&gt;&lt;br /&gt;If you want to install them: &lt;a href="http://wolverinex02.googlepages.com/coolemoticonsforblogger"&gt;How to add emoticons on Blogger posts?&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/emoticons" rel="tag"&gt;emoticons&lt;/a&gt;, &lt;a href="http://technorati.com/tag/greasemonkey" rel="tag"&gt;greasemonkey&lt;/a&gt;, &lt;a href="http://technorati.com/tag/blogger" rel="tag"&gt;blogger&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-1894605970471955168?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/1894605970471955168/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=1894605970471955168' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/1894605970471955168'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/1894605970471955168'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/01/if-you-want-to-install-them-how-to-add.html' title=''/><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>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-1249263000474104740</id><published>2007-01-13T23:20:00.001Z</published><updated>2007-01-13T23:22:10.227Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blogger'/><title type='text'>New emoticons for Blogger</title><content type='html'>&lt;img class="emoticon" src="http://www.anikaos.com/0000-pika/kaos-pika15.gif" alt="pika15" title="pika15" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0000-pika/kaos-pika16.gif" alt="pika16" title="pika16" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0000-pika/kaos-pika17.gif" alt="pika17" title="pika17" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0000-pika/kaos-pika18.gif" alt="pika18" title="pika18" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0000-pika/kaos-pika19.gif" alt="pika19" title="pika19" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0000-pika/kaos-pika20.gif" alt="pika20" title="pika20" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0000-pika/kaos-pika21.gif" alt="pika21" title="pika21" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0000-pika/kaos-pika22.gif" alt="pika22" title="pika22" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0000-pika/kaos-pika23.gif" alt="pika23" title="pika23" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0000-pika/kaos-pika24.gif" alt="pika24" title="pika24" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0000-pika/kaos-pika25.gif" alt="pika25" title="pika25" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0000-pika/kaos-pika26.gif" alt="pika26" title="pika26" height="50" width="50" /&gt;&lt;img class="emoticon" src="http://www.anikaos.com/0000-pika/kaos-pika14.gif" alt="pika14" title="pika14" height="50" width="50" /&gt;&lt;br /&gt;&lt;br /&gt;If you want to install them: &lt;a href="http://wolverinex02.googlepages.com/coolemoticonsforblogger"&gt;How to add emoticons on Blogger posts?&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/emoticons" rel="tag"&gt;emoticons&lt;/a&gt;, &lt;a href="http://technorati.com/tag/greasemonkey" rel="tag"&gt;greasemonkey&lt;/a&gt;, &lt;a href="http://technorati.com/tag/blogger" rel="tag"&gt;blogger&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-1249263000474104740?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/1249263000474104740/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=1249263000474104740' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/1249263000474104740'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/1249263000474104740'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/01/new-emoticons-for-blogger.html' title='New emoticons for Blogger'/><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>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-3586575463344395569</id><published>2007-01-12T22:36:00.000Z</published><updated>2007-01-12T22:43:18.541Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='mathematics'/><title type='text'>Crush or remote face</title><content type='html'>&lt;div style="text-align: justify;"&gt;Do you know that it is possible to play crush or face remotely? I choose crush or face and the other player launches the coin… but how to check that the other does not lie?  Just use mathematics &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt; In fact just use a function F difficult to reverse (hash function) : i.e.&lt;br /&gt;&lt;ol&gt;&lt;li&gt;if I choose x and that I calculate y=f (x) and that I give you y, it is impossible for you to find x.&lt;/li&gt;&lt;li&gt;if you choose x and x' different, it is quasi impossible that f (x) =f (x').  &lt;/li&gt;&lt;/ol&gt;Let us now see how can wemake: we agree: crush corresponds to the even numbers and face the odd numbers… Thus if I choose x=346432113344662: that means that I chose crush… Now I calculate Ff(X) and I send it to you: it is impossible for you to find my x &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_twisted.gif" alt="twisted" title="twisted" height="15" width="15" /&gt;, I let you launch the coin and announce me the result… To prove to you that I chose crush well, I give you x, you calculate f(x) and you can check that by calculating y=f (x) I cannot lie you: there exists only one x such as f(x) = y, if it is face… I lost: it is impossible for me to find a x' such f(x') =y. You thought that it was impossible: mathematics did it &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_cool.gif" alt="cool" title="cool" height="15" width="15" /&gt;.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="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/jeu&amp;prev=/language_tools" rel="tag"&gt;play&lt;/a&gt;, &lt;a href="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/math%25C3%25A9matiques&amp;amp;prev=/language_tools" rel="tag"&gt;mathematics&lt;/a&gt;, &lt;a href="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/pari&amp;prev=/language_tools" rel="tag"&gt;bet&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-3586575463344395569?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/3586575463344395569/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=3586575463344395569' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3586575463344395569'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3586575463344395569'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/01/crush-or-remote-face.html' title='Crush or remote face'/><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-4897074990522320472</id><published>2007-01-11T23:08:00.000Z</published><updated>2007-01-11T23:17:24.611Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='mathematics'/><title type='text'>LaTeX on Blogger</title><content type='html'>I have finally succeded to implement a LaTeX compiler for Blogger based on Greasemonkey: for example &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_arrow.gif" alt="arrow" title="arrow" height="15" width="15" /&gt; : &lt;img src="http://www.forkosh.com/mimetex.cgi?%5Csum_%7Bi=0%7D%5E%7Bn%7D%20=%20%5Cfrac%7Bn%28n+1%29%7D%7B2%7D" align="middle" border="0" /&gt;  in fact the display is not really good on this blog, but on a blog with a &lt;a href="http://wolverine-mathematic.blogspot.com/"&gt;white background&lt;/a&gt;,&lt;span style="font-weight: bold;"&gt; it is really good&lt;/span&gt;. I have written a quick Howto, just follow this link: &lt;a href="http://wolverinex02.googlepages.com/emoticonsforblogger2"&gt;Howto have LaTex equation on Blogger&lt;/a&gt; &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_biggrin.gif" alt="biggrin" title="biggrin" height="15" width="15" /&gt;. Finally Blogger is becoming more math friendly... Enjoy &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_lol.gif" alt="lol" title="lol" height="15" width="15" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/LaTeX" rel="tag"&gt;LaTeX&lt;/a&gt;, &lt;a href="http://technorati.com/tag/compiler" rel="tag"&gt;compiler&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Greasemonkey" rel="tag"&gt;Greasemonkey&lt;/a&gt;, &lt;a href="http://technorati.com/tag/mathematics" rel="tag"&gt;mathematics&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-4897074990522320472?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/4897074990522320472/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=4897074990522320472' title='21 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4897074990522320472'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4897074990522320472'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/01/latex-on-blogger.html' title='LaTeX on Blogger'/><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>21</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-3594057531318687119</id><published>2007-01-07T21:56:00.000Z</published><updated>2007-01-07T22:11:17.836Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='security'/><title type='text'>Picasaweb and a pseudo security</title><content type='html'>&lt;div style="text-align: justify;"&gt;I have just tested Picasaweb, I had not tested it yet for the simple reason which I have no desire for spreading out my private life on the Web… nevertheless to exchange pictures with somebody, it can not be too bad, therefore I the uploaded some pics  in an unlisted album… Google explains you that this album will be accessible only to the people,who are invited by you. So why a research on Google of the type: “site: picasweb.google.com authkey” returns at least one result??? It is absolutely not a safe solution to share pictures.  And I was thinking that Google was one of the champions of safety &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_lol.gif" alt="lol" title="lol" height="15" width="15" /&gt;…  No Sorry &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_twisted.gif" alt="twisted" title="twisted" height="15" width="15" /&gt; So Be careful…&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_sad.gif" alt="sad" title="sad" height="15" width="15" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/picasa" rel="tag"&gt;picasa&lt;/a&gt;, &lt;a href="http://technorati.com/tag/picasaweb" rel="tag"&gt;picasaweb&lt;/a&gt;, &lt;a href="http://technorati.com/tag/security" rel="tag"&gt;security&lt;/a&gt;, &lt;a href="http://technorati.com/tag/safety" rel="tag"&gt;safety&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-3594057531318687119?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/3594057531318687119/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=3594057531318687119' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3594057531318687119'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3594057531318687119'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/01/picasaweb-and-pseudo-security.html' title='Picasaweb and a pseudo security'/><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-9133729955841090966</id><published>2007-01-07T14:57:00.000Z</published><updated>2007-01-07T15:03:03.821Z</updated><title type='text'>Test</title><content type='html'>&lt;img src="http://www.forkosh.com/mimetex.cgi?c=\sqrt{a^2+b^2}" alt="" border=0 align=middle&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-9133729955841090966?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/9133729955841090966/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=9133729955841090966' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/9133729955841090966'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/9133729955841090966'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/01/test.html' title='Test'/><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-4786068306468798559</id><published>2007-01-04T23:29:00.000Z</published><updated>2007-01-04T23:35:28.763Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='mathematics'/><title type='text'>Equations in Blogger???</title><content type='html'>&lt;p&gt;Some times to make understand an idea, a little more complicated, it is necessary to use good tools:  &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_arrow.gif" alt="arrow" title="arrow" height="15" width="15" /&gt; mathematics… When I must write a report, I use LaTeX &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_biggrin.gif" alt="biggrin" title="biggrin" height="15" width="15" /&gt;, but on my blog how can I make??? Have you ever tried to represent an integral on blogger: it is quite impossible. This is why I seek everywhere to find a solution… for example &lt;a href="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://www.math.union.edu/%7Edpvc/jsMath/&amp;prev=/language_tools"&gt;jsmath&lt;/a&gt; which is a javascript code and which modifies the LaTeX code directly in the end-user browser… nevertheless, that requires that all the code is located on Blogger: which is not the case… the only solution in the long term will be to modify the script &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_wink.gif" alt="wink" title="wink" height="15" width="15" /&gt;… Another solution a little less elegant consists in transforming beforehand all the equations into images (png) for example with this &lt;a href="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://rogercortesi.com/eqn/index.php&amp;amp;prev=/language_tools"&gt;LaTeX editor on line&lt;/a&gt;, but that is not very user friendly… Notice that I did not speak yet about MathML, this language based on the XML should answer this problem as soon as it is completely finalized and that all the browsers will understand it… We can say that it is not for tomorrow &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_cry.gif" alt="cry" title="cry" height="15" width="15" /&gt;…  So if you have an idea, tell me  &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Tags: &lt;span class="tags"&gt;&lt;a href="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/mathematiques&amp;prev=/language_tools" rel="tag"&gt;mathematics&lt;/a&gt;, &lt;a href="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/jsmath&amp;amp;prev=/language_tools" rel="tag"&gt;jsmath&lt;/a&gt;, &lt;a href="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/mathml&amp;prev=/language_tools" rel="tag"&gt;mathml&lt;/a&gt;, &lt;a href="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/blogger&amp;amp;prev=/language_tools" rel="tag"&gt;blogger&lt;/a&gt;, &lt;a href="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/xml&amp;prev=/language_tools" rel="tag"&gt;xml&lt;/a&gt;, &lt;a href="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/LaTeX&amp;amp;prev=/language_tools" rel="tag"&gt;Latex&lt;/a&gt;, &lt;a href="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/javascript&amp;prev=/language_tools" rel="tag"&gt;Javascript&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="tag_list"&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-4786068306468798559?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/4786068306468798559/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=4786068306468798559' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4786068306468798559'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4786068306468798559'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2007/01/equations-in-blogger.html' title='Equations in Blogger???'/><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>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-5537755799835024830</id><published>2006-12-28T13:24:00.000Z</published><updated>2006-12-28T13:33:04.318Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='receipt'/><title type='text'>Cake Salmon and Tarama</title><content type='html'>&lt;div style="text-align: justify;"&gt;A little more  advanced receipt of a cake for the  end of the year &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_smile.gif" alt="smile" title="smile" height="15" width="15" /&gt; : cake with salmon  and tarama.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=fr_en&amp;trurl=http%3a%2f%2fbp0.blogger.com%2f_sJwc_Uvy5q4%2fRZO_RBTnftI%2fAAAAAAAAAAo%2fhFmJNWmOxKU%2fs1600-h%2fPICT0071.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_sJwc_Uvy5q4/RZO_RBTnftI/AAAAAAAAAAo/hFmJNWmOxKU/s400/PICT0071.JPG" alt="" id="BLOGGER_PHOTO_ID_5013561109322890962" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Ingredients:&lt;br /&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 small bag of yeast&lt;br /&gt;&lt;/li&gt;&lt;li&gt;olive oil 8cl&lt;/li&gt;&lt;li&gt;semi-skimmed milk 13cl&lt;/li&gt;&lt;li&gt;100 G of Gruyere rapé&lt;br /&gt;&lt;/li&gt;&lt;li&gt;salt and pepper&lt;/li&gt;&lt;li&gt;250 G of tarama (most common: cod eggs)&lt;/li&gt;&lt;li&gt;125 G of sumon smoked&lt;/li&gt;&lt;li&gt;chives&lt;/li&gt;&lt;/ul&gt;Preparation&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;Preheat the oven (thermostat 5 - 6)&lt;br /&gt;Mix the flour with yeast. Then add eggs to it and mix well until obtaining a quite homogeneous paste, add then  milk and oil, mix again... Add the gruyere, salt and  pepper.&lt;br /&gt;&lt;div style="text-align: justify;"&gt;Cut the salmon smoked steaks in rubbon of approximately  1cm broad&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Add to your preparation chive, the plates of  salmon and tarama: mix again.&lt;br /&gt;Put the preparation in a buttered and floured mould.&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=fr_en&amp;trurl=http%3a%2f%2fbp1.blogger.com%2f_sJwc_Uvy5q4%2fRZO_QRTnfsI%2fAAAAAAAAAAg%2fHtMAawmBFFo%2fs1600-h%2fPICT0066.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_sJwc_Uvy5q4/RZO_QRTnfsI/AAAAAAAAAAg/HtMAawmBFFo/s400/PICT0066.JPG" alt="" id="BLOGGER_PHOTO_ID_5013561096437989058" border="0" /&gt;&lt;/a&gt;Put it in the oven during 45 minutes. Eat it at ambient temperature &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_biggrin.gif" alt="biggrin" title="biggrin" height="15" width="15" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/chive" rel="tag"&gt;chive&lt;/a&gt;, &lt;a href="http://technorati.com/tag/salmon" rel="tag"&gt;salmon&lt;/a&gt;, &lt;a href="http://technorati.com/tag/cake" rel="tag"&gt;cake&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-5537755799835024830?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/5537755799835024830/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=5537755799835024830' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5537755799835024830'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5537755799835024830'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/12/little-more-advanced-receipt-of-cake.html' title='Cake Salmon and Tarama'/><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='http://bp0.blogger.com/_sJwc_Uvy5q4/RZO_RBTnftI/AAAAAAAAAAo/hFmJNWmOxKU/s72-c/PICT0071.JPG' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-3280488272072021874</id><published>2006-12-21T22:43:00.000Z</published><updated>2006-12-21T22:49:20.804Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Internet'/><title type='text'>Enough of Youtube… Discover Zudeo</title><content type='html'>&lt;div class="post-body"&gt;       &lt;div style="text-align: justify;"&gt;Zudeo is a very new site offering only videos of high definition to be downloaded… thanks to the Bitorrent technology (more precisely based on the Azureus engine). This time the files being able to be to download are free. Thus they are primarily trailer cards, and videos of high quality of video game or small films without pretention… But the BBC made an agreement to put all its emissions on it: Doctor Who, Monty Python, perhaps Torchwood… The large distributors only start to foresee the possibilities of Peer-to-Peer… The world is changing &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://66.249.93.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/haute%2Bqualit%25C3%25A9&amp;prev=/language_tools" rel="tag"&gt;high quality&lt;/a&gt;, &lt;a href="http://66.249.93.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/youtube&amp;amp;prev=/language_tools" rel="tag"&gt;youtube&lt;/a&gt;, &lt;a href="http://66.249.93.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/zudeo&amp;prev=/language_tools" rel="tag"&gt;zudeo&lt;/a&gt;, &lt;a href="http://66.249.93.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/Doctor%2BWho&amp;amp;prev=/language_tools" rel="tag"&gt;Doctor Who&lt;/a&gt;, &lt;a href="http://66.249.93.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/Monty%2BPython&amp;prev=/language_tools" rel="tag"&gt;Monty Python&lt;/a&gt;, &lt;a href="http://66.249.93.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/Torchwood&amp;amp;prev=/language_tools" rel="tag"&gt;Torchwood&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-3280488272072021874?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.zudeo.com/az-web/app' title='Enough of Youtube… Discover Zudeo'/><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/3280488272072021874/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=3280488272072021874' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3280488272072021874'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3280488272072021874'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/12/enough-of-youtube-discover-zudeo.html' title='Enough of Youtube… Discover Zudeo'/><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-5182669318467619928</id><published>2006-12-20T21:46:00.000Z</published><updated>2006-12-21T18:08:40.715Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='mathematics'/><title type='text'>The Chinese Theorem</title><content type='html'>&lt;div style="text-align: justify;"&gt;Following a little discussion with Wendell, a little presentation of the Chinese theorem. At the 3rd century, Sun Tsu developed an elegant way to count the number of soldier of the Great Army of China. It makes them be aligned on 13, 17, 19, 23 columns and count only the number of soldier who does not form a complete row: a small diagram to explane on 3 rows:&lt;br /&gt;&lt;/div&gt; &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;br /&gt;&lt;br /&gt;result: Sun Tsu counts only up to 2… Let us note N the number of soldier of the large army and A the product it a1.a2.a3… the problem is then:&lt;br /&gt;&lt;blockquote&gt;NR = n1 [a1]&lt;br /&gt;NR = N2 [a2]&lt;br /&gt;NR = n3 [a3]&lt;br /&gt;...&lt;br /&gt;&lt;/blockquote&gt;if a1, a2, a3… are chosen to be prime 2 to 2 then N can be written as:&lt;br /&gt;&lt;blockquote&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_cool.gif" alt="cool" title="cool" height="15" width="15" /&gt; N=n1.n1.(A/a1) + n2.n2.(A/a2) + n3.n3.(A/a3)...&lt;/blockquote&gt;How to calculate e1, e2, e3….?  In fact it is very simple: just use the correct identity of Bezout:&lt;br /&gt;&lt;blockquote&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_idea.gif" alt="idea" title="idea" height="15" width="15" /&gt; e1 such as e1.a1 + n1. (A/a1) = 1&lt;br /&gt;and so &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_arrow.gif" alt="arrow" title="arrow" height="15" width="15" /&gt; n1.n1.(A/a1) = 1 [a1]&lt;br /&gt;&lt;/blockquote&gt;from there you can easily check that the solution is the good one modulo A.&lt;br /&gt;Voila Wendell: this is the Chinese theorem…  &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/mathematics" rel="tag"&gt;mathematics&lt;/a&gt;, &lt;a href="http://technorati.com/tag/chinese" rel="tag"&gt;chinese&lt;/a&gt;, &lt;a href="http://technorati.com/tag/theorem" rel="tag"&gt;theorem&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Sun+Tsu" rel="tag"&gt;Sun Tsu&lt;/a&gt;, &lt;a href="http://technorati.com/tag/China" rel="tag"&gt;China&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Great+Army" rel="tag"&gt;Great Army&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-5182669318467619928?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/5182669318467619928/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=5182669318467619928' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5182669318467619928'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5182669318467619928'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/12/chinese-theorem.html' title='The Chinese Theorem'/><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-8150824348765114024</id><published>2006-12-19T22:23:00.000Z</published><updated>2006-12-19T23:12:48.810Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='photo'/><title type='text'>A new search engine: Riya</title><content type='html'>I have just discovered a brand new service: RIYA, which allow you to make &lt;a href="http://www.riya.com/"&gt;pictures recognition&lt;/a&gt;. But what could be the purpose of such a tool... First of all have you ever tried to find a given picture on Google or Flickr? Most of the time you find all and nothing... If you try to search a car: you will find video Games about cars and a lot of other things... but probably not what you are exactly searching, at least not in the first result... It is because Google search in the content of the page, which contains the picture... not the picture itself. It means that if I create a web page about cars but with a pics of a pizza: if you search "car", you will probably find my "pizza". That's why Google want to tags pictures... and ask for user to &lt;a href="http://images.google.com/imagelabeler/"&gt;label some pics&lt;/a&gt;  It is presented as a game: very clever.&lt;br /&gt;Riya does that alone, automatically and recognize some faces and read directly inside the picture. You have to add your pics, and then train the system by selectionning the face of a person and put a name associate to this face... Then the search engine can do that alone... So now imagine that you want to find all the pictures of Clint Eastwood: the search engine will effectively find only pics of Clint Eastwood... You want a picture not the text with the picture: the search engine index the content of the pics... I don't know the technology they use but result some to be good...&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_OVEdg0gDJ4E/RYhx2nt0suI/AAAAAAAAAAk/dFlSwhO_zeU/s1600-h/riya.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_OVEdg0gDJ4E/RYhx2nt0suI/AAAAAAAAAAk/dFlSwhO_zeU/s400/riya.png" alt="" id="BLOGGER_PHOTO_ID_5010379768637731554" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/label" rel="tag"&gt;label&lt;/a&gt;, &lt;a href="http://technorati.com/tag/pics" rel="tag"&gt;pics&lt;/a&gt;, &lt;a href="http://technorati.com/tag/riya" rel="tag"&gt;riya&lt;/a&gt;, &lt;a href="http://technorati.com/tag/search+engine" rel="tag"&gt;search engine&lt;/a&gt;, &lt;a href="http://technorati.com/tag/picture+recognition" rel="tag"&gt;picture recognition&lt;/a&gt;, &lt;a href="http://technorati.com/tag/face" rel="tag"&gt;face&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-8150824348765114024?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.riya.com' title='A new search engine: Riya'/><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/8150824348765114024/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=8150824348765114024' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8150824348765114024'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8150824348765114024'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/12/new-search-engine-riya.html' title='A new search engine: Riya'/><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='http://bp0.blogger.com/_OVEdg0gDJ4E/RYhx2nt0suI/AAAAAAAAAAk/dFlSwhO_zeU/s72-c/riya.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-1735313577737616640</id><published>2006-12-16T23:06:00.000Z</published><updated>2006-12-18T23:45:07.254Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blogger'/><title type='text'>Emoticons for Blogger</title><content type='html'>&lt;div style="text-align: justify;"&gt;I have used the Firefox extension: Greasemonkey to add a new fonctionnality to Blogger: emoticons &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" alt="razz" title="razz" height="15" width="15" /&gt;. You can find the script here: &lt;a href="http://wolverinex02.googlepages.com/emoticonsforblogger"&gt;emoticons for blogger&lt;/a&gt; and how to install it. For the moment the proof :&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_OVEdg0gDJ4E/RYSFWHt0stI/AAAAAAAAAAY/3lmBkrExupY/s1600-h/smileyblogger1.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_OVEdg0gDJ4E/RYSFWHt0stI/AAAAAAAAAAY/3lmBkrExupY/s400/smileyblogger1.png" alt="" id="BLOGGER_PHOTO_ID_5009275300617695954" border="0" /&gt;&lt;/a&gt;I think that emoticons are the best way to make understand emotions, thinks and opinions. Since the beginning, I have always thought that the lack of emoticons was the only lack of Blogger... Because Google is not quick enough to fix it, I use Greasemonkey to fix it... Thank you firefox &lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_twisted.gif" alt="twisted" title="twisted" height="15" width="15" /&gt; I still have to tweak the code to insert the emoticon just after the cursor, but the script is already usable: ENJOY&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-1735313577737616640?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://wolverinex02.googlepages.com/emoticonsforblogger' title='Emoticons for Blogger'/><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/1735313577737616640/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=1735313577737616640' title='13 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/1735313577737616640'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/1735313577737616640'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/12/emoticons-for-blogger.html' title='Emoticons for Blogger'/><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='http://bp2.blogger.com/_OVEdg0gDJ4E/RYSFWHt0stI/AAAAAAAAAAY/3lmBkrExupY/s72-c/smileyblogger1.png' height='72' width='72'/><thr:total>13</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-3259426925943968114</id><published>2006-12-11T22:48:00.000Z</published><updated>2006-12-11T22:54:34.172Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blogger'/><title type='text'>Test smileys</title><content type='html'>&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_arrow.gif" width="15" height="15" alt="arrow" title="arrow" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_biggrin.gif" width="15" height="15" alt="biggrin" title="biggrin" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_confused.gif" width="15" height="15" alt="confused" title="confused" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_cool.gif" width="15" height="15" alt="cool" title="cool" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_cry.gif" width="15" height="15" alt="cry" title="cry" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_eek.gif" width="15" height="15" alt="eek" title="eek" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_exclaim.gif" width="15" height="15" alt="exclaim" title="exclaim" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_exclaim.gif" width="15" height="15" alt="exclaim" title="exclaim" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_idea.gif" width="15" height="15" alt="idea" title="idea" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_lol.gif" width="15" height="15" alt="lol" title="lol" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_mad.gif" width="15" height="15" alt="mad" title="mad" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_mrgreen.gif" width="15" height="15" alt="mrgreen" title="mrgreen" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_neutral.gif" width="15" height="15" alt="neutral" title="neutral" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_question.gif" width="15" height="15" alt="question" title="question" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_razz.gif" width="15" height="15" alt="razz" title="razz" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_rolleyes.gif" width="15" height="15" alt="rolleyes" title="rolleyes" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_redface.gif" width="15" height="15" alt="redface" title="redface" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_sad.gif" width="15" height="15" alt="sad" title="sad" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_smile.gif" width="15" height="15" alt="smile" title="smile" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_surprised.gif" width="15" height="15" alt="surprised" title="surprised" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_twisted.gif" width="15" height="15" alt="twisted" title="twisted" /&gt;&lt;img class="emoticon" src="http://wolverinex02.googlepages.com/icon_wink.gif" width="15" height="15" alt="wink" title="wink" /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-3259426925943968114?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/3259426925943968114/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=3259426925943968114' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3259426925943968114'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3259426925943968114'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/12/test-smileys.html' title='Test smileys'/><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-6923686224947784732</id><published>2006-12-10T09:51:00.000Z</published><updated>2006-12-10T10:29:58.334Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='security'/><title type='text'>Data leaks from the "Identity and Passport Service"</title><content type='html'>&lt;div style="text-align: justify;"&gt;Thanks to &lt;a href="http://beta.blogger.com/profile/08553873036366356241"&gt;Wendell&lt;/a&gt;, I have found another article (follow the link of the title). It seems that information already detained by the State is not secured... In the Identity and Passport Service, which is setting up the National Identity Register, some members of the staff "hacked" the system to access private data from citizens...&lt;br /&gt;&lt;/div&gt;&lt;blockquote&gt;Personal information about every British passport holder - including their date of birth, &lt;span style="font-weight: bold;"&gt;mother's maiden name&lt;/span&gt;, address and photographs - is already held in the IPS computers.&lt;br /&gt;&lt;/blockquote&gt;&lt;div style="text-align: justify;"&gt;Now, do you remember one of the most common question bank ask you when they try to retrieve information about you...  Yes your mother's maiden name! But it is simple to use it on Google, Yahoo or MSN to access to the mailbox... because in this case too, the mother's maiden name is often one of the recovery question... So even with so few information, which could already lead to an identity theft... you can already do some very harmful things... The problem with the dream of the British Big Brother is that it seems that every one can look over its shoulder... So imagine what could happen in the future with biometric data (have a look to this &lt;a href="http://www.geek-happens.com/p/EN/files/nothing-to-hide.html"&gt;cartoon&lt;/a&gt; thank you Anonymous ;-)  ) That's why I think that we have to think very carefully to the information we let institutions to record... And how they do that! That was the principal reason of my previous &lt;a href="http://servalx02.blogspot.com/2006/12/heathrow-becomes-boimetric.html"&gt;post&lt;/a&gt;...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/maiden" rel="tag"&gt;maiden&lt;/a&gt;, &lt;a href="http://technorati.com/tag/big+brother" rel="tag"&gt;big brother&lt;/a&gt;, &lt;a href="http://technorati.com/tag/National+Identity+Register" rel="tag"&gt;National Identity Register&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Identity+and+Passport+Service" rel="tag"&gt;Identity and Passport Service&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-6923686224947784732?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.thisislondon.co.uk/news/article-23364764-details/ID+card+fears+as+staff+hack+into+Home+Office+database/article.do' title='Data leaks from the &quot;Identity and Passport Service&quot;'/><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/6923686224947784732/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=6923686224947784732' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/6923686224947784732'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/6923686224947784732'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/12/data-leaks-from-identity-and-passport.html' title='Data leaks from the &quot;Identity and Passport Service&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>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-8863775816087733983</id><published>2006-12-06T18:53:00.000Z</published><updated>2006-12-06T19:41:52.585Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='security'/><title type='text'>Heathrow becomes biometric</title><content type='html'>The Heathrow airport is beginning to test an iris scan biometric machine to identify passengers at customs. Big Brother is not yet here and biometric passport are not yet mandatory... In fact passengers at Heathrow airport are being invited to take part in a trial of tech biometric scanning equipment which aims to make the travelling process easier by getting people through identity checks faster than ever before... All iris scan are record in a database, which will permit later to speed up the check of passenger... But the problem is how to be sure that this database will be safe, that information will not leak... Some people already sell data about others like address, phone number, gender, bank account number... So imagine what might happen with your biometric characteristics... Have you ever seen "Minority Report" and "Gattaca"? In Minority Report, all the shops use your iris to display targeted advertising... In Gattaca, even if there are plenty of biometric detector, one guy is able to fool all of them...  This technology can be very useful but data have to be recorded carefully, maybe by using a fuzzy system... This time you don't record the biometric characteristic but a key &lt;span style="font-weight: bold;"&gt;c&lt;/span&gt; and the distance between &lt;span style="font-weight: bold;"&gt;c&lt;/span&gt; and your biometric characteristic &lt;span style="font-weight: bold;"&gt;x&lt;/span&gt;, which is name &lt;span style="font-weight: bold;"&gt;d&lt;/span&gt;. Now we use a fuzzy hash function: minor error leads to the same result, medium error produces a different hash. So in your database you have:&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;blockquote style="font-weight: bold;"&gt;(h(c),d)&lt;/blockquote&gt;when you present your biometric characteristic, you compute: &lt;span style="font-weight: bold;"&gt;h(d+x')&lt;/span&gt; which has to match &lt;span style="font-weight: bold;"&gt;h(c)&lt;/span&gt; to be accepted...&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_OVEdg0gDJ4E/RXca-a1nvtI/AAAAAAAAAAM/m6GkKokfWz0/s1600-h/analogie1.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 253px; height: 192px;" src="http://bp1.blogger.com/_OVEdg0gDJ4E/RXca-a1nvtI/AAAAAAAAAAM/m6GkKokfWz0/s400/analogie1.png" alt="" id="BLOGGER_PHOTO_ID_5005499170504031954" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;The result is that you can change the secret if the database is compromise... It is maybe not the best method, as it requests a good function  &lt;span style="font-weight: bold;"&gt;h&lt;/span&gt; but it is probably better than let the data on an untrusted server... Live and learn to see how this system will be broken...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/heathrow" rel="tag"&gt;heathrow&lt;/a&gt;, &lt;a href="http://technorati.com/tag/fuzzy" rel="tag"&gt;fuzzy&lt;/a&gt;, &lt;a href="http://technorati.com/tag/biometric" rel="tag"&gt;biometric&lt;/a&gt;, &lt;a href="http://technorati.com/tag/database" rel="tag"&gt;database&lt;/a&gt;, &lt;a href="http://technorati.com/tag/hash" rel="tag"&gt;hash&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Minority+Report" rel="tag"&gt;Minority Report&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Gattaca" rel="tag"&gt;Gattaca&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-8863775816087733983?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/8863775816087733983/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=8863775816087733983' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8863775816087733983'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8863775816087733983'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/12/heathrow-becomes-boimetric.html' title='Heathrow becomes biometric'/><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='http://bp1.blogger.com/_OVEdg0gDJ4E/RXca-a1nvtI/AAAAAAAAAAM/m6GkKokfWz0/s72-c/analogie1.png' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-2462784895996424951</id><published>2006-12-02T19:18:00.000Z</published><updated>2006-12-02T19:25:39.544Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>Flash Player 9 and Linux</title><content type='html'>YES, now I  will be able to play to the games written in Flash and to enjoy the new web sites based on Flex2.0. This time, it is as easy as pie to install : just download the plugin from this adress:&lt;br /&gt;&lt;a href="http://www.adobe.com/go/fp9_update_b2_installer_linuxplugin"&gt;http://www.adobe.com/go/fp9_update_b2_installer_linuxplugin &lt;/a&gt;&lt;br /&gt;uncompress it and copy libflashplayer.so in your user's directory of plugins of Mozilla: it must be something as: ~/.mozilla/plugins/ ... Restart it, and now you are ready for web site based on flash (you can test the &lt;a href="http://wolverinex02.blogspot.com/2006/11/un-jeu-mc-donald.html"&gt;MacDo&lt;/a&gt;'s game). And now enjoy the beauty of flash...&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/flash+player" rel="tag"&gt;flash player&lt;/a&gt;, &lt;a href="http://technorati.com/tag/flash+9" rel="tag"&gt;flash 9&lt;/a&gt;, &lt;a href="http://technorati.com/tag/linux" rel="tag"&gt;linux&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Firefox" rel="tag"&gt;Firefox&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Flex2.0" rel="tag"&gt;Flex2.0&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-2462784895996424951?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/2462784895996424951/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=2462784895996424951' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2462784895996424951'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2462784895996424951'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/12/flash-player-9-and-linux.html' title='Flash Player 9 and Linux'/><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-2363633269875732327</id><published>2006-11-29T22:35:00.000Z</published><updated>2006-11-29T23:15:03.666Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>Close and manage file with vim</title><content type='html'>Let's continue with the best practice of the vim software:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;:q&lt;/span&gt;&lt;br /&gt;to close vim&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;:q!&lt;/span&gt;&lt;br /&gt;to close vim without recording the modifications&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;:w&lt;/span&gt;&lt;br /&gt;to write the modification&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;:w [NEW_FILE]&lt;/span&gt;&lt;br /&gt;to write the file you are editing in NEW_FILE&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;:w! [&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;FILE&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;]&lt;/span&gt;&lt;br /&gt;it is the same action as before but you force the action&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;:n,mw [&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;FILE&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;]&lt;/span&gt;&lt;br /&gt;save the lines from n to m in the file FILE&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;:n,mw &gt;&gt;[&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;FILE&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;]&lt;/span&gt;&lt;br /&gt;add the lines from n to m at the end of the file FILE&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;:wq ou :x ou ZZ&lt;/span&gt;&lt;br /&gt;Save the file and close vim&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;:e!&lt;/span&gt;&lt;br /&gt;edit the file again but with the version on the disk&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;:e [&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;FILE&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;]&lt;/span&gt;&lt;br /&gt;edit the file FILE rather than the current file (&lt;span style="font-weight: bold;"&gt;:e!&lt;/span&gt; to force the action)&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;:r [&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;FILE&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;]&lt;/span&gt;&lt;br /&gt;insert the file FILE after the current line&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;:rn [&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;FILE&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;] ou :nr [&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;FILE&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;]&lt;/span&gt;&lt;br /&gt;insert the file FILE after the line n&lt;br /&gt;n is either a number, or . for the current line, or $ for the last line.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;:version&lt;/span&gt;&lt;br /&gt;display information about vim&lt;br /&gt;&lt;br /&gt;it should be enough today to play a little and increase your productivity lol ;-)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/vim" rel="tag"&gt;vim&lt;/a&gt;, &lt;a href="http://technorati.com/tag/productivity" rel="tag"&gt;productivity&lt;/a&gt;, &lt;a href="http://technorati.com/tag/linux" rel="tag"&gt;linux&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-2363633269875732327?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/2363633269875732327/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=2363633269875732327' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2363633269875732327'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2363633269875732327'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/11/close-and-manage-file-with-vim.html' title='Close and manage file with vim'/><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-5000674843235269473</id><published>2006-11-29T21:47:00.000Z</published><updated>2006-11-29T22:03:54.307Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='health'/><title type='text'>Brothers in court "for making pet dog obese"</title><content type='html'>At first glance, you could think that if Derek and David Denton go to a court for their dog, it is because of some Fast Food for dog, like a Royal McDo... Not at all they are guilty to have feed their dog too much...&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger2/3815/3949/1600/351291/dogobesity.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger2/3815/3949/400/21080/dogobesity.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;I am waiting now the first trial of parents, who let their child becoming obese...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/Fast+Food" rel="tag"&gt;Fast Food&lt;/a&gt;, &lt;a href="http://technorati.com/tag/dog" rel="tag"&gt;dog&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-5000674843235269473?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/5000674843235269473/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=5000674843235269473' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5000674843235269473'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5000674843235269473'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/11/brothers-in-court-for-making-pet-dog.html' title='Brothers in court &quot;for making pet dog obese&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>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-8682333653409300814</id><published>2006-11-28T21:02:00.000Z</published><updated>2006-11-28T22:31:39.158Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='security'/><title type='text'>A search engine dedicated to Security</title><content type='html'>&lt;div style="text-align: justify;"&gt;I have played a little with the Google's technology to develop a search engine dedicated to the Security (of Internet, Computer, Networks...)&lt;br /&gt;&lt;/div&gt;The search engine can be found at this adress:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://cosearch.googlepages.com/cosecurity.html"&gt;http://cosearch.googlepages.com/cosecurity.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;For the moment only those urls are recorded for researches:&lt;a href="http://www.sans.org" class="fakelink"&gt;&lt;br /&gt;&lt;span jscontent="data.getOriginalUrl()" jsvalues=".onclick:$ctrl.createHandler('edit', $index)"&gt;http://www.sans.org&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://secunia.com/" class="fakelink"&gt;&lt;span jscontent="data.getOriginalUrl()" jsvalues=".onclick:$ctrl.createHandler('edit', $index)"&gt;http://secunia.com/&lt;/span&gt;&lt;/a&gt;&lt;a href="http://secunia.com/"&gt; &lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.securityfocus.com/" class="fakelink"&gt;&lt;span jscontent="data.getOriginalUrl()" jsvalues=".onclick:$ctrl.createHandler('edit', $index)"&gt;http://www.securityfocus.com/&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://edition.cnn.com/2006/LAW/11/20/internet.libel.ap/index.html"&gt;http://edition.cnn.com/2006/LAW/11/20/internet.libel.ap/index.html&lt;/a&gt;(Court OKs broad Web libel immunity)&lt;br /&gt;&lt;a href="http://edition.cnn.com/2006/LAW/11/20/internet.libel.ap/index.html"&gt;http://edition.cnn.com/2006/LAW/11/20/internet.libel.ap/index.html&lt;/a&gt;(Hackers plant virus on Website of China's largest bankcard operator)&lt;br /&gt;&lt;a href="http://www.guardian.co.uk/frontpage/story/0,,1953213,00.html"&gt;http://www.guardian.co.uk/frontpage/story/0,,1953213,00.html(GPs revolt over patient files privacy)&lt;br /&gt;&lt;/a&gt;&lt;a href="http://www.cylab.cmu.edu/"&gt;http://www.cylab.cmu.edu/&lt;/a&gt;(Carnegie Mellon CyLab)&lt;br /&gt;&lt;a href="http://news.netcraft.com/"&gt;http://news.netcraft.com/&lt;/a&gt; (Netcraft)&lt;br /&gt;&lt;br /&gt;In fact I use it at my office, but it seems that it is not yet enough mature for the moment only : there are not enough urls in its database... So if some people want to take part to the adventure or post some interesting url...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/netcraft" rel="tag"&gt;netcraft&lt;/a&gt;, &lt;a href="http://technorati.com/tag/sans" rel="tag"&gt;sans&lt;/a&gt;, &lt;a href="http://technorati.com/tag/secunia" rel="tag"&gt;secunia&lt;/a&gt;, &lt;a href="http://technorati.com/tag/securityfocus" rel="tag"&gt;securityfocus&lt;/a&gt;, &lt;a href="http://technorati.com/tag/cosearch" rel="tag"&gt;cosearch&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-8682333653409300814?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/8682333653409300814/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=8682333653409300814' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8682333653409300814'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8682333653409300814'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/11/search-engine-dedicated-to-security.html' title='A search engine dedicated to Security'/><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-4158628637616935345</id><published>2006-11-19T17:07:00.000Z</published><updated>2006-11-19T17:34:25.579Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>How to launch Vim</title><content type='html'>We have to begin with the beginning: it is not easy to use Vim at 100%, but as soon as you will you can win a huge amount of time ;-)&lt;br /&gt;&lt;br /&gt;To open a file:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;vim myfile&lt;/span&gt;&lt;br /&gt;To have a list of all the file you can recover:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;vim -r&lt;/span&gt;&lt;br /&gt;To recover a file after a crash:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;vim -r&lt;/span&gt; to find recovery files available (they end with &lt;span style="font-weight: bold;"&gt;.swp&lt;/span&gt;)&lt;br /&gt;Then, when you find it, type&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;vim -r .pass.txt.swp&lt;/span&gt;&lt;br /&gt;if you want to open a file at the line N for example: just type:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;vim +N myfile&lt;/span&gt;&lt;br /&gt;to open it and go directly to the end of the file:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;vim + myfile&lt;/span&gt;&lt;br /&gt;To open file at the first line containing some regular expression &lt;span style="font-weight: bold;"&gt;regexp&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;vim +/regexp myfile&lt;/span&gt;&lt;br /&gt;Enough for this post...&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/linux" rel="tag"&gt;linux&lt;/a&gt;, &lt;a href="http://technorati.com/tag/vim" rel="tag"&gt;vim&lt;/a&gt;, &lt;a href="http://technorati.com/tag/time" rel="tag"&gt;time&lt;/a&gt;, &lt;a href="http://technorati.com/tag/recover" rel="tag"&gt;recover&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-4158628637616935345?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/4158628637616935345/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=4158628637616935345' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4158628637616935345'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4158628637616935345'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/11/how-to-launch-vim.html' title='How to launch Vim'/><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-2563463870510839548</id><published>2006-11-19T09:10:00.000Z</published><updated>2006-11-19T09:19:33.163Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>Vim</title><content type='html'>&lt;div style="text-align: justify;"&gt;In my office, because we are in a Windows environment for our laptop/destop, but because all our server run Linux/Unix, I have to program in command line and as consequence I use Vim... If you want to know what is vim go to wikipedia, if you don't want to change the page (;-) good girl or good boy or good alien) : here is the Vim's introduction directly from Wikipedia:&lt;br /&gt;&lt;blockquote&gt;Vim, which stands for &lt;b&gt;Vi IMproved&lt;/b&gt;, is an open source, multiplatform text editor extended from vi. It was first released by Bram Moolenaar in 1991. Since then, numerous features have been added to Vim, many of which are helpful in editing program source code. Vim is today one of the two most popular editors for programmers and users of Unix-like operating systems, alongside Emacs.&lt;br /&gt;&lt;/blockquote&gt;Vim is a very powerful editor... as soon as you know how to use it! Son in the next day I will try to give you the main command and explain to you how to use it at 100%.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/editor" rel="tag"&gt;editor&lt;/a&gt;, &lt;a href="http://technorati.com/tag/text" rel="tag"&gt;text&lt;/a&gt;, &lt;a href="http://technorati.com/tag/vim" rel="tag"&gt;vim&lt;/a&gt;, &lt;a href="http://technorati.com/tag/wikipedia" rel="tag"&gt;wikipedia&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Moolenaar" rel="tag"&gt;Moolenaar&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Emacs" rel="tag"&gt;Emacs&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-2563463870510839548?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/2563463870510839548/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=2563463870510839548' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2563463870510839548'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2563463870510839548'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/11/vim.html' title='Vim'/><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-4439275658109112947</id><published>2006-11-17T19:36:00.000Z</published><updated>2006-11-17T19:51:02.764Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='game'/><title type='text'>A McDonald's game?</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.mcvideogame.com/game-eng.html"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger2/5454/3588/400/861937/mcdo_play.png" alt="" border="0" /&gt;&lt;/a&gt;I have already talked about Fast Food Nation and the way the Fast Food business makes huges profits by jeopardizing the health of american citizens... Why not try to see what is the problem with MacDonald by becoming &lt;a href="http://www.mcvideogame.com/game-eng.html"&gt;Ronald McDonald&lt;/a&gt;? You will understand why trying too much money too quickly prevent you to verify the health of cows... and the consequences of that...&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.mcvideogame.com/game-eng.html"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger2/5454/3588/400/960155/mcdo_play1.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.mcvideogame.com/game-eng.html"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger2/5454/3588/400/26887/mcdo_play2.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.mcvideogame.com/game-eng.html"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger2/5454/3588/400/964102/mcdo_play4.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.mcvideogame.com/game-eng.html"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger2/5454/3588/400/147481/mcdo_play3.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/MacDonald" rel="tag"&gt;MacDonald&lt;/a&gt;, &lt;a href="http://technorati.com/tag/McDonald" rel="tag"&gt;McDonald&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Ronald" rel="tag"&gt;Ronald&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Fast+Food" rel="tag"&gt;Fast Food&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Fast+Food+Nation" rel="tag"&gt;Fast Food Nation&lt;/a&gt;, &lt;a href="http://technorati.com/tag/game" rel="tag"&gt;game&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-4439275658109112947?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/4439275658109112947/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=4439275658109112947' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4439275658109112947'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4439275658109112947'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/11/mcdonalds-game.html' title='A McDonald&apos;s game?'/><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-2147121695040502185</id><published>2006-11-15T22:39:00.000Z</published><updated>2006-11-15T22:44:24.328Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blogger'/><title type='text'>What is air guitar?</title><content type='html'>Have you ever done as you are playing guitar? Have you ever dreamed to be a Clapton? Probably but what you probably don't know is that you were playing air guitar: if you think you are better as people in the video you should thing to take part to the annual Air Guitar Championship or let me message on this blog so you could create an air band ;-)&lt;br /&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;br /&gt;&lt;embed style="width: 400px; height: 326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=-8581364295138442246&amp;hl=en" flashvars="&amp;amp;subtitle=on"&gt;&lt;/embed&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/air+guitar" rel="tag"&gt;air guitar&lt;/a&gt;, &lt;a href="http://technorati.com/tag/clapton" rel="tag"&gt;clapton&lt;/a&gt;, &lt;a href="http://technorati.com/tag/air+band" rel="tag"&gt;air band&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-2147121695040502185?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/2147121695040502185/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=2147121695040502185' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2147121695040502185'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2147121695040502185'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/11/what-is-air-guitar.html' title='What is air guitar?'/><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-714451202418075583</id><published>2006-11-14T19:58:00.000Z</published><updated>2006-11-14T20:05:23.550Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blogger'/><title type='text'>Paris-London = 2H</title><content type='html'>&lt;div style="text-align: justify;"&gt;soon... Next year in fact... It will take 20 minutes less to go from Paris to London. Have you ever noticed that the Eurostar is always slower in England than in France: it is because the railway is not suitable to the TGV: so they will move from Waterloo Station to &lt;a href="http://maps.google.com/maps?hl=en&amp;q=St+Pancras+London&amp;amp;amp;ie=UTF8&amp;oe=UTF-8&amp;amp;om=1&amp;z=13&amp;amp;ll=51.534057,-0.133724&amp;spn=0.04613,0.202217&amp;amp;iwloc=addr"&gt;St Pancras&lt;/a&gt; station in the north of London near Regent's Park. Isn'it paradoxical that to earn 20 minutes the train will have to drive farer? The Eurostar station will move on the 13/14th November 2007 night... I think it is mainly for the Olympics Games and for the potential earning due to London 2012. Anyway it is a very good news for all the travelers like me ;-)&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt; &lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/eurostar" rel="tag"&gt;eurostar&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Paris" rel="tag"&gt;Paris&lt;/a&gt;, &lt;a href="http://technorati.com/tag/London" rel="tag"&gt;London&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Olympics+Games" rel="tag"&gt;Olympics Games&lt;/a&gt;, &lt;a href="http://technorati.com/tag/St+Pancras" rel="tag"&gt;St Pancras&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Waterloo" rel="tag"&gt;Waterloo&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-714451202418075583?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.travelbite.co.uk/newsbrief/europe/belgium/brussels/st-pancras-eurostar-open-in-12-months-$457695.htm' title='Paris-London = 2H'/><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/714451202418075583/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=714451202418075583' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/714451202418075583'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/714451202418075583'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/11/paris-london-2h.html' title='Paris-London = 2H'/><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-7059733420759474360</id><published>2006-11-11T19:40:00.001Z</published><updated>2006-11-11T19:40:53.707Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Google'/><title type='text'>Adsens is down</title><content type='html'>AdSense est indisponible, phénomène assez rare chez Google pour être noté.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/5454/3588/1600/adsense.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger2/5454/3588/400/adsense.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/google" rel="tag"&gt;google&lt;/a&gt;, &lt;a href="http://technorati.com/tag/adsense" rel="tag"&gt;adsense&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-7059733420759474360?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/7059733420759474360/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=7059733420759474360' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/7059733420759474360'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/7059733420759474360'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/11/adsens-is-down.html' title='Adsens is down'/><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-4872409015907686208</id><published>2006-11-11T10:01:00.000Z</published><updated>2006-11-11T10:02:22.293Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='security'/><title type='text'>Kapersky and the 20 viruses</title><content type='html'>Kaspersky has just published its list of the top 20 malwaress (Virus/Trojan/Worm/...) spreaded by mail. As a consequence, in the case you see those little creature: don't click on them, don't try to play with them...&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Email-Worm.Win32.NetSky.q&lt;/li&gt;&lt;li&gt;Email-Worm.Win32.Warezov.dn&lt;/li&gt;&lt;li&gt;Email-Worm.Win32.Bagle.gen&lt;/li&gt;&lt;li&gt;Email-Worm.Win32.Scano.gen&lt;/li&gt;&lt;li&gt;Email-Worm.Win32.Warezov.ev&lt;/li&gt;&lt;li&gt;Email-Worm.Win32.Bagle.mail&lt;/li&gt;&lt;li&gt;Email-Worm.Win32.Warezov.dc&lt;/li&gt;&lt;li&gt;Email-Worm.Win32.Mydoom.l&lt;/li&gt;&lt;li&gt;Email-Worm.Win32.Mydoom.m&lt;/li&gt;&lt;li&gt;Email-Worm.Win32.Scano.e&lt;/li&gt;&lt;li&gt;Email-Worm.Win32.Warezov.do&lt;/li&gt;&lt;li&gt;Email-Worm.Win32.NetSky.aa&lt;/li&gt;&lt;li&gt;Email-Worm.Win32.NetSky.b&lt;/li&gt;&lt;li&gt;Net-Worm.Win32.Mytob.c&lt;/li&gt;&lt;li&gt;Trojan-Spy.HTML.Bankfraud.od&lt;/li&gt;&lt;li&gt;Email-Worm.Win32.Warezov.eu&lt;/li&gt;&lt;li&gt;Email-Worm.Win32.Warezov.gen&lt;/li&gt;&lt;li&gt;Email-Worm.Win32.Bagle.dx&lt;/li&gt;&lt;li&gt;Email-Worm.Win32.Warezov.dh&lt;/li&gt;&lt;li&gt;Email-Worm.Win32.Scano.aq&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;Some new players in the team: Warezov.dn, Warezov.ev, Warezov.dc, Warezov.do, Warezov.eu, Warezov.gen, Warezov.dh.&lt;br /&gt;Some malwares which begin to extinguish: NetSky.b, Mytob.c, Bankfraud.od, Scano.aq. Unfortunately we can notice the return of: NetSky.q, Bagle.gen, Bagle.mail, Mydoom.l, Mydoom.m, Scano.e, NetSky.aa, Bagle.dx, this means that some people don't have an uptodate antivirus, as a consequence they are infected and spread the threat! So install an antivirus if you haven't one already and ensure that it is uptodate (not only Kapersky, but Norton too, or ClamWin...)&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/antivirus" rel="tag"&gt;antivirus&lt;/a&gt;, &lt;a href="http://technorati.com/tag/kapersky" rel="tag"&gt;kapersky&lt;/a&gt;, &lt;a href="http://technorati.com/tag/clamwin" rel="tag"&gt;clamwin&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Norton" rel="tag"&gt;Norton&lt;/a&gt;, &lt;a href="http://technorati.com/tag/virus" rel="tag"&gt;virus&lt;/a&gt;, &lt;a href="http://technorati.com/tag/worm" rel="tag"&gt;worm&lt;/a&gt;, &lt;a href="http://technorati.com/tag/trojan" rel="tag"&gt;trojan&lt;/a&gt;, &lt;a href="http://technorati.com/tag/mail" rel="tag"&gt;mail&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="tag_list"&gt; &lt;span class="tags"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-4872409015907686208?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/4872409015907686208/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=4872409015907686208' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4872409015907686208'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4872409015907686208'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/11/kapersky-and-20-viruses.html' title='Kapersky and the 20 viruses'/><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-7784638529250347921</id><published>2006-11-03T19:33:00.000Z</published><updated>2006-11-19T09:19:52.689Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>LastFMproxy, Streamripper and Amarok</title><content type='html'>I have recently discovered Lastfm, the community radio. It is a great thing just give it the name of some artists you like and it will gather musics of this artists or similar artists... After that you can be a little more specific and say if you like the music or if you want to ban it! Most of the time the choices are excellent and they are becoming more and more relevant with the time and your selection. If you want to read the lastfm flux in one of your old player on linux, you should try lastfmproxy (you can find it &lt;a href="http://vidar.gimp.org/wp-content/uploads/2006/07/lastfmproxy-1.1.tar.gz"&gt;here&lt;/a&gt; ), just uncompress the archive with this command:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    tar -xvzf lastfmproxy-1.1.tar.gz&lt;/span&gt;&lt;br /&gt;then go inside the directory you have just created, modify the config.py file with your username and password for Last.fm. That's it, now you can run the main script:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    python main.py&lt;/span&gt;&lt;br /&gt;you should see something like:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    Starting LastFMProxy 1.1...&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    Connecting to last.fm server...&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    To tune in, point your browser to:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    http://localhost:1881/&lt;/span&gt;&lt;br /&gt;The last line stand to give you the url you can listen in your old player... So start it and open this url. That's working ;-) Great.&lt;br /&gt;In all the previous part I said "old player", it is because with the great player of linux: Amarok, you can directly play Last.fm: you need to go in Settings and that's it! You can now choose open a Last.fm flux! Enjoy.&lt;br /&gt;You probably wonder why I told you about LastFmproxy if you don't need it to play LastFM if you use Amarok... It is because there is a little trick: if you listen LastFM, you only listen it, when you shut down your computer, or when the music is finished, there is no way to listen it again! So let install streamripper to record all this music on your computer. First of all you should only record music with a copy left, otherwise you are out of law! Now start lastfmproxy as explained before. And type this little command:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    streamripper http://localhost:1881/lastfm.mp3 -d /home/mynqme/mydirectory -r&lt;/span&gt;&lt;br /&gt;you can notice 3 arguments:&lt;br /&gt;the radio you want to listen and record&lt;br /&gt;the directory in which you will save music&lt;br /&gt;the last argument will let you listen the music you are recording.&lt;br /&gt;Launch the command, go to Amarok and open the url http://localhost:8000&lt;br /&gt;That's it you can listen and record music on LastFM&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/amarok" rel="tag"&gt;amarok&lt;/a&gt;, &lt;a href="http://technorati.com/tag/streamripper" rel="tag"&gt;streamripper&lt;/a&gt;, &lt;a href="http://technorati.com/tag/lastfm" rel="tag"&gt;lastfm&lt;/a&gt;, &lt;a href="http://technorati.com/tag/lastfmproxy" rel="tag"&gt;lastfmproxy&lt;/a&gt;, &lt;a href="http://technorati.com/tag/streaming" rel="tag"&gt;streaming&lt;/a&gt;, &lt;a href="http://technorati.com/tag/music" rel="tag"&gt;music&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-7784638529250347921?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/7784638529250347921/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=7784638529250347921' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/7784638529250347921'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/7784638529250347921'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/11/lastfmproxy-streamripper-and-amarok.html' title='LastFMproxy, Streamripper and Amarok'/><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-2783269297230409590</id><published>2006-10-30T19:15:00.000Z</published><updated>2006-10-30T19:27:56.341Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='security'/><title type='text'>Monty Python</title><content type='html'>Did you know that the word SPAM comes from a Monty Python sketch? Yes SPAM: these mails that you receive everyday in your mail box, these mails which promize you a big cash prize in a lottery ( or a purchase for a lottery ticket) or those which ask you the detail of you bank account, or a big winning prize and at last but not the least, the man in some country, who asks you to give him money in order to save funds from some dictators...  All this new threats (SCAM or SPAM) are now named according a sketch by Monty Python&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;center&gt;&lt;embed style="width: 400px; height: 326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=5627694446211716271&amp;amp;hl=en" flashvars=""&gt;&lt;/embed&gt;&lt;/center&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/security" rel="tag"&gt;security&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Monty+Python" rel="tag"&gt;Monty Python&lt;/a&gt;, &lt;a href="http://technorati.com/tag/winning+prize" rel="tag"&gt;winning prize&lt;/a&gt;, &lt;a href="http://technorati.com/tag/SCAM" rel="tag"&gt;SCAM&lt;/a&gt;, &lt;a href="http://technorati.com/tag/SPAM" rel="tag"&gt;SPAM&lt;/a&gt;, &lt;a href="http://technorati.com/tag/lottery" rel="tag"&gt;lottery&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-2783269297230409590?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/2783269297230409590/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=2783269297230409590' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2783269297230409590'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2783269297230409590'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/monty-python.html' title='Monty Python'/><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-8812713774246736405</id><published>2006-10-30T18:58:00.000Z</published><updated>2006-10-30T19:12:36.794Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='security'/><title type='text'>Lottery Scam</title><content type='html'>&lt;div style="text-align: justify;"&gt;Since I received this letter from Euromillones, I made some researches about scams... In fact it was my first but there is not only the Italian Lottery which is used: the british one too. It’s worth noting that there is really a UK national lottery. The National lottery does not run an email campaign at all. As usually in SCAM, you will be asked for a series of charges to get the prize in cash or details of your bank account and it will never arrive! This is a scam so ignore it. Here a copy of this mail:&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;The National Lottery,                                              &lt;br /&gt;P O Box 1010,&lt;br /&gt;L70 1NL Liverpool,&lt;br /&gt;UNITED KINGDOM&lt;br /&gt;(Customer Services)&lt;br /&gt;&lt;br /&gt;Batch: 074/05/ZY369&lt;br /&gt;Ref: UK/9420X2/68   &lt;br /&gt;                     &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                                                                                         &lt;br /&gt;                                                          &lt;br /&gt;                       WINNING NOTIFICATION:&lt;br /&gt;We happily announce to you the draw (#963) of the UK NATIONAL LOTTERY,online Sweepstakes International program held on the 21st July, 2006.&lt;br /&gt;Your e-mail address attached to ticket number:56475600545 188 with Serial number 5368/02 drew the lucky numbers:12-18-22-24-32-33(bonus no.), which subsequently won you the lottery in the 2nd category i.ematch 5 plus bonus.You have therefore been approved to claim a total sum of £250,000 (Two hundred and fifty thousand pounds sterling) in cash credited to file KTU/9023118308/03.&lt;br /&gt;&lt;br /&gt;This is from a total cash prize of £1,000,000 shared amongst the first four (4) lucky winners in this category i.e Match 5 plus bonus. All participants for the online version were selected randomly from World Wide Web sites through computer draw system and extracted from over 100,000 unions, associations, and corporate bodies that are listed online. This promotion takes place periodically.&lt;br /&gt;&lt;br /&gt;Please note that your lucky winning number falls within our European booklet representative office in Europe as indicated in your play coupon.In view of this, your £250,000 (Two hundred and fifty thousand pounds sterling) would be released to you by any of our payment offices in Europe. Our European agent will immediately commence the process to facilitate the release of your funds as soon as you contact him.&lt;br /&gt;&lt;br /&gt;For security reasons, you are advised to keep your winning information confidential till your claim is processed and your money remitted to you in whatever manner you deem fit to claim your prize. This is part of our precautionary measure to avoid double claiming and unwarranted abuse of this program. Please be warned.&lt;br /&gt;&lt;br /&gt;The UK NATIONAL LOTTERY Awards is proudly sponsored by the Microsoft Corporation, the Intel Group, Toshiba, Dell computers, Mckintosh and a conglomeration of  other international IT companies. The UK NATIONAL LOTTERY internet draw is held  once in a year and is so organized to encourage the use of the internet and computers worldwide. We are proud to say that over 200 Million Pounds are won annually in more than 150 countries worldwide.&lt;br /&gt;&lt;br /&gt;To file for your claim, please send your details; Age, Sex, Country, Amount Won, Phone Number and Fax to our fudiciary agent&lt;br /&gt;Fudiciary Agent: Mr Jack Collins&lt;br /&gt;Email: &lt;a onclick="Popup.composeWindow('pcompose.php?sendto=jackcollins0001%40yahoo.co.uk'); return false;" href="http://email.secureserver.net/webmail.php?folder=INBOX.Bulk%20Mail&amp;firstMessage=1#Compose"&gt;jackcollins0001@yahoo.co.uk&lt;/a&gt;&lt;br /&gt;Goodluck from me and members of staff of the UK NATIONAL LOTTERY.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                                     &lt;br /&gt;              Yours faithfully,&lt;br /&gt;              Brian Hunt.&lt;br /&gt;              Online coordinator&lt;br /&gt;              UK NATIONAL LOTTERY,&lt;br /&gt;              Sweepstakes International Program.&lt;br /&gt;              Open 7 days 7am-7pm.        &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/scam" rel="tag"&gt;scam&lt;/a&gt;, &lt;a href="http://technorati.com/tag/spam" rel="tag"&gt;spam&lt;/a&gt;, &lt;a href="http://technorati.com/tag/prize" rel="tag"&gt;prize&lt;/a&gt;, &lt;a href="http://technorati.com/tag/lottery" rel="tag"&gt;lottery&lt;/a&gt;, &lt;a href="http://technorati.com/tag/cash+" rel="tag"&gt;cash &lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-8812713774246736405?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/8812713774246736405/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=8812713774246736405' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8812713774246736405'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8812713774246736405'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/lottery-scam.html' title='Lottery Scam'/><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-2084509379810459675</id><published>2006-10-28T14:43:00.000Z</published><updated>2006-10-28T15:13:02.294Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='security'/><title type='text'>Someone try to steal my bank account number...</title><content type='html'>&lt;div style="text-align: justify;"&gt;This morning, I received a strange mail from the Euromillones lottery primitiva s.a. This is surprising because I never buy a ticket... Moreover this mail come from Spain... But what is very annoying is that the name on the letter, has the same error as the name I gave to BT! In fact, when I opened my BT line, they miswrite my name and this is exactly the same error which appears on the letter I received: this is probably not a coincidence! BT leaks information about its customers, which could give the possibility to someone to send me a letter or even try to steal my identity! In fact in the letter it is written (I will copy this letter, so you will be able to compare if you received the same) that I won 615 810 euros... but I must give them my bank account number so they will be able to transfer the money to my account: THIS IS PHISHING. Sorry man I am not dumb. I will probably try to contact BT and explain them the situation... For the moment I will copy the letter here, so you can compare, if you receive the same letter:&lt;br /&gt;&lt;br /&gt;FROM: THE DESK OF THE VICE PRESIDENT&lt;br /&gt;INTERNATIONAL PROMOTION/PRICE AWARD&lt;br /&gt;ATTN:STAKE WINNER&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;RE: AWARD FINAL NOTIFICATION&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;This is to inform you on the release of the &lt;span style="font-weight: bold;"&gt;Euromillones loteria internaltional&lt;/span&gt; program held on the 23th DEC. 2005. Due to mix up of some numbers and names, the results were released on the 23th OCT. 2006. Your name attached to ticket number ...................... with serial number ......... drew the lucky numbers of ............... which consequently won the lottery in the 3rd category.&lt;br /&gt;&lt;br /&gt;You have therefore been approved for a lump sum payout of 615,810.00 euros in cash credited to file with REF NO ....... This is from a total cash price of 5,600,000.00 euros. Shared among the twelve international winners in there respective categories. CONGRATULATIONS!!!&lt;br /&gt;Your fund is now deposited with a security company and insured in your name. Due to mix up of some numbers and name, we ask that you keep this award from public notice until your claim has been processed and money remitted to your account as this part of our security protocol to avoid double claiming or unwarranted taking advantage of this program by participants.&lt;br /&gt;&lt;br /&gt;All participants were selected through a computer ballot system drawn from 25,000 names from Asia, Australia, New Zealand, Europe, America and North America as part of our International promotions program which we conduct once every year. We hope your lucky name will draw a bigger cash prize in the next year's program.&lt;br /&gt;To begin your lottery claim, please contact your claims agent DR. RAUL GOMEZ the Foreign operations manager of GROUPAMA SEGUROS S.A On Tel: 0034 658 520 602. Fax: 0034 911 814 182 for the processing and remittance of your winning prize money to a destignation of your choice.&lt;br /&gt;&lt;br /&gt;Remember, all price money must be claimed not later than, 27th NOV 2006. After this date all funds will be returned to the MINISTERIO DE ECONOMICO Y HACIENDA as unclaimed. And also be informed that 10% of your lottery Winning belongs to GROUPAMA SEGUROS S.A. because they are your claims agent. This is 10% will be remitted after you have received your winnings because the money is insured in your name already.&lt;br /&gt;&lt;br /&gt;.... bla bla.....&lt;br /&gt;&lt;br /&gt;place of the letter now: bin&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/phishing" rel="tag"&gt;phishing&lt;/a&gt;, &lt;a href="http://technorati.com/tag/groupama+seguro" rel="tag"&gt;groupama seguro&lt;/a&gt;, &lt;a href="http://technorati.com/tag/letter" rel="tag"&gt;letter&lt;/a&gt;, &lt;a href="http://technorati.com/tag/BT" rel="tag"&gt;BT&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-2084509379810459675?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/2084509379810459675/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=2084509379810459675' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2084509379810459675'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2084509379810459675'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/someone-try-to-steal-my-bank-account.html' title='Someone try to steal my bank account number...'/><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>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-1696713735308592038</id><published>2006-10-25T21:18:00.000Z</published><updated>2006-10-25T21:26:48.737Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='manga'/><title type='text'>The best killer: Golgo13</title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/3815/3949/1600/golgo13.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://photos1.blogger.com/blogger2/3815/3949/400/golgo13.png" alt="" border="0" /&gt;&lt;/a&gt;I am currently reading this &lt;span onclick="BLOG_clickHandler(this)" class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;manga&lt;/span&gt;. In fact I am reading the best 13 stories of &lt;span onclick="BLOG_clickHandler(this)" class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;Golgo&lt;/span&gt;13, and I try to read only one &lt;span onclick="BLOG_clickHandler(this)" class="blsp-spelling-corrected" id="SPELLING_ERROR_2"&gt;episode&lt;/span&gt; per day. From &lt;span onclick="BLOG_clickHandler(this)" class="blsp-spelling-error" id="SPELLING_ERROR_3"&gt;Wikipé&lt;/span&gt;d&lt;span onclick="BLOG_clickHandler(this)" class="blsp-spelling-error" id="SPELLING_ERROR_4"&gt;ia:&lt;/span&gt; "&lt;br /&gt;&lt;/div&gt;G&lt;span onclick="BLOG_clickHandler(this)" class="blsp-spelling-error" id="SPELLING_ERROR_5"&gt;olgo &lt;/span&gt;13 has been called a Japanese counterpart to &lt;a href="http://en.wikipedia.org/wiki/James_Bond" title="James Bond"&gt;James Bond&lt;/a&gt;, except with a darker character, a much more hardcore attitude towards sex, and a complete lack of morality. G&lt;span onclick="BLOG_clickHandler(this)" class="blsp-spelling-error" id="SPELLING_ERROR_6"&gt;olgo &lt;/span&gt;13 is described as a mystery man of undetermined origin, possibility being at least part Japanese, who takes any assignment for any employer (it has been said he has worked for the &lt;a href="http://en.wikipedia.org/wiki/CIA" title="CIA"&gt;CIA&lt;/a&gt; and the &lt;a href="http://en.wikipedia.org/wiki/KGB" title="KGB"&gt;KGB&lt;/a&gt;) as long as the right price is given (usually around 1 million dollars for a hit) and will always fulfill his contracts, even if he has two or more opposing contracts at the same time. He is an uncanny sharpshooter, with near 100% accuracy (with only one missed shot) and capable of lethal trick shooting, and regularly uses a customized, scoped &lt;a href="http://en.wikipedia.org/wiki/M-16_rifle" title="M-16 rifle"&gt;M-16 rifle&lt;/a&gt; in his assassinations. He also is a heavy smoker of cigars."&lt;br /&gt;That is a real killer not one of the James Bond or other hero from Hollywood: G&lt;span onclick="BLOG_clickHandler(this)" class="blsp-spelling-error" id="SPELLING_ERROR_7"&gt;oglo1&lt;/span&gt;3 never does something randomly. He is well trained and is a bit like a killer machine.&lt;br /&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/killer" rel="tag"&gt;killer&lt;/a&gt;, &lt;a href="http://technorati.com/tag/golgo13" rel="tag"&gt;g&lt;span onclick="BLOG_clickHandler(this)" class="blsp-spelling-error" id="SPELLING_ERROR_8"&gt;olgo1&lt;/span&gt;3&lt;/a&gt;, &lt;a href="http://technorati.com/tag/James+Bond" rel="tag"&gt;James Bond&lt;/a&gt;, &lt;a href="http://technorati.com/tag/M-16" rel="tag"&gt;M-16&lt;/a&gt;, &lt;a href="http://technorati.com/tag/CIA" rel="tag"&gt;CIA&lt;/a&gt;, &lt;a href="http://technorati.com/tag/KGB" rel="tag"&gt;KGB&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-1696713735308592038?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/1696713735308592038/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=1696713735308592038' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/1696713735308592038'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/1696713735308592038'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/best-killer-golgo13.html' title='The best killer: Golgo13'/><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-4239861905404391364</id><published>2006-10-24T21:30:00.000Z</published><updated>2006-10-24T21:34:09.239Z</updated><title type='text'>Müller Advertising</title><content type='html'>one of my prefered ads: I like the music&lt;br /&gt;&lt;br /&gt;&lt;center&gt;&lt;embed style="width: 400px; height: 326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=8261472459263415866&amp;amp;hl=en" flashvars=""&gt;&lt;/center&gt; &lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/m%C3%BClller" rel="tag"&gt;mülller&lt;/a&gt;, &lt;a href="http://technorati.com/tag/publicite" rel="tag"&gt;publicite&lt;/a&gt;, &lt;a href="http://technorati.com/tag/ads" rel="tag"&gt;ads&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-4239861905404391364?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/4239861905404391364/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=4239861905404391364' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4239861905404391364'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4239861905404391364'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/mller-advertising.html' title='Müller Advertising'/><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-7894459470057648200</id><published>2006-10-18T19:38:00.000Z</published><updated>2006-10-18T19:53:21.107Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='book'/><title type='text'>Fast Food Nation</title><content type='html'>&lt;div style="text-align: justify;"&gt;This is the spookiest book I have ever read! Do you know E.&lt;span onclick="BLOG_clickHandler(this)" class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;coli&lt;/span&gt; 0157:H7? This is a bacteria, a stain of &lt;em&gt;Escherichia &lt;span onclick="BLOG_clickHandler(this)" class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;coli&lt;/span&gt;&lt;/em&gt;. Everyone has some non &lt;span onclick="BLOG_clickHandler(this)" class="blsp-spelling-corrected" id="SPELLING_ERROR_2"&gt;pathogenic&lt;/span&gt; stain of &lt;em&gt;Escherichia &lt;span onclick="BLOG_clickHandler(this)" class="blsp-spelling-error" id="SPELLING_ERROR_3"&gt;coli&lt;/span&gt;&lt;/em&gt;. But if you have E.&lt;span onclick="BLOG_clickHandler(this)" class="blsp-spelling-error" id="SPELLING_ERROR_4"&gt;coli&lt;/span&gt; 0157:H7, you should got to the hospital as soon as possible. Actually this stain can be lethal, it leads to kidneys disease... Why I speak about E.&lt;span onclick="BLOG_clickHandler(this)" class="blsp-spelling-error" id="SPELLING_ERROR_5"&gt;coli&lt;/span&gt; 0157:H7? Because I am reading the excellent book of Eric &lt;span onclick="BLOG_clickHandler(this)" class="blsp-spelling-error" id="SPELLING_ERROR_6"&gt;Schlosser&lt;/span&gt;: "Fast Food Nation". In this book you learn how big firms jeopardize the health of all the &lt;span onclick="BLOG_clickHandler(this)" class="blsp-spelling-corrected" id="SPELLING_ERROR_7"&gt;American&lt;/span&gt; nation... They try to make as much money as possible and the easiest way to do that is to give money to Congress in order it forgets to control what Fast Food are doing and what happens in &lt;span onclick="BLOG_clickHandler(this)" class="blsp-spelling-error" id="SPELLING_ERROR_8"&gt;slaughterhouse&lt;/span&gt;. You will never eat an hamburger after this book:&lt;br /&gt;&lt;/div&gt;&lt;center&gt;&lt;iframe src="http://rcm.amazon.com/e/cm?t=tricksandthin-20&amp;o=1&amp;amp;p=8&amp;l=as1&amp;amp;asins=0141006870&amp;fc1=000000&amp;amp;IS2=1&amp;lt1=_blank&amp;amp;amp;amp;amp;lc1=0000FF&amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;f=ifr" style="width: 120px; height: 240px;" marginwidth="0" marginheight="0" frameborder="0" scrolling="no"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;A best seller!&lt;br /&gt;&lt;/center&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/E.coli+0157:H7" rel="tag"&gt;E.coli 0157:H7&lt;/a&gt;, &lt;a href="http://technorati.com/tag/bacteria" rel="tag"&gt;bacteria&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Escherichia+coli" rel="tag"&gt;Escherichia coli&lt;/a&gt;, &lt;a href="http://technorati.com/tag/slaughterhouse" rel="tag"&gt;slaughterhouse&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Eric+Schlosser" rel="tag"&gt;Eric Schlosser&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Fast+Food" rel="tag"&gt;Fast Food&lt;/a&gt;, &lt;a href="http://technorati.com/tag/book" rel="tag"&gt;book&lt;/a&gt;, &lt;a href="http://technorati.com/tag/USA" rel="tag"&gt;USA&lt;/a&gt;, &lt;a href="http://technorati.com/tag/MacDonald" rel="tag"&gt;MacDonald&lt;/a&gt;, &lt;a href="http://technorati.com/tag/KFC" rel="tag"&gt;KFC&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-7894459470057648200?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/7894459470057648200/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=7894459470057648200' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/7894459470057648200'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/7894459470057648200'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/fast-food-nation.html' title='Fast Food Nation'/><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-4429793494111950096</id><published>2006-10-17T18:44:00.000Z</published><updated>2006-10-17T18:52:56.212Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blogger'/><title type='text'>Greasemonkey and Technorati Tags</title><content type='html'>I have just discovered Greasemonkey: a little extension for Firefox to modify web pages dybamically... Install this extension and then find the good javascript. For example, I am currently using one of this script, which permit you to add technorati tags while you are writing your post. Possibility of Greasemonkey seems to be limitless: so enjoy&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/3815/3949/1600/greasemonkey.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger2/3815/3949/400/greasemonkey.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="tag_list"&gt;Tags: &lt;span class="tags"&gt;&lt;a href="http://technorati.com/tag/greasemonkey" rel="tag"&gt;greasemonkey&lt;/a&gt;, &lt;a href="http://technorati.com/tag/blogger" rel="tag"&gt;blogger&lt;/a&gt;, &lt;a href="http://technorati.com/tag/beta" rel="tag"&gt;beta&lt;/a&gt;, &lt;a href="http://technorati.com/tag/web+2.0" rel="tag"&gt;web 2.0&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-4429793494111950096?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/4429793494111950096/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=4429793494111950096' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4429793494111950096'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4429793494111950096'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/greasemonkey-and-technorati-tags.html' title='Greasemonkey and Technorati Tags'/><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-762715150208932892</id><published>2006-10-17T18:25:00.000Z</published><updated>2006-10-17T18:29:10.650Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><title type='text'>How to verify the root user id on SUN?</title><content type='html'>If you program sometimes on Sun Solaris, you have probably noticed that the syntax is not always the same as the one of Linux, or HP-Unix... This time, before running my script I had to verify that it is root, who runs the script: after 30 minutes of headhache, I finally find a way: enjoy the aspirin&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;WHO=`id | cut -f1 -d" "`&lt;/span&gt;&lt;span style="font-family:Times New Roman, serif;font-size:130%;"&gt;&lt;br /&gt;if [ ! "$WHO" = "uid=0(root)" ]&lt;/span&gt;&lt;span style="font-family:Times New Roman, serif;font-size:130%;"&gt;&lt;br /&gt;then&lt;/span&gt;&lt;span style="font-family:Times New Roman, serif;font-size:130%;"&gt;&lt;br /&gt;echo "You must be super-user to run this script."&lt;/span&gt;&lt;span style="font-family:Times New Roman, serif;font-size:130%;"&gt;&lt;br /&gt;exit 1&lt;/span&gt;&lt;span style="font-family:Times New Roman, serif;font-size:130%;"&gt;&lt;br /&gt;fi&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-762715150208932892?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/762715150208932892/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=762715150208932892' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/762715150208932892'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/762715150208932892'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/how-to-verify-root-user-id-on-sun.html' title='How to verify the root user id on SUN?'/><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-8844853781463752918</id><published>2006-10-17T18:19:00.000Z</published><updated>2006-10-17T18:22:38.451Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>How to get rid of output of your scripts?</title><content type='html'>Just add at the end of your command line: &lt;b&gt;&gt;&lt;i&gt;/dev/null &lt;/i&gt;2&gt;&amp;1&lt;/b&gt; so you redirect fd1 to /dev/null, then dump it onto fd2:&lt;/span&gt; &lt;p style="margin-bottom: 0cm;" lang="en-GB"&gt;&lt;span style="font-family:Courier New, monospace;font-size:100%;"&gt;&lt;span style="font-weight: bold;"&gt;Normally:&lt;/span&gt; fd1 -&gt; stdout        fd2 -&gt; stderr&lt;/span&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" lang="en-GB"&gt;&lt;span style="font-family:Courier New, monospace;font-size:100%;"&gt;&lt;span style="font-weight: bold;"&gt;&gt;&lt;/span&gt;&lt;i style="font-weight: bold;"&gt;/dev/null&lt;/i&gt;&lt;span style="font-weight: bold;"&gt;:&lt;/span&gt;&lt;i&gt; &lt;/i&gt;fd1 -&gt; /dev/null     fd2 -&gt; stdout&lt;/span&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" lang="en-GB"&gt;&lt;span style="font-family:Courier New, monospace;font-size:100%;"&gt;&lt;span style="font-weight: bold;"&gt;2&gt;&amp;1:&lt;/span&gt;  fd1 -&gt; /dev/null     fd2 -&gt; /dev/null&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0cm;" lang="en-GB"&gt;&lt;br /&gt;&lt;/p&gt;Now no more output, it is very interessant espscially for cronjob.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-8844853781463752918?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/8844853781463752918/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=8844853781463752918' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8844853781463752918'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8844853781463752918'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/how-to-get-rid-of-output-of-your.html' title='How to get rid of output of your scripts?'/><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-5026905496973680993</id><published>2006-10-15T18:16:00.000Z</published><updated>2006-10-15T18:27:53.402Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blogger'/><title type='text'>Residents urged to leave homes over asbestos risk</title><content type='html'>&lt;div style="text-align: justify;"&gt;I have just read this article... In one hand, you can consider that it is a good thing that those people have to leave this houses full of asbestos... Actually asbestos can lead to disease as mesothelioma (mesothelioma is a rare cancer, usually found in those exposed to asbetos). In the other hand, at the end of the article, it is claim that it is only a way to get rid of these houses to build something new... One more time this is a bit spooky... Do our leader only think to money and not to our welfare. But I am for &lt;i&gt;The Imperative of Responsibility (Hans Jonas), &lt;/i&gt;if people can die of mesothelioma, they should move to another house. So I agree with the decision. Nevertheless if some clues show that it was only to feed the greed of some politics... These men deserve a good trial.&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-5026905496973680993?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.cbc.ca/canada/story/2006/10/14/asbestos-reserve.html' title='Residents urged to leave homes over asbestos risk'/><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/5026905496973680993/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=5026905496973680993' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5026905496973680993'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5026905496973680993'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/residents-urged-to-leave-homes-over.html' title='Residents urged to leave homes over asbestos risk'/><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-3759939613758120378</id><published>2006-10-13T19:46:00.000Z</published><updated>2006-10-13T19:57:28.326Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='cook'/><title type='text'>Enviga or the size zero</title><content type='html'>Coca cola is cheating you with its next product: Enviga. With Nestlé, they developped a new drink, which comes in three flavours (green tea, berry and peach). What is at stake is that Coca Cola is claiming its latest product could burn off calories just by drinking it. Consuming three 350ml is said to make you lose 60 to 100 calories. But if you read this blog during 10 minutes make you lose more calories. Shame of Coca Cola, because it is clear that Coca Cola is targetting teenage girls and was trying to cash in on the "size zero" phenomenon.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/3815/3949/1600/enviga_lineup.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger2/3815/3949/400/enviga_lineup.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-3759939613758120378?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/3759939613758120378/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=3759939613758120378' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3759939613758120378'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3759939613758120378'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/enviga-or-size-zero.html' title='Enviga or the size zero'/><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>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-32354023.post-3502979647543115147</id><published>2006-10-12T20:47:00.000Z</published><updated>2006-10-12T20:52:24.086Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Google'/><title type='text'>Google Groups Beta</title><content type='html'>&lt;div style="text-align: justify;"&gt;Google has a new beta: Google Groups Beta . You probably remember the old one, more in the google spirit: simplistic... Today with javascript and Ajax, this application enter in the pantheon of the web 2.0. Have a look, it is always the same system but more good looking.&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-3502979647543115147?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://groups-beta.google.com/' title='Google Groups Beta'/><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/3502979647543115147/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=3502979647543115147' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3502979647543115147'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3502979647543115147'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/google-groups-beta.html' title='Google Groups Beta'/><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-5522218667328576732</id><published>2006-10-12T20:06:00.000Z</published><updated>2006-10-12T20:16:37.564Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Google'/><title type='text'>Google sceptical</title><content type='html'>&lt;div style="text-align: justify;"&gt;I am wondering why Google keep all its application in beta stage? How many people have today a gmail account, how many people have today a blogger account... A lot... What happen if you ask money, even a little, for this services? People will pay because they have too much things on their blog and too much mail in Gmail (2,7Go)... Don't forget that Microsoft permit you to use its beta version of Office, but after you have to pay to use it... I don't know what is in the mind of Eric Shmidt but if someone a bit more greedy come at the head of google he could  make huge profit... So be careful with all this new applications of the Web 2.0, and keep copy on your computer of your mails and posts.&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-5522218667328576732?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/5522218667328576732/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=5522218667328576732' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5522218667328576732'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5522218667328576732'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/google-sceptical.html' title='Google sceptical'/><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-5537786499940735919</id><published>2006-10-11T20:25:00.000Z</published><updated>2006-10-11T20:26:04.775Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='photo'/><title type='text'>Le Louvre</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/3815/3949/1600/p4210022.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger2/3815/3949/400/p4210022.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-5537786499940735919?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/5537786499940735919/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=5537786499940735919' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5537786499940735919'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/5537786499940735919'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/le-louvre.html' title='Le Louvre'/><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-2671429152515706950</id><published>2006-10-11T20:19:00.000Z</published><updated>2006-10-11T20:20:17.319Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='photo'/><title type='text'>How green it is!!!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/3815/3949/1600/Photo%20014.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger2/3815/3949/400/Photo%20014.jpg" alt="" border="0" /&gt;&lt;/a&gt;Normal it is raining all the day in England&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-2671429152515706950?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/2671429152515706950/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=2671429152515706950' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2671429152515706950'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2671429152515706950'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/how-green-it-is.html' title='How green it is!!!'/><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-7974418008368108904</id><published>2006-10-11T20:17:00.000Z</published><updated>2006-10-11T20:18:25.760Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='photo'/><title type='text'>Dinosaure Skeleton</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/3815/3949/1600/Photo%20125.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger2/3815/3949/400/Photo%20125.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-7974418008368108904?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/7974418008368108904/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=7974418008368108904' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/7974418008368108904'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/7974418008368108904'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/les-restes-dun-dinosaure.html' title='Dinosaure Skeleton'/><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-1571774878175173868</id><published>2006-10-11T19:54:00.000Z</published><updated>2006-10-11T20:01:27.540Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='book'/><title type='text'>Feynman's lessons</title><content type='html'>&lt;div style="text-align: justify;"&gt;Have you ever heard of Feynman? Feynman is one of the youngest Nobel Price in physics. He is the father of the quantum computer. Instead of being a boring teacher, Feynman is certainly the greatest teacher of physics, who has ever lived. If you want to understand something to the quantum mechanics with a book which do not begin with a math formula read the book below. Every good teacher has ever read Feynman's lessons or should! All student in physics shoul read this book, each chapter is like a novel, you read a book of Feynman like an Harry Pother.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;iframe src="http://rcm.amazon.com/e/cm?t=tricksandthin-20&amp;o=1&amp;amp;p=8&amp;l=as1&amp;amp;asins=0805390456&amp;fc1=000000&amp;amp;IS2=1&amp;lt1=_blank&amp;amp;lc1=0000FF&amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;f=ifr" style="width: 120px; height: 240px;" marginwidth="0" marginheight="0" frameborder="0" scrolling="no"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;Read this book and you will become better in physics I promise you&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-1571774878175173868?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/1571774878175173868/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=1571774878175173868' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/1571774878175173868'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/1571774878175173868'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/feynmans-lessons.html' title='Feynman&apos;s lessons'/><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-3202658949277080997</id><published>2006-10-11T08:53:00.000Z</published><updated>2006-10-11T08:54:47.250Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Google'/><title type='text'>Google Word</title><content type='html'>&lt;div align="justify"&gt;Google Docs is alive. With Google spreadsheet you can already get rid of Excel... Now the application, which is use by almost everyone, I mean "Word" has been mimic by Google. I have for the moment only have a quick look at it but it seems promising. The only big issue with that is your provider or even Google... What will happen when you won't have network in your office, at home or if the service is disrupted... stop working.... I thinks that the next step of Google will be a software. We will hear soon of the Goobuntu or the OS by Google ;-) go and see &lt;a href="http://doc.google.com"&gt;http://doc.google.com&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-3202658949277080997?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/3202658949277080997/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=3202658949277080997' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3202658949277080997'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/3202658949277080997'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/google-word.html' title='Google Word'/><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-4507901678457765669</id><published>2006-10-09T20:01:00.000Z</published><updated>2006-10-09T20:09:29.619Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Google'/><title type='text'>Google Calendar &amp;&amp; Kontact</title><content type='html'>&lt;div style="text-align: justify;"&gt; I only start to fill my Calendar by Google, but I have also my calendar on my portable with Kontact... The question which often arises in these cases, how to share information between the two (except if you are schizophrenic...) how to synchronize the two calendars??? Mr. Google once again thought to everything: it is simple: settings &gt; calendars &gt; share this calendar &gt; calendar details.... There you will see small squares of color XML, iCal, HTML on the line private addresse. Select iCal and copy the address which is kindly given to you by Google. Now on Kontact: File &gt; Import &gt; Import Calendar... At this time there, instead of seeking on your computer a file, enter the address given by M.Google answer two or three questions... that is it. You finally could be more effective in your work, to optimize your life; -)&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-4507901678457765669?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/4507901678457765669/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=4507901678457765669' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4507901678457765669'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/4507901678457765669'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/google-calendar-kontact.html' title='Google Calendar &amp;&amp; Kontact'/><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-8027343966567782419</id><published>2006-10-08T21:08:00.000Z</published><updated>2006-10-08T21:13:40.079Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>Linux:: AmaroK</title><content type='html'>&lt;div style="text-align: justify;"&gt;In the inuits legends, Amarok is the giant wolf  which devours the imprudent hunters, who hunt alone the  night. In the world of computers, Amarok is the application  which could too devour the imprudent users of Windows  which use the old old old Itunes... Amarok is an application of the  free world which works exclusively under Linux or Unix.&lt;br /&gt;&lt;/div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=fr_en&amp;trurl=http%3a%2f%2fphotos1.blogger.com%2fblogger2%2f5454%2f3588%2f1600%2fAmaroK_stable.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger2/5454/3588/400/AmaroK_stable.png" alt="" border="0" /&gt;&lt;/a&gt;AmaroK allows inter alia:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;to manage advanced&lt;i&gt;  playlists&lt;/i&gt;&lt;/li&gt;&lt;li&gt;to develop new functionalities via scripts&lt;/li&gt;&lt;li&gt;to record statistical data of a song even if this one is renamed or moved&lt;br /&gt;&lt;/li&gt;&lt;li&gt;to use K3B (burning software for Kde) for the CD  engraving&lt;/li&gt;&lt;li&gt;to use the data bases to store information of music&lt;/li&gt;&lt;li&gt;to use your iPod&lt;/li&gt;&lt;li&gt;to manually configure a generic reader with key  format USB&lt;/li&gt;&lt;li&gt;to benefit from the crossfading&lt;/li&gt;&lt;li&gt;to use MusicBrainz to recover informations on your music&lt;/li&gt;&lt;li&gt;to recover the words of the songs&lt;/li&gt;&lt;li&gt;to recover the covers of albums on the Amazon  site&lt;/li&gt;&lt;li&gt;to recover on Wikipédia the articles on the  album, the artist or the song in the course of listening&lt;/li&gt;&lt;li&gt;to manage the support of radio operator flows of  last.fm&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a name="Amarok_et_Last.fm" id="Amarok_et_Last.fm"&gt;&lt;/a&gt;&lt;/p&gt; Unfortunately for the users of Windows, Amarok  will never be carried under Windows because of:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;its licence LPG&lt;/li&gt;&lt;li&gt;KDE-libs (which it uses)&lt;/li&gt;&lt;li&gt;need somebody to do it...&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-8027343966567782419?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/8027343966567782419/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=8027343966567782419' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8027343966567782419'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8027343966567782419'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/linux-amarok.html' title='Linux:: AmaroK'/><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-2341417153847930946</id><published>2006-10-07T08:32:00.000Z</published><updated>2006-10-07T08:38:28.293Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='wiki'/><title type='text'>An easy, personal wiki</title><content type='html'>&lt;div style="text-align: justify;"&gt;I have always wanted to install a wiki on my laptop to write all the tips I find... But to install a wiki, most of the time you need Apache or MySql or PHP running on your personal laptop... It is OK if you want to run a wiki for a community but if you search something more personal, you probably don't want to use all that stuff... This morning, I find the solution: &lt;a href="http://www.tiddlywiki.com/"&gt;Tiddlywiki&lt;/a&gt; . To install it, just go on the web site of Tiddlywiki, go in the download section... And save a page!!! Yes Tiddlywiki consists on only one single HTML file with all you need inside: CSS and Javascript... Now you can write your first "Tiddler" an equivalent of a post in yout brand new wiki.&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-2341417153847930946?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/2341417153847930946/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=2341417153847930946' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2341417153847930946'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/2341417153847930946'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/easy-personal-wiki.html' title='An easy, personal wiki'/><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-8780282918245759414</id><published>2006-10-04T20:28:00.000Z</published><updated>2006-10-04T20:29:04.253Z</updated><title type='text'>Granny Pirate</title><content type='html'>Who said that old people understand nothing to computer science ;-)&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://blaugh.com/2006/10/02/granny-pirate/" rel="bookmark"&gt;&lt;img class="comic" title="Granny Pirate" alt="Granny Pirate" src="http://blaugh.com/cartoons/061003_murder_she_wrote.gif" height="250" width="447" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: left;"&gt;In fact they are even born before it ;-)&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-8780282918245759414?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/8780282918245759414/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=8780282918245759414' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8780282918245759414'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/8780282918245759414'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/granny-pirate.html' title='Granny Pirate'/><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-7509285020155624861</id><published>2006-10-04T20:27:00.001Z</published><updated>2006-10-04T20:27:41.974Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Google'/><title type='text'>Google Optimist or Google Pessimist?</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;a href="http://blaugh.com/2006/09/14/which-one-are-you/" rel="bookmark"&gt;&lt;img class="comic" title="Which one are you?" alt="Which one are you?" src="http://blaugh.com/cartoons/060914_searching_optimism.gif" height="250" width="447" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-7509285020155624861?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/7509285020155624861/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=7509285020155624861' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/7509285020155624861'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/7509285020155624861'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/google-optimist-or-google-pessimist.html' title='Google Optimist or Google Pessimist?'/><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-6406106586849813979</id><published>2006-10-04T20:24:00.000Z</published><updated>2006-10-04T20:26:54.902Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Google'/><title type='text'>Google and the society</title><content type='html'>&lt;div style="text-align: justify;"&gt;"Google is your friend" Everyone knows this simple sentence... Does such sentences exist for Windows? I think that this is the sign of a large approval for Google&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://blaugh.com/2006/09/26/where-is-the-secret-of-life/" rel="bookmark"&gt;&lt;img class="comic" title="Where is the Secret of Life?" alt="Where is the Secret of Life?" src="http://blaugh.com/cartoons/060926_google_search_guru.gif" height="250" width="447" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-6406106586849813979?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/6406106586849813979/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=6406106586849813979' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/6406106586849813979'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/6406106586849813979'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/google-and-society.html' title='Google and the society'/><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-115982676207622819</id><published>2006-10-02T22:01:00.000Z</published><updated>2006-10-11T20:02:55.021Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='book'/><title type='text'>Wealth of the World, Poverty of Nations</title><content type='html'>I have just finished this book again, I say "again" because I have already read it 3 times, over 3 years? It is a small pocket book but all the essential ideas to understand the phenomenon of globalization are there.&lt;br /&gt;&lt;br /&gt;&lt;div align=center&gt;&lt;br /&gt;&lt;iframe src="http://rcm.amazon.com/e/cm?t=tricksandthin-20&amp;o=1&amp;p=8&amp;l=as1&amp;asins=0262032538&amp;fc1=000000&amp;IS2=1&amp;lt1=_blank&amp;lc1=0000FF&amp;bc1=000000&amp;bg1=FFFFFF&amp;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;it is read almost like a novel. The author Daniel Cohen makes us cross all the currents of thought of economic sciences, from Smith to Ricardo, and Keynes, all the authors of economic sciences are present. This book is full of references? You will find the theory of the O-Ring ring there, the theory of the four quarters of Reich, the reflexions on the marriage of today in this new dynamics. I advise it to you sincerely. You will understand finally the mechanisms of the globalization and why one should not believe the politicians who exploit the fear of the people to try to gain votes. Globalization is a fact and all the nations can benefit from it: if a redistribution of the profits is correctly made inside the country? All this depends on the strength and the integrity of our policies.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-115982676207622819?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/115982676207622819/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=115982676207622819' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/115982676207622819'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/115982676207622819'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/10/wealth-of-world-poverty-of-nations.html' title='Wealth of the World, Poverty of Nations'/><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-115909657365318106</id><published>2006-09-24T11:15:00.000Z</published><updated>2006-09-24T11:16:13.653Z</updated><title type='text'>Blogger:: Pings and cowboys</title><content type='html'>if you read blogs, it is that doubtless that you have also a blog, or that you think of opening one or you are just curious… In the three cases, you know or you want to learn that to aware services such as Technorati or pingomatic, a ping should be sent to them… Because I am lazy, that I want to send a maximum of ping, I wrote a small script to send a ping to several these engines of blog research.&lt;br /&gt;&lt;br /&gt;Today I wrote two post consecutively: here are what the waiter pingomatic answered me&lt;br /&gt;&lt;br /&gt; &lt;span style="font-size: 130%;"&gt;&lt;span style="font-weight: bold;"&gt;C http://rpc.pingomatic.com/&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 130%;"&gt;&lt;span style="font-weight: bold;"&gt;--&gt; Pinging too fast. Slow fox trot down cowboy. Please ping No more than ounce every 5 minutes.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: 130%;"&gt;&lt;span style="font-size: 100%;"&gt;personally I like their humour; -)&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-115909657365318106?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/115909657365318106/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=115909657365318106' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/115909657365318106'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/115909657365318106'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/09/blogger-pings-and-cowboys.html' title='Blogger:: Pings and cowboys'/><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-115909640855120292</id><published>2006-09-24T11:08:00.000Z</published><updated>2006-09-24T11:13:28.563Z</updated><title type='text'>Linux:: Use of ssh-agent</title><content type='html'>&lt;span style="font-weight: bold;font-size:85%;" &gt;&lt;span style="font-size: 130%;"&gt;You often connect remotely by using ssh… and you are fed up of always having to enter your password: ssh-agent is made for you. ssh-agent is a daemon whose only goal is to keep in memory (in a protected way) the “passphrase” so that it is not necessary to type it with each use of ssh.&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;div style="text-align: justify; font-weight: bold;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 130%;"&gt;The following order creates the variable SSH_AUTH_SOCK which contains the way of a socket that ssh, SCP (and other orders) will use to dialogue with ssh-agent:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 130%;"&gt;$ ssh-agent&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: 130%;"&gt;To communicate the private key and the sentence of master key to ssh-agent by means of ssh-add:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 130%;"&gt;$ ssh-add ~/.ssh/id_rsa&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 130%;"&gt;Enter the passphrase for /home/user/.ssh/id_rsa:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: 130%;"&gt;The private key is thus deciphered and stored in the mask of ssh-agent, lends to being used&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;One can now use ssh and SCP without having to enter the password.&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;pre style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/pre&gt;&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-115909640855120292?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/115909640855120292/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=115909640855120292' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/115909640855120292'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/115909640855120292'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/09/linux-use-of-ssh-agent.html' title='Linux:: Use of ssh-agent'/><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-115903578102650373</id><published>2006-09-23T18:21:00.000Z</published><updated>2006-09-23T18:23:01.036Z</updated><title type='text'>Linux:: How to install IMVU on Linux</title><content type='html'>Sorry, I do not have a magic receipt, I tested Wine and Crossover well, but I had some problems with glu32.dll and opengl32.dll… I have thus to try the vitualisation and my Windows machine in Qemu. It is great, it works! I launch only that, and I have to remove the updates automatic of Windows, But yes, I can regenerate my virtual machine, therefore in the worst case the virus or the Trojan will remain there only one hour or two: -) not of chance for hackers. Moreover I am seeking how to accelerate my virtual machine: there that could become really a magic receipt, moreover if you have some already: as usual leave me a message&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32354023-115903578102650373?l=servalx02.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://servalx02.blogspot.com/feeds/115903578102650373/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=32354023&amp;postID=115903578102650373' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/115903578102650373'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/32354023/posts/default/115903578102650373'/><link rel='alternate' type='text/html' href='http://servalx02.blogspot.com/2006/09/linux-how-to-install-imvu-on-linux.html' title='Linux:: How to install IMVU on Linux'/><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></feed>
