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

<channel>
	<title>evolvica.org</title>
	<atom:link href="http://www.evolvica.org/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.evolvica.org</link>
	<description>the personal site of Andreas Rummler</description>
	<lastBuildDate>Thu, 05 Aug 2010 13:19:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Taming Eclipse Helios RCP Apps on Windows 7</title>
		<link>http://www.evolvica.org/?p=144</link>
		<comments>http://www.evolvica.org/?p=144#comments</comments>
		<pubDate>Thu, 05 Aug 2010 13:17:19 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Rich Client Platform]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.evolvica.org/?p=144</guid>
		<description><![CDATA[Recently I upgraded to Windows 7 which allows me to use the 64 Bit JRE. However, I spent 2 days to get a minimal RCP application to run. Here is the result. First, do not mix up the JREs and the deployed RCP application. SWT exists for 32 Bit and for 64 Bit &#8211; use [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Recently I upgraded to Windows 7 which allows me to use the 64 Bit JRE. However, I spent 2 days to get a minimal RCP application to run. Here is the result.</p>
<p style="text-align: justify;">First, do not mix up the JREs and the deployed RCP application. SWT exists for 32 Bit and for 64 Bit &#8211; use the appropriate version with your JDK. If you run a 64 Bit JDK, use the 64 Bit Eclipse Helios version, same with the 32 Bit versions. The deployed RCP application will also be 64 Bit and 32 Bit respectively, because the files are copied from the IDE during the deployment process. If you mix up between them you will run into errors like this:</p>
<p style="text-align: justify;"><span style="font-size: x-small;"><span style="font-family: terminal,monaco;"><span style="font-family: verdana,geneva;">!SUBENTRY 1 org.eclipse.osgi 2 0 2010-08-05 13:59:28.417<br />
!MESSAGE Bundle org.eclipse.swt.win32.win32.x86_64_3.6.0.v3650b [56] was not resolved.<br />
!SUBENTRY 2 org.eclipse.swt.win32.win32.x86_64 2 0 2010-08-05 13:59:28.419<br />
!MESSAGE Platform filter did not match: (&amp; (osgi.ws=win32) (osgi.os=win32) (osgi.arch=x86_64))</span></span></span></p>
<p>and/or this:</p>
<p><span style="font-size: x-small;"><span style="font-family: verdana,geneva;">Caused by: java.lang.ClassNotFoundException: org.eclipse.swt.SWTError<br />
at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:506)<br />
at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:422)<br />
at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:410)<br />
at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107)<br />
at java.lang.ClassLoader.loadClass(Unknown Source)</span></span></p>
<p><span style="font-size: x-small;">B</span>ut I found myself in a situation where even the correct version of the JRE (64 Bit in my case) didn&#8217;t work together with a deployed RCP application from a 64 Bit Helios IDE. The default launching arguments (which can be found on tab &#8220;Launching&#8221; in the product configuration) are set to:</p>
<p><span style="font-size: x-small;"><span style="font-family: verdana,geneva;">-os ${target.os} -ws ${target.ws} -arch ${target.arch} -nl ${target.nl} -consoleLog -debug</span></span></p>
<p>Unfortunately the placeholder do not seem to be resolved during the deployment. Therefore they end up in the generated eclipse.ini, which looks like this:</p>
<p><span style="font-size: x-small;"><span style="font-family: verdana,geneva;">-startup<br />
plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar<br />
&#8211;launcher.library<br />
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.0.v20100503<br />
-os<br />
${target.os}<br />
-ws<br />
${target.ws}<br />
-arch<br />
${target.arch}<br />
-nl<br />
${target.nl}<br />
-consoleLog<br />
-debug<br />
-noexit<br />
-vmargs<br />
-Xms40m<br />
-Xmx384m</span></span></p>
<p>The launch of the RCP application fails, obviously because a system architecture called &#8220;${target.arch}&#8221; does not exist. Setting the parameters manually resolved finally the problem &#8211; although it took me 2 days to figure out what the actual problem was. I suspect that this is a bug in Helios. Here&#8217;s what the eclipse.ini should look like:</p>
<p><span style="font-size: x-small;"><span style="font-family: verdana,geneva;">-startup<br />
plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar<br />
&#8211;launcher.library<br />
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.0.v20100503<br />
-os<br />
win32<br />
-ws<br />
win32<br />
-arch<br />
x86_64<br />
-consoleLog<br />
-debug<br />
-vmargs<br />
-Xms40m<br />
-Xmx384m</span></span></p>
<p>Simply omitting the operating system parameters will also work:</p>
<p><span style="font-size: x-small;"><span style="font-family: verdana,geneva;">-startup<br />
plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar<br />
&#8211;launcher.library<br />
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.0.v20100503<br />
-consoleLog<br />
-debug<br />
-vmargs<br />
-Xms40m<br />
-Xmx384m</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.evolvica.org/?feed=rss2&amp;p=144</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Time Machine Nightmare</title>
		<link>http://www.evolvica.org/?p=133</link>
		<comments>http://www.evolvica.org/?p=133#comments</comments>
		<pubDate>Mon, 19 Jul 2010 07:36:19 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.evolvica.org/?p=133</guid>
		<description><![CDATA[Two weeks ago the Black Day arrived, finally. For the very first time in my life I experienced the death of one of my hard disks. Unfortunately it was the one built into my Macbook.  The disk was only 5 months old and it was interesting to see how all running applications died, slowly, one [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Two weeks ago the Black Day arrived, finally. For the very first time in my life I experienced the death of one of my hard disks. Unfortunately it was the one built into my Macbook.  The disk was only 5 months old and it was interesting to see how all running applications died, slowly, one after each other. The guys at the local computer store didn&#8217;t complain at all and replaced the drive without any problems.</p>
<p style="text-align: justify;">The next step of course was restoring the data from the backup drive. For backup purposes I use <a href="http://www.apple.com/macosx/what-is-macosx/time-machine.html" target="_blank">Time Machine</a>, the OS X built-in backup solution by Apple. Time Machine is able to create an OS X installation on a blank disk by accessing the backed up data. All my backup data resides on a Network Attached Storage device. For far, so good, should work like a breeze. At least that&#8217;s what I thought. The first attempt to restore my data failed, and so did the second and the third. On a first look, it seemed that Time Machine was not able to read some Japanese help files of <a href="http://www.apple.com/ilife/iphoto/" target="_blank">iPhoto</a>. Although I don&#8217;t care about the Japanese help there does not seem to be a way to exclude certain files from being restored. However, after examing the log files of the restore attempt a little closer, it turned out that the Japanese help wasn&#8217;t the one to blame. Time Machine itself is the bad guy &#8211; it crashes because it seems to forget to turn off the Standby mode of the Macbook while restoring. I was able to reproduce the behaviour: as long as I move the mouse pointer the restore process keeps on running, but as soon as the screen blanks (the default is 10 minutes), Time Machine crashes!</p>
<p style="text-align: justify;">After searching for a while on the Internet I finally found a solution &#8211; I didn&#8217;t want to go the obvious way: sitting in front of the laptop for a couple of hours, touching the mouse every 5  minutes. It is possible to set the configuration for power saving via the command line. Before starting the restore job, start the terminal. The tool that saved me is <a href="http://developer.apple.com/mac/library/documentation/Darwin/Reference/ManPages/man1/pmset.1.html" target="_blank">pmset</a>, which lets you set the time until the screen blanks and the disk is turned down. However, a simple</p>
<pre><span style="font-family: verdana,geneva;">pmset -a  displaysleep 3 disksleep 600 sleep 600</span></pre>
<p style="text-align: justify;">fails, because pmset is not able to write the configuration data (which is not very surprising, when booting from the installation DVD). Used with the force option makes things better:</p>
<pre><span style="font-family: verdana,geneva;">pmset -a  displaysleep 3 disksleep 600 sleep 600 force</span></pre>
<p style="text-align: justify;">however, Time Machine is still crashing, this time after 3 minutes when the screen goes blank. Only a</p>
<pre><span style="font-family: verdana,geneva;">pmset -a  displaysleep 600 disksleep 600 sleep 600 force</span></pre>
<p style="text-align: justify;">which keeps the laptop awake for 10 hours seemed to help. But I was wrong: after several hours and around 65 % of the job done Time Machine crashed again, out of the blue. I suspected that it might have something to do with my NAS. I&#8217;m not using the official Apple solution <a href="http://www.apple.com/timecapsule/" target="_blank">Time Capsule</a> but a <a href="http://www.synology.com" target="_blank">Synology DiskStation 207+</a>. This NAS can act as Time Capsule replacement having Time Machine support, but maybe some certain feature is not implemented well?</p>
<p style="text-align: justify;">The next step was to try to install from a USB drive instead from the network share. So I copied all Time Machine data from the NAS to an external USB drive. This took about 10 hours. Next installation attempt, this time from the USB drive. The result: same story as before. Time Machine worked for a couple of hours and crashed in the middle of the restore job. What to do next?</p>
<p style="text-align: justify;">The MAC OS X installer offers a so-called migration assistant which is able to migrate data from a Time Machine backup. So I installed Snow Leopard. During the installation the user is asked about migrating data, both from network and from a USB drive. And both methods didn&#8217;t work. The network variant didn&#8217;t because the migration assitant was not able to access the Time Machine backup. It tried but failed, telling me &#8220;unable to access data&#8221;. A funny thing: the button that triggers the connection to the network device is disabled after the first try. If you enter a wrong password for the network share &#8211; bad luck, you don&#8217;t have a second try. The backup on the USB drive wasn&#8217;t recognized at all. In addition you cannot influence the detection, it is not possible to tell the migration assistant &#8220;Look in this folder!&#8221;.</p>
<p style="text-align: justify;">The migration assistant can also be started after installation. This time the USB drive was sucessfully detected and the data could be restored from there. Only one important thing: you need to create a user during installation that is named differently than the one saved in the Time Machine backup. Otherwise the user dat cannot be restored. I created a different user after the installation of Snow Leopard was finished. The migration assistant needs to be started from that account in order to overwrite the account that exists both on the machine and in the Time Machine backup.</p>
<p style="text-align: justify;">Finally that&#8217;s the end of the story, end of this nightmare. I somehow sense that nobody at Apple ever tried to actually perform such a restore job. Overall I&#8217;m quite disappointed of Time Machine. The story took me one whole week. I&#8217;m glad that this was only my private laptop &#8211; imagine if this was my business laptop and I would have relied that!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.evolvica.org/?feed=rss2&amp;p=133</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Strange Ticket Counter Mode at Leipzig Main Station</title>
		<link>http://www.evolvica.org/?p=114</link>
		<comments>http://www.evolvica.org/?p=114#comments</comments>
		<pubDate>Tue, 30 Jun 2009 14:19:51 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.evolvica.org/?p=114</guid>
		<description><![CDATA[I&#8217;m slowly getting used to strange business processes that are established at the Deutsche Bahn, the german railway company. A couple of months ago, ticket machines at the Dresden main station, where I was able to book a trip, pay for the ticket AND finally get my ticket printed were replaced by two kinds of [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I&#8217;m slowly getting used to strange business processes that are established at the Deutsche Bahn, the german railway company. A couple of months ago, ticket machines at the Dresden main station, where I was able to book a trip, pay for the ticket AND finally get my ticket printed were replaced by two kinds of machines. One for booking the trip and for printing some kind of receipt with a bar code. The second one is for scanning the bar code, eating my cash or credit card and finally printing the ticket. I do not understand the justification for having two different machines instead of having a single one. However, I totally understand that the sales department of the machine vendor did an exceptionally great job. Probably they are still in champaige mood and the party is still ongoing &#8230;</p>
<p style="text-align: justify;">Yesterday I experienced a new business process at the Leipzig main station. I was in need of a ticket from the airport back to my home town, which (for some unknown reason) cannot be bought at a ticket machine. So I needed to approach someone at the counter. But I had to learn that things have changed. It is not possible any longer to approach someone at the counter. Now the lonely traveller has to pull a numbered ticket from a new number ticket machine (A new machine! Somehow I feel, that this is not a coincidence &#8230;). Above the counters there are brand-new screens which tell you what numbered traveller is next to be allowed to approach the counter. Unfortunately this leads to much longer waiting times than before, mainly because people tend to pull a ticket, notice that waiting for their number to be called takes too long and leave. In turn, this leads to counter assitants sitting there and waiting for &#8220;their&#8221; traveller with the right number (who already left). I had the funny situation that the majority of counters had no traveller in front of them to offer its service although there were plenty of them waiting to be called &#8230; In addition, travellers hang around in the counter hall, waiting and doing other things which leads to the case that it takes quite a while for most people to find out <strong>that</strong> their number has been called and <strong>which</strong> counter is the one to be approached. I wonder if one should carry out a scientific investigation on how much the waiting time has increased &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.evolvica.org/?feed=rss2&amp;p=114</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Charging Station a Future Business Model?</title>
		<link>http://www.evolvica.org/?p=111</link>
		<comments>http://www.evolvica.org/?p=111#comments</comments>
		<pubDate>Tue, 30 Jun 2009 13:49:18 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.evolvica.org/?p=111</guid>
		<description><![CDATA[I&#8217;m currently sitting at the Paris Charles de Gaulle airport waiting for a connecting flight &#8211; wired to an obviously Samsung-sponsored charging station. Besides the fact, that the business lounge behind the security check at gate D57 does not offer power supply (or it did, but I was just too stupid to figure out what [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I&#8217;m currently sitting at the Paris Charles de Gaulle airport waiting for a connecting flight &#8211; wired to an obviously Samsung-sponsored charging station. Besides the fact, that the business lounge behind the security check at gate D57 does not offer power supply (or it did, but I was just too stupid to figure out what the strange button on the fourth side beside the three power plugs was meant to do) for my thirsty laptop which ran out of power, I wonder if those charging stations could be embedded into some kind of business model in the future. There is locally provided internet access for which I have to pay for, there are music download opportunities at airports for which I have to pay for, so why not locally provided power supply for the modern nomad? Maybe this will not be introduced during the next couple of months, but think ahead a couple of years. When resources becoming shorter and energy more important and more expensive (as it did in the past), this could definitely be a future business. Imagine a traveller getting off a long flight, the battery of his/her iPod is down and &#8211; there&#8217;s a rescueing charging station nearby. Insert one Euro and have your mobile gadget recharged, first ten minutes are free (to keep you addicted to your locally bought music&#8230;)!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.evolvica.org/?feed=rss2&amp;p=111</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MDPLE 2009 Submission Deadline Extended</title>
		<link>http://www.evolvica.org/?p=107</link>
		<comments>http://www.evolvica.org/?p=107#comments</comments>
		<pubDate>Mon, 06 Apr 2009 14:17:42 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[Model Driven Engineering]]></category>

		<guid isPermaLink="false">http://www.evolvica.org/?p=107</guid>
		<description><![CDATA[As we had quite a lot of requests for extending the submission deadline for the MDPLE 2009 workshop, we agreed to set a new deadline. It is now april the 16th 2009. You can find all related information including the full Call for Papers at http://www.feasiple.de/workshop_en.html.]]></description>
			<content:encoded><![CDATA[<p>As we had quite a lot of requests for extending the submission deadline for the MDPLE 2009 workshop, we agreed to set a new deadline. It is now april the 16th 2009. You can find all related information including the full Call for Papers at <!--[if gte mso 9]><xml> <w :WordDocument> </w><w :View>Normal</w> <w :Zoom>0</w> <w :TrackMoves /> <w :TrackFormatting /> <w :HyphenationZone>21</w> <w :PunctuationKerning /> <w :ValidateAgainstSchemas /> <w :SaveIfXMLInvalid>false</w> <w :IgnoreMixedContent>false</w> <w :AlwaysShowPlaceholderText>false</w> <w :DoNotPromoteQF /> <w :LidThemeOther>DE</w> <w :LidThemeAsian>X-NONE</w> <w :LidThemeComplexScript>X-NONE</w> <w :Compatibility> <w :BreakWrappedTables /> <w :SnapToGridInCell /> <w :WrapTextWithPunct /> <w :UseAsianBreakRules /> <w :DontGrowAutofit /> <w :SplitPgBreakAndParaMark /> <w :DontVertAlignCellWithSp /> <w :DontBreakConstrainedForcedTables /> <w :DontVertAlignInTxbx /> <w :Word11KerningPairs /> <w :CachedColBalance /> </w> <w :BrowserLevel>MicrosoftInternetExplorer4</w> <m :mathPr> <m :mathFont m:val="Cambria Math" /> <m :brkBin m:val="before" /> <m :brkBinSub m:val="&#45;-" /> <m :smallFrac m:val="off" /> <m :dispDef /> <m :lMargin m:val="0" /> <m :rMargin m:val="0" /> <m :defJc m:val="centerGroup" /> <m :wrapIndent m:val="1440" /> <m :intLim m:val="subSup" /> <m :naryLim m:val="undOvr" /> </m> </xml>< ![endif]--><!--[if gte mso 9]><xml> <w :LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w :LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w :LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w :LsdException Locked="false" Priority="39" Name="toc 1" /> <w :LsdException Locked="false" Priority="39" Name="toc 2" /> <w :LsdException Locked="false" Priority="39" Name="toc 3" /> <w :LsdException Locked="false" Priority="39" Name="toc 4" /> <w :LsdException Locked="false" Priority="39" Name="toc 5" /> <w :LsdException Locked="false" Priority="39" Name="toc 6" /> <w :LsdException Locked="false" Priority="39" Name="toc 7" /> <w :LsdException Locked="false" Priority="39" Name="toc 8" /> <w :LsdException Locked="false" Priority="39" Name="toc 9" /> <w :LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w :LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w :LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w :LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w :LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w :LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w :LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w :LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w :LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w :LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w :LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w :LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w :LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w :LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w :LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w :LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w :LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w :LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w :LsdException Locked="false" Priority="37" Name="Bibliography" /> <w :LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w> </xml>< ![endif]--> <span style="font-size: 11pt; font-family: &amp;quot;Calibri&amp;quot;,&amp;quot;sans-serif&amp;quot;;"><a href="http://www.feasiple.de/workshop_en.html" target="_blank"><span lang="EN-US">http://www.feasiple.de/workshop_en.html</span></a><span lang="EN-US">.<br />
</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.evolvica.org/?feed=rss2&amp;p=107</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ECMDA 2009 Traceability Workshop</title>
		<link>http://www.evolvica.org/?p=99</link>
		<comments>http://www.evolvica.org/?p=99#comments</comments>
		<pubDate>Thu, 26 Mar 2009 13:59:39 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[Model Driven Engineering]]></category>

		<guid isPermaLink="false">http://www.evolvica.org/?p=99</guid>
		<description><![CDATA[Oh, yes, nearly forgot to mention, that there&#8217;s still a chance to submit an article to this years Traceability Workshop at the European Conference on Model-Driven Architecture. You can find more information at its homepage at http://www.modelbased.net/ecmda-traceability.]]></description>
			<content:encoded><![CDATA[<p>Oh, yes, nearly forgot to mention, that there&#8217;s still a chance to submit an article to this years Traceability Workshop at the European Conference on Model-Driven Architecture. You can find more information at its homepage at <a href="http://www.modelbased.net/ecmda-traceability" target="_blank">http://www.modelbased.net/ecmda-traceability</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.evolvica.org/?feed=rss2&amp;p=99</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MDPLE 2009 Workshop</title>
		<link>http://www.evolvica.org/?p=96</link>
		<comments>http://www.evolvica.org/?p=96#comments</comments>
		<pubDate>Tue, 24 Mar 2009 18:39:35 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[Model Driven Engineering]]></category>

		<guid isPermaLink="false">http://www.evolvica.org/?p=96</guid>
		<description><![CDATA[&#8230; you might consider submitting an article to this years International Workshop on Model-Driven Product Line Engineering. Find more and information here at http://www.feasiple.de/workshop_en.html.]]></description>
			<content:encoded><![CDATA[<p>&#8230; you might consider submitting an article to this years International Workshop on Model-Driven Product Line Engineering. Find more and information here at <a href="http://www.feasiple.de/workshop_en.html" target="_blank">http://www.feasiple.de/workshop_en.html</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.evolvica.org/?feed=rss2&amp;p=96</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evolvica Downloads Disabled</title>
		<link>http://www.evolvica.org/?p=93</link>
		<comments>http://www.evolvica.org/?p=93#comments</comments>
		<pubDate>Tue, 24 Mar 2009 07:17:39 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[Evolvica]]></category>

		<guid isPermaLink="false">http://www.evolvica.org/?p=93</guid>
		<description><![CDATA[Sorry, I had to take down all the downloads for Evolvica. All the links pointing from external sites are dead now. This is because someone bombed the the server with download requests for the Win32 version over and over again causing about 120 GB traffic in 12 hours. Normally I have about 2 GB traffic [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry, I had to take down all the downloads for Evolvica. All the links pointing from external sites are dead now. This is because someone bombed the the server with download requests for the Win32 version over and over again causing about 120 GB traffic in 12 hours. Normally I have about 2 GB traffic per month. Don&#8217;t know yet how much this will cost in the end &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.evolvica.org/?feed=rss2&amp;p=93</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
