<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1.3" -->
<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/"
	>

<channel>
	<title>Rainer Feike techblog</title>
	<link>http://www.feike.biz/weblog</link>
	<description>Observing trends in computer technology and internet business</description>
	<pubDate>Thu, 31 Jul 2008 09:42:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.3</generator>
	<language>en</language>
			<item>
		<title>I took it - A list apart web survey 2008</title>
		<link>http://www.feike.biz/weblog/2008/07/31/i-took-it/</link>
		<comments>http://www.feike.biz/weblog/2008/07/31/i-took-it/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 09:40:59 +0000</pubDate>
		<dc:creator>Rainer</dc:creator>
		
		<category><![CDATA[business]]></category>

		<category><![CDATA[Internet]]></category>

		<category><![CDATA[i-business]]></category>

		<guid isPermaLink="false">http://www.feike.biz/weblog/2008/07/31/i-took-it/</guid>
		<description><![CDATA[
Other famous people who already took the survey:
Eloy took it
Myles took it
Thomas took it
Ashwin took it
Adam took it
And you should, too!
]]></description>
			<content:encoded><![CDATA[<p><a href="http://alistapart.com/articles/survey2008"><img src="http://aneventapart.com/webdesignsurvey/templates/ala/images/i-took-the-2008-survey.gif"></a></p>
<p><em>Other famous people who already took the survey</em>:<br />
<a href="http://blog.eloyz.com/the-survey-2008-a-list-apart">Eloy took it</a><br />
<a href="http://myles.eftos.id.au/blog/2008/07/30/i-took-the-a-list-apart-survey/">Myles took it</a><br />
<a href="http://orangescale.net/log/2008/07/a-list-apart-survey-2008/">Thomas took it</a><br />
<a href="http://hackerashwin.blogspot.com/2008/07/list-apart-survey-2008.html">Ashwin took it</a><br />
<a href="http://archgfx.net/blog/2008/asides/a-list-apart-the-survey-2008-i-took-it">Adam took it</a></p>
<p><strong>And you should, too!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.feike.biz/weblog/2008/07/31/i-took-it/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Proposal for a CSS ancestor grouping syntax</title>
		<link>http://www.feike.biz/weblog/2008/07/23/proposal-for-a-css-ancestor-grouping-syntax/</link>
		<comments>http://www.feike.biz/weblog/2008/07/23/proposal-for-a-css-ancestor-grouping-syntax/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 07:25:34 +0000</pubDate>
		<dc:creator>Rainer</dc:creator>
		
		<category><![CDATA[programming]]></category>

		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.feike.biz/weblog/2008/07/23/proposal-for-a-css-ancestor-grouping-syntax/</guid>
		<description><![CDATA[What we need
I am missing a syntax to apply a common ancestor to a set of rules. As far as I know, there&#8217;s no such concept in CSS selector syntax. 
With the increasing usage of CSS definitions to style HTML markup, CSS files grow bigger and bigger. With this it&#8217;s getting more and more complex [...]]]></description>
			<content:encoded><![CDATA[<h3>What we need</h3>
<p>I am missing a syntax to apply a common ancestor to a set of rules. As far as I know, there&#8217;s no such concept in CSS selector syntax. </p>
<p>With the increasing usage of CSS definitions to style HTML markup, CSS files grow bigger and bigger. With this it&#8217;s getting more and more complex to find rules that apply the a special element and/or to have one&#8217;s code structured properly. When ie8 will support the more sophisticated locators like adjacent siblings or attribute selectors the locators and files likely will continue to grow.<br />
Also CSS gets used in situations where you import content from several providers to display it inside one &#8220;mashup&#8221; site or (like in iGoogle or the Vista desktop) as &#8220;snippet&#8221;. In this situation one needs to separate the CSS rules of the different providers from each other and from the mashup&#8217;s home style.</p>
<p>Basically I want to grab remote content then wrap the grabbed sourcecode into a i.e. a &lt;div id=&#8221;#GG&#8221;&gt; and integrate that code together with it&#8217;s CSS in my site (or fridge display or whatever).</p>
<h3>How it could work</h3>
<p>The solution to this would be a ancestor grouping concept, i.e.:</p>
<p><code>ancestor "#GG" {<br />
  a { color: black; }<br />
  p { margin-top: 3em; }<br />
}</code></p>
<p>This syntax should then expand to:</p>
<p><code>#GG  a { color: black; }<br />
#GG  p { margin-top: 3em; }</code></p>
<p>Far more added value would be provided by the following construction:<br />
<code>ancestor "#GG" { @import(google.com/styles.css); }</code></p>
<p>or inside the HTML markup:<br />
<code>&lt;link rel="StyleSheet" href="http://google.com/style.css" type="text/css" ancestor="#GG"&gt;</code></p>
<p>I think the goal should be clear now. <a href="http://www.feike.biz/weblog/2008/07/23/proposal-for-a-css-ancestor-grouping-syntax/#more-67" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.feike.biz/weblog/2008/07/23/proposal-for-a-css-ancestor-grouping-syntax/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CSS Selectors - Short Reference</title>
		<link>http://www.feike.biz/weblog/2008/06/23/css-selectors-short-reference/</link>
		<comments>http://www.feike.biz/weblog/2008/06/23/css-selectors-short-reference/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 13:10:15 +0000</pubDate>
		<dc:creator>Rainer</dc:creator>
		
		<category><![CDATA[programming]]></category>

		<category><![CDATA[Internet]]></category>

		<category><![CDATA[CMS]]></category>

		<guid isPermaLink="false">http://www.feike.biz/weblog/2008/06/23/css-selectors-short-reference/</guid>
		<description><![CDATA[This is a &#8220;short as possible&#8221; reference for CSS selector syntax. Intended audience should be very familiar with XHTML, DOM and CSS Styling.
Basics
Type selector
  Select all HTML elements of a special type.
  Example: em {font-weight: bold;}
Class selector
  Select all elements with a given class.
  Example: .classname {font-weight: normal;}
ID selector
  Select [...]]]></description>
			<content:encoded><![CDATA[<p>This is a &#8220;short as possible&#8221; reference for CSS selector syntax. Intended audience should be very familiar with XHTML, DOM and CSS Styling.</p>
<h3>Basics</h3>
<p><strong>Type selector</strong><br />
<em>  Select all HTML elements of a special type.</em><br />
<code>  Example: em {font-weight: bold;}</code><br />
<strong>Class selector</strong><br />
<em>  Select all elements with a given class.</em><br />
<code>  Example: .classname {font-weight: normal;}</code><br />
<strong>ID selector</strong><br />
<em>  Select the one element with a given id.</em><br />
<code>  Example: #idname {font-weight: normal;}</code><br />
<strong>Concatenator</strong><br />
<em>  Select HTML elements of special type only with given class/id.</em><br />
<code>  Example: em.classname, em#idname {font-weight: normal;}</code><br />
<strong>Universal selector</strong><br />
<em>  Select all elements.</em><br />
<code>  Example: * {padding:0;}</code><br />
<strong>Descendent selector</strong><br />
  <em>Select all elements that are lower down in the DOM tree (descendants).</em><br />
<code>  Example: p em {font-weight: normal;}<br />
  -> Applies to all em's within p's.</code></p>
<h3>Advanced</h3>
<p><strong>Child selector</strong><br />
  <em>Select all elements that are children in the DOM tree (direct descendant).</em><br />
<code>  Example: p > em {font-weight: normal;}<br />
  -> Applies to all em's directly within p's, not supported by ie6 and below.</code></p>
<p><strong>Adjacent sibling selectors </strong><br />
  <em>Select all elements that are on the same DOM level in the same DOM subtree</em><br />
<code>  Example: h3 + p {font-size:80%;}<br />
  -> Applies to all p's that "belong" to a h3</code><br />
 <a href="http://www.feike.biz/weblog/2008/06/23/css-selectors-short-reference/#more-66" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.feike.biz/weblog/2008/06/23/css-selectors-short-reference/feed/</wfw:commentRss>
		</item>
		<item>
		<title>UI Brainbreaker</title>
		<link>http://www.feike.biz/weblog/2008/06/11/ui-brainbreaker/</link>
		<comments>http://www.feike.biz/weblog/2008/06/11/ui-brainbreaker/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 12:26:06 +0000</pubDate>
		<dc:creator>Rainer</dc:creator>
		
		<category><![CDATA[business]]></category>

		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Admin]]></category>

		<guid isPermaLink="false">http://www.feike.biz/weblog/2008/06/11/ui-brainbreaker/</guid>
		<description><![CDATA[Since a while I am thinking about a better possibility to present a link-matrix to my users. Currently it&#8217;s just a matrix where I have the topics as lines and a geographic location for each topic as column.
Now, if the user searches for &#8220;gewerblicher Rechtsschutz München&#8221; she navigates to the line &#8220;gewerblicher Rechtsschutz&#8221; and to [...]]]></description>
			<content:encoded><![CDATA[<p>Since a while I am thinking about a better possibility to present a <a href="http://www.anwalt-seiten.de/Rechtsanwalt-Fachanwalt.html">link-matrix</a> to my users. Currently it&#8217;s just a matrix where I have the topics as lines and a geographic location for each topic as column.<br />
Now, if the user searches for &#8220;<a href="http://www.anwalt-seiten.de/Fachanwalt_Rechtsschutz_8.html">gewerblicher Rechtsschutz München</a>&#8221; she navigates to the line &#8220;gewerblicher Rechtsschutz&#8221; and to the column 8 (what is the region code for München).</p>
<p>There are several drawbacks:</p>
<p>(1) Too many links on this one page<br />
(2) Too much visual impression confuses the user<br />
(3) Too hard to point to the small href links inside the matrix&#8217;s cells</p>
<p>Now - I am thinking about a solution with jQuery&#8230;<br />
Anyone any idea? Thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feike.biz/weblog/2008/06/11/ui-brainbreaker/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Favorite current project</title>
		<link>http://www.feike.biz/weblog/2008/06/04/favorite-current-project/</link>
		<comments>http://www.feike.biz/weblog/2008/06/04/favorite-current-project/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 19:39:40 +0000</pubDate>
		<dc:creator>Rainer</dc:creator>
		
		<category><![CDATA[programming]]></category>

		<category><![CDATA[business]]></category>

		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Admin]]></category>

		<guid isPermaLink="false">http://www.feike.biz/weblog/2008/06/04/favorite-current-project/</guid>
		<description><![CDATA[My favorite current project is opentimesheet.org.
It&#8217;s about efficient online time registration and recording.
Last 14 years as freelancer I was using a horrible number of time capturing systems. Actually I am using about three at a time now. There are so many of them, and most companies invent their own - starting with excel - ending [...]]]></description>
			<content:encoded><![CDATA[<p>My favorite current project is <a href="http://opentimesheet.org/">opentimesheet.org</a>.<br />
It&#8217;s about efficient online time registration and recording.<br />
Last 14 years as freelancer I was using a horrible number of time capturing systems. Actually I am using about three at a time now. There are so many of them, and most companies invent their own - starting with excel - ending up in a very special time consumptive &#8220;solution&#8221;.</p>
<p><strong>Break the rule - join the new open source project!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.feike.biz/weblog/2008/06/04/favorite-current-project/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Back in the dawn of the internet</title>
		<link>http://www.feike.biz/weblog/2008/05/20/back-in-the-dawn-of-the-internet/</link>
		<comments>http://www.feike.biz/weblog/2008/05/20/back-in-the-dawn-of-the-internet/#comments</comments>
		<pubDate>Tue, 20 May 2008 13:36:04 +0000</pubDate>
		<dc:creator>Rainer</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Admin]]></category>

		<guid isPermaLink="false">http://www.feike.biz/weblog/2008/05/20/back-in-the-dawn-of-the-internet/</guid>
		<description><![CDATA[When I googled my name today, I found really interesting posts that are 12 years old. Thanks to google for awakening those sweet memories.
It&#8217;s about FFT transformations and I found it in Google Groups.
For those of you who are not grandfathers&#8230; before www got popular, we were communicating via usenet - groups  
Man, 12 [...]]]></description>
			<content:encoded><![CDATA[<p>When I googled my name today, I found really interesting posts that are <strong>12 years old</strong>. Thanks to google for awakening those sweet memories.</p>
<p>It&#8217;s about FFT transformations and <a href="http://groups.google.com/group/comp.dsp/tree/browse_frm/month/1996-03/2b0320a8aee0178e?rnum=131&#038;_done=%2Fgroup%2Fcomp.dsp%2Fbrowse_frm%2Fmonth%2F1996-03%3F#doc_a2fc0d627e100250">I found it in Google Groups</a>.</p>
<p>For those of you who are not grandfathers&#8230; before www got popular, we were communicating via usenet - groups <img src='http://www.feike.biz/weblog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><strong>Man, 12 years old &#8230; and still in the google cache!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.feike.biz/weblog/2008/05/20/back-in-the-dawn-of-the-internet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A German Disclaimer</title>
		<link>http://www.feike.biz/weblog/2008/05/02/a-german-disclaimer/</link>
		<comments>http://www.feike.biz/weblog/2008/05/02/a-german-disclaimer/#comments</comments>
		<pubDate>Fri, 02 May 2008 07:10:54 +0000</pubDate>
		<dc:creator>Rainer</dc:creator>
		
		<category><![CDATA[business]]></category>

		<category><![CDATA[Admin]]></category>

		<guid isPermaLink="false">http://www.feike.biz/weblog/2008/05/02/a-german-disclaimer/</guid>
		<description><![CDATA[When you run a website in Germany, you&#8217;re worried by laws. Some think you need a disclaimer or &#8220;Haftungsausschluss&#8221;, some think you don&#8217;t.
I found a lawer&#8217;s text that&#8217;s free for copying. So If you need, or need not, a disclaimer for your Page running in Germany (whatever &#8220;in&#8221; means) take this free disclaimer.
]]></description>
			<content:encoded><![CDATA[<p>When you run a website in Germany, you&#8217;re worried by laws. Some think you need a disclaimer or &#8220;Haftungsausschluss&#8221;, some think you don&#8217;t.<br />
I found a lawer&#8217;s text that&#8217;s free for copying. So If you need, or need not, a disclaimer for your Page running in Germany (whatever &#8220;in&#8221; means) take this free <a href="http://www.anwalt-seiten.de/muster-disclaimer.html">disclaimer</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feike.biz/weblog/2008/05/02/a-german-disclaimer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing Drupal 6 &#8220;upgrade save&#8221;</title>
		<link>http://www.feike.biz/weblog/2008/04/11/installing-drupal-6-upgrade-save/</link>
		<comments>http://www.feike.biz/weblog/2008/04/11/installing-drupal-6-upgrade-save/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 08:20:04 +0000</pubDate>
		<dc:creator>Rainer</dc:creator>
		
		<category><![CDATA[Admin]]></category>

		<category><![CDATA[CMS]]></category>

		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.feike.biz/weblog/2008/04/11/installing-drupal-6-upgrade-save/</guid>
		<description><![CDATA[Drupal is upgrading very frequently. Specially nowadays as V6 is out for a view weeks. If you don&#8217;t want to get mad upgrading Drupal every other day - here are some hints to follow when installing Drupal6.
Most important: If you have more sites running on one server: Do a multisite installation!
Assuming you have your Apache [...]]]></description>
			<content:encoded><![CDATA[<p>Drupal is upgrading very frequently. Specially nowadays as V6 is out for a view weeks. If you don&#8217;t want to get mad upgrading Drupal every other day - here are some hints to follow when installing Drupal6.</p>
<p><strong>Most important:</strong> If you have more sites running on one server: <strong>Do a multisite installation!</strong></p>
<p>Assuming you have your Apache root at /srv/htdocs do the following:</p>
<ol>
<li>Download Drupal 6.1 and tar xvzf it in /srv</li>
<li>Now you have /srv/drupal-6.1</li>
<li>Create a symlink like ln -s drupal-6.1 drupal</li>
<li>Now you also have /srv/drupal (pointing to /srv/drupal-6.1)</li>
<li>Now create a symlink for apache: I.e. ln -s /srv/drupal /srv/htdocs/drupalweb and let your virtual domain (or where ever Drupal will run) point to /srv/htdocs/drupalweb as httdocs root.</li>
</ol>
<p>Your ready with your update-prepared ionstallation.</p>
<p>When an upgrade to Drupal 6.2 appears (it did view days ago), do the following:</p>
<ul>
<li>mysqldump your drupal database (just for security and possible rollbacks)</li>
<li>copy cp -r -p /srv/drupal-6.1 /srv/drupal-6.2 the 6.1 to the new 6.2 installation (so you can rollback if necessary)</li>
<li>in /srv/drupal-6.2 preserve your sites directory by renaming it, i.e. mv sites sites_old </li>
<li>now, in /srv untar the 6.2 distribution tar xvzf drupal-6.2.tar.gz </li>
<li>remove the new sites dir and move back your preserved: rm -r sites, mv sites_old sites</li>
<li>now relink your master: rm /srv/drupal; ln -s drupal-6.2 drupal</li>
<li>and browse to update.php of your site.</li>
</ul>
<p>Keep in mind to check, if there&#8217;s something important new in settings.php&#8230;<br />
And with this kind of installation you are perfectly prepared for multisite! And for sure it doesn&#8217;t work with MS scrappy OS&#8217;s.</p>
<p>And have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feike.biz/weblog/2008/04/11/installing-drupal-6-upgrade-save/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Feeding &#8220;static&#8221; sites from Drupal nodes</title>
		<link>http://www.feike.biz/weblog/2008/02/26/feeding-static-sites-from-drupal-nodes/</link>
		<comments>http://www.feike.biz/weblog/2008/02/26/feeding-static-sites-from-drupal-nodes/#comments</comments>
		<pubDate>Tue, 26 Feb 2008 13:14:31 +0000</pubDate>
		<dc:creator>Rainer</dc:creator>
		
		<category><![CDATA[programming]]></category>

		<category><![CDATA[Internet]]></category>

		<category><![CDATA[CMS]]></category>

		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.feike.biz/weblog/2008/02/26/feeding-static-sites-from-drupal-nodes/</guid>
		<description><![CDATA[This is about how I manage to create content for domains without CMS from a Drupal enabled domain without any manual work.
On address www.immobilien-spot.de I am running a community for real estate agents. It&#8217;s primary focused on Immobilien in München (that&#8217;s German for real estate in Munich). 
Estate agents can become members, can show 10 [...]]]></description>
			<content:encoded><![CDATA[<p>This is about how I manage to create content for domains without CMS from a <a href="http://drupal.org">Drupal</a> enabled domain without any manual work.</p>
<p>On address www.immobilien-spot.de I am running a community for real estate agents. It&#8217;s primary focused on <a href="http://www.immobilien-spot.de">Immobilien in München</a> (that&#8217;s German for real estate in Munich). </p>
<p>Estate agents can become members, can show 10 of their best buildings and act like usual in communities (Blog, Forum, Contact&#8230;). Additionally the agents can book a special site to promote one of their offers, i.e. an office loft for rent. This office loft is shown in the offer list and also on a static site called officeloft.de (this is an example, I don&#8217;t own that domain). To feed the content of officeloft.de from the Drupal content on immobilien-spot.de, I&#8217;ve established a special node type called a &#8220;promotion&#8221;.</p>
<p>A promotion node consists of a node-ref (pointing to the estate offer node), an entry place (office-loft.de) and a booking period (March 2008). To render the promotion node completely different from all other nodes, I have installed the sections and pathauto modules for Drupal. With pathauto one can automatically create special paths for nodetypes, and with sections.module one can assign special page.tpl.php for this path. </p>
<p>What&#8217;s left is to have a nightly cronjob that copies the rendered promotion node to the special site&#8217;s http-root directory (what should be a subdirectory of the main domains http-root - else you have to struggle with your OS). And finally transpose all of the relative path&#8217;s inside the copy to be absolute.</p>
<p>Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feike.biz/weblog/2008/02/26/feeding-static-sites-from-drupal-nodes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SUN to buy MySQL AB</title>
		<link>http://www.feike.biz/weblog/2008/01/23/sun-to-buy-mysql-ab/</link>
		<comments>http://www.feike.biz/weblog/2008/01/23/sun-to-buy-mysql-ab/#comments</comments>
		<pubDate>Wed, 23 Jan 2008 07:40:58 +0000</pubDate>
		<dc:creator>Rainer</dc:creator>
		
		<category><![CDATA[business]]></category>

		<category><![CDATA[Internet]]></category>

		<category><![CDATA[i-business]]></category>

		<category><![CDATA[Admin]]></category>

		<guid isPermaLink="false">http://www.feike.biz/weblog/2008/01/23/sun-to-buy-mysql-ab/</guid>
		<description><![CDATA[As Mr. Schwartz, CEO of SUN Microsystems wrote here, SUN is going to acquire MySQL AB for about 1 Billion Dollars. 
What does this mean to Oracle, Sybase, DB2 and MSSQL Server?
It&#8217;s out of the question, that MySQL is the most used Database worldwide. The main reasons are, that MySQL runs with poor hardware, it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>As Mr. Schwartz, CEO of SUN Microsystems wrote <a href="http://blogs.sun.com/jonathan/entry/winds_of_change_are_blowing">here</a>, SUN is going to acquire MySQL AB for about 1 Billion Dollars. </p>
<p><strong>What does this mean to Oracle, Sybase, DB2 and MSSQL Server?</strong></p>
<p>It&#8217;s out of the question, that MySQL is the most used Database worldwide. The main reasons are, that MySQL runs with poor hardware, it&#8217;s easy to install, to administrate and to use. And it&#8217;s for free. When I look back at my jobs in the trading area of investment banks, I remember lot&#8217;s of Solaris/Sybase installations. Now, I foresee problems for Sybase here. When I look back at my jobs in the backoffice area of retail banking, I remember lot&#8217;s of Solaris/Oracle and AIX/DB2 installations. Will SUN MySQL be as reliable as Oracle or DB2 is? Then I foresee problems here as well.</p>
<p><strong>Why should one pay for Oracle or DB2 when MySQL comes from SUN and is for free?</strong></p>
<p>I am sure MSSQL will keep it&#8217;s place in the low-range small office area - just because of the MS certified staff that&#8217;s working here. But I foresee huge problems (<a href="http://www.readwriteweb.com/archives/sun_acquires_mysql.php">see here also</a>) for the big systems Oracle, Sybase and DB2.</p>
<p><strong>All the IT world is moving to open source !!!</strong></p>
<p>And that&#8217;s a good way</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feike.biz/weblog/2008/01/23/sun-to-buy-mysql-ab/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 1.142 seconds -->
