<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>blogs.codehaus.org</title>
    <link rel="alternate" type="text/html" href="http://blogs.codehaus.org/" />
    <link rel="self" type="application/atom+xml" href="http://blogs.codehaus.org/atom.xml" />
    <id>tag:blogs.codehaus.org,2010-01-14://165</id>
    <updated>2010-01-29T22:24:16Z</updated>
    <subtitle>All the blogs we have hosted at the Codehaus in once easy to digest site!</subtitle>
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type 5.01</generator>

<entry>
    <title>Maven snapshot repository for NetBeans daily builds - mkleint</title>
    <link rel="alternate" type="text/html" href="http://blogs.codehaus.org/people/mkleint/2010/01/maven-snapshot-repository-for-.html" />
    <id>tag:blogs.codehaus.org,2010:/people/mkleint//131.1830</id>

    <published>2010-01-29T22:20:12Z</published>
    <updated>2010-01-29T22:24:16Z</updated>

    <summary>.. is at http://bits.netbeans.org/netbeans/trunk/maven-snapshot/....</summary>
    <author>
        <name>mkleint</name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://blogs.codehaus.org/people/mkleint/">
        <![CDATA[<p>.. is at <a href="http://bits.netbeans.org/netbeans/trunk/maven-snapshot/">http://bits.netbeans.org/netbeans/trunk/maven-snapshot/</a>. </p>]]>
        
    </content>
</entry>

<entry>
    <title>Using annotations in Maven NetBeans Module projects - mkleint</title>
    <link rel="alternate" type="text/html" href="http://blogs.codehaus.org/people/mkleint/2010/01/annotations-in-maven-netbeans-.html" />
    <id>tag:blogs.codehaus.org,2010:/people/mkleint//131.1829</id>

    <published>2010-01-21T03:24:27Z</published>
    <updated>2010-01-21T03:45:21Z</updated>

    <summary><![CDATA[Since version 6.8 NetBeans provides annotations to simplify various NetBeans platform API usages. So you can register a ServiceProvider and the build process generates the proper META-INF/service entry. Other annotations are capable of generating layer file entries. So far this didn't work in Maven based project due to MCOMPILER-98 bug of the maven-compiler-plugin. The issue is fixed now, but it will take time to propagate into a released version of the compiler plugin. Here is how to enable it in your Apache Maven projects now. Open your netbeans module project pom.xml file (or the parent pom of your module projects to configure all modules) and add the following maven-compiler-plugin configuration: &lt;plugin&gt; &nbsp;&nbsp; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &nbsp;&nbsp; &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt; &nbsp;&nbsp; &lt;version&gt;2.1&lt;/version&gt; &nbsp;&nbsp; &lt;configuration&gt; &nbsp;&nbsp;&nbsp;&nbsp; &lt;source&gt;1.6&lt;/source&gt; &nbsp;&nbsp;&nbsp;&nbsp; &lt;target&gt;1.6&lt;/target&gt; &nbsp;&nbsp; &lt;/configuration&gt; &nbsp;&nbsp; &lt;dependencies&gt; &nbsp;&nbsp;&nbsp;&nbsp; &lt;dependency&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;groupId&gt;org.codehaus.plexus&lt;/groupId&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;artifactId&gt;plexus-compiler-javac&lt;/artifactId&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;version&gt;1.7-SNAPSHOT&lt;/version&gt; &nbsp;&nbsp;&nbsp;&nbsp; &lt;/dependency&gt; &nbsp;&nbsp;&nbsp;&nbsp; &lt;dependency&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;groupId&gt;org.codehaus.plexus&lt;/groupId&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;artifactId&gt;plexus-compiler-api&lt;/artifactId&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;version&gt;1.7-SNAPSHOT&lt;/version&gt; &nbsp;&nbsp;&nbsp;&nbsp; &lt;/dependency&gt; &nbsp;&nbsp; &lt;/dependencies&gt; &lt;/plugin&gt; Since you are depending on unreleased snapshots, a snapshot repository declaration pointing to Plexus snapshot repository is necessary. Afterward you are ready to use the annotations in NetBeans APIs. Enjoy!...]]></summary>
    <author>
        <name>mkleint</name>
        
    </author>
    
    <category term="apachemaven" label="Apache Maven" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="java" label="Java" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="netbeans" label="NetBeans" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.codehaus.org/people/mkleint/">
        <![CDATA[<p>Since version 6.8 NetBeans provides annotations to simplify various NetBeans platform API usages. So you can register a <a href="http://bits.netbeans.org/dev/javadoc/org-openide-util-lookup/org/openide/util/lookup/ServiceProvider.html">ServiceProvider</a> and the build process generates the proper META-INF/service entry. Other annotations are capable of generating layer file entries. So far this didn't work in Maven based project due to <a href="http://jira.codehaus.org/browse/MCOMPILER-98">MCOMPILER-98</a> bug of the maven-compiler-plugin. The issue is fixed now, but it will take time to propagate into a released version of the compiler plugin. Here is how to enable it in your Apache Maven projects now.</p>

<p>Open your netbeans module project pom.xml file (or the parent pom of your module projects to configure all modules)<br />
and add the following maven-compiler-plugin configuration:<br />
<code><br />
         &lt;plugin&gt;<br />
         &nbsp;&nbsp;           &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;<br />
         &nbsp;&nbsp;           &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;<br />
          &nbsp;&nbsp;          &lt;version&gt;2.1&lt;/version&gt;<br />
          &nbsp;&nbsp;          &lt;configuration&gt;<br />
          &nbsp;&nbsp;&nbsp;&nbsp;              &lt;source&gt;1.6&lt;/source&gt;<br />
          &nbsp;&nbsp;&nbsp;&nbsp;              &lt;target&gt;1.6&lt;/target&gt;<br />
          &nbsp;&nbsp;          &lt;/configuration&gt;<br />
           &nbsp;&nbsp;         &lt;dependencies&gt;<br />
            &nbsp;&nbsp;&nbsp;&nbsp;            &lt;dependency&gt;<br />
          &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;                  &lt;groupId&gt;org.codehaus.plexus&lt;/groupId&gt;<br />
          &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;                  &lt;artifactId&gt;plexus-compiler-javac&lt;/artifactId&gt;<br />
          &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;                  &lt;version&gt;1.7-SNAPSHOT&lt;/version&gt;<br />
          &nbsp;&nbsp;&nbsp;&nbsp;              &lt;/dependency&gt;<br />
           &nbsp;&nbsp;&nbsp;&nbsp;             &lt;dependency&gt;<br />
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;                 &lt;groupId&gt;org.codehaus.plexus&lt;/groupId&gt;<br />
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;                 &lt;artifactId&gt;plexus-compiler-api&lt;/artifactId&gt;<br />
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;                 &lt;version&gt;1.7-SNAPSHOT&lt;/version&gt;<br />
             &nbsp;&nbsp;&nbsp;&nbsp;           &lt;/dependency&gt;<br />
             &nbsp;&nbsp;       &lt;/dependencies&gt;<br />
                &lt;/plugin&gt;<br />
</code></p>

<p>Since you are depending on unreleased snapshots, a snapshot repository declaration pointing to <a href="http://oss.repository.sonatype.org/content/repositories/plexus-snapshots/">Plexus snapshot repository</a> is necessary.</p>

<p>Afterward you are ready to use the annotations in NetBeans APIs. Enjoy!</p>

<p></p>

<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/e37c84cb-1089-44f4-bcb9-602c5554e86b/" title="Reblog this post [with Zemanta]"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=e37c84cb-1089-44f4-bcb9-602c5554e86b" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>]]>
        
    </content>
</entry>

<entry>
    <title>Blogs a Plenty - Haus News</title>
    <link rel="alternate" type="text/html" href="http://blogs.codehaus.org/hausnews/2010/01/blogs-a-plenty.html" />
    <id>tag:blogs.codehaus.org,2010:/misc/htdocs//1.1828</id>

    <published>2010-01-14T19:55:27Z</published>
    <updated>2010-01-14T19:58:23Z</updated>

    <summary>Just a quick heads-up! http://blogs.codehaus.org is back online, and will be actively maintained. If you spot any spam, please shoot an email to support@codehaus.org so we can deal with it appropriately. akismet is protecting new comments, but there are quite a few old comments hidden through the site. If you need a blog account, then just shoot an email to support@ - let us know which project / user it&apos;s for and we&apos;ll take care of the rest....</summary>
    <author>
        <name>Ben</name>
        <uri>http://blogs.codehaus.org/people/bwalding/</uri>
    </author>
    
        <category term="Administrivia" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="Press" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="akismet" label="Akismet" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="spam" label="Spam" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="spaminblogs" label="Spam in blogs" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.codehaus.org/hausnews/">
        <![CDATA[<p>Just a quick heads-up!</p>

<p>http://blogs.codehaus.org is back online, and will be actively maintained.</p>

<p>If you spot any spam, please shoot an email to support@codehaus.org so we can deal with it appropriately. <a class="zem_slink" href="http://akismet.com" title="Akismet" rel="homepage">akismet</a> is protecting new comments, but there are quite a few old comments hidden through the site.</p>

<p>If you need a blog account, then just shoot an email to support@ - let us know which project / user it's for and we'll take care of the rest.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Ever run into a piece of software that just feels rock solid? - Geir's Blog</title>
    <link rel="alternate" type="text/html" href="http://blogs.blogs.codehaus.org/people/geir/archives/#001827" />
    <id>tag:blogs.codehaus.org,2009:/people/geir//15.1827</id>

    <published>2009-12-01T23:26:09Z</published>
    <updated>2009-12-11T22:42:24Z</updated>

    <summary> I&apos;m playing with Sun&apos;s OpenMQ. The Java-based installer made me fairly skeptical (c&apos;mon guys... tar zxf...) but boy howdy! so far, utterly rock solid. After my pitched, losing battles with SpiritWave in the 2001-2003 timeframe, I&apos;m fairly skittish and...</summary>
    <author>
        <name></name>
        <uri>http://blogs.codehaus.org/people/geir/</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://blogs.codehaus.org/people/geir/">
        <![CDATA[<p>
I'm playing with Sun's OpenMQ.  The Java-based installer made me fairly skeptical (c'mon guys... tar zxf...) but boy howdy! so far, utterly rock solid.   After my pitched, losing battles with SpiritWave in the 2001-2003 timeframe, I'm fairly skittish and approaching this project at Gilt with caution.
</p>
<p>
So far though...
</p>
<p>
(Yes, I tried ActiveMQ as that would be my first choice due to the utterly irrational reason of tribal affiliation, but I've managed to lock the ActiveMQ broker up fairly easily with a simple stress test, and waiting to hear back on the user list regarding what I did wrong.  So while I'm waiting, I'll play with OpenMQ and try not to fall in love.)
</p>]]>
        
    </content>
</entry>

<entry>
    <title>Once again, the five worst words on a sunday morning... - Geir's Blog</title>
    <link rel="alternate" type="text/html" href="http://blogs.blogs.codehaus.org/people/geir/archives/#001826" />
    <id>tag:blogs.codehaus.org,2009:/people/geir//15.1826</id>

    <published>2009-11-30T00:41:27Z</published>
    <updated>2009-12-11T22:42:24Z</updated>

    <summary>&quot;Frank Rich is off today&quot;...</summary>
    <author>
        <name></name>
        <uri>http://blogs.codehaus.org/people/geir/</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://blogs.codehaus.org/people/geir/">
        &quot;Frank Rich is off today&quot;
        
    </content>
</entry>

<entry>
    <title>Click click click - Geir's Blog</title>
    <link rel="alternate" type="text/html" href="http://blogs.blogs.codehaus.org/people/geir/archives/#001825" />
    <id>tag:blogs.codehaus.org,2009:/people/geir//15.1825</id>

    <published>2009-11-21T00:29:48Z</published>
    <updated>2009-12-11T22:42:24Z</updated>

    <summary> I&apos;m going to bring a clicker to the next conference I go to an sit and click in random bursts. When people complain, and they will, I&apos;ll ask why they accept noisy typists.....</summary>
    <author>
        <name></name>
        <uri>http://blogs.codehaus.org/people/geir/</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://blogs.codehaus.org/people/geir/">
        <![CDATA[<p>
I'm going to bring a clicker to the next conference I go to an sit and click in random bursts.  When people complain, and they will, I'll ask why they accept noisy typists..
</p>
]]>
        
    </content>
</entry>

<entry>
    <title>Rubyconf, QCon and Dreamforce - Geir's Blog</title>
    <link rel="alternate" type="text/html" href="http://blogs.blogs.codehaus.org/people/geir/archives/#001824" />
    <id>tag:blogs.codehaus.org,2009:/people/geir//15.1824</id>

    <published>2009-11-20T20:20:16Z</published>
    <updated>2009-12-11T22:42:24Z</updated>

    <summary>In SF for a few days, originally to go to Rubyconf with the Gilt team, but am playing hooky to spend the day at QCon with &quot;my people&quot;. (It&apos;s amazing how rich they manage to make the QCon agenda every...</summary>
    <author>
        <name></name>
        <uri>http://blogs.codehaus.org/people/geir/</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://blogs.codehaus.org/people/geir/">
        <![CDATA[<p>In SF for a few days, originally to go to Rubyconf with the Gilt team, but am playing hooky to spend the day at QCon with "my people".  (It's amazing how rich they manage to make the QCon agenda every time...  that's not a statement about Rubyconf - they are two different beasties...)
</p>
<p>
Despite coming here and working (remotely) here for years, I'm always amazed how rich the Bay Area is for tech acrivity -  walking to QCon this morning, I noticed that there's also "Dreamforce", the Salesforce conference, going on at the same time.  I suspect that there's no overlap in attendees for all three (except me, I guess).
</p>
<p>
Listening to Kresten talk about his Erlang implementation on the JVM. JErlang?
</p>
 
]]>
        
    </content>
</entry>

<entry>
    <title>Pitch-perfect-brilliant - Geir's Blog</title>
    <link rel="alternate" type="text/html" href="http://blogs.blogs.codehaus.org/people/geir/archives/#001823" />
    <id>tag:blogs.codehaus.org,2009:/people/geir//15.1823</id>

    <published>2009-11-12T14:24:48Z</published>
    <updated>2009-12-11T22:42:24Z</updated>

    <summary>http://www.ribbonfarm.com/2009/10/07/the-gervais-principle-or-the-office-according-to-the-office/ Stay with it. It&apos;s refreshingly clear, persuasive and very well written....</summary>
    <author>
        <name></name>
        <uri>http://blogs.codehaus.org/people/geir/</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://blogs.codehaus.org/people/geir/">
        <![CDATA[<a href="http://www.ribbonfarm.com/2009/10/07/the-gervais-principle-or-the-office-according-to-the-office/">http://www.ribbonfarm.com/2009/10/07/the-gervais-principle-or-the-office-according-to-the-office/</a>

Stay with it.  It's refreshingly clear, persuasive and very well written.]]>
        
    </content>
</entry>

<entry>
    <title>Let the enterprise fix what the EU and DOJ regulators overlooked - Geir's Blog</title>
    <link rel="alternate" type="text/html" href="http://blogs.blogs.codehaus.org/people/geir/archives/#001822" />
    <id>tag:blogs.codehaus.org,2009:/people/geir//15.1822</id>

    <published>2009-11-10T15:00:21Z</published>
    <updated>2009-12-11T22:42:24Z</updated>

    <summary>http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/16648 Bravo....</summary>
    <author>
        <name></name>
        <uri>http://blogs.codehaus.org/people/geir/</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://blogs.codehaus.org/people/geir/">
        <![CDATA[<a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/16648">http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/16648</a>

Bravo.]]>
        
    </content>
</entry>

<entry>
    <title>IDEA and open source - Geir's Blog</title>
    <link rel="alternate" type="text/html" href="http://blogs.blogs.codehaus.org/people/geir/archives/#001821" />
    <id>tag:blogs.codehaus.org,2009:/people/geir//15.1821</id>

    <published>2009-10-20T09:47:30Z</published>
    <updated>2009-12-11T22:42:24Z</updated>

    <summary> Jetbrains just announced that my favorite IDE - IDEA - is now going to have an open-source version. That&apos;s great. The interesting question is why are they doing this? Those of us that use IDEA, love IDEA. I&apos;ve read...</summary>
    <author>
        <name></name>
        <uri>http://blogs.codehaus.org/people/geir/</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://blogs.codehaus.org/people/geir/">
        <![CDATA[<p>
<a href="http://www.jetbrains.com/">Jetbrains</a> just announced that my favorite IDE - <a href="http://www.jetbrains.com/idea/">IDEA</a> - is now going to have an open-source version.  That's great.
</p>
<p>
The interesting question is why are they doing this?  Those of us that use IDEA, love IDEA.  I've read some discussion about this (<a href="http://beust.com/weblog/archives/000520.html">Cedric</a> thinks they're doomed, <a href="http://ceki.blogspot.com/2009/10/idea-open-sourced.html">Ceki</a> isn't so certain) so I'll chime in - I think that this is less about the Java IDE, but more about broadening the product line and putting limited resources towards that goal.
</p>
<p>
I think there are a few things to consider.  First, Jetbrains makes products that don't suck so they have a reasonable chance of bringing this non-suckage to other markets other than Java.  IDEA IMO has long been the gold standard for what a Java IDE should be, and while I keep trying to switch to Eclipse, I always seem to come running back.  Second, I think the tools market must be a really tough place to play so if you are in that space, you need to keep product lines fresh and relevant.  (Borland who?)  Third, while I think that Java is probably the best all-around platform for serious business system development, other things, like Ruby on Rails and PHP, really have momentum and mindshare when it comes to basic website development, and that's a <i>huge</i> market.  And now having spent about 6 months actively working in a Rails shop, it's clear to me there are lots of things an experienced Java tool vendor can bring to the Ruby market.
</p>
<p>
Re the last point, clearly Jebrains isn't afraid to do this.  They have had products for the .NET community for some time (Resharper which fixes Visual Studio's primitive refactoring support as well as a .NET profiler),  build tools (TeamCity), a new bug tracker and RubyMine, an IDE for Ruby (I've used the Ruby support in IDEA and like it).  I also just noticed they have a "Web and PHP IDE Preview" up on their site.
</p>
<p>
So color me hopeful - this isn't a move of desperation by a struggling company, but rather a tactical step to support a longer term strategy that broadens their product line and user base.  Those of us that are IDEA fanbois aren't going to go away - I'll still get the Ulitmate edition (ok - so they aren't so good at naming...).  But I know a lot of Ruby developers that could use some "surprise and delight" from Jetbrains...
</p>]]>
        
    </content>
</entry>

<entry>
    <title>Debugging a UnityScript standalone application with MonoDevelop - bamboozled</title>
    <link rel="alternate" type="text/html" href="http://blogs.codehaus.org/people/bamboo/#001820" />
    <id>tag:blogs.codehaus.org,2009:/people/bamboo//136.1820</id>

    <published>2009-10-12T13:15:26Z</published>
    <updated>2009-12-11T22:42:24Z</updated>

    <summary> unity...</summary>
    <author>
        <name></name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://blogs.codehaus.org/people/bamboo/">
        <![CDATA[<img src="http://codehaus.org/~bamboo/blogs/UnityScriptDebugging.png" title="No Unity Editor integration for now, fellas..." />

<div class="posttagsblock"><a href="http://technorati.com/tag/unity" rel="tag">unity</a></div>]]>
        
    </content>
</entry>

<entry>
    <title>Writing the UnityScript language binding for MonoDevelop using the Boo language binding for Eclipse - bamboozled</title>
    <link rel="alternate" type="text/html" href="http://blogs.codehaus.org/people/bamboo/#001819" />
    <id>tag:blogs.codehaus.org,2009:/people/bamboo//136.1819</id>

    <published>2009-10-10T17:27:23Z</published>
    <updated>2009-12-11T22:42:24Z</updated>

    <summary> unity...</summary>
    <author>
        <name></name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://blogs.codehaus.org/people/bamboo/">
        <![CDATA[<img src="http://codehaus.org/~bamboo/blogs/UnityScriptBindingInsideEclipse.png" />

<div class="posttagsblock"><a href="http://technorati.com/tag/unity" rel="tag">unity</a></div>]]>
        
    </content>
</entry>

<entry>
    <title>And now for something completely different... Unity! - bamboozled</title>
    <link rel="alternate" type="text/html" href="http://blogs.codehaus.org/people/bamboo/#001818" />
    <id>tag:blogs.codehaus.org,2009:/people/bamboo//136.1818</id>

    <published>2009-10-01T18:38:13Z</published>
    <updated>2009-12-11T22:42:24Z</updated>

    <summary>Today is a very exciting day for me. The day I start working full-time for Unity! This is great for many reasons. First of all I&apos;ll be working on stuff very close to my heart: language and tools development. My #1 job at Unity is to make sure UnityScript remains the best language for game development inside Unity3D. A lot of love will go into friendlier error messages, long awaited features such as closures and generics, more reliability and great IDE support. Boo users will like to know that UnityScript is written in Boo and it&apos;s based on the Boo compilation framework. Improving UnityScript means improving Boo. And after 15 years in the computer industry I&apos;m finally working very close to what got me into it in the first place: gaming. Believe it or not I had plans of becoming a journalist in my youth but SEGA saved me! Back to work now, I have a game to write. :D unity...</summary>
    <author>
        <name></name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://blogs.codehaus.org/people/bamboo/">
        <![CDATA[<p>Today is a very exciting day for me. The day I start working full-time for <a href="http://unity3d.com/">Unity</a>!</p>
<p>This is great for many reasons.</p>
<p>First of all I'll be working on stuff very close to my heart: language and tools development. My #1 job at Unity is to make sure <a href="http://unity3d.com/support/documentation/ScriptReference/index.html">UnityScript</a> remains the best language for game development inside Unity3D. A lot of love will go into friendlier error messages, long awaited features such as closures and generics, more reliability and great IDE support.</p>
<p>Boo users will like to know that UnityScript is written in Boo and it's based on the Boo compilation framework. Improving UnityScript means improving Boo.</p>
<p>And after 15 years in the computer industry I'm finally working very close to what got me into it in the first place: gaming. Believe it or not I had plans of becoming a journalist in my youth but SEGA saved me!</p>
<p>Back to work now, I have a game to write. :D</p>

<div class="posttagsblock"><a href="http://technorati.com/tag/unity" rel="tag">unity</a></div>]]>
        
    </content>
</entry>

<entry>
    <title>http://www.getpersonas.com/ - Geir's Blog</title>
    <link rel="alternate" type="text/html" href="http://blogs.blogs.codehaus.org/people/geir/archives/#001817" />
    <id>tag:blogs.codehaus.org,2009:/people/geir//15.1817</id>

    <published>2009-09-18T15:52:07Z</published>
    <updated>2009-12-11T22:42:24Z</updated>

    <summary> http://www.getpersonas.com/ As usual, I&apos;m always the last one to the party. This is nice! Mozilla - make this a standard feature!...</summary>
    <author>
        <name></name>
        <uri>http://blogs.codehaus.org/people/geir/</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://blogs.codehaus.org/people/geir/">
        <![CDATA[<p>
<a href="http://www.getpersonas.com/">http://www.getpersonas.com/</a>
</p>
<p>
As usual, I'm always the last one to the party.  This is nice!  Mozilla - make this a standard feature!
</p>]]>
        
    </content>
</entry>

<entry>
    <title>http://chdk.wikia.com/wiki/CHDK - Geir's Blog</title>
    <link rel="alternate" type="text/html" href="http://blogs.blogs.codehaus.org/people/geir/archives/#001816" />
    <id>tag:blogs.codehaus.org,2009:/people/geir//15.1816</id>

    <published>2009-09-17T13:56:47Z</published>
    <updated>2009-12-11T22:42:24Z</updated>

    <summary> http://chdk.wikia.com/wiki/CHDK I don&apos;t know what I like more - that someone figured this out, makes it free, that Canon built this into their product, that&apos;s it&apos;s accessible this way, or that Canon hasn&apos;t shut it down yet......</summary>
    <author>
        <name></name>
        <uri>http://blogs.codehaus.org/people/geir/</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://blogs.codehaus.org/people/geir/">
        <![CDATA[<p>
<a href="http://chdk.wikia.com/wiki/CHDK">http://chdk.wikia.com/wiki/CHDK</a>
</p>
<p>
I don't know what I like more - that someone figured this out, makes it free, that Canon built this into their product, that's it's accessible this way, or that Canon hasn't shut it down yet...
</p>]]>
        
    </content>
</entry>

</feed>

