<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Raphaël Slinckx &#187; Planet Gnomefr</title>
	<atom:link href="http://raphael.slinckx.net/blog/category/planet-gnome-fr/feed" rel="self" type="application/rss+xml" />
	<link>http://raphael.slinckx.net/blog</link>
	<description>a.k.a kikidonk — Scabreusement Hype</description>
	<lastBuildDate>Tue, 22 Apr 2008 12:35:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>git commit / darcs record</title>
		<link>http://raphael.slinckx.net/blog/2007-11-03/git-commit-darcs-record</link>
		<comments>http://raphael.slinckx.net/blog/2007-11-03/git-commit-darcs-record#comments</comments>
		<pubDate>Sat, 03 Nov 2007 16:43:49 +0000</pubDate>
		<dc:creator>Raphaël Slinckx</dc:creator>
				<category><![CDATA[Planet Gnome]]></category>
		<category><![CDATA[Planet Gnomefr]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[commit]]></category>
		<category><![CDATA[darcs]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[record]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://raphael.slinckx.net/blog/2007-11-03/git-commit-darcs-record</guid>
		<description><![CDATA[I&#8217;ve been working wit git lately but I have also missed the darcs user interface. I honestly think the darcs user interface is the best I&#8217;ve ever seen, it&#8217;s such a joy to record/push/pull (when darcs doesn&#8217;t eat your cpu)  
I looked at git add --interactive because it had hunk-based commit, a pre-requisite for [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working wit <a href="http://git.or.cz/" title="Git Homepage">git</a> lately but I have also missed the <a href="http://darcs.net/" title="Darcs Homepage">darcs</a> user interface. I honestly think the darcs user interface is the best I&#8217;ve ever seen, it&#8217;s such a joy to record/push/pull (when darcs doesn&#8217;t eat your cpu) <img src='http://raphael.slinckx.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I looked at <code>git add --interactive</code> because it had hunk-based commit, a pre-requisite for <code>darcs record</code>-style commit,  but it has a terrible user interface, so i just copied the concept: running a <code>git diff</code>, filtering hunks, and then outputing the filtered diff through <code>git apply --cached</code>.</p>
<p>It supports binary diffs, file additions and removal. It also asks for new files to be added even if this is not exactly how darcs behave but I always forget to add new files, so I added it. It will probably break on some extreme corner cases I haven&#8217;t been confronted to, but I gladly accept any patches <img src='http://raphael.slinckx.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Here&#8217;s a sample session of <code><a href="http://raphael.slinckx.net/files/git-darcs-record">git-darcs-record script</a></code>:</p>
<pre>
$ git-darcs-record
Add file:  newfile.txt
Shall I add this file? (1/1) [Ynda] : y

Binary file changed: document.pdf

Shall I record this change? (1/7) [Ynda] : y

foobar.txt
@@ -1,3 +1,5 @@
 line1
 line2
+line3
 line4
+line5

Shall I record this change? (2/7) [Ynda] : y

git-darcs-record
@@ -1,17 +1,5 @@
 #!/usr/bin/env python

-# git-darcs-record, emulate "darcs record" interface on top of a git repository
-#
-# Usage:
-# git-darcs-record first asks for any new file (previously
-#    untracked) to be added to the index.
-# git-darcs-record then asks for each hunk to be recorded in
-#    the next commit. File deletion and binary blobs are supported
-# git-darcs-record finally asks for a small commit message and
-#    executes the 'git commit' command with the newly created
-#    changeset in the index
-
-
 # Copyright (C) 2007 Raphaël Slinckx
 #
 # This program is free software; you can redistribute it and/or

Shall I record this change? (3/7) [Ynda] : y

git-darcs-record
@@ -28,6 +16,19 @@
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

+# git-darcs-record, emulate "darcs record" interface on top of a git repository
+#
+# Usage:
+# git-darcs-record first asks for any new file (previously
+#    untracked) to be added to the index.
+# git-darcs-record then asks for each hunk to be recorded in
+#    the next commit. File deletion and binary blobs are supported
+# git-darcs-record finally asks for a small commit message and
+#    executes the 'git commit' command with the newly created
+#    changeset in the index
+
+
+
 import re, pprint, sys, os

 BINARY = re.compile("GIT binary patch")

Shall I record this change? (4/7) [Ynda] : n

git-darcs-record
@@ -151,16 +152,6 @@ def read_answer(question, allowed_responses=["Y", "n", "d", "a"]):
        return resp

-def setup_git_dir():
-       global GIT_DIR
-       GIT_DIR = os.getcwd()
-       while not os.path.exists(os.path.join(GIT_DIR, ".git")):
-               GIT_DIR = os.path.dirname(GIT_DIR)
-               if GIT_DIR == "/":
-                       return False
-       os.chdir(GIT_DIR)
-       return True
-
 def git_get_untracked_files():

Shall I record this change? (5/7) [Ynda] : y

# On branch master
# Changes to be committed:
#   (use "git reset HEAD file..." to unstage)
#
#       modified:   document.pdf
#       modified:   foobar.txt
#       modified:   git-darcs-record
#       new file:   newfile.txt
#
# Changed but not updated:
#   (use "git add file file..." to update what will be committed)
#
#       modified:   git-darcs-record
#
What is the patch name? Some cute patch name
Created commit a08f34e: Some cute patch name
 4 files changed, 3 insertions(+), 29 deletions(-)
 create mode 100644 newfile.txt</pre>
<p>Get the script here: <a href="http://raphael.slinckx.net/files/git-darcs-record">git-darcs-record script</a> and put in somewhere in your $PATH. Any comments or improvements is welcome !</p>
]]></content:encoded>
			<wfw:commentRss>http://raphael.slinckx.net/blog/2007-11-03/git-commit-darcs-record/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Graduation</title>
		<link>http://raphael.slinckx.net/blog/2007-07-02/graduation</link>
		<comments>http://raphael.slinckx.net/blog/2007-07-02/graduation#comments</comments>
		<pubDate>Sun, 01 Jul 2007 23:10:04 +0000</pubDate>
		<dc:creator>Raphaël Slinckx</dc:creator>
				<category><![CDATA[Planet Gnome]]></category>
		<category><![CDATA[Planet Gnomefr]]></category>
		<category><![CDATA[ailv]]></category>
		<category><![CDATA[engineer]]></category>
		<category><![CDATA[fsa]]></category>
		<category><![CDATA[graduation]]></category>
		<category><![CDATA[memoire]]></category>
		<category><![CDATA[proclamation]]></category>

		<guid isPermaLink="false">http://raphael.slinckx.net/blog/2007-07-02/graduation</guid>
		<description><![CDATA[As of friday, I shall be referred to as &#8220;Ir. Raphael Slinckx&#8221;  

The 2007 promotion (I&#8217;m the guy with the red jacket). Note the geeks. Especially our teacher that looks like Clint Eastwood ready to shoot someone.

Antoine and me with the AILv price. We ended in 4th position for the best mémoire that can [...]]]></description>
			<content:encoded><![CDATA[<p>As of friday, I shall be referred to as &#8220;Ir. Raphael Slinckx&#8221; <img src='http://raphael.slinckx.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.flickr.com/photos/kikidonk/687960762/"></a><img src="http://farm2.static.flickr.com/1266/687960762_fc58ec157c.jpg" /></p>
<p>The 2007 promotion (I&#8217;m the guy with the red jacket). Note the geeks. Especially our teacher that looks like Clint Eastwood ready to shoot someone.</p>
<p><a href="http://www.flickr.com/photos/kikidonk/677307026/"></a><img src="http://farm2.static.flickr.com/1355/677307026_97d3771ff8.jpg" /></p>
<p><a href="http://perdaens.be/blog">Antoine</a> and me with the AILv price. We ended in 4th position for the best mémoire that can lead to a business.</p>
]]></content:encoded>
			<wfw:commentRss>http://raphael.slinckx.net/blog/2007-07-02/graduation/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Election Day</title>
		<link>http://raphael.slinckx.net/blog/2007-06-10/election-day</link>
		<comments>http://raphael.slinckx.net/blog/2007-06-10/election-day#comments</comments>
		<pubDate>Sun, 10 Jun 2007 11:14:35 +0000</pubDate>
		<dc:creator>Raphaël Slinckx</dc:creator>
				<category><![CDATA[Planet Gnome]]></category>
		<category><![CDATA[Planet Gnomefr]]></category>

		<guid isPermaLink="false">http://raphael.slinckx.net/blog/2007-06-10/election-day</guid>
		<description><![CDATA[Today was election day in Belgium!
It turns out that my area uses the electronic voting, unfortunately
I can only hope that WYSIWYV !
]]></description>
			<content:encoded><![CDATA[<p>Today was election day in Belgium!<img src="http://farm2.static.flickr.com/1058/538521363_cff7b8caba_o.jpg" title="E-voting" alt="E-voting" height="240" width="320" /></p>
<p>It turns out that my area uses the electronic voting, <a href="http://ploum.frimouvy.org/?157-pour-ou-contre-le-vote-electronique">unfortunately</a></p>
<p>I can only hope that WYSIWYV !</p>
]]></content:encoded>
			<wfw:commentRss>http://raphael.slinckx.net/blog/2007-06-10/election-day/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google Summer Of Code</title>
		<link>http://raphael.slinckx.net/blog/2007-04-21/google-summer-of-code</link>
		<comments>http://raphael.slinckx.net/blog/2007-04-21/google-summer-of-code#comments</comments>
		<pubDate>Sat, 21 Apr 2007 14:57:21 +0000</pubDate>
		<dc:creator>Raphaël Slinckx</dc:creator>
				<category><![CDATA[Planet Gnome]]></category>
		<category><![CDATA[Planet Gnomefr]]></category>

		<guid isPermaLink="false">http://raphael.slinckx.net/blog/2007-04-21/google-summer-of-code</guid>
		<description><![CDATA[Summer of Code
I&#8217;m mentoring two students this year for the google summer of code:
Daniel Siegel
Daniel is going to implement some kind of photobooth application for GNOME. There has been some buzz around the idea lately. I believe that the idea if done well could really be a mini-killer-application. There is also some integration work to [...]]]></description>
			<content:encoded><![CDATA[<h3>Summer of Code</h3>
<p>I&#8217;m mentoring two students this year for the google summer of code:</p>
<h4><a href="http://home.cs.tum.edu/~siegel">Daniel Siegel</a></h4>
<p>Daniel is going to implement some kind of <a href="http://code.google.com/soc/gnome/appinfo.html?csaid=9241C03D23E01D36">photobooth application for GNOME</a>. There has been <a href="http://0pointer.de/blog/projects/what-i-miss-in-gnome.html">some buzz</a> around the idea lately. I believe that the idea if done well could really be a mini-killer-application. There is also some integration work to be done. Two ideas were discussed in the proposal: gnome-about-me could popup the photobooth widget to take a picture of you. Same for any IM client to setup an avatar. This is just how Mac Osx does the job. Another idea would be flickr/youtube integration, the ability to directly post a photo/video to those websites from the application. More ideas discussed in the google soc proposal.</p>
<h4><a href="http://www.k-d-w.org/">Sebastian Pölsterl</a></h4>
<p>Sebastian has been contributing to <a href="http://raphael.slinckx.net/deskbar">deskbar</a> already. He is also the creator of the <a href="http://www.k-d-w.org/index.php?mact=News,cntnt01,detail,0&amp;cntnt01articleid=10&amp;cntnt01returnid=15">NewStuffManager</a> <a href="http://live.gnome.org/DeskbarApplet/PluginManager">started in deskbar</a> now growing as a standalone project gaining more and more traction. Now <a href="http://code.google.com/soc/gnome/appinfo.html?csaid=CD3CECAA07C74D08">his task for this summer is a difficult one</a>. Deskbar has grown organically the last year to a point where it becomes difficult to add any feature or correct the long standing bugs because of <a href="http://live.gnome.org/DeskbarApplet/Design">architectural problems</a>. The issues are well known and have been discussed on IRC or the <a href="http://live.gnome.org/DeskbarApplet/Ideas">live.gnome.org wiki</a> page. The refactoring work should land in 2.20 so we can start on a fresh basis. Ideas that are discussed include the ability to embed the deskbar entry widget in other applications like gimmie, or allow to query deskbar via dbus without using the UI. Startup times and memory usage are also priorities.</p>
<h3>Photobooth</h3>
<p>I <a href="http://raphael.slinckx.net/blog/2007-03-12/lets-take-pictures">promised to release the code for my photobooth-like application</a>, which Daniel is going to use as inspiration as well. There you are:</p>
<ul>
<li><a href="http://raphael.slinckx.net/files/photobooth-like.tar.gz">Photobooth-like python/glade source files.</a></li>
</ul>
<p>I do not plan to maintain this piece of code, since other people will make it evolve better than me !</p>
]]></content:encoded>
			<wfw:commentRss>http://raphael.slinckx.net/blog/2007-04-21/google-summer-of-code/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Let&#8217;s take pictures!</title>
		<link>http://raphael.slinckx.net/blog/2007-03-12/lets-take-pictures</link>
		<comments>http://raphael.slinckx.net/blog/2007-03-12/lets-take-pictures#comments</comments>
		<pubDate>Mon, 12 Mar 2007 12:19:33 +0000</pubDate>
		<dc:creator>Raphaël Slinckx</dc:creator>
				<category><![CDATA[Planet Gnome]]></category>
		<category><![CDATA[Planet Gnomefr]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://raphael.slinckx.net/blog/2007-03-12/lets-take-pictures</guid>
		<description><![CDATA[This wednesday our local louvain-la-neuve LUG (louvain-li-nux) will participate to a student fair showcasing all activity groups present in the university. We had the idea of creating a photo booth stand where people can stop by take a picture by pressing a button and then send that picture on a dynamic website or on a [...]]]></description>
			<content:encoded><![CDATA[<p>This wednesday our <a href="http://www.louvainlinux.org">local louvain-la-neuve LUG (louvain-li-nux)</a> will participate to a student fair showcasing all activity groups present in the university. We had the idea of creating a photo booth stand where people can stop by take a picture by pressing a button and then send that picture on a dynamic website or on a big projector live. All this using free software of course. It&#8217;s a good way to engage conversation with people!</p>
<p>I searched the internet for something existing but unfortunately couldn&#8217;t find anything except this <a href="http://maemo.org/platform/docs/howtos/howto_camera_api_bora.html">little snippet of code</a> for the <a href="http://www.nseries.com/index.html#l=products,n800">Nokia 880</a> device. I took the code, embraced and extended it resulting in:</p>
<p class="screenshot"> <a href="http://raphael.slinckx.net/images/photobooth.png"><img src="http://raphael.slinckx.net/images/photobooth.png" alt="Screenshot" />Photobooth Screenshot</a></p>
<p>Basically it uses gstreamer to grab frames from the webcam then it feeds a double pipeline, one displaying the image on screen on the gtk widget, and the other allowing to take a buffer when the user clicks the button and encode it to whatever image format is needed.</p>
<p>There is of course the little countdown from 3 to &#8216;Smile&#8217; when clicking the button, and i plan to add the white screen thingy when the shot is made.. I think apple can sue me right away</p>
<p>The code will be released next week after the application has been proved in the field to be stable enough <img src='http://raphael.slinckx.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://raphael.slinckx.net/blog/2007-03-12/lets-take-pictures/feed</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>My Christmas present: Gossip Audio/Video</title>
		<link>http://raphael.slinckx.net/blog/2006-12-24/my-christmas-present-gossip-audiovideo</link>
		<comments>http://raphael.slinckx.net/blog/2006-12-24/my-christmas-present-gossip-audiovideo#comments</comments>
		<pubDate>Sun, 24 Dec 2006 17:18:45 +0000</pubDate>
		<dc:creator>Raphaël Slinckx</dc:creator>
				<category><![CDATA[Planet Gnome]]></category>
		<category><![CDATA[Planet Gnomefr]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://raphael.slinckx.net/blog/2006-12-24/my-christmas-present-gossip-audiovideo</guid>
		<description><![CDATA[Gossip has now video/audio capabilities !
Coming soon in your favorite distribution. Notes:

In reality I&#8217;m handsome, the weird face is due to the camera&#8217;s angle
The black square is actually the video preview frame where you see yourself (but it can&#8217;t be screenshotted)
The meters aren&#8217;t working yet
If no video is possible, then only the button+status and the [...]]]></description>
			<content:encoded><![CDATA[<h3>Gossip has now video/audio capabilities !</h3>
<p>Coming soon in your favorite distribution. Notes:</p>
<ul>
<li>In reality I&#8217;m handsome, the weird face is due to the camera&#8217;s angle</li>
<li>The black square is actually the video preview frame where you see yourself (but it can&#8217;t be screenshotted)</li>
<li>The meters aren&#8217;t working yet</li>
<li>If no video is possible, then only the button+status and the meters are shown in the window</li>
<li>All this is powered by <a href="http://telepathy.freedesktop.org/">Telepathy</a> and the telepathy branch of <a href="http://developer.imendio.com/projects/gossip">Gossip</a></li>
<li>I&#8217;m not alone on this stuff, many thanks to Xavier Claessens and Eitan Isaacson for maintaining the telepathy branch!</li>
<li>This stuff is experimental, blabla, and also it&#8217;s not a final design, it&#8217;s open for discussion, etc</li>
<li>Come and help/discuss on <code>#telepathy</code> on Freenode or <code>#gossip</code> on Gimpnet</li>
</ul>
<div class="screenshot">
  <a href="http://raphael.slinckx.net/images/gossip-telepathy-voip.png"><br />
    <img src="http://raphael.slinckx.net/images/gossip-telepathy-voip-small.png" alt="Screenshot" /></p>
<p>Click to see a larger version.</p>
</p>
<p></a>
</div>
<p>You can get the code using <code>darcs get http://www.gnome.org/~rslinckx/darcs/gossip-telepathy-voip</code></p>
<h3>Merry Christmas and Hapy New Year !</h3>
]]></content:encoded>
			<wfw:commentRss>http://raphael.slinckx.net/blog/2006-12-24/my-christmas-present-gossip-audiovideo/feed</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Scandinavia ♥ Tux</title>
		<link>http://raphael.slinckx.net/blog/2006-12-15/scandinavia-%e2%99%a5-tux</link>
		<comments>http://raphael.slinckx.net/blog/2006-12-15/scandinavia-%e2%99%a5-tux#comments</comments>
		<pubDate>Fri, 15 Dec 2006 21:17:36 +0000</pubDate>
		<dc:creator>Raphaël Slinckx</dc:creator>
				<category><![CDATA[Planet Gnome]]></category>
		<category><![CDATA[Planet Gnomefr]]></category>

		<guid isPermaLink="false">http://raphael.slinckx.net/blog/2006-12-15/scandinavia-%e2%99%a5-tux</guid>
		<description><![CDATA[
  
Tivoli, Copenhagen

]]></description>
			<content:encoded><![CDATA[<div class="screenshot">
  <img src="http://static.flickr.com/140/321761899_72aae8d9d9.jpg?v=0" alt="Scandinavia ♥ Tux"/></p>
<p>Tivoli, Copenhagen</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://raphael.slinckx.net/blog/2006-12-15/scandinavia-%e2%99%a5-tux/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Internet pour tous !</title>
		<link>http://raphael.slinckx.net/blog/2006-05-23/internet-pour-tous</link>
		<comments>http://raphael.slinckx.net/blog/2006-05-23/internet-pour-tous#comments</comments>
		<pubDate>Tue, 23 May 2006 18:44:22 +0000</pubDate>
		<dc:creator>Raphaël Slinckx</dc:creator>
				<category><![CDATA[Planet Gnome]]></category>
		<category><![CDATA[Planet Gnomefr]]></category>

		<guid isPermaLink="false">http://raphael.slinckx.net/blog/2006-05-23/internet-pour-tous</guid>
		<description><![CDATA[
Je viens de recevoir un courrier de notre gouvernement fédéral, faisant la promotion de &#8220;L&#8217;internet pour tous&#8221;.
Moyennant une somme de 850€ maximum, le peuple peut acheter un &#8220;pack&#8221; comprenant un ordinateur, un abonnement adsl pour an, des logiciels, un lecteur de carte d&#8217;identité électronique ainsi qu&#8217;une formation de base. De plus, 21% de cette somme [...]]]></description>
			<content:encoded><![CDATA[<div style="text-align: center"><a title="Internet pour tous, site officiel" href="http://www.internetpourtous.be"><img alt="Internet pour tous" src="http://www.belgium.be/fr_BE/images/fed_ict/Michelle_Deraymaeker/content/Ipourtous_Q.jpg" /></a></div>
<p>Je viens de recevoir un courrier de notre gouvernement fédéral, faisant la promotion de &#8220;L&#8217;internet pour tous&#8221;.</p>
<p>Moyennant une somme de 850€ maximum, le peuple peut acheter un &#8220;pack&#8221; comprenant un ordinateur, un abonnement adsl pour an, des logiciels, un lecteur de carte d&#8217;identité électronique ainsi qu&#8217;une formation de base. De plus, 21% de cette somme est déductible fiscalement, soit une réduction d&#8217;environ 170€. J&#8217;applaudis !</p>
<p>Mais quelque chose me chipote, je ne vois aucune offre linux <a href="http://www.ivipc.be/">parmi</a> <a href="http://www.www4all.be/packs.php?language=fr">les</a> <a href="http://fr.packardbell.be/internetpourtous">packs</a> <a href="http://www.shscomputer.be/internet_pour_tous.php">proposés</a>, <a href="http://www.telenet.be/internetpourtous">quid</a> ?</p>
<p>Peut-être est-ce le <a href="http://www.belgium.be/eportal/application?pageid=contentPage&#038;docId=41584">règlement de l&#8217;opération</a> qui prévoit que le pack doive contenir au moins <em>un logiciel anti-spam, un logiciel anti-spyware, un logiciel anti-virus et un firewall personnel</em>. Depuis quand avons nous des spywares sous linux (je pense pouvoir affirmer qu&#8217;il n&#8217;existe même aucun programme anti-spyware) ?</p>
<p>Et voila notre penguin favori disqualifié de la course..</p>
<p>Pensez-y:</p>
<div style="text-align: center"><img alt="Voiture Volante" src="http://static.howstuffworks.com/gif/flying-car-ch.jpg" /></div>
<p>Peut-être cette voiture est-elle illégale, car elle ne dispose pas d&#8217;une roue de secours ?</p>
]]></content:encoded>
			<wfw:commentRss>http://raphael.slinckx.net/blog/2006-05-23/internet-pour-tous/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Epiphany is hype, get over it</title>
		<link>http://raphael.slinckx.net/blog/2006-03-15/epiphany-is-hype-get-over-it</link>
		<comments>http://raphael.slinckx.net/blog/2006-03-15/epiphany-is-hype-get-over-it#comments</comments>
		<pubDate>Wed, 15 Mar 2006 10:54:54 +0000</pubDate>
		<dc:creator>Raphaël Slinckx</dc:creator>
				<category><![CDATA[Planet Gnome]]></category>
		<category><![CDATA[Planet Gnomefr]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://raphael.slinckx.net/blog/2006-03-15/epiphany-is-hype-get-over-it</guid>
		<description><![CDATA[Ploum writes about epiphany 2.14, and explain why it&#8217;s the best browser for gnome.
To make it short, here is a summary of the killer features in epiphany 2.14

Easy RSS subscription, integration with gnome programs (liferea, blam, straw)
&#8220;Tagged&#8221; Bookmarks management (very Web 2.0)
Adblock extension working out of the box
HIG and gnome integration everywhere
Simple and easy to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ploum.frimouvy.org/">Ploum</a> <a href="http://ploum.frimouvy.org/?2006/03/15/100-why-you-should-try-epiphany-as-your-default-browser-with-gnome-214">writes about epiphany 2.14</a>, and explain why it&#8217;s the best browser <em>for gnome</em>.</p>
<p>To make it short, here is a summary of the killer features in epiphany 2.14</p>
<ul>
<li>Easy RSS subscription, integration with gnome programs (liferea, blam, straw)</li>
<li>&#8220;Tagged&#8221; Bookmarks management (very Web 2.0)</li>
<li>Adblock extension working out of the box</li>
<li>HIG and gnome integration everywhere</li>
<li>Simple and easy to understand preferences</li>
<li>Light and responsive</li>
<li>Very few popups, unobtrusive error pages are used instead</li>
</ul>
<p>&#8230;but he missed the deskbar integration, which i will fix now:</p>
<ul>
<li>Deskbar will index and allow to search through bookmarks</li>
<li>Deskbar will index and allow to search through your browsing history</li>
<li>Deskbar will allow you to quickly search using epiphany smart bookmarks</li>
</ul>
<div class="screenshot"><img alt="Epiphany smart bookmarks" src="http://raphael.slinckx.net/images/ephy-deskbar-1.png" /><br />
This is my epiphany toolbar, i have three smart bookmarks, one to search for gnome bug number, another one to search stock quotes by ticker symbol, and the last one is google.be search</div>
<div class="screenshot"><img alt="Epiphany url bar" src="http://raphael.slinckx.net/images/ephy-deskbar-3.png" /><br />
This is the epiphany dropdown when i stype somehting in epiphany URL bar, allowing me to use one of my smart bookmark with the query. Here i&#8217;m searching for a random bug number</div>
<div class="screenshot"><img alt="Deskbar uses epiphany smart bookmarks" src="http://raphael.slinckx.net/images/ephy-deskbar-2.png" /><br />
And finally, i can use deskbar, even if the browser isn&#8217;t running, a keyboard shortcut away, to use my smart bookmarks. Here i&#8217;m going to search for yahoo quotes for GOOG symbol. Also note how i have history pages, and bookmarks appearing too, allowing me to quickly open them.</div>
<p>There is also a way to associate a keyboard shortcut to search engines, and/or a &#8216;keyword&#8217; in deskbar preferences:</p>
<div class="screenshot"><img alt="Deskbar has shortcuts/keywords" src="http://raphael.slinckx.net/images/ephy-deskbar-4.png" /><br />
In deskbar preferences, when you select &#8216;Web searches&#8217;, you can click the &#8216;More&#8230;&#8217; button to get more smart bookmarks preferences.</div>
<p>As you can see, i have the &#8216;g&#8217; letter for google, which means i can type in deskbar <code>g test</code> to search in google the term &#8216;test&#8217;.</p>
<p>Even better, i can directly use the shortcut to open the term in google without even selecting it in the list: I type &#8216;test&#8217;, then hit <code>Alt-g</code>, and it fires up a google search (this of course only works when you have a one-letter keyword)</p>
<p>This is also a feature we want to extend for every possible action in future versions of deskbar.</p>
<p>Now, use epiphany, and be happy !</p>
<h3>One last thing&#8230;</h3>
<p>And finally a quick tip: if you want to open a command-line program and see it&#8217;s output, type it&#8217;s name and instead of selecting it in the list, hit <code>Alt-t</code>, it will start the program and redirect it&#8217;s output in a text window using zenity, useful for example to see if the command executes successfully.</p>
<div class="screenshot"><img alt="Deskbar open in terminal" src="http://raphael.slinckx.net/images/ephy-deskbar-5.png" /><br />
After launching a sitecopy command with alt-t, i receive the output of the command in a nice window, useful for quick commands like that.</div>
]]></content:encoded>
			<wfw:commentRss>http://raphael.slinckx.net/blog/2006-03-15/epiphany-is-hype-get-over-it/feed</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
		<item>
		<title>Deskbar 2.14</title>
		<link>http://raphael.slinckx.net/blog/2006-03-14/deskbar-214</link>
		<comments>http://raphael.slinckx.net/blog/2006-03-14/deskbar-214#comments</comments>
		<pubDate>Mon, 13 Mar 2006 23:02:49 +0000</pubDate>
		<dc:creator>Raphaël Slinckx</dc:creator>
				<category><![CDATA[Planet Gnome]]></category>
		<category><![CDATA[Planet Gnomefr]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[deskbar]]></category>
		<category><![CDATA[screencast]]></category>

		<guid isPermaLink="false">http://raphael.slinckx.net/blog/2006-03-14/deskbar-214</guid>
		<description><![CDATA[There it is, we finally released the final 2.14 version of deskbar for the general audience !
Nigel made an excellent comment and a screencast (flash) (mirror) showcasing some current deskbar capabilities.
I&#8217;m glad to see that the gnome community is loving it, and using it !
THANKS !
]]></description>
			<content:encoded><![CDATA[<p>There it is, we finally released the final 2.14 version of deskbar for the general audience !</p>
<p>Nigel made an <a href="http://blogs.gnome.org/view/nigeltao/2006/03/13/0">excellent comment</a> and <a href="http://browserbookapp.sourceforge.net/deskbar-2-14-screencast.html">a screencast (flash)</a> <a href="http://nigel.tao.googlepages.com/deskbar-2-14-screencast.html">(mirror)</a> showcasing some current deskbar capabilities.</p>
<p>I&#8217;m glad to see that the gnome community is <a href="http://tieguy.org/blog/index.cgi/567.html">loving it</a>, and <a href="http://david.navi.cx/blog/?p=77">using it</a> !</p>
<p>THANKS !</p>
]]></content:encoded>
			<wfw:commentRss>http://raphael.slinckx.net/blog/2006-03-14/deskbar-214/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
