<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>80beans</title>
	
	<link>http://www.80beans.com</link>
	<description />
	<lastBuildDate>Sat, 03 Oct 2009 16:06:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/80beans" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Introducing WysiHat Engine</title>
		<link>http://feedproxy.google.com/~r/80beans/~3/aUPhgZikBUA/</link>
		<comments>http://www.80beans.com/2009/10/01/wysihat-engine/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 15:49:35 +0000</pubDate>
		<dc:creator>Jeff Kreeftmeijer</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://www.80beans.com/?p=235</guid>
		<description><![CDATA[Since we were tired of the ugliness and size of TinyMCE — our previous WYSIWYG solution —, we decided to see if we could find a good replacement.
Luckily 37signals released a WYSIWYG editor last year called WysiHat, the “eventually better open source WYSIWYG editor”, so we tried it out. It was simple, no fancy themes [...]]]></description>
			<content:encoded><![CDATA[<p>Since we were tired of the ugliness and size of TinyMCE — our previous WYSIWYG solution —, we decided to see if we could find a good replacement.</p>
<p>Luckily <a href="http://37signals.com">37signals</a> released a WYSIWYG editor last year called <a href="http://37signals.com/svn/posts/1330-introducing-wysihat-an-eventually-better-open-source-wysiwyg-editor">WysiHat</a>, the “eventually better open source WYSIWYG editor”, so we tried it out. It was simple, no fancy themes or color schemes, just the backend code.</p>
<p>After playing with it for a while, we found a lot of hidden and undocumented features like including images or adding unordered lists. We decided to <a href="http://github.com/80beans/wysihat">fork</a> the project to write some more examples.</p>
<p>WysiHat is a great project and has a lot of potential, but probably hasn&#8217;t got the attention it deserves for a while now. There are some missing features you&#8217;d expect from a WYSIWYG editor, but the general idea is very, <em>very</em> good.</p>
<p>Joshua Peek told us the project is on hold; “<em>We&#8217;re planning to revisit the wysiwyg stuff in early 2010. So you can expect me to jump back in then.</em>”, but we hope there will be more activity from the rest of the community before that.</p>
<h3>The Engine</h3>
<p>We built the standard stuff like image uploading and html editing using WysiHat for a project we&#8217;re working on and we thought others could use it so we built the “<a href="http://github.com/80beans/wysihat-engine">WysiHat Rails Engine</a>” and released it to the world.</p>
<p><span id="more-235"></span><br />
The goal for the engine was to quickly and easily be able to implement WysiHat editors in a project and doing so as pretty as possible. We extended the Rails Formbuilder to add the wysihat_editor form field. We added <a href="http://famspam.com/facebox">facebox</a> and some other javascript goodness and worked out an easy to use uploader. This means you could do something like this, which would give you a fully functional WYSIWYG editor:</p>
<pre>&lt;% form_for(@page) do |f| %&gt;
  &lt;%= f.error_messages %&gt;

  &lt;p&gt;
    &lt;%= f.label :content %&gt;&lt;br /&gt;
    &lt;%= f.wysihat_editor :content %&gt;
  &lt;/p&gt;
  &lt;p&gt;
    &lt;%= f.submit 'Create' %&gt;
  &lt;/p&gt;
&lt;% end %&gt;</pre>
<p>This will give you a full editor. The Engine also includes stylesheets and a bunch of icons so it looks good out of the box:</p>

<a href='http://www.80beans.com/2009/10/01/wysihat-engine/wysihat_01/' title='WysiHat Engine'><img width="150" height="150" src="http://www.80beans.com/wp-content/uploads/2009/10/wysihat_01-150x150.png" class="attachment-thumbnail" alt="WysiHat Engine creates a full-featured editor." title="WysiHat Engine" /></a>
<a href='http://www.80beans.com/2009/10/01/wysihat-engine/wysihat_02/' title='WysiHat'><img width="150" height="150" src="http://www.80beans.com/wp-content/uploads/2009/10/wysihat_02-150x150.png" class="attachment-thumbnail" alt="You can edit the HTML right out of the box." title="WysiHat" /></a>
<a href='http://www.80beans.com/2009/10/01/wysihat-engine/wysihat_03/' title='WysiHat'><img width="150" height="150" src="http://www.80beans.com/wp-content/uploads/2009/10/wysihat_03-150x150.png" class="attachment-thumbnail" alt="Uploading images and including them is super easy as well." title="WysiHat" /></a>

<p>There&#8217;s a <a href="http://wiki.github.com/80beans/wysihat-engine/installation">complete installation guide</a> and an <a href="http://wiki.github.com/80beans/wysihat-engine/examples">examples page</a> in the <a href="http://wiki.github.com/80beans/wysihat-engine">github project wiki</a> if you want to check it out.</p>
<p>Like WysiHat, this project is in a very early stage and like WysiHat, we would love you to help out and make this a great piece of software.</p>
<p>So if you have any issues, suggestions or ideas, don&#8217;t hesitate to <a href="http://github.com/80beans/wysihat-engine/issues">create an issue on github</a>, fork the project or contact us directly.</p>
<p><strong>UPDATE &#8211; October 3</strong></p>
<p>I got a lot of work done on the Engine yesterday. It’s a gem now and it’s hosted on <a rel="nofollow" href="http://gemcutter.org/gems/wysihat-engine">gemcutter</a>. The <a rel="nofollow" href="http://wiki.github.com/80beans/wysihat-engine/installation">installation guide</a> is updated, so that shouldn’t be a problem.</p>
<p>The ugly rake task is removed and I built a little generator, so all the stray folders in the root — like /public — are gone. I also removed the included plugins to add gem dependencies (<a rel="nofollow" href="http://github.com/thoughtbot/paperclip/">paperclip</a> and <a rel="nofollow" href="http://github.com/giraffesoft/resource_controller/">resource_controller</a>) and added the <a rel="nofollow" href="http://github.com/markcatley/responds_to_parent/">responds_to_parent</a> plugin installation to the generator, so you don’t have to worry about that. Installing the gem and running the generator is as simple as:</p>
<p><code>sudo gem install wysihat-engine</code></p>
<p>script/generate wysihat</p>
<p>While I was working on this, I realized the resource_controller gem is an unnecessary dependency. It will be removed as soon as possible to make place for a good ol’ controller. I think this will help users understand and use the gem better in their applications.</p>
<p>And let me say this one more time; have issues, ideas, suggestions or want to help out? Be sure to let us know!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.80beans.com/2009/10/01/wysihat-engine/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		<feedburner:origLink>http://www.80beans.com/2009/10/01/wysihat-engine/</feedburner:origLink></item>
		<item>
		<title>Two new Rails programmers</title>
		<link>http://feedproxy.google.com/~r/80beans/~3/CA6hY8Rxs_8/</link>
		<comments>http://www.80beans.com/2009/08/17/two-new-rails-programmers/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 11:25:32 +0000</pubDate>
		<dc:creator>Roy Tomeij</dc:creator>
				<category><![CDATA[News flash]]></category>

		<guid isPermaLink="false">http://www.80beans.com/?p=230</guid>
		<description><![CDATA[We searched and found two excellent Rails programmers (Robert &#38; Jeff) to join our team. Although we&#8217;re always open to meeting interesting people, we&#8217;re no longer actively searching for new talent.
Dear recruitment companies, you may stop calling us to offer your services (which are undoubtly worth 25% of an annual salary&#8230;). No, seriously. Stop.
]]></description>
			<content:encoded><![CDATA[<p>We searched and found two excellent Rails programmers (Robert &amp; Jeff) to join our <a href="http://www.80beans.com/team/">team</a>. Although we&#8217;re always open to meeting interesting people, we&#8217;re no longer actively searching for new talent.</p>
<p>Dear recruitment companies, you may stop calling us to offer your services (which are undoubtly worth 25% of an annual salary&#8230;). No, seriously. Stop.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.80beans.com/2009/08/17/two-new-rails-programmers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.80beans.com/2009/08/17/two-new-rails-programmers/</feedburner:origLink></item>
		<item>
		<title>Amsterdam.rb BarCamp</title>
		<link>http://feedproxy.google.com/~r/80beans/~3/nDZYcxzqJ_g/</link>
		<comments>http://www.80beans.com/2009/06/26/amsterdamrb-barcamp/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 18:55:30 +0000</pubDate>
		<dc:creator>Roy Tomeij</dc:creator>
				<category><![CDATA[News flash]]></category>

		<guid isPermaLink="false">http://www.80beans.com/?p=216</guid>
		<description><![CDATA[Next Tuesday, June 30, it&#8217;s time for Kings of Code again. Of course we will be attending, since there will be great speakers.
The Monday before, June 29, there are a bunch of side-events. We will be attending the Amsterdam.rb Ruby BarCamp, taking place at Escape (Rembrandtplein) from 12.30pm to 6pm. There&#8217;s no admission, also if [...]]]></description>
			<content:encoded><![CDATA[<p>Next Tuesday, June 30, it&#8217;s time for <a href="http://www.kingsofcode.nl/">Kings of Code</a> again. Of course we will be attending, since there will be great speakers.</p>
<p>The Monday before, June 29, there are a bunch of <a href="http://www.kingsofcode.nl/pages/side-events">side-events</a>. We will be attending the <a href="http://www.kingsofcode.nl/pages/side-events#rubybarcamp">Amsterdam.rb Ruby BarCamp</a>, taking place at Escape (Rembrandtplein) from 12.30pm to 6pm. There&#8217;s no admission, also if you&#8217;re not attending the conference, but you do need to register.</p>
<p>Since we know listening to all this cool Ruby chatter will make your thirsty, we&#8217;re the <strong>official Amsterdam.rb BarCamp drinks sponsor</strong>. The venue is sponsored by<br />
<a href="http://rock-n-code.com/">Rock &amp; Code</a> &amp; <a href="http://twitter.com/narnach">Wes Oldenbeuving</a> (thanks guys).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.80beans.com/2009/06/26/amsterdamrb-barcamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.80beans.com/2009/06/26/amsterdamrb-barcamp/</feedburner:origLink></item>
		<item>
		<title>Looking for Rails programmers</title>
		<link>http://feedproxy.google.com/~r/80beans/~3/Og799l7Rzuo/</link>
		<comments>http://www.80beans.com/2009/05/12/looking-for-rails-programmers/#comments</comments>
		<pubDate>Tue, 12 May 2009 15:51:43 +0000</pubDate>
		<dc:creator>Thijs Cadier</dc:creator>
				<category><![CDATA[News flash]]></category>

		<guid isPermaLink="false">http://www.80beans.com/?p=210</guid>
		<description><![CDATA[We&#8217;re looking for one or two great Ruby/Rails programmers on short notice. Please send us an e-mail if you love to write clean specced code and know how to get things done!
]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re looking for one or two great Ruby/Rails programmers on short notice. Please send us an <a href="mailto:info@80beans.com">e-mail</a> if you love to write clean specced code and know how to get things done!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.80beans.com/2009/05/12/looking-for-rails-programmers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.80beans.com/2009/05/12/looking-for-rails-programmers/</feedburner:origLink></item>
		<item>
		<title>The Next Web conference</title>
		<link>http://feedproxy.google.com/~r/80beans/~3/EXdPXHuyHzQ/</link>
		<comments>http://www.80beans.com/2009/04/13/the-next-web-conference/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 13:56:27 +0000</pubDate>
		<dc:creator>Roy Tomeij</dc:creator>
				<category><![CDATA[News flash]]></category>

		<guid isPermaLink="false">http://www.80beans.com/?p=203</guid>
		<description><![CDATA[ We will attend The Next Web conference on Thursday 16 &#38; Friday 17 April. We will be available by phone, but because of the limited amount of people at the office we do request you only to call for urgent matters.
Our start-up ConfNetwork is once again responsible for the The Next Web Conference Network.
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://2009.thenextweb.com/counter/?type=button&amp;purpose=going" border="0" alt="Join us @ The Next Web Conference 2009" width="125" height="125" /> We will attend <a href="http://2009.thenextweb.com/">The Next Web</a> conference on Thursday 16 &amp; Friday 17 April. We will be available by phone, but because of the limited amount of people at the office we do request you only to call for urgent matters.</p>
<p>Our start-up <a href="http://confnetwork.com/">ConfNetwork</a> is once again responsible for the <a href="http://thenextweb.confnetwork.com/events/2009/notifications">The Next Web Conference Network</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.80beans.com/2009/04/13/the-next-web-conference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.80beans.com/2009/04/13/the-next-web-conference/</feedburner:origLink></item>
		<item>
		<title>NUik.nl</title>
		<link>http://feedproxy.google.com/~r/80beans/~3/PlGU-ejtM9c/</link>
		<comments>http://www.80beans.com/2009/03/23/nuiknl/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 12:10:49 +0000</pubDate>
		<dc:creator>Roy Tomeij</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.80beans.com/?p=192</guid>
		<description><![CDATA[
NUik.nl just launched, the latest addition to the family of NU.nl websites. It&#8217;s an iGoogle-like application which displays content from the NU.nl network and some external content (more in the future). Users can create new pages and add widgets to them, which are often highly customizable. Widgets also work on iGoogle (click the &#8220;settings&#8221; icon [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-193 alignnone" title="nuik" src="http://www.80beans.com/wp-content/uploads/2009/03/nuik.jpg" alt="nuik" width="590" height="200" /></p>
<p><a href="http://www.nuik.nl/">NUik.nl</a> just launched, the latest addition to the family of <a href="http://www.nu.nl/">NU.nl</a> websites. It&#8217;s an <a href="http://www.igoogle.com/">iGoogle</a>-like application which displays content from the NU.nl network and some external content (more in the future). Users can create new pages and add widgets to them, which are often highly customizable. Widgets also work on iGoogle (click the &#8220;settings&#8221; icon to find out the URL for the gadget, as Google calls it)!</p>
<p>Widgets are built by several parties. We made the TV guide, NUjij and RSS widgets and gave extensive support to the other developing parties.</p>
<p><strong>Credits</strong><br />
Client: <a href="http://www.ilsemedia.nl/">ilse media</a><br />
End client: NU.nl<br />
We did: HTML, CSS, JavaScript &amp; PHP (the widgets are rendered by <a href="http://incubator.apache.org/shindig/">Shindig</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.80beans.com/2009/03/23/nuiknl/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.80beans.com/2009/03/23/nuiknl/</feedburner:origLink></item>
		<item>
		<title>DNews Fernsehen</title>
		<link>http://feedproxy.google.com/~r/80beans/~3/vo4n3VWzDXM/</link>
		<comments>http://www.80beans.com/2009/03/19/dnews-fernsehen/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 15:34:02 +0000</pubDate>
		<dc:creator>Roy Tomeij</dc:creator>
				<category><![CDATA[News flash]]></category>

		<guid isPermaLink="false">http://www.80beans.com/?p=180</guid>
		<description><![CDATA[Unfortunately we didn&#8217;t have the time to transform the Dutch TV-guide we built for NU.nl to a German version, but NU.nl did an excellent job themselves. The result is &#8220;DNews Fernsehen&#8220;, which uses &#8220;our&#8221; front-end (and probably back-end to a large extent too).
Joris &#38; the rest of the team, good luck with the German website!
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-181" style="border: medium none; margin: 0pt 20px 0 0pt;" title="dnews-fernsehen-1" src="http://www.80beans.com/wp-content/uploads/2009/03/dnews-fernsehen-1.jpg" alt="dnews-fernsehen-1" width="92" height="109" />Unfortunately we didn&#8217;t have the time to transform the <a href="http://www.nu.nl/tvgids/">Dutch TV-guide</a> we built for <a href="http://www.nu.nl/">NU.nl</a> to a German version, but NU.nl did an excellent job themselves. The result is &#8220;<a href="http://www.dnewsfernsehen.de/">DNews Fernsehen</a>&#8220;, which uses &#8220;our&#8221; front-end (and probably back-end to a large extent too).<br />
Joris &amp; the rest of the team, good luck with the German website!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.80beans.com/2009/03/19/dnews-fernsehen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.80beans.com/2009/03/19/dnews-fernsehen/</feedburner:origLink></item>
		<item>
		<title>Shiwi Online Shop</title>
		<link>http://feedproxy.google.com/~r/80beans/~3/KPbkTwPaH04/</link>
		<comments>http://www.80beans.com/2009/03/19/shiwi-online-shop/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 15:10:13 +0000</pubDate>
		<dc:creator>Thijs Cadier</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.80beans.com/?p=159</guid>
		<description><![CDATA[
We developed the new online shop for beachwear retailer Shiwi, as requested by SisterAct. It uses a custom front-end and the generic back-end we developed for shops like this (which is under on-going development). We used it for LaDress too.
To promote the website, Shiwi has sent a mailing to over 5,000,000 Dutch households.
Credits
Client: SisterAct
End client: [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-160" title="shiwi" src="http://www.80beans.com/wp-content/uploads/2009/03/shiwi.jpg" alt="shiwi" width="590" height="200" /></p>
<p>We developed the new online shop for beachwear retailer Shiwi, as requested by SisterAct. It uses a custom front-end and the generic back-end we developed for shops like this (which is under on-going development). We used it for <a href="/2009/03/09/ladress-online-shop/">LaDress</a> too.</p>
<p>To promote the website, Shiwi has sent a mailing to over 5,000,000 Dutch households.</p>
<p><strong>Credits</strong><br />
Client: <a href="http://www.sisteract.eu/">SisterAct<br />
</a>End client: <a href="http://www.shiwi.com">Shiwi</a><br />
We did: Ruby on Rails for front-end &amp; shop back-end</p>
]]></content:encoded>
			<wfw:commentRss>http://www.80beans.com/2009/03/19/shiwi-online-shop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.80beans.com/2009/03/19/shiwi-online-shop/</feedburner:origLink></item>
		<item>
		<title>On the Loose</title>
		<link>http://feedproxy.google.com/~r/80beans/~3/cGsW7DuaptU/</link>
		<comments>http://www.80beans.com/2009/03/19/on-the-loose/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 14:56:49 +0000</pubDate>
		<dc:creator>Roy Tomeij</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.80beans.com/?p=163</guid>
		<description><![CDATA[
For Creative Monkeys we did the technical development for On the Loose, a site to accompany a series of programs about the worlds #1 kite boarders. Since it&#8217;s a blog, we decided to use Wordpress and built a custom theme.
Credits
Client: Creative Monkeys
We did: Wordpress theme (HTML, CSS, JavaScript &#38; PHP)
]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-164" title="ontheloose" src="http://www.80beans.com/wp-content/uploads/2009/03/ontheloose.jpg" alt="ontheloose" width="590" height="200" /></p>
<p>For Creative Monkeys we did the technical development for <a href="http://www.ontheloose.tv/">On the Loose</a>, a site to accompany a series of programs about the worlds #1 kite boarders. Since it&#8217;s a blog, we decided to use Wordpress and built a custom theme.</p>
<p><strong>Credits</strong><br />
Client: <a href="http://www.creativemonkeys.nl/">Creative Monkeys</a><br />
We did: Wordpress theme (HTML, CSS, JavaScript &amp; PHP)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.80beans.com/2009/03/19/on-the-loose/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.80beans.com/2009/03/19/on-the-loose/</feedburner:origLink></item>
		<item>
		<title>Familie.nl</title>
		<link>http://feedproxy.google.com/~r/80beans/~3/A1ro5Gus43Y/</link>
		<comments>http://www.80beans.com/2009/03/17/familienl/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 16:19:28 +0000</pubDate>
		<dc:creator>Roy Tomeij</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.80beans.com/?p=167</guid>
		<description><![CDATA[
For ilse media we did the development of a totally new version of Familie.nl, a website to connect with your family. Share calendar events, photo&#8217;s and video&#8217;s and stories. Build and share your family tree and put events on your map and timeline.
In the near future, a lot of new features will be added.
Credits
Client: ilse [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-168" title="familie" src="http://www.80beans.com/wp-content/uploads/2009/03/familie.jpg" alt="familie" width="590" height="200" /></p>
<p>For ilse media we did the development of a totally new version of Familie.nl, a website to connect with your family. Share calendar events, photo&#8217;s and video&#8217;s and stories. Build and share your family tree and put events on your map and timeline.</p>
<p>In the near future, a lot of new features will be added.</p>
<p><strong>Credits</strong><br />
Client: <a href="http://www.ilsemedia.nl/">ilse media</a><br />
End client: <a href="http://www.familie.nl/">Familie.nl</a> (Schoolbank B.V.)<br />
We did: HTML, CSS, JavaScript &amp; PHP (the family tree component was not built by us)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.80beans.com/2009/03/17/familienl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.80beans.com/2009/03/17/familienl/</feedburner:origLink></item>
	</channel>
</rss>
