<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>Gridshore software engineering weblog - gridshore</title>
    <link>http://www.gridshore.nl/blog/</link>
    <description>This weblog is about everything that has to do with software engineering. It will focus on items like Springframework, acegi, hibernate and other tools to help creating good software</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.2.1 - http://www.s9y.org/</generator>
    <pubDate>Tue, 29 Jan 2008 10:27:03 GMT</pubDate>

    <image>
        <url>http://www.gridshore.nl/blog/templates/gridshore/img/s9y_banner_small.png</url>
        <title>RSS: Gridshore software engineering weblog - gridshore - This weblog is about everything that has to do with software engineering. It will focus on items like Springframework, acegi, hibernate and other tools to help creating good software</title>
        <link>http://www.gridshore.nl/blog/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Last entry ...</title>
    <link>http://www.gridshore.nl/blog/index.php?/archives/74-Last-entry-....html</link>
            <category>acegi</category>
            <category>ajax</category>
            <category>Announcements</category>
            <category>Books</category>
            <category>gridshore</category>
            <category>Java</category>
            <category>News</category>
            <category>spring-osgi</category>
            <category>Springframework</category>
            <category>Technology</category>
            <category>Webservices</category>
            <category>Websites&amp;products</category>
    
    <comments>http://www.gridshore.nl/blog/index.php?/archives/74-Last-entry-....html#comments</comments>
    <wfw:comment>http://www.gridshore.nl/blog/wfwcomment.php?cid=74</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.gridshore.nl/blog/rss.php?version=2.0&amp;type=comments&amp;cid=74</wfw:commentRss>
    

    <author>nospam@example.com (Jettro Coenradie)</author>
    <content:encoded>
    Welcome to the last entry of this blog. No I am not quitting, I am just moving. I just installed a new blog software framework. I was starting to dislike the way to interact and I wanted something that contained more out of the box. I am in the middle of moving to wordpress software. There is a very good reason to do this. I had found a great tool on the mac called MarsEdit. And again this could not be used with serendipity. I hope I did make a good choice. Since there is a lot of information in the old blog, I did not take this blog offline. It will stay to exist, but I will not make changes there anymore.&lt;br /&gt;
&lt;br /&gt;
I hope to see you at the new version of the blog (check the page at http://www.gridshore.nl). You can attach you feedreader to the following url: feed://www.gridshore.nl/feed/ 
    </content:encoded>

    <pubDate>Sat, 19 Jan 2008 20:58:56 +0100</pubDate>
    <guid isPermaLink="false">http://www.gridshore.nl/blog/index.php?/archives/74-guid.html</guid>
    
</item>
<item>
    <title>Centralized or distributed SCM</title>
    <link>http://www.gridshore.nl/blog/index.php?/archives/57-Centralized-or-distributed-SCM.html</link>
            <category>gridshore</category>
            <category>Technology</category>
    
    <comments>http://www.gridshore.nl/blog/index.php?/archives/57-Centralized-or-distributed-SCM.html#comments</comments>
    <wfw:comment>http://www.gridshore.nl/blog/wfwcomment.php?cid=57</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.gridshore.nl/blog/rss.php?version=2.0&amp;type=comments&amp;cid=57</wfw:commentRss>
    

    <author>nospam@example.com (Jettro Coenradie)</author>
    <content:encoded>
    For a project I did a while ago we were thinking about using a branch for each developer while working on large changes/additions. Why, you ask? Well I&#039;ll try to explain, believe me I know there are alternatives but think about it before you judge.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Scenario&lt;/strong&gt;&lt;br /&gt;
We want to deliver version 3.0 of our application but we also want to continue creating some new usecases. Since we use test driven development, we create a test, implement functionality and run the test. After this we want to check in the stuff and let the integration test run by our continuous build. One possible obvious solution could be to use a branche for the 3.0 release and continuo working on the head. &lt;br /&gt;
This all sounds clear, we use subversion as an scm (Source Control Management) system. I do have one problem though. The repository is on a server of a friend of mine, I need to use an scm which I cannot use everywhere due to firewall settings. Therefore I cannot checkin code, which makes I cannot separate the different features I implement.&lt;br /&gt;
Last week I listened to the &lt;a href=&quot;http://www.javaposse.com/&quot;  title=&quot;javaposse&quot;&gt;javaposse&lt;/a&gt; podcast. There was an item about distributed scm. I got interested and desided to investigate further. I had a look at &lt;a href=&quot;http://www.selenic.com/mercurial/wiki/index.cgi/Mercurial&quot;  title=&quot;Mercurial&quot;&gt;Mercurial&lt;/a&gt; and I am still curious. I copied the following piece of text from&lt;a href=&quot;http://www.selenic.com/mercurial/wiki/index.cgi/DistributedSCM&quot;  title=&quot;DistributedSCM from mercurial wiki&quot;&gt; their wiki&lt;/a&gt;:&lt;br /&gt;
&lt;em&gt;A distributed SCM tool is designed to support a model in which each Repository is loosely coupled to many others. Each Repository contains a complete set of metadata describing one or more projects. These repositories may be located almost anywhere. Individual developers only need access to their own repositories, not to a central one, in order to Commit changes. &lt;br /&gt;
Distributed SCMs provide mechanisms for propagating changes between repositories.&lt;/em&gt;&lt;br /&gt;
I installed the stuff (very easy, good manual, only 2.5 Mb or so download). There is a nice &lt;a href=&quot;http://www.selenic.com/mercurial/wiki/index.cgi/Tutorial&quot;  title=&quot;mercurial tutorial&quot;&gt;tutorial&lt;/a&gt; giving you the basics of using mercurial.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Next steps&lt;/strong&gt;&lt;br /&gt;
I am not convinced I need a distributed scm. I like the idea of having a local repository. I think this can help you when working in a gridshore project. I want to have a better look at a good workflow for such a system. How are you going to configure your continuous integration? The first thing I did was looking for a mercurial maven scm plugin. There is a very current thread in jira about &lt;a href=&quot;http://www.mail-archive.com/issues@maven.apache.org/msg11017.html&quot;  title=&quot;Maven mercurial&quot;&gt;maven and mercurial&lt;/a&gt;. I want to start an experiment with this, so if you are reading this and you have experience or good articles please post a comment or send an email. 
    </content:encoded>

    <pubDate>Sun, 15 Oct 2006 21:04:43 +0200</pubDate>
    <guid isPermaLink="false">http://www.gridshore.nl/blog/index.php?/archives/57-guid.html</guid>
    
</item>
<item>
    <title>Is Gridshore addressing James Dobson statements?</title>
    <link>http://www.gridshore.nl/blog/index.php?/archives/34-Is-Gridshore-addressing-James-Dobson-statements.html</link>
            <category>gridshore</category>
            <category>News</category>
    
    <comments>http://www.gridshore.nl/blog/index.php?/archives/34-Is-Gridshore-addressing-James-Dobson-statements.html#comments</comments>
    <wfw:comment>http://www.gridshore.nl/blog/wfwcomment.php?cid=34</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.gridshore.nl/blog/rss.php?version=2.0&amp;type=comments&amp;cid=34</wfw:commentRss>
    

    <author>nospam@example.com (Freddie van Rijswijk)</author>
    <content:encoded>
    &lt;br /&gt;
Lots of conventionally-managed software projects do not include reliable execution by deadline, or are on budget, or to all features of the specification; it&#039;s a rare `managed&#039; project that meets even one of these goals, let alone all three. Those projects do not appear to be market conform when it comes to cost, and those projects misses most of the time the ability to adapt to changes in technology and economic context during the project lifetime, either; the open-source community has proven far more effective on that score. &lt;br /&gt;
&lt;br /&gt;
I was wondering if James Dobson &lt;a title=&quot;null&quot; href=&quot;http://blogs.accenture.nl/ConservativeXP/&quot;&gt;statements &lt;/a&gt;could be backed up with our Gridshore thinking which is based upon the Open-Source community process and it can in my opinion. &lt;br /&gt;
&lt;br /&gt;
Lets sharpen the saw by reacting on this post. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;&lt;a href=&quot;http://www.gridshore.nl/blog/index.php?/archives/34-Is-Gridshore-addressing-James-Dobson-statements.html#extended&quot;&gt;Continue reading &quot;Is Gridshore addressing James Dobson statements?&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Sat, 19 Nov 2005 18:09:36 +0100</pubDate>
    <guid isPermaLink="false">http://www.gridshore.nl/blog/index.php?/archives/34-guid.html</guid>
    
</item>
<item>
    <title>Who is Freddie van Rijswijk</title>
    <link>http://www.gridshore.nl/blog/index.php?/archives/31-Who-is-Freddie-van-Rijswijk.html</link>
            <category>gridshore</category>
            <category>News</category>
    
    <comments>http://www.gridshore.nl/blog/index.php?/archives/31-Who-is-Freddie-van-Rijswijk.html#comments</comments>
    <wfw:comment>http://www.gridshore.nl/blog/wfwcomment.php?cid=31</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.gridshore.nl/blog/rss.php?version=2.0&amp;type=comments&amp;cid=31</wfw:commentRss>
    

    <author>nospam@example.com (Freddie van Rijswijk)</author>
    <content:encoded>
    &lt;br /&gt;
&lt;p&gt;&lt;img width=&quot;134&quot; height=&quot;160&quot; src=&quot;http://www.gridshore.nl/blog/uploads/Freddieklein2.jpg&quot; style=&quot;border: 0px none ; padding-right: 5px; padding-left: 5px; float: left;&quot; /&gt;Freddie van Rijswijk is manager Custom Software Development (J2EE &amp;amp; Web). His main interest is improving people performance and to make their and his life better by looking for ways to be better prepared for the job (education, coaching) and to avoid unnessary traveling. He&#039;s doing this by encourage Continuous Improvement by coaching and education and by applying agile and lean programming principles. The Open-Source Community Model of working his it&#039;s main inspiration.&lt;/p&gt;&lt;p /&gt; &lt;br /&gt;&lt;a href=&quot;http://www.gridshore.nl/blog/index.php?/archives/31-Who-is-Freddie-van-Rijswijk.html#extended&quot;&gt;Continue reading &quot;Who is Freddie van Rijswijk&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Sat, 19 Nov 2005 16:22:27 +0100</pubDate>
    <guid isPermaLink="false">http://www.gridshore.nl/blog/index.php?/archives/31-guid.html</guid>
    
</item>

</channel>
</rss>