<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" xml:lang="en" xml:base="http://www.lunar-ocean.com/wp-atom.php">
	<title type="text">Lunar Ocean</title>
	<subtitle type="text">Y'a pas anguille sous roche, mais probablement baleine sous gravillon...</subtitle>

	<updated>2009-09-16T18:02:20Z</updated>
	<generator uri="http://wordpress.org/" version="2.7">WordPress</generator>

	<link rel="alternate" type="text/html" href="http://www.lunar-ocean.com" />
	<id>http://www.lunar-ocean.com/feed/atom/</id>
	

			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/LunarOcean" /><feedburner:info uri="lunarocean" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>49.50734</geo:lat><geo:long>0.16902</geo:long><entry>
		<author>
			<name>Antoine Toulme</name>
						<uri>http://antoine.toulme.name</uri>
					</author>
		<title type="html"><![CDATA[How to create a plugin for Buildr]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LunarOcean/~3/pm5VDhWaA48/" />
		<id>http://www.lunar-ocean.com/?p=310</id>
		<updated>2009-09-16T18:02:20Z</updated>
		<published>2009-09-16T10:15:31Z</published>
		<category scheme="http://www.lunar-ocean.com" term="buildr" /><category scheme="http://www.lunar-ocean.com" term="coding" />		<summary type="html"><![CDATA[Prerequisites:

Install git.
Install ruby, rubygems, and the braid gem.

The steps:
The basics:

Create a new folder and cd to it.
run git init
run braid add git://github.com/apache/buildr.git --branch trunk buildr
run ln -s buildr/rakelib rakelib
Create your .gemspec file.
Then copy buildr/Rakefile to Rakefile, and replace the reference to buildr.gemspec to your .gemspec.
Create your structure: a lib, a spec folder.
run echo "_reports" >> [...]]]></summary>
		<content type="html" xml:base="http://www.lunar-ocean.com/how-to-create-a-plugin-for-buildr/">&lt;h2&gt;Prerequisites:&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Install git.&lt;/li&gt;
&lt;li&gt;Install ruby, rubygems, and the braid gem.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;The steps:&lt;/h2&gt;
&lt;h3&gt;The basics:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Create a new folder and cd to it.&lt;/li&gt;
&lt;li&gt;run &lt;code&gt;git init&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;run &lt;code&gt;braid add git://github.com/apache/buildr.git --branch trunk buildr&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;run &lt;code&gt;ln -s buildr/rakelib rakelib&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Create your .gemspec file.&lt;/li&gt;
&lt;li&gt;Then copy buildr/Rakefile to Rakefile, and replace the reference to buildr.gemspec to your .gemspec.&lt;/li&gt;
&lt;li&gt;Create your structure: a lib, a spec folder.&lt;/li&gt;
&lt;li&gt;run &lt;code&gt;echo "_reports" &gt;&gt; .gitignore&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;The spec setup&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Create spec/spec_helpers.rb&lt;/li&gt;
&lt;li&gt;Paste this code in it:&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;code&gt;
&lt;pre&gt;
unless defined?(SpecHelpers)
  module SandboxHook

    def SandboxHook.included(spec_helpers)
      # For testing we use the gem requirements specified on the buildr4osgi.gemspec
      spec = Gem::Specification.load(File.expand_path('../my.gemspec', File.dirname(__FILE__)))
      spec.dependencies.each { |dep| gem dep.name, dep.version_requirements.to_s }
      # Make sure to load from these paths first, we don't want to load any
      # code from Gem library.
      $LOAD_PATH.unshift File.expand_path('../lib', File.dirname(__FILE__))
      require 'mymodule'
    end
  end
  require File.join(File.dirname(__FILE__), "/../buildr/spec/spec_helpers.rb")

end
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;You&amp;#8217;re done.&lt;/h3&gt;
&lt;p&gt;Try rake -T to see the buildr tasks available, use &lt;code&gt;rake coverage&lt;/code&gt; to run tests and &lt;code&gt;rake failed&lt;/code&gt; when you need to insist.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/LunarOcean?a=pm5VDhWaA48:TnwSm-uZGWo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LunarOcean?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/LunarOcean?a=pm5VDhWaA48:TnwSm-uZGWo:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LunarOcean?i=pm5VDhWaA48:TnwSm-uZGWo:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/LunarOcean?a=pm5VDhWaA48:TnwSm-uZGWo:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LunarOcean?i=pm5VDhWaA48:TnwSm-uZGWo:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/LunarOcean/~4/pm5VDhWaA48" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.lunar-ocean.com/how-to-create-a-plugin-for-buildr/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.lunar-ocean.com/how-to-create-a-plugin-for-buildr/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.lunar-ocean.com/how-to-create-a-plugin-for-buildr/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Antoine Toulme</name>
						<uri>http://antoine.toulme.name</uri>
					</author>
		<title type="html"><![CDATA[Galileo is out! Get the bits from Intalio now.]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LunarOcean/~3/l0Ci5571TR4/" />
		<id>http://www.lunar-ocean.com/?p=308</id>
		<updated>2009-06-24T23:20:00Z</updated>
		<published>2009-06-24T23:20:00Z</published>
		<category scheme="http://www.lunar-ocean.com" term="BPMN" /><category scheme="http://www.lunar-ocean.com" term="Eclipse" /><category scheme="http://www.lunar-ocean.com" term="Intalio" />		<summary type="html"><![CDATA[Maybe you heard some humming out there, or your favorite place ran out of beer suddenly. That&#8217;s a sure sign a new Eclipse release came out.
As an Eclipse member, Intalio provides a page to download the latest Eclipse Classic SDK. Enjoy!
]]></summary>
		<content type="html" xml:base="http://www.lunar-ocean.com/galileo-is-out-get-the-bits-from-intalio-now/">&lt;p&gt;Maybe you heard some humming out there, or your favorite place ran out of beer suddenly. That&amp;#8217;s a sure sign a &lt;a href="http://eclipse.org"&gt;new Eclipse release&lt;/a&gt; came out.&lt;/p&gt;
&lt;p&gt;As an Eclipse member, Intalio provides a &lt;a href="http://galileo.intalio.com"&gt;page&lt;/a&gt; to download the latest Eclipse Classic SDK. Enjoy!&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/LunarOcean?a=l0Ci5571TR4:nNGPhfVRZ8w:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LunarOcean?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/LunarOcean?a=l0Ci5571TR4:nNGPhfVRZ8w:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LunarOcean?i=l0Ci5571TR4:nNGPhfVRZ8w:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/LunarOcean?a=l0Ci5571TR4:nNGPhfVRZ8w:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LunarOcean?i=l0Ci5571TR4:nNGPhfVRZ8w:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/LunarOcean/~4/l0Ci5571TR4" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.lunar-ocean.com/galileo-is-out-get-the-bits-from-intalio-now/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.lunar-ocean.com/galileo-is-out-get-the-bits-from-intalio-now/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.lunar-ocean.com/galileo-is-out-get-the-bits-from-intalio-now/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Antoine Toulme</name>
						<uri>http://antoine.toulme.name</uri>
					</author>
		<title type="html"><![CDATA[On to change the world again]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LunarOcean/~3/QivyeKQGPv8/" />
		<id>http://www.lunar-ocean.com/?p=306</id>
		<updated>2009-05-18T15:25:12Z</updated>
		<published>2009-05-18T15:25:12Z</published>
		<category scheme="http://www.lunar-ocean.com" term="Intalio" />		<summary type="html"><![CDATA[Watch tomorrow&#8217;s news, Intalio will be in it.
Follow intalio on Twitter to get updates!
If you have questions or if you want to take a guess, add #intalio to your tweets. Thanks!
]]></summary>
		<content type="html" xml:base="http://www.lunar-ocean.com/on-to-change-the-world-again/">&lt;p&gt;Watch &lt;a href="http://www.intalio.com/upcoming-events/"&gt;tomorrow&amp;#8217;s news&lt;/a&gt;, &lt;a href="http://www.intalio.com"&gt;Intalio&lt;/href&gt; will be in it.&lt;/p&gt;
&lt;p&gt;Follow &lt;a href="http://twitter.com/intalio"&gt;intalio&lt;/a&gt; on Twitter to get updates!&lt;/p&gt;
&lt;p&gt;If you have questions or if you want to take a guess, add #intalio to your tweets. Thanks!&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/LunarOcean?a=QivyeKQGPv8:J4WtbyPY8Uo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LunarOcean?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/LunarOcean?a=QivyeKQGPv8:J4WtbyPY8Uo:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LunarOcean?i=QivyeKQGPv8:J4WtbyPY8Uo:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/LunarOcean?a=QivyeKQGPv8:J4WtbyPY8Uo:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LunarOcean?i=QivyeKQGPv8:J4WtbyPY8Uo:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/LunarOcean/~4/QivyeKQGPv8" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.lunar-ocean.com/on-to-change-the-world-again/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.lunar-ocean.com/on-to-change-the-world-again/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.lunar-ocean.com/on-to-change-the-world-again/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Antoine Toulme</name>
						<uri>http://antoine.toulme.name</uri>
					</author>
		<title type="html"><![CDATA[Because there is really no need for so many !!!]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LunarOcean/~3/rqqfHHk--ZQ/" />
		<id>http://www.lunar-ocean.com/?p=304</id>
		<updated>2009-03-20T17:01:46Z</updated>
		<published>2009-03-20T17:01:46Z</published>
		<category scheme="http://www.lunar-ocean.com" term="web" />		<summary type="html"><![CDATA[I would like to request an amendment to RFC 1855. 
My request concerns the use of punctuation in communications, either one-to-one or one-to-many.
My request goes along this recommandation:
Use mixed case. UPPER CASE LOOKS AS IF YOU&#8217;RE SHOUTING. 
People tend to overuse exclamation marks to emphasize a sentence and actually just give the feeling they are [...]]]></summary>
		<content type="html" xml:base="http://www.lunar-ocean.com/because-there-is-really-no-need-for-so-many/">&lt;p&gt;I would like to request an amendment to RFC 1855. &lt;/p&gt;
&lt;p&gt;My request concerns the use of punctuation in communications, either one-to-one or one-to-many.&lt;/p&gt;
&lt;p&gt;My request goes along this recommandation:&lt;br /&gt;
Use mixed case. UPPER CASE LOOKS AS IF YOU&amp;#8217;RE SHOUTING. &lt;/p&gt;
&lt;p&gt;People tend to overuse exclamation marks to emphasize a sentence and actually just give the feeling they are shouting:&lt;br /&gt;
Upper case looks as if you&amp;#8217;re shouting !&lt;/p&gt;
&lt;p&gt;The repetition of exclamation marks reinforces the effect:&lt;br /&gt;
Upper case looks as if you&amp;#8217;re shouting !!!&lt;/p&gt;
&lt;p&gt;However, this might be interpreted differently depending of our culture. I think the Indian culture uses this type of expression more often as they want to express emphasis over a sentence.&lt;br /&gt;
I think this might need to be addressed from a cultural point of view. Ultimately, we would need to offer other ways of using emphasis. For example, starting a sentence with &amp;#8220;What is particularly important is &amp;#8230;&amp;#8221;, adding emphasis by the use of adjectives &amp;#8220;We really need &amp;#8230;&amp;#8221;, or taking a bit more time to explain the sentence: &amp;#8220;In this case, we need more information from such and such as our process indicates. We need &amp;#8230;&amp;#8221;.&lt;/p&gt;
&lt;p&gt;I wasn&amp;#8217;t able to contact the RFC author, and I figured I&amp;#8217;d paste this somewhere.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/LunarOcean?a=rqqfHHk--ZQ:_jZwnkPwGSw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LunarOcean?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/LunarOcean?a=rqqfHHk--ZQ:_jZwnkPwGSw:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LunarOcean?i=rqqfHHk--ZQ:_jZwnkPwGSw:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/LunarOcean?a=rqqfHHk--ZQ:_jZwnkPwGSw:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LunarOcean?i=rqqfHHk--ZQ:_jZwnkPwGSw:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/LunarOcean/~4/rqqfHHk--ZQ" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.lunar-ocean.com/because-there-is-really-no-need-for-so-many/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.lunar-ocean.com/because-there-is-really-no-need-for-so-many/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.lunar-ocean.com/because-there-is-really-no-need-for-so-many/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Antoine Toulme</name>
						<uri>http://antoine.toulme.name</uri>
					</author>
		<title type="html"><![CDATA[Eclipse.org has been down ; how can we help ?]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LunarOcean/~3/Qicd9LtnC0c/" />
		<id>http://www.lunar-ocean.com/?p=301</id>
		<updated>2009-02-26T21:58:58Z</updated>
		<published>2009-02-26T21:58:58Z</published>
		<category scheme="http://www.lunar-ocean.com" term="Eclipse" />		<summary type="html"><![CDATA[Our webmasters are having a rough time, the downloads area is down because there were recent issues with mirrors. All my sympathy goes to them.
I think we can help. I filed 266380 today:

Would it be feasible that we make I-builds and N-builds, that are most of the
time only available on the Canada website, to be [...]]]></summary>
		<content type="html" xml:base="http://www.lunar-ocean.com/eclipseorg-has-been-down-how-can-we-help/">&lt;p&gt;Our webmasters are having a rough time, the downloads area is down because there were recent issues with mirrors. All my sympathy goes to them.&lt;/p&gt;
&lt;p&gt;I think we can help. I filed &lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=266380"&gt;266380&lt;/a&gt; today:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;
Would it be feasible that we make I-builds and N-builds, that are most of the&lt;br /&gt;
time only available on the Canada website, to be available as torrents ?&lt;/p&gt;
&lt;p&gt;People would help each other downloading them and depend a bit less on the&lt;br /&gt;
server.&lt;/p&gt;
&lt;p&gt;I myself would be happy to set a high ratio on such torrents.
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;I think we could have a script to create torrent files in the same way we have a script to push files to mirrors. I welcome your feedback, and I hope we can all help eclipse.org stay up soon.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/LunarOcean?a=Qicd9LtnC0c:8FLRe3Vbxyc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LunarOcean?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/LunarOcean?a=Qicd9LtnC0c:8FLRe3Vbxyc:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LunarOcean?i=Qicd9LtnC0c:8FLRe3Vbxyc:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/LunarOcean?a=Qicd9LtnC0c:8FLRe3Vbxyc:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LunarOcean?i=Qicd9LtnC0c:8FLRe3Vbxyc:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/LunarOcean/~4/Qicd9LtnC0c" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.lunar-ocean.com/eclipseorg-has-been-down-how-can-we-help/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.lunar-ocean.com/eclipseorg-has-been-down-how-can-we-help/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.lunar-ocean.com/eclipseorg-has-been-down-how-can-we-help/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Antoine Toulme</name>
						<uri>http://antoine.toulme.name</uri>
					</author>
		<title type="html"><![CDATA[Da Open Source Executive Strategy Summit]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LunarOcean/~3/PPfeUym1GD8/" />
		<id>http://www.lunar-ocean.com/?p=298</id>
		<updated>2009-02-26T10:55:48Z</updated>
		<published>2009-02-26T10:55:48Z</published>
		<category scheme="http://www.lunar-ocean.com" term="Eclipse" />		<summary type="html"><![CDATA[Wow, I received an email to RSVP to ECSS, the EclipseCon Strategy Summit.
The program consists of an analyst report, a pound of legal advice, two servings of feedback on open source strategies and a final panel.
The content looks good, there&#8217;s plenty of good and experienced speakers, it&#8217;s all well scheduled and planned.
Though, I tend to [...]]]></summary>
		<content type="html" xml:base="http://www.lunar-ocean.com/da-open-source-executive-strategy-summit/">&lt;p&gt;Wow, I received an email to RSVP to &lt;a href="http://www.eclipse.org/org/foundation/membersminutes/20090326StrategySummit/agenda.php"&gt;ECSS&lt;/a&gt;, the &lt;a href="http://www.eclipse.org/org/foundation/membersminutes/20090326StrategySummit/agenda.php"&gt;EclipseCon Strategy Summit&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The program consists of an analyst report, a pound of legal advice, two servings of feedback on open source strategies and a final panel.&lt;/p&gt;
&lt;p&gt;The content looks good, there&amp;#8217;s plenty of good and experienced speakers, it&amp;#8217;s all well scheduled and planned.&lt;/p&gt;
&lt;p&gt;Though, I tend to believe this kind of day would be better served by an unconference style.&lt;br /&gt;
I think it would really be thrilling for executives to come down that day, listen to an analyst keynote to get in the mood, and then grab a whiteboard and make their agenda for the day.&lt;/p&gt;
&lt;p&gt;I believe that my CEO would be absolutely thrilled to participate to a meeting like that : get to know more people, more projects, coordinate efforts, and maybe even discuss open source strategy.&lt;/p&gt;
&lt;p&gt;&lt;small&gt;Of course you should take all this with a grain of salt. Last time I checked there was still written &amp;#8220;Software Engineer&amp;#8221; on my name tag.&lt;/small&gt;&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/LunarOcean?a=PPfeUym1GD8:slhumlFasxI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LunarOcean?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/LunarOcean?a=PPfeUym1GD8:slhumlFasxI:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LunarOcean?i=PPfeUym1GD8:slhumlFasxI:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/LunarOcean?a=PPfeUym1GD8:slhumlFasxI:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/LunarOcean?i=PPfeUym1GD8:slhumlFasxI:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/LunarOcean/~4/PPfeUym1GD8" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.lunar-ocean.com/da-open-source-executive-strategy-summit/#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://www.lunar-ocean.com/da-open-source-executive-strategy-summit/feed/atom/" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://www.lunar-ocean.com/da-open-source-executive-strategy-summit/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Antoine Toulme</name>
						<uri>http://antoine.toulme.name</uri>
					</author>
		<title type="html"><![CDATA[IRC and newsgroups]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LunarOcean/~3/Q7TclwXCyGs/" />
		<id>http://www.lunar-ocean.com/?p=293</id>
		<updated>2009-02-20T22:50:34Z</updated>
		<published>2009-02-20T22:50:34Z</published>
		<category scheme="http://www.lunar-ocean.com" term="Eclipse" />		<summary type="html"><![CDATA[I just had this discussion with Remy Suen:

rcjsuen: toulmean: It is certainly nice that newsgroups answers can be archived whereas IRC isn't.
toulmean: rcjsuen: well. We could archive the IRC discussions with echelog to some extent ?
rcjsuen: toulmean: In a way. I guess part of the issue is that newsgroups postings are generally better formulated than [...]]]></summary>
		<content type="html" xml:base="http://www.lunar-ocean.com/irc-and-newsgroups/">&lt;p&gt;I just had this discussion with &lt;a href="http://blog.hantsuki.org/"&gt;Rem&lt;abbr title="or i, he doesn't mind"&gt;y&lt;/abbr&gt; Suen&lt;/a&gt;:&lt;/p&gt;
&lt;pre&gt;
rcjsuen: toulmean: It is certainly nice that newsgroups answers can be archived whereas IRC isn't.
toulmean: rcjsuen: well. We could archive the IRC discussions with echelog to some extent ?
rcjsuen: toulmean: In a way. I guess part of the issue is that newsgroups postings are generally better formulated than IRC chat logs.
toulmean: rcjsuen: well, yeah, but I prefer IRC because of the human touch.
rcjsuen: But well, it isn't something we can do anything about anyway.
toulmean: yeah. You know eventually we could add a command to KOS-MOS: remember last 5 exchanges with x, y, z
toulmean: and post those exchanges to the newsgroup
toulmean: rcjsuen: then KOS-MOS would send back the url to the message it posted
rcjsuen: I don't know about that.
toulmean: rcjsuen: so all the guys asking hard questions can ask them, then we push the questions to the newsgroup, so there is no overlap.
toulmean: rcjsuen: otherwise people ask once, two, thee times in different places. It's hard.
rcjsuen: Right.
toulmean: rcjsuen: just an idea, do what you want with it.
rcjsuen: toulmean: When I remember to (which I usually don't), I try to put the question in the FAQ when it's been asked a lot.
toulmean: rcjsuen: let's about it again later ? let's let it sink a bit.
&lt;/pre&gt;
&lt;p&gt;What do you think ? A keeper ? &lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/LunarOcean?a=nANaCGHy"&gt;&lt;img src="http://feeds.feedburner.com/~f/LunarOcean?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/LunarOcean?a=yb6hQvrr"&gt;&lt;img src="http://feeds.feedburner.com/~f/LunarOcean?i=yb6hQvrr" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/LunarOcean?a=gqR0uSZu"&gt;&lt;img src="http://feeds.feedburner.com/~f/LunarOcean?i=gqR0uSZu" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/LunarOcean/~4/Q7TclwXCyGs" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.lunar-ocean.com/irc-and-newsgroups/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.lunar-ocean.com/irc-and-newsgroups/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.lunar-ocean.com/irc-and-newsgroups/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Antoine Toulme</name>
						<uri>http://antoine.toulme.name</uri>
					</author>
		<title type="html"><![CDATA[CDT on IRC ?]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LunarOcean/~3/rxQ6sdeiek4/" />
		<id>http://www.lunar-ocean.com/?p=287</id>
		<updated>2009-02-19T10:47:21Z</updated>
		<published>2009-02-19T10:44:29Z</published>
		<category scheme="http://www.lunar-ocean.com" term="Eclipse" />		<summary type="html"><![CDATA[CDT, as in C Development Tools, is currently under represented on IRC, as in Internet Relay Chat.
We get a lot of questions about it on the #eclipse channel on Freenode. Some people complain about content assist not working, some have more specific C questions, and so far it sounds like we can&#8217;t help with them.
CDT [...]]]></summary>
		<content type="html" xml:base="http://www.lunar-ocean.com/cdt-on-irc/">&lt;p&gt;&lt;a href="http://www.eclipse.org/cdt/"&gt;CDT&lt;/a&gt;, as in C Development Tools, is currently under represented on IRC, as in Internet Relay Chat.&lt;/p&gt;
&lt;p&gt;We get a lot of questions about it on the &lt;a href="irc://irc.freenode.net/eclipse"&gt;#eclipse&lt;/a&gt; channel on Freenode. Some people complain about content assist not working, some have more specific C questions, and so far it sounds like we can&amp;#8217;t help with them.&lt;/p&gt;
&lt;p&gt;CDT committers, if you have some bandwidth left, please come down here, it&amp;#8217;s all fun and community gathering. &lt;/p&gt;
&lt;p&gt;If you don&amp;#8217;t have time, I understand.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/LunarOcean?a=cDUGwvQg"&gt;&lt;img src="http://feeds.feedburner.com/~f/LunarOcean?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/LunarOcean?a=ULU76yUC"&gt;&lt;img src="http://feeds.feedburner.com/~f/LunarOcean?i=ULU76yUC" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/LunarOcean?a=JWC4QnIT"&gt;&lt;img src="http://feeds.feedburner.com/~f/LunarOcean?i=JWC4QnIT" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/LunarOcean/~4/rxQ6sdeiek4" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.lunar-ocean.com/cdt-on-irc/#comments" thr:count="4" />
		<link rel="replies" type="application/atom+xml" href="http://www.lunar-ocean.com/cdt-on-irc/feed/atom/" thr:count="4" />
		<thr:total>4</thr:total>
	<feedburner:origLink>http://www.lunar-ocean.com/cdt-on-irc/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Antoine Toulme</name>
						<uri>http://antoine.toulme.name</uri>
					</author>
		<title type="html"><![CDATA[The BPMN modeler is hosted on github. Fork it today.]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LunarOcean/~3/8_igaKVTuMs/" />
		<id>http://www.lunar-ocean.com/?p=284</id>
		<updated>2009-02-18T15:40:34Z</updated>
		<published>2009-02-18T15:40:34Z</published>
		<category scheme="http://www.lunar-ocean.com" term="BPMN" /><category scheme="http://www.lunar-ocean.com" term="Eclipse" /><category scheme="http://www.lunar-ocean.com" term="Intalio" />		<summary type="html"><![CDATA[Oisin hinted he was into experimenting with git:
Perhaps someone could come up with a github mirror of one of the components and we could see how that works?

Come fork me on github! I&#8217;ll try to keep in sync with the current trunk, which should work as long as no svn switch happens.
One member of the [...]]]></summary>
		<content type="html" xml:base="http://www.lunar-ocean.com/the-bpmn-modeler-is-hosted-on-github-fork-it-today/">&lt;p&gt;&lt;a href="http://oisinh.wordpress.com/"&gt;Oisin&lt;/a&gt; &lt;a href="http://dev.eclipse.org/mhonarc/lists/stp-pmc/msg00428.html"&gt;hinted&lt;/a&gt; he was into experimenting with git:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Perhaps someone could come up with a github mirror of one of the components and we could see how that works?
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Come fork me on &lt;a href="http://github.com/atoulme/bpmn-modeler/tree/master"&gt;github&lt;/a&gt;! I&amp;#8217;ll try to keep in sync with the current trunk, which should work as long as no svn switch happens.&lt;/p&gt;
&lt;p&gt;One member of the STP PMC reacted to my call. I am still waiting for others to show themselves and share their wisdom.&lt;/p&gt;
&lt;p&gt;Next in line - pushing &lt;a href="http://www.eclipse.org/babel"&gt;Babel&lt;/a&gt; over to github. Let&amp;#8217;s see if &lt;a href="http://dev.eclipse.org/blogs/eclipsewebmaster/"&gt;Denis&lt;/a&gt;, our trusty webmaster, likes it!&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/LunarOcean?a=pNizimwC"&gt;&lt;img src="http://feeds.feedburner.com/~f/LunarOcean?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/LunarOcean?a=eXGeg6JT"&gt;&lt;img src="http://feeds.feedburner.com/~f/LunarOcean?i=eXGeg6JT" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/LunarOcean?a=4vXg2YxA"&gt;&lt;img src="http://feeds.feedburner.com/~f/LunarOcean?i=4vXg2YxA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/LunarOcean/~4/8_igaKVTuMs" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.lunar-ocean.com/the-bpmn-modeler-is-hosted-on-github-fork-it-today/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.lunar-ocean.com/the-bpmn-modeler-is-hosted-on-github-fork-it-today/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.lunar-ocean.com/the-bpmn-modeler-is-hosted-on-github-fork-it-today/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Antoine Toulme</name>
						<uri>http://antoine.toulme.name</uri>
					</author>
		<title type="html"><![CDATA[Letter to the STP PMC: Please express interest over a DVCS]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LunarOcean/~3/UxoaL-JKTg0/" />
		<id>http://www.lunar-ocean.com/?p=282</id>
		<updated>2009-02-17T09:01:43Z</updated>
		<published>2009-02-17T09:01:43Z</published>
		<category scheme="http://www.lunar-ocean.com" term="BPMN" /><category scheme="http://www.lunar-ocean.com" term="Eclipse" />		<summary type="html"><![CDATA[I sent out an email to the STP PMC yesterday night:

Hi all,
STP has proven to be cutting edge in many ways regarding the Eclipse development process. In particular, we were amongst the first to adopt a Subversion repository.
The reason why we went for those repositories are varied. First, I think most of us acknowledged that [...]]]></summary>
		<content type="html" xml:base="http://www.lunar-ocean.com/letter-to-the-stp-pmc-please-express-interest-over-a-dvcs/">&lt;p&gt;I sent out an email to the STP PMC yesterday night:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;
Hi all,&lt;/p&gt;
&lt;p&gt;STP has proven to be cutting edge in many ways regarding the Eclipse development process. In particular, we were amongst the first to adopt a Subversion repository.&lt;/p&gt;
&lt;p&gt;The reason why we went for those repositories are varied. First, I think most of us acknowledged that CVS was not fitting the bill so much anymore. We were also increasingly using SVN at work, and had gone through the hurdles of mastering it.&lt;/p&gt;
&lt;p&gt;Some time passed. git and mercurial came along and revolutionized quite a few things. Just look at github and how the commit rate of rails changed since they moved there (around the 5th minute on this video of the Rails commit history [0])&lt;/p&gt;
&lt;p&gt;I opened a bug about the possibility to move to git [1], and a webmaster hinted that supporting git would be considered if a couple of top level projects were asking for it.&lt;/p&gt;
&lt;p&gt;That&amp;#8217;s why I&amp;#8217;m asking you to please cast an informal vote for this move. Please consider also voting on [1].&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Antoine&lt;/p&gt;
&lt;p&gt;[0]: http://vimeo.com/2979844?pg=embed&amp;#038;sec=2979844&lt;br /&gt;
[1]: https://bugs.eclipse.org/bugs/show_bug.cgi?id=257706
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Do you want to see DVCS support at Eclipse ? Please consider writing to your PMC today.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/LunarOcean?a=gl5OaMAR"&gt;&lt;img src="http://feeds.feedburner.com/~f/LunarOcean?d=41" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/LunarOcean?a=c0TTkhpZ"&gt;&lt;img src="http://feeds.feedburner.com/~f/LunarOcean?i=c0TTkhpZ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/LunarOcean?a=8XqM0xlT"&gt;&lt;img src="http://feeds.feedburner.com/~f/LunarOcean?i=8XqM0xlT" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/LunarOcean/~4/UxoaL-JKTg0" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.lunar-ocean.com/letter-to-the-stp-pmc-please-express-interest-over-a-dvcs/#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://www.lunar-ocean.com/letter-to-the-stp-pmc-please-express-interest-over-a-dvcs/feed/atom/" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://www.lunar-ocean.com/letter-to-the-stp-pmc-please-express-interest-over-a-dvcs/</feedburner:origLink></entry>
	<entry><title type="text">Links for 2009-01-05 [del.icio.us]</title><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LunarOcean/~3/DT5OFOTmxj0/toulmean" /><updated>2009-01-06T00:00:00-08:00</updated><id>http://del.icio.us/toulmean#2009-01-05</id><content type="html">&lt;ul&gt;
&lt;li&gt;&lt;a href="http://ariannacto.blogspot.com/2008/11/una-tesi-su-bpm-e-soa.html"&gt;BPM italian thesis&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/LunarOcean/~4/DT5OFOTmxj0" height="1" width="1"/&gt;</content><feedburner:origLink>http://del.icio.us/toulmean#2009-01-05</feedburner:origLink></entry><entry><title type="text">Links for 2008-11-20 [del.icio.us]</title><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LunarOcean/~3/LPMABSVf018/toulmean" /><updated>2008-11-21T00:00:00-08:00</updated><id>http://del.icio.us/toulmean#2008-11-20</id><content type="html">&lt;ul&gt;
&lt;li&gt;&lt;a href="http://eprints.qut.edu.au/archive/00007966/"&gt;QUT | ePrints Archive - Communication Abstractions for Distributed Business Processes&lt;/a&gt;&lt;br/&gt;
Languages for business process definition generally suffer from myopic approaches to capturing communication between distributed processes. Effective communication between processes requires: support for conversations involving interrelated interactions spread over time; ability to select and group messages based on their content, regardless of format and transport technology; and resolving contention between processes or tasks for common sets of messages. This paper presents a set of communication abstractions that provide a ``glue&amp;#039;&amp;#039; between the process layer and the middleware. The paper also reports on an implementation of these abstractions and an experimental evaluation.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://eprints.qut.edu.au/archive/00014345/"&gt;QUT | ePrints Archive - Major Issues in Business Process Management: An Expert Perspective&lt;/a&gt;&lt;br/&gt;
Process is perennial. Within any business activity or enterprise it is crucial that the variable of &amp;quot;operational efficiency&amp;quot; is maintained at sufficiently high levels, such that the return on investment is sustainable enough to justify its continued existence. Business Process Management (BPM) is the term used to encapsulate a process-driven approach to attaining enterprise operational efficiency. Despite BPM being ranked as top priority by organizations, current status of BPM research suggests a gap of addressing present industry demands. In this paper, we aim to identify the issues that organizations face in their efforts to manage business processes, as identified by BPM experts across the globe. The findings point to, among others, lack of top management support, lack of tool support for process visualization, and lack of connection between process design and process execution.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://eprints.qut.edu.au/archive/00010615/"&gt;QUT | ePrints Archive - Extending Representational Analysis: BPMN User and Developer Perspectives&lt;/a&gt;&lt;br/&gt;
Over the last years, significant academic progress has been made in the area of representational analyses that use ontology as a benchmark for evaluations and comparisons of modeling techniques. This paper proposes a research model to guide representational analysis projects, which extends existing procedural models by incorporating different stakeholder perspectives. The paper demonstrates the application of this model for the purpose of analyzing the Business Process Modeling Notation (BPMN), a recent and popular candidate for a new process modeling industry standard. A brief overview of the underlying research model characterizes the different steps in such a research project, while the BPMN analysis project emphasizes the importance of validating with users the propositions obtained via the analysis and communicating those to the technique developers in order to increase the impact of evaluation research to Information Systems practice.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://eprints.qut.edu.au/archive/00005871/"&gt;QUT | ePrints Archive - From BPMN Process Models to BPEL Web Services&lt;/a&gt;&lt;br/&gt;
The Business Process Modelling Notation (BPMN) is a graph-oriented language in which control and action nodes can be connected almost arbitrarily. It is supported by various modelling tools but so far no systems can directly execute BPMN models. The Business Process Execution Language for Web Services (BPEL) on the other hand is a mainly block-structured language supported by several execution platforms. In the current setting, mapping BPMN models to BPEL code is a necessary step towards unified and standards-based business process development environments. It turns out that this mapping is challenging from a scientific viewpoint as BPMN and BPEL represent two fundamentally different classes of languages. Existing methods for mapping BPMN to BPEL impose limitations on the structure of the source model. This paper proposes a technique that overcomes these limitations. Beyond its direct relevance in the context of BPMN and BPEL, this technique addresses difficult problems that arise...&lt;/li&gt;
&lt;li&gt;&lt;a href="http://eprints.qut.edu.au/archive/00006499/"&gt;QUT | ePrints Archive - Pattern-based translation of BPMN process models to BPEL web services&lt;/a&gt;&lt;br/&gt;
The Business Process Modelling Notation (BPMN) is a graph-oriented language in which control and action nodes can be connected almost arbitrarily. It is primarily targeted at domain analysts and is supported by many modelling tools, but in its current form, it lacks the semantic precision required to capture fully executable business processes. The Business Process Execution Language for Web Services (BPEL) on the other hand is a mainly block-structured language, targeted at software developers and supported by several execution platforms. In the current setting, translating BPMN models into BPEL code is a necessary step towards standards-based business process development environments. This translation is challenging since BPMN and BPEL represent two fundamentally different classes of languages. Existing BPMN-to-BPEL translations rely on the identification of block-structured patterns in BPMN models that are mapped into block-structured BPEL constructs.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://eprints.qut.edu.au/archive/00004637/"&gt;QUT | ePrints Archive - On the Translation between BPMN and BPEL: Conceptual Mismatch between Process Modeling Languages&lt;/a&gt;&lt;br/&gt;
Business practice shows that, often, different process models are employed in the various phases of the Business Process Management life cycle, each providing a different paradigm for capturing and representing the business process domain. Recently, significant efforts have been made to overcome the disintegration of process models by providing complementary language standards for process design (BPMN) and execution (BPEL), based on the claim that these languages are semantically integrated. However, the conceptual mapping between both languages remains unclear, thus it is undecided whether any BPMN diagram can be transformed to BPEL. In this paper we argue that there is conceptual mismatch between BPMN and BPEL that needs to be identified in order to guide the language integration process semantically.&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/LunarOcean/~4/LPMABSVf018" height="1" width="1"/&gt;</content><feedburner:origLink>http://del.icio.us/toulmean#2008-11-20</feedburner:origLink></entry><entry><title type="text">Links for 2008-10-30 [del.icio.us]</title><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LunarOcean/~3/9Nv_Em5AnLk/toulmean" /><updated>2008-10-31T00:00:00-07:00</updated><id>http://del.icio.us/toulmean#2008-10-30</id><content type="html">&lt;ul&gt;
&lt;li&gt;&lt;a href="http://bpms.intalio.com/forums/general-questions/invoking-tpm-tokenservice-from-custom-ui/view.html"&gt;Invoking TPM/TokenService from custom UI -&amp;nbsp;-&amp;nbsp;Intalio|BPMS Community Edition&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/LunarOcean/~4/9Nv_Em5AnLk" height="1" width="1"/&gt;</content><feedburner:origLink>http://del.icio.us/toulmean#2008-10-30</feedburner:origLink></entry><entry><title type="text">Links for 2008-10-21 [del.icio.us]</title><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/LunarOcean/~3/0sen1RJpAFQ/toulmean" /><updated>2008-10-22T00:00:00-07:00</updated><id>http://del.icio.us/toulmean#2008-10-21</id><content type="html">&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.youtube.com/watch?v=KVsihElJs0w"&gt;YouTube - Accidente de avioneta en Nasca Per&amp;uacute;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://gosouthamerica.about.com/b/2008/04/10/nazca-lines-plane-crash-claims-five-lives.htm"&gt;Nazca Lines Plane Crash Claims Five Lives&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.livinginperu.com/news/6160"&gt;Living in Peru &amp;raquo; News &amp;raquo; Pilot claims Nazca plane crash caused by tourist's panic attack&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://news.bbc.co.uk/2/hi/americas/7339856.stm"&gt;BBC NEWS | Americas | Tourists die in Peru plane crash&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.reuters.com/article/latestCrisis/idUSN09464190"&gt;Five tourists killed in air crash near Peru's Nazca | Reuters&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://ma-tvideo.france3.fr/video/iLyROoafYMuW.html"&gt;video Crash d'un Cessna au P&amp;eacute;rou - seine maritime, nazca, perou - videos Ma-Tvideo France3&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.peruviantimes.com/vice-minister-aviation-authorities-still-investigating-cause-of-nazca-lines-plane-crash-that-killed-five-french-tourists/"&gt;Vice Minister: aviation authorities still investigating cause of Nazca Lines plane crash that killed five French tourists | Peruvian Times&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/LunarOcean/~4/0sen1RJpAFQ" height="1" width="1"/&gt;</content><feedburner:origLink>http://del.icio.us/toulmean#2008-10-21</feedburner:origLink></entry></feed>
