<?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"
	>

<channel>
	<title>?WEB? &#187; Web Projects</title>
	<atom:link href="http://whatwebwhat.com/category/resume/portfolio/web-projects/feed/" rel="self" type="application/rss+xml" />
	<link>http://whatwebwhat.com</link>
	<description>WhatWebWhat / Marc Worrell / Freelance Pragmatic Innovation</description>
	<pubDate>Fri, 13 Nov 2009 18:34:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>Zotonic — A quick overview</title>
		<link>http://whatwebwhat.com/2009/07/01/zotonic-a-quick-overview/</link>
		<comments>http://whatwebwhat.com/2009/07/01/zotonic-a-quick-overview/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 22:44:49 +0000</pubDate>
		<dc:creator>Marc Worrell</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[Open Source]]></category>

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

		<category><![CDATA[Web Projects]]></category>

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

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

		<category><![CDATA[semantic web]]></category>

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

		<guid isPermaLink="false">http://whatwebwhat.com/?p=252</guid>
		<description><![CDATA[In an earlier installment I wrote about the reasons why we started building the content management system Zotonic using the programming language Erlang.  In this installment I will give a quick overview of the data model and the basic building blocks of Zotonic.
Modules, the basic building block
A Zotonic web site is made of different [...]]]></description>
			<content:encoded><![CDATA[<p>In an <a href="http://whatwebwhat.com/2009/06/16/zotonic-erlang-powered-cms/">earlier installment</a> I wrote about the reasons why we started building the <a href="http://zotonic.com/">content management system Zotonic</a> using the programming language Erlang.  In this installment I will give a quick overview of the data model and the basic building blocks of Zotonic.</p>
<h3 style="clear: none">Modules, the basic building block</h3>
<p>A Zotonic web site is made of different functional parts:</p>
<ul>
<li>Controllers, in fact Webmachine resources.</li>
<li>Templates, all what you see. Templates can include other templates.</li>
<li>Screen components, <em>scomps</em>, those are templates with their own little controller.</li>
<li>Actions, everything that you can do with buttons, forms, jQuery effects etc.</li>
<li>Validators, used to check submitted input elements.</li>
<li>Css, Javascript, static images.  Those are all put in <em>lib</em> directories.</li>
<li>Dispatch rules. They map a request url to the correct controller.</li>
<li>And a bunch of supporting Erlang code to make it all work.</li>
</ul>
<p>A module contains one or more of the above items.  All templates, actions, validations, css, javascript, dispatch rules and scomps are contained in modules.  Modules have a priority and can overrule components of modules with lower priority.</p>
<p>Modules are directories with at least one Erlang module implementing a <em>gen_server</em> that manages the module.  Subdirectories in the module contain all the templates, Webmachine resources, dispatch rules, actions etc.</p>
<p>Modules communicate with each other using notifications.  Modules can be activated or deactivated using the admin interface (which is implemented using multiple modules).</p>
<h3>Data Model</h3>
<p>The data model is inspired by semantic web triple stores. But then adapted to make it work with a relational database and usual CMS interfaces and methods.  </p>
<p>All (ok, most) data in Zotonic is a resource.  Resources are connected with edges, creating a directed graph of information.  Every edge has also a predicate.  The predicate defines the meaning of the edge.  For example <em>author</em>, as in the author of an article.</p>
<p><img src="http://whatwebwhat.com/wp-content/uploads/2009/07/zophrenic-article-image-person-300x175.png" alt="" title="Zophrenic - article with some objects" width="300" height="175" style="float: none" /></p>
<p>For example, a news article is a resource.  The image of the news article is another resource, connected to the article with an edge, and so is the author of the article, the place the article is happening etc.</p>
<p>You could say that Zotonic has only two tables.  A resource table and an edge table.</p>
<p>Resources are typed using a hierarchical category system.  Some predefined resource categories are: text, news, image, video, sound, person, group, predicate, category and other.</p>
<h4>A Data Resource</h4>
<p>A resource has some fixed fields and can have any additional fields.  The fixed fields are:</p>
<ul>
<li>Id, an unique integer.</li>
<li>Title.</li>
<li>Slug. Used to make understandable uris</li>
<li>Introduction, a short abstract used in lists.</li>
<li>Body, the textual body of a resource.  A body contains HTML.</li>
<li>Unique name, used by the system to find resources by name instead of id.</li>
<li>Featured flag, to show things at important places on your site.</li>
<li>Published flag.</li>
<li>Publication period.  From when till when a resource is published.</li>
<li>Uri. The originating uri of the resource when it is imported from another site.</li>
<li>Authoritative flag.  Defines if the resource is imported or created locally.</li>
<li>Category, defines what the resource represents.  For example a person, article, event, image or video.</li>
<li>Group. Editors work together in groups, all content belonging to a group can be edited by editors in that group.</li>
<li>Visibility level.  Defines if the resource is viewable by the group, community or the world.</li>
</ul>
<p>All textual fields (except name and uri) can be multilingual.  Any resource can have multiple extra data fields.  Think of a date range, name or address.</p>
<p>In the next article I will show a bit of a template.</p>
]]></content:encoded>
			<wfw:commentRss>http://whatwebwhat.com/2009/07/01/zotonic-a-quick-overview/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Open-CI — The Technology</title>
		<link>http://whatwebwhat.com/2008/10/11/open-ci-the-technology/</link>
		<comments>http://whatwebwhat.com/2008/10/11/open-ci-the-technology/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 17:56:07 +0000</pubDate>
		<dc:creator>Marc Worrell</dc:creator>
		
		<category><![CDATA[Protocols]]></category>

		<category><![CDATA[Web Projects]]></category>

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

		<category><![CDATA[open-ci]]></category>

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

		<guid isPermaLink="false">http://whatwebwhat.com/?p=76</guid>
		<description><![CDATA[We are proposing a range of existing technologies to enable the federation of social networks. Some are quite new, some are well established. Here I give a short overview of the technologies and how to work together in creating a personal network.
We are not the only ones interested in integrating our content. So far, we&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>We are proposing a range of existing technologies to enable the federation of social networks. Some are quite new, some are well established. Here I give a short overview of the technologies and how to work together in creating a personal network.</p>
<p>We are not the only ones interested in integrating our content. So far, we&#8217;ve started looking at various possibilities- for users and servers signing on to (federated) social networks, for publishing, aggregating, exchanging and subscription to content, and for better ways to describe content and meta-content on the social networks.</p>
<h3>Authenticating People: OpenID</h3>
<p>To avoid having to create a separate login and password for each social network, we have been integrating the decentralized log-in system provided by OpenID for user authentication.</p>
<h3>Servers Communicating With Other Servers: OAuth</h3>
<p>Once we have users signed into one social network, we want to allow them to move their data from one network to another. For this we are looking at the open protocol OAuth, which will standardize server to server communication, i.e. the passing of authentication tokens through APIs. This will help make our server-side communication more robust and streamlined.</p>
<h3>Representing Information: Atom + RDF</h3>
<p>After authenticating, but before we can move content from one place to another, we also need a way to define our content. We&#8217;re starting to use RDF as a standard formatting method for our content. We see users and their contacts as another form of content, and are using FOAF to describe their networks. Other forms of content, such as events or projects, allow other standard formatting techniques permissible in RDF- such as DOAF, SOAF and MicroFormats.</p>
<h3>Finding Information In The Network: OpenSearch</h3>
<p>Since our implementation of RDF will be done in XML, it could be pretty easy to search through the various pages&#8217; content and meta-content. To do this, we&#8217;re looking into OpenSearch, which should standardize the presentation of information as well as allow auto-discovery, for instance of things like OpenIDs. We&#8217;re still looking into ways to keep our website scalable while using OpenSearch.</p>
<h3>Staying Up To Date With Changes: XMPP Publish &#038; Subscribe</h3>
<p>Once we have our content properly labeled, we can use standards like Atom1.0 to exchange parts of our content. Specifically, we can use Atom to format newsfeeds and other time-sensitive content, and then use XMPP to announce it. By using XMPP instead of HTTP, we can have persistant connections which will allow the networks to propagate changes as fast as possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://whatwebwhat.com/2008/10/11/open-ci-the-technology/feed/</wfw:commentRss>
		</item>
		<item>
		<title>anyMeta — A Semantic CMS</title>
		<link>http://whatwebwhat.com/2008/10/11/anymeta/</link>
		<comments>http://whatwebwhat.com/2008/10/11/anymeta/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 17:22:42 +0000</pubDate>
		<dc:creator>Marc Worrell</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[Web Projects]]></category>

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

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

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

		<category><![CDATA[open-ci]]></category>

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

		<category><![CDATA[semantic web]]></category>

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

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

		<guid isPermaLink="false">http://whatwebwhat.com/?p=66</guid>
		<description><![CDATA[anyMeta is a community management system that offers a sustainable information structure for internet projects. anyMeta is powering over 40 different web sites.
I was the principal architect and software engineer of anyMeta.  In four major revisions it grew from a small library to full featured content management system with over 90 different modules.  [...]]]></description>
			<content:encoded><![CDATA[<p>anyMeta is a community management system that offers a sustainable information structure for internet projects. anyMeta is powering over 40 different web sites.</p>
<p>I was the principal architect and software engineer of anyMeta.  In four major revisions it grew from a small library to full featured content management system with over 90 different modules.  It is also the first CMS that actively shares information between different web sites using push updates and cross site editorial protocols.</p>
<p>The system allows visitors to actively participate on the website, while the resulting information automatically appears in the right place, within a relevant context. This makes anyMeta extremely suitable for social networks, knowledge management, collaborations, and story telling.</p>
<h3>Semantic</h3>
<p>As a semantic network anyMeta uses meta data, which means the system is ahead of the current internet developments. This meta data is used to let information automatically appear in a consistent and clear structure, within a relevant context. This will save editors a lot of time. It also helps and stimulates visitors to navigate the website, because the associations between different kinds of information are directly shown.</p>
<h3>Social</h3>
<p>There are many options for visitors to actively participate on anyMeta websites. They can register as a user and create a personal profile. Administrators can grant users several rights to certain parts of the website. This allows users to add all kinds of information to the web site themselves.</p>
<h3>Flexible</h3>
<p>The system allow anyone with an internet connection to easily update and maintain the website. Despite the automatic structuring, editors are not totally dependent on the system and its users. Information can also be ordered in a custom way. Besides that, editors can actively manipulate the use of meta data, by offering a set of predetermined keywords. This makes anyMeta very flexible, because the automatic structuring can be supported with an editorial signature.</p>
<h3>Open-CI</h3>
<p>Especially interesting about anyMeta is the option to exchange information with other web sites. With the use of open standards, the system is able to share information with other systems, without losing its own identity. So the system is not only capable of creating relevant connections within one network, but also between multiple related web sites.</p>
<h3>Sustainable</h3>
<p>Web sites based on anyMeta can handle large numbers of visitors at once. Pages and information load fast, and editors can publish new information directly on the website. The powerful search functionality and automatic structuring help managing large amounts of information. Because of its semantic structure, it is easy to add new meta data to the system when changes to the website are necessary.</p>
]]></content:encoded>
			<wfw:commentRss>http://whatwebwhat.com/2008/10/11/anymeta/feed/</wfw:commentRss>
		</item>
		<item>
		<title>FRS – Multimedia Database</title>
		<link>http://whatwebwhat.com/2008/10/11/frs-multimedia-database/</link>
		<comments>http://whatwebwhat.com/2008/10/11/frs-multimedia-database/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 17:06:02 +0000</pubDate>
		<dc:creator>Marc Worrell</dc:creator>
		
		<category><![CDATA[Other Projects]]></category>

		<category><![CDATA[Web Projects]]></category>

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

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

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

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

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

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

		<guid isPermaLink="false">http://whatwebwhat.com/?p=58</guid>
		<description><![CDATA[FRS multimedia databases can store, manage and publish almost any type and quantity of multimedia data, including movies, images, brochures, or office documents.
The FRS image editorial and archiving solutions made by BSL Computer Consultancy have now been used for almost ten years by Dutch newspaper publishers, PCM Uitgevers. Other customers include the NIOD which stores [...]]]></description>
			<content:encoded><![CDATA[<p>FRS multimedia databases can store, manage and publish almost any type and quantity of multimedia data, including movies, images, brochures, or office documents.</p>
<p>The FRS image editorial and archiving solutions made by <a href="http://www.brightside.nl/">BSL Computer Consultancy</a> have now been used for almost ten years by Dutch newspaper publishers, PCM Uitgevers. Other customers include the NIOD which stores more than 100.000 photos from World War II in a publicly accessible FRS system.</p>
<p>The FRS system uses:</p>
<ul>
<li>Oracle or Sybase as database</li>
<li>Verity for the full text indexing</li>
<li>Cross platform client applications</li>
<li>Fully automated input and output stations</li>
<li>EXIF, IPTC extraction and indexing</li>
<li>Non destructive image editing</li>
<li>Web based interface</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://whatwebwhat.com/2008/10/11/frs-multimedia-database/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Batavia Stad Extranet</title>
		<link>http://whatwebwhat.com/2008/10/11/batavia-stad-extranet/</link>
		<comments>http://whatwebwhat.com/2008/10/11/batavia-stad-extranet/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 15:50:03 +0000</pubDate>
		<dc:creator>Marc Worrell</dc:creator>
		
		<category><![CDATA[Web Projects]]></category>

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

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

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

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

		<guid isPermaLink="false">http://whatwebwhat.com/?p=43</guid>
		<description><![CDATA[Batavia Stad is a factory outlet in Lelystad.   We made the extranet site and the first internet site. The Internet site was used to educate about the, then new, concept of a factory outlet.  The extranet is used by the shops and the management to exchange information, record visitor numbers and sales. [...]]]></description>
			<content:encoded><![CDATA[<p>Batavia Stad is a factory outlet in Lelystad.   We made the extranet site and the first internet site. The Internet site was used to educate about the, then new, concept of a factory outlet.  The extranet is used by the shops and the management to exchange information, record visitor numbers and sales.  Shop keepers can check their performance against the average performance of all shops.</p>
]]></content:encoded>
			<wfw:commentRss>http://whatwebwhat.com/2008/10/11/batavia-stad-extranet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Geheugen van Oost</title>
		<link>http://whatwebwhat.com/2008/10/11/geheugen-van-oost/</link>
		<comments>http://whatwebwhat.com/2008/10/11/geheugen-van-oost/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 15:41:05 +0000</pubDate>
		<dc:creator>Marc Worrell</dc:creator>
		
		<category><![CDATA[Web Projects]]></category>

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

		<guid isPermaLink="false">http://whatwebwhat.com/?p=41</guid>
		<description><![CDATA[The Memory of East Amsterdam is a storysite developed by Mediamatic. It contains a diverse database of personal stories and memories of inhabitants of District East. Stories not only about special events but also descriptions on the everyday life of ordinary people. All told, written down and kept actual by proud residents themselves.
In story telling [...]]]></description>
			<content:encoded><![CDATA[<p>The Memory of East Amsterdam is a storysite developed by Mediamatic. It contains a diverse database of personal stories and memories of inhabitants of District East. Stories not only about special events but also descriptions on the everyday life of ordinary people. All told, written down and kept actual by proud residents themselves.</p>
<p>In story telling one story easily triggers one&#8217;s memory. Associations connect stories. That&#8217;s exactly how the website functions, readers flow from one story to another.</p>
<p>By offering residents a common past the website helps communication between residents. It improves social cohesion and prevents from social isolation. In 2003 the website won a price for the best digital social project. The website has been a source of inspiration for several other story websites.</p>
<p>In March 2008 the Amsterdam Historic Museum, the owner of the website, announced that over a thousand stories were on line. &#8220;The website has become a meeting point for the neighbourhood&#8221; said a spokes person in the daily Parool.</p>
<p><strong>Client</strong><br />
Amsterdam Historical Museum</p>
]]></content:encoded>
			<wfw:commentRss>http://whatwebwhat.com/2008/10/11/geheugen-van-oost/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Zwarts en Jansma Architects</title>
		<link>http://whatwebwhat.com/2008/10/11/zwarts-en-jansma-architects/</link>
		<comments>http://whatwebwhat.com/2008/10/11/zwarts-en-jansma-architects/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 15:37:08 +0000</pubDate>
		<dc:creator>Marc Worrell</dc:creator>
		
		<category><![CDATA[Web Projects]]></category>

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

		<guid isPermaLink="false">http://whatwebwhat.com/?p=39</guid>
		<description><![CDATA[Een portfolio website in de huisstijl, die eenvoudig door het bureau zelf te onderhouden is. Op de website kun je via de normale manier naar projecten en hun geografische ligging zoeken, maar je kunt er ook via het aanklikken van GPS-coördinaten achter komen.
In 2008 is de site aangepast en is per project ook het ontwerpteam [...]]]></description>
			<content:encoded><![CDATA[<p>Een portfolio website in de huisstijl, die eenvoudig door het bureau zelf te onderhouden is. Op de website kun je via de normale manier naar projecten en hun geografische ligging zoeken, maar je kunt er ook via het aanklikken van GPS-coördinaten achter komen.</p>
<p>In 2008 is de site aangepast en is per project ook het ontwerpteam zichtbaar. De site is interactiever geworden, bezoekers die zich registreren kunnen reageren op projecten.</p>
<p>Directeur Rein Jansma over de site:<br />
“Met het onze website kunnen we onszelf goed presenteren. De keuze voor anyMeta is gemaakt vanwege de grote flexibiliteit en de uitgebreide functionele mogelijkheden. We kunnen zelf, met behulp van eenvoudige invulschermen de site beheren. Het leuke aan de site vind ik dat de site makkelijk up-to-date te houden is, en dat de gebruiker op locatie kan zoeken, kan bekijken wie aan een project heeft meegewerkt, en er op kan reageren.”</p>
<p><strong>Client</strong><br />
Zwarts en Jansma</p>
]]></content:encoded>
			<wfw:commentRss>http://whatwebwhat.com/2008/10/11/zwarts-en-jansma-architects/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SKOR – Foundation Art and Public Space</title>
		<link>http://whatwebwhat.com/2008/10/11/skor/</link>
		<comments>http://whatwebwhat.com/2008/10/11/skor/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 15:33:38 +0000</pubDate>
		<dc:creator>Marc Worrell</dc:creator>
		
		<category><![CDATA[Web Projects]]></category>

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

		<guid isPermaLink="false">http://whatwebwhat.com/?p=36</guid>
		<description><![CDATA[SKOR (Foundation Art and Public Space) develops art projects in relation to public space by supervising content and providing financial support. In collaboration with the webdesigners of Mannschaft Mediamatic build a website for SKOR that uses images to stimulate curiosity and associative use.
The site publishes an agenda with news on exhibitions, workshops and excursions of [...]]]></description>
			<content:encoded><![CDATA[<p>SKOR (Foundation Art and Public Space) develops art projects in relation to public space by supervising content and providing financial support. In collaboration with the webdesigners of Mannschaft Mediamatic build a website for SKOR that uses images to stimulate curiosity and associative use.</p>
<p>The site publishes an agenda with news on exhibitions, workshops and excursions of SKOR and other art &#038; public space related organisations. An online photo archive and a project database are elements of the site.</p>
<p><strong>Design</strong><br />
<a href="http://www.mannschaft.org/">Mannschaft, Rob Meerman</a></p>
<p><strong>Client</strong><br />
SKOR, Foundation Art and Public Space</p>
]]></content:encoded>
			<wfw:commentRss>http://whatwebwhat.com/2008/10/11/skor/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Creative Cities Amsterdam</title>
		<link>http://whatwebwhat.com/2008/10/11/creative-cities-amsterdam/</link>
		<comments>http://whatwebwhat.com/2008/10/11/creative-cities-amsterdam/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 15:30:00 +0000</pubDate>
		<dc:creator>Marc Worrell</dc:creator>
		
		<category><![CDATA[Web Projects]]></category>

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

		<category><![CDATA[open-ci]]></category>

		<guid isPermaLink="false">http://whatwebwhat.com/?p=34</guid>
		<description><![CDATA[Creatieve Cities Amsterdam Area is opgericht om de creatieve industrie in zeven steden te stimuleren en te versterken. CCAA biedt ondersteuning aan zowel startende, bestaande als groeiende ondernemers.
Mediamatic Lab werkt in het kader van het Open CI verder aan een pilot (in 2008) gericht op de uitwisseling tussen de websites van 6 partner organisaties. Alleen [...]]]></description>
			<content:encoded><![CDATA[<p>Creatieve Cities Amsterdam Area is opgericht om de creatieve industrie in zeven steden te stimuleren en te versterken. CCAA biedt ondersteuning aan zowel startende, bestaande als groeiende ondernemers.</p>
<p>Mediamatic Lab werkt in het kader van het Open CI verder aan een pilot (in 2008) gericht op de uitwisseling tussen de websites van 6 partner organisaties. Alleen zo kan een levend en up-to-date overzicht van de creatieve industrie in de regio duurzaam worden ontwikkeld.</p>
<p><strong>Client</strong><br />
Programmabureau Creatieve Cities Amsterdam Area</p>
]]></content:encoded>
			<wfw:commentRss>http://whatwebwhat.com/2008/10/11/creative-cities-amsterdam/feed/</wfw:commentRss>
		</item>
		<item>
		<title>BiD, Business in Development Network</title>
		<link>http://whatwebwhat.com/2008/10/11/bid-business-in-development-network/</link>
		<comments>http://whatwebwhat.com/2008/10/11/bid-business-in-development-network/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 15:27:03 +0000</pubDate>
		<dc:creator>Marc Worrell</dc:creator>
		
		<category><![CDATA[Web Projects]]></category>

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

		<guid isPermaLink="false">http://whatwebwhat.com/?p=32</guid>
		<description><![CDATA[The Business in Development (BiD) Network is an on-line community for entrepreneurship and development in developing countries. It&#8217;s aim is to boost entrepreneurship in developing countries, to make high potential business plans visible, to link finance and expertise to business opportunities and to engage specialists, professionals and investors.
Mediamatic designed the BiD website including the Bid [...]]]></description>
			<content:encoded><![CDATA[<p>The Business in Development (BiD) Network is an on-line community for entrepreneurship and development in developing countries. It&#8217;s aim is to boost entrepreneurship in developing countries, to make high potential business plans visible, to link finance and expertise to business opportunities and to engage specialists, professionals and investors.</p>
<p>Mediamatic designed the BiD website including the Bid Challenge. This annual international Business Plan competition has over fifteen hundred participants who submit a business plan. We developed an application to enable screeners and members of the Jury to assess entries to the Bid Challenge online.</p>
<p>The BiD Network was initiated by the Business in Development (BiD) programme of the NCDO; the Netherlands Committee for Sustainable Development. The BiD Network is now part of the BiD Network Foundation.</p>
<p><strong>Client</strong><br />
NCDO, BiD Network Foundation</p>
]]></content:encoded>
			<wfw:commentRss>http://whatwebwhat.com/2008/10/11/bid-business-in-development-network/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

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

