<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="/stylesheets/rss.css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>Jb in a nutshell: Category Personal</title>
    <link>http://evain.net/blog/articles/category/personal</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description></description>
    <item>
      <title>Ohloh Journal</title>
      <description>&lt;p&gt;&lt;a href="http://www.flickr.com/photos/jbevain/460703359/" title="View from the lac by Jb Evain, on Flickr"&gt;&lt;img src="http://farm1.static.flickr.com/226/460703359_90989937c7.jpg" width="500" height="333" alt="View from the lac" style="border: 2px solid black" /&gt;&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;I&amp;#8217;ve recently noticed that ohloh now allows you to publish a journal, made of short entries (less than 400 characters).&lt;/p&gt;


	&lt;p&gt;It feels more specialized than twitter, and pretty useful to log short updates on what I am hacking on, or short news for a project. For instance, &lt;a href="http://www.ohloh.net/accounts/poupou"&gt;Sébastien&lt;/a&gt; already started using it to publish short news about &lt;a href="http://www.ohloh.net/projects/gendarme"&gt;Gendarme&lt;/a&gt;.&lt;/p&gt;


	&lt;p&gt;That looks pretty nice to me, let see what ends up in &lt;a href="http://www.ohloh.net/accounts/jbevain/messages"&gt;my ohloh journal&lt;/a&gt;.&lt;/p&gt;</description>
      <pubDate>Sat, 07 Jun 2008 14:39:00 +0200</pubDate>
      <guid isPermaLink="false">urn:uuid:39738410-1329-4b1f-98df-0aef614bbf2a</guid>
      <author>Jb Evain</author>
      <link>http://evain.net/blog/articles/2008/06/07/ohloh-journal</link>
      <category>Personal</category>
      <trackback:ping>http://evain.net/blog/articles/trackback/491</trackback:ping>
    </item>
    <item>
      <title>Old boxes</title>
      <description>&lt;p&gt;While &lt;a href="http://tirania.org/blog/archive/2008/May-18-1.html"&gt;Miguel&lt;/a&gt; was having fun discovering new games, I saved from the dust a few precious boxes.&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://www.flickr.com/photos/jbevain/2496833474/" title="Relics by Jb Evain, on Flickr"&gt;&lt;img src="http://farm3.static.flickr.com/2320/2496833474_2294e22c3c.jpg" width="333" height="500" alt="Relics" style="border: 2px black solid" /&gt;&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;Now that they&amp;#8217;re safe, I can go back to play Mass Effect.&lt;/p&gt;</description>
      <pubDate>Tue, 20 May 2008 12:42:00 +0200</pubDate>
      <guid isPermaLink="false">urn:uuid:6bf9faa7-2e4e-4f55-bf27-18716a640561</guid>
      <author>Jb Evain</author>
      <link>http://evain.net/blog/articles/2008/05/20/old-boxes</link>
      <category>Personal</category>
      <trackback:ping>http://evain.net/blog/articles/trackback/485</trackback:ping>
    </item>
    <item>
      <title>We're back baby</title>
      <description>&lt;p&gt;&lt;a href="http://www.flickr.com/photos/jbevain/2138060414/" title="Concorde by Jb Evain, on Flickr"&gt;&lt;img src="http://farm3.static.flickr.com/2401/2138060414_c597a7e6d5.jpg" width="500" height="333" alt="Concorde" style="border: 2px solid black" /&gt;&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;After having undergone a month of technical difficulties, this blog is back online. Sorry for the turbulences. More technical content to follow. Happy new year!&lt;/p&gt;</description>
      <pubDate>Sun, 13 Jan 2008 16:45:00 +0100</pubDate>
      <guid isPermaLink="false">urn:uuid:a3dba75d-f460-498f-a63e-18b8d03dd4cc</guid>
      <author>Jb Evain</author>
      <link>http://evain.net/blog/articles/2008/01/13/were-back-baby</link>
      <category>Personal</category>
      <trackback:ping>http://evain.net/blog/articles/trackback/462</trackback:ping>
    </item>
    <item>
      <title>A handful of useful scripts</title>
      <description>I've just uploaded a &lt;a href="http://evain.net/public/scripts.zip"&gt;zip file&lt;/a&gt; containing a handful of scripts I use in my every day routine.

&lt;ul&gt;
  &lt;li&gt;
    &lt;b&gt;cleol&lt;/b&gt;: Clean the end of lines of the files passed as arguments. Accept ruby wildcards (such as * or **/*). That will replace the windows style line endings by unix style line endings, but will also remove useless white-spaces.
  &lt;/li&gt;
  &lt;li&gt;
    &lt;b&gt;clprop&lt;/b&gt;: Clean the svn properties of the files passed as arguments. Accept ruby wildcards (such as * or **/*). That will remove the svn:executable properties, and set the svn:eol-style to native to the files.
  &lt;/li&gt;
  &lt;li&gt;
    &lt;b&gt;svnci&lt;/b&gt;: My own script that prompt me my favorite lightweight editor to edit my ChangeLog entries.
  &lt;/li&gt;
  &lt;li&gt;
    &lt;b&gt;monoport&lt;/b&gt;: I've detailed this one in &lt;a href="http://evain.net/blog/articles/2007/08/18/monoport-from-the-shell"&gt;this blog entry&lt;/a&gt;. I recently added to it the possibility to get a monoport entry printed to stdout. Typically, it allows me to apply patches directly from monoport:
&lt;pre&gt;
monoport -g:4512 | patch -p0
&lt;/pre&gt;
Requires the cute library &lt;a href="http://code.whytheluckystiff.net/hpricot/"&gt;hpricot&lt;/a&gt;.
  &lt;/li&gt;
&lt;/ul&gt;

</description>
      <pubDate>Thu, 11 Oct 2007 11:16:00 +0200</pubDate>
      <guid isPermaLink="false">urn:uuid:db30e51c-7b58-40da-a6cd-833a44be05ee</guid>
      <author>Jb Evain</author>
      <link>http://evain.net/blog/articles/2007/10/11/a-handful-of-useful-scripts</link>
      <category>Personal</category>
      <trackback:ping>http://evain.net/blog/articles/trackback/461</trackback:ping>
    </item>
    <item>
      <title>Move, done.</title>
      <description>&lt;p&gt;&lt;a href="http://www.flickr.com/photos/jbevain/444711205/" title="Photo Sharing"&gt;&lt;img src="http://farm1.static.flickr.com/246/444711205_eefe0d4216.jpg" style="border: 2px solid black;" width="500" height="333" alt="Contemplating" /&gt;&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;I moved back to &lt;a href="http://www.lyon-france.com/"&gt;Lyon&lt;/a&gt;.&lt;/p&gt;</description>
      <pubDate>Thu, 27 Sep 2007 12:20:00 +0200</pubDate>
      <guid isPermaLink="false">urn:uuid:1ee7da7d-7eb4-48a1-bec3-46d6c1f0bb46</guid>
      <author>Jb Evain</author>
      <link>http://evain.net/blog/articles/2007/09/27/move-done</link>
      <category>Personal</category>
      <trackback:ping>http://evain.net/blog/articles/trackback/453</trackback:ping>
    </item>
    <item>
      <title>Reflexil will rock your IL</title>
      <description>&lt;p&gt;&lt;a href="http://www.codeproject.com/dotnet/reflexil.asp"&gt;&lt;img src="http://evain.net/public/reflexil.png" style="border:0px"/&gt;&lt;/a&gt;&lt;br/&gt;
&lt;br/&gt;
&lt;a href="http://sebastien.lebreton.free.fr/"&gt;Sébastien Lebreton&lt;/a&gt;, friend and &lt;a href="http://reflexil.sourceforge.net"&gt;Reflexil&lt;/a&gt;&amp;#8217;s author published &lt;a href="http://www.codeproject.com/dotnet/reflexil.asp"&gt;a nifty article on codeproject&lt;/a&gt;, which explains to the mass how to look clever in society, by inserting wisely chosen opcodes in your methods.&lt;br /&gt;
&lt;br /&gt;
As a matter of fact, this article has first be written in French, and &lt;a href="http://www.techheadbrothers.com/Articles.aspx/modification-assemblage-injection-code-csharp-vb-net-volee"&gt;published on the TechHeadBrothers web site&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
What&amp;#8217;s really brilliant is that Reflexil uses &lt;a href="http://www.mono-project.com/Cecil"&gt;Mono.Cecil&lt;/a&gt; to perform the mutations of the assemblies you&amp;#8217;ll create.&lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 19 Sep 2007 19:16:00 +0200</pubDate>
      <guid isPermaLink="false">urn:uuid:9acf5b74-ce19-4444-accb-f88470fc3faa</guid>
      <author>Jb Evain</author>
      <link>http://evain.net/blog/articles/2007/09/19/reflexil-will-rock-your-il</link>
      <category>Cecil</category>
      <category>Personal</category>
      <trackback:ping>http://evain.net/blog/articles/trackback/448</trackback:ping>
    </item>
    <item>
      <title>Où sont les voyageurs?</title>
      <description>&lt;p&gt;&lt;a href="http://blogs.codehaus.org/people/bamboo/"&gt;Rodrigo&lt;/a&gt; &lt;a href="http://monty.python.videowall.sytes.org/"&gt;just ruined&lt;/a&gt; the end of my day.&lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 01 Aug 2007 22:10:00 +0200</pubDate>
      <guid isPermaLink="false">urn:uuid:64e2184d-ab18-42a1-8c89-26b7c493ea42</guid>
      <author>Jb Evain</author>
      <link>http://evain.net/blog/articles/2007/08/01/o%C3%B9-sont-les-voyageurs</link>
      <category>Personal</category>
      <trackback:ping>http://evain.net/blog/articles/trackback/444</trackback:ping>
    </item>
    <item>
      <title>Time is on my side</title>
      <description>&lt;p&gt;&lt;a href="http://www.flickr.com/photos/jbevain/575704084/" title="Photo Sharing"&gt;&lt;img src="http://farm2.static.flickr.com/1214/575704084_d6d918f19b.jpg" width="500" height="333" alt="Pause in time" style="BORDER:2px solid black" /&gt;&lt;/a&gt;
&lt;br /&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 20 Jun 2007 21:59:00 +0200</pubDate>
      <guid isPermaLink="false">urn:uuid:c5bec433-a198-40d0-b1d8-05bee4f6b885</guid>
      <author>Jb Evain</author>
      <link>http://evain.net/blog/articles/2007/06/20/time-is-on-my-side</link>
      <category>Personal</category>
      <trackback:ping>http://evain.net/blog/articles/trackback/430</trackback:ping>
    </item>
    <item>
      <title>Joining Novell/Ximian</title>
      <description>&lt;p&gt;Because monkeys do it better, I&amp;#8217;m now part of the &lt;a href="http://www.mono-project.com"&gt;Mono&lt;/a&gt; team at &lt;a href="http://www.novell.com"&gt;Novell&lt;/a&gt;.&lt;/p&gt;</description>
      <pubDate>Tue, 15 May 2007 22:59:00 +0200</pubDate>
      <guid isPermaLink="false">urn:uuid:57628469-7797-48c5-91f0-a93feb4e2b87</guid>
      <author>Jb Evain</author>
      <link>http://evain.net/blog/articles/2007/05/15/joining-novell-ximian</link>
      <category>Mono</category>
      <category>Personal</category>
      <trackback:ping>http://evain.net/blog/articles/trackback/398</trackback:ping>
    </item>
    <item>
      <title>The longest second</title>
      <description>&lt;p&gt;&lt;a href="http://www.flickr.com/photos/jbevain/465020758/" title="Photo Sharing"&gt;&lt;img src="http://farm1.static.flickr.com/168/465020758_120aa56550.jpg" width="500" height="333" alt="A world about to fall"  style="BORDER:2px solid black"/&gt;&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 15 May 2007 22:22:00 +0200</pubDate>
      <guid isPermaLink="false">urn:uuid:e01a4f92-8b28-4387-9c94-83d5f9645524</guid>
      <author>Jb Evain</author>
      <link>http://evain.net/blog/articles/2007/05/15/the-longest-second</link>
      <category>Personal</category>
      <trackback:ping>http://evain.net/blog/articles/trackback/396</trackback:ping>
    </item>
  </channel>
</rss>
