<?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>Reinventar &#187; Web</title>
	<atom:link href="http://reinventar.com/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://reinventar.com</link>
	<description></description>
	<lastBuildDate>Tue, 05 Apr 2011 13:25:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Install Imagemagick on Ubuntu with delegates</title>
		<link>http://reinventar.com/2011/04/05/install-imagemagick-on-ubuntu-with-delegates/</link>
		<comments>http://reinventar.com/2011/04/05/install-imagemagick-on-ubuntu-with-delegates/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 13:18:51 +0000</pubDate>
		<dc:creator>Pedro Sousa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[imagemagick]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://reinventar.com/?p=1083</guid>
		<description><![CDATA[Installing imagemagick on Ubuntu for use with your Rails application (if you user Paperclip for example) should be pretty easy using apt-get: sudo apt-get install libmagickwand-dev sudo apt-get install imagemagick librmagick-ruby1.8 librmagick-ruby-doc libfreetype6-dev xml-core -y so now it&#8217;s done. Unfortunately during one of my instalations, I ran into a problem where the delegate libraries for [...]]]></description>
			<content:encoded><![CDATA[<p>Installing imagemagick on Ubuntu for use with your Rails application (if you user Paperclip for example) should be pretty easy using apt-get:<br />
<span id="more-1083"></span></p>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> libmagickwand-dev<br />
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> imagemagick librmagick-ruby1.8 librmagick-ruby-doc libfreetype6-dev xml-core <span style="color: #660033;">-y</span></div></div>
<p>so now it&#8217;s done.<br />
Unfortunately during one of my instalations, I ran into a problem where the delegate libraries for jpg, png, etc where not being picked up. ex:</p>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">convert <span style="color: #660033;">-list</span> configure</div></div>
<p>The solution for this is to install Imagemagick by hand, ex:</p>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #7a0874; font-weight: bold;">source</span><br />
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #7a0874; font-weight: bold;">source</span><br />
<span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #c20cb9; font-weight: bold;">ftp</span>:<span style="color: #000000; font-weight: bold;">//</span>ftp.imagemagick.org<span style="color: #000000; font-weight: bold;">/</span>pub<span style="color: #000000; font-weight: bold;">/</span>ImageMagick<span style="color: #000000; font-weight: bold;">/</span>ImageMagick.tar.gz<br />
<span style="color: #c20cb9; font-weight: bold;">tar</span> xvfz ImageMagick.tar.gz<br />
<span style="color: #7a0874; font-weight: bold;">cd</span> ImageMagick-6.6.5-<span style="color: #000000;">8</span><br />
.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--disable-shared</span><br />
<span style="color: #c20cb9; font-weight: bold;">make</span><br />
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></div></div>
<p>and now you should be able to use the identify or the convert command successfully on your image files.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://reinventar.com/2011/03/04/install-imagemagick-on-centos-5-5/" rel="bookmark" class="crp_title">Install Imagemagick on Centos 5.5</a></li><li><a href="http://reinventar.com/2011/03/04/install-git-on-centos-5/" rel="bookmark" class="crp_title">Install GIT on CENTOS 5</a></li><li><a href="http://reinventar.com/2008/02/16/rmagick-on-mac-os-x-made-simple/" rel="bookmark" class="crp_title">RMagick on Mac OS X made simple</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://reinventar.com/2011/04/05/install-imagemagick-on-ubuntu-with-delegates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mechanical Pomodoro featured in Holland Herald</title>
		<link>http://reinventar.com/2010/11/09/mechanical-pomodoro-featured-in-holland-herald/</link>
		<comments>http://reinventar.com/2010/11/09/mechanical-pomodoro-featured-in-holland-herald/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 19:50:27 +0000</pubDate>
		<dc:creator>Pedro Sousa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Think Orange]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[magazine]]></category>
		<category><![CDATA[recognition]]></category>

		<guid isPermaLink="false">http://reinventar.com/?p=1040</guid>
		<description><![CDATA[Mechanical Pomodoro was featured in November's issue of Holland Herald - the Inflight Magazine of KLM.]]></description>
			<content:encoded><![CDATA[<p><a href="http://pomodoro.thinkorange.pt">Mechanical Pomodoro</a> was featured in November&#8217;s issue of <a href="http://holland-herald.com/">Holland Herald</a> &#8211; the Inflight Magazine of KLM.</p>
<p>Everyone at <a href="http://www.thinkorange.pt">Think Orange </a>is thrilled and honored to appear in such awesome magazine.</p>
<p style="text-align: center;"><a href="http://www.flickr.com/photos/psousa/5161606989/"><img onError="javascript: wp_404_images_fix = window.wp_404_images_fix || function(){}; wp_404_images_fix(this);"  class="aligncenter size-medium wp-image-1041" title="Mechanical Pomodoro Article in Holland Herald Magazine" src="http://reinventar.com/wp-content/uploads/2010/11/5161606989_5622c41065-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p style="text-align: center;"><a href="http://www.flickr.com/photos/psousa/5161606989/">Catch the full photo on Flickr.</a></p>
<p style="text-align: left;">Mechanical Pomodoro is an easy iPhone App developed by Think Orange that helps you implement the Pomodoro Technique (TM) for increasing productivity and improving your focus.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://reinventar.com/2010/10/29/halloween-sale-for-mechanical-pomodoro/" rel="bookmark" class="crp_title">Halloween Sale for Mechanical Pomodoro!</a></li><li><a href="http://reinventar.com/2010/11/17/mechanical-pomodoro-options-screen/" rel="bookmark" class="crp_title">Mechanical Pomodoro Options Screen</a></li><li><a href="http://reinventar.com/2010/10/27/mechanical-pomodoro-options-teaser/" rel="bookmark" class="crp_title">Mechanical Pomodoro Options Teaser</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://reinventar.com/2010/11/09/mechanical-pomodoro-featured-in-holland-herald/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why coworking?</title>
		<link>http://reinventar.com/2010/10/26/why-coworking/</link>
		<comments>http://reinventar.com/2010/10/26/why-coworking/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 18:14:08 +0000</pubDate>
		<dc:creator>Pedro Sousa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[coworking]]></category>
		<category><![CDATA[freelance]]></category>
		<category><![CDATA[startups]]></category>

		<guid isPermaLink="false">http://reinventar.com/?p=1017</guid>
		<description><![CDATA[It's no secret I moved Think Orange to a COWORKLISBOA about 7 months ago, so what's the balance and what made me choose a coworking space vs a full office?]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s no secret I moved <a href="http://www.thinkorange.pt">Think Orange </a>to a <a href="http://www.coworklisboa.pt">COWORKLISBOA</a> about 7 months ago, so what&#8217;s the balance and what made me choose a coworking space vs a full office?</p>
<p><img onError="javascript: wp_404_images_fix = window.wp_404_images_fix || function(){}; wp_404_images_fix(this);"  class="aligncenter size-medium wp-image-1020" title="coworking" src="http://reinventar.com/wp-content/uploads/2010/10/header16-300x105.jpg" alt="" width="300" height="105" /></p>
<p>Some of you might be a little uneasy about going to a coworking space for privacy issues or noise but I can assure you, it was one of the best decisions I&#8217;ve took.</p>
<p>Moving was first of all, an economic decision, we save alot of money by renting two desks and we don&#8217;t have to worry about spending time paying electricity, water, internet, cleaning, taxes and other legal stuff related to the working space. If there&#8217;s a leak in a pipe or some other trouble we don&#8217;t lose time taking care of it.<br />
We also have access to a bigger and nicer working environment which we couldn&#8217;t afford on our own.</p>
<p>Second of all, it&#8217;s a great opportunity to meet other professionals and companies, some of them similar to ours and others in completely different areas. This is big because it enables us to create&#8230; Wait for it&#8230; Synnergies.</p>
<p><em>&#8220;What kind of enterprise class bullshit are you shooting?&#8221;</em> is what most of you are thinking right now but really, making connections and talking to people lets you take better understanding of your products and company. Tell them what you&#8217;re doing. What&#8217;s your passion. What can you teach them.</p>
<p>And by sharing knowledge with other professionals you&#8217;re learning more and showing off your skills in the process. That makes it more likely for you to be referenced if someone is looking for a person with your talent.<br />
And if there&#8217;s other people with the same profession as you, that&#8217;s a good opportunity to learn from them or work together to reach a bigger client. You can virtually scale your company depending on the projects with your fellow coworkers.</p>
<p>More likely, a coworking space will have professionals with a variety of skills which you can offer to your customers, like for example: translation services or copywritting. So get to know who are the best and partner with them, once again, you can offer these based on the client and project.</p>
<p><img onError="javascript: wp_404_images_fix = window.wp_404_images_fix || function(){}; wp_404_images_fix(this);"  class="aligncenter size-medium wp-image-1022" title="coworkers" src="http://reinventar.com/wp-content/uploads/2010/10/header3-300x105.jpg" alt="" width="300" height="105" /></p>
<p>It&#8217;s more productive than staying at home and you get a perspective of what&#8217;s going on very different from being isolated. There&#8217;s people you can talk about your products, experiment them and get insight from diferent professionals.</p>
<p>It&#8217;s like being able to stare at the forest instead of being focused on the tree all the time.</p>
<p>Most coworking spaces have very diffent working environments, culture and rules but also have a trying period which you can use to get to know the place. Use it to see if it&#8217;s the right one for you.</p>
<p>I did and I don&#8217;t regret it.</p>
<p>So tell me about your experiences. Do you prefer working at home? Have you tried a coworking space? Comment below and share.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://reinventar.com/2010/10/11/coworklisboa-has-a-new-website/" rel="bookmark" class="crp_title">COWORKLISBOA has a new website</a></li><li><a href="http://reinventar.com/2010/02/06/first-week-at-cowork-lisboa/" rel="bookmark" class="crp_title">First week at COWORK Lisboa</a></li><li><a href="http://reinventar.com/2009/08/18/work-life/" rel="bookmark" class="crp_title">Work life</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://reinventar.com/2010/10/26/why-coworking/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>COWORKLISBOA has a new website</title>
		<link>http://reinventar.com/2010/10/11/coworklisboa-has-a-new-website/</link>
		<comments>http://reinventar.com/2010/10/11/coworklisboa-has-a-new-website/#comments</comments>
		<pubDate>Mon, 11 Oct 2010 10:51:27 +0000</pubDate>
		<dc:creator>Pedro Sousa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[coworking]]></category>
		<category><![CDATA[coworklisboa]]></category>

		<guid isPermaLink="false">http://reinventar.com/?p=929</guid>
		<description><![CDATA[Working habits have changed in the past decade. The internet, the miniaturization of computers, and a shift in mobility made us more independent. One example of that is the appearance of coworking spaces that enables independent professionals, companies and individuals to rent desks and work spaces in a common work place shared by all. Some [...]]]></description>
			<content:encoded><![CDATA[<p>Working habits have changed in the past decade. The internet,  the miniaturization of computers, and a shift in mobility made us more independent.<br />
One example of that is the appearance of coworking spaces that enables independent professionals, companies and individuals to rent desks and work spaces in a common work place shared by all.<br />
Some advantages include a working space with a fraction of price from a full office, possibility of synergies with coworkers from other areas and better working conditions compared with working at home.<br />
There are many around the world and Lisbon has some great ones with fantastic conditions and people.</p>
<p><a href="http://www.liberdade229.com">Liberdade229</a> is one of those examples, located on Avenida de Liberdade (one very central avenue of Lisbon), it&#8217;s home of several outstanding startups and features some very good conditions to work.</p>
<p><a href="http://www.coworklisboa.pt" target="_blank">COWORKLISBOA</a> is another one, located on the <a href="http://www.lxfactory.com" target="_blank">LX Factory </a>- a creative think-tank space &#8211; with dozens of amazing artistic companies, ateliers, design agencies and tech startups.<br />
If the location isn&#8217;t good reason enough, the space has fantastic working environment and features several types of desks available to rent.</p>
<p>I&#8217;ve moved my company to this amazing space 6 months ago and it was one of the best decisions i&#8217;ve ever made.<br />
I was very excited when asked to design the new website for <a href="http://www.coworklisboa.pt">COWORKLISBOA</a> and I&#8217;m very proud of the end result. The site is online and I think it clearly states the mood and fantastic environment.</p>
<p>If you&#8217;re around Lisbon be sure to drop a visit.</p>
<p><span style="font-size: 13px; font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; line-height: 19px;"><img onError="javascript: wp_404_images_fix = window.wp_404_images_fix || function(){}; wp_404_images_fix(this);"  class="alignnone size-full wp-image-931" title="COWORKLISBOA (20101011)-thumb" src="http://reinventar.com/wp-content/uploads/2010/10/COWORKLISBOA-20101011-thumb.jpg" alt="" width="256" height="342" /></span></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://reinventar.com/2010/10/26/why-coworking/" rel="bookmark" class="crp_title">Why coworking?</a></li><li><a href="http://reinventar.com/2010/02/06/first-week-at-cowork-lisboa/" rel="bookmark" class="crp_title">First week at COWORK Lisboa</a></li><li><a href="http://reinventar.com/2010/02/22/randomness-in-ads/" rel="bookmark" class="crp_title">Randomness in ads</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://reinventar.com/2010/10/11/coworklisboa-has-a-new-website/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SHiFT &#8211; The future of work</title>
		<link>http://reinventar.com/2010/05/28/shift-the-future-of-work/</link>
		<comments>http://reinventar.com/2010/05/28/shift-the-future-of-work/#comments</comments>
		<pubDate>Fri, 28 May 2010 09:13:40 +0000</pubDate>
		<dc:creator>Pedro Sousa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[shift2010]]></category>
		<category><![CDATA[shiftconf]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://reinventar.com/?p=842</guid>
		<description><![CDATA[Yesterday Betalab Lisbon held a discussion panel about the Future of Work. I did a quick presentation explaining the concept of the SHiFT movement, the power of networking and also the challenges envolved on organizing such a conference. The presentation is available on Slideshare: SHiFT Conference &#8211; The Future of Work View more presentations from [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday <a href="http://www.facebook.com/#!/pages/Lissabon-Portugal/betalab-lisboa/116305595061076?v=wall&amp;ajaxpipe=1&amp;__a=8">Betalab Lisbon</a> held a discussion panel about <a href="http://www.facebook.com/#!/event.php?eid=120471127986225">the Future of Work</a>.</p>
<p>I did a quick presentation explaining the concept of the SHiFT movement, the power of networking and also the challenges envolved on organizing such a conference.</p>
<p>The presentation is available on Slideshare:</p>
<div id="__ss_4328341" style="width: 425px;"><strong><a title="SHiFT Conference - The Future of Work" href="http://www.slideshare.net/psousa/the-future-of-work-sh">SHiFT Conference &#8211; The Future of Work</a></strong><object id="__sse4328341" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=chiadopanelshift-100527064349-phpapp01&amp;stripped_title=the-future-of-work-sh" /><param name="name" value="__sse4328341" /><param name="allowfullscreen" value="true" /><embed id="__sse4328341" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=chiadopanelshift-100527064349-phpapp01&amp;stripped_title=the-future-of-work-sh" name="__sse4328341" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/psousa">Pedro  Sousa</a>.</div>
</div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://reinventar.com/2009/10/07/web-2-0-at-ebsco-open-day/" rel="bookmark" class="crp_title">Web 2.0 at EBSCO Open Day</a></li><li><a href="http://reinventar.com/2009/06/05/impressive-videos-from-e3-2009/" rel="bookmark" class="crp_title">Impressive videos from E3 2009</a></li><li><a href="http://reinventar.com/2009/04/27/now-playing-professor-layton-and-the-curious-village-nds/" rel="bookmark" class="crp_title">Now playing &#8211; Professor Layton and the Curious Village [NDS]</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://reinventar.com/2010/05/28/shift-the-future-of-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t miss SHiFT on the 16th/17th April</title>
		<link>http://reinventar.com/2010/04/13/dont-miss-shift-on-the-16th-and-17th-april/</link>
		<comments>http://reinventar.com/2010/04/13/dont-miss-shift-on-the-16th-and-17th-april/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 12:11:13 +0000</pubDate>
		<dc:creator>Pedro Sousa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[shift]]></category>
		<category><![CDATA[shiftconf]]></category>

		<guid isPermaLink="false">http://reinventar.com/?p=839</guid>
		<description><![CDATA[I&#8217;ve been awfully quiet lately, I know. The last weeks have been overwhelming with work and I haven&#8217;t placed much time on this blog as a result of that. The good news is there&#8217;s some great projects lined up for the next months, I can&#8217;t say much about it now (it&#8217;s my nature, sorry) but [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been awfully quiet lately, I know. The last weeks have been overwhelming with work and I haven&#8217;t placed much time on this blog as a result of that.</p>
<p>The good news is there&#8217;s some great projects lined up for the next months, I can&#8217;t say much about it now (it&#8217;s my nature, sorry) but it&#8217;s going to be awesome.</p>
<p>In the mean time, <a href="http://2010.shift.pt/">SHiFT</a> is gearing up for the 16th/17th of April and it&#8217;s going to be a fantastic event. As you can see from the <a href="http://2010.shift.pt/page/schedule">schedule</a>, lot&#8217;s of interesting talks, international speakers and lot&#8217;s of room for ideas, inspiration, networking and food for your brain. Don&#8217;t miss it, really. <img onError="javascript: wp_404_images_fix = window.wp_404_images_fix || function(){}; wp_404_images_fix(this);"  src='http://reinventar.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>At <a href="http://www.thinkorange.pt">Think Orange</a> we&#8217;re are preparing something special for all the early birds to take home. Let&#8217;s hope it&#8217;s ready on time.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://reinventar.com/2010/02/06/first-week-at-cowork-lisboa/" rel="bookmark" class="crp_title">First week at COWORK Lisboa</a></li><li><a href="http://reinventar.com/2010/01/15/shift-2010-is-live/" rel="bookmark" class="crp_title">SHiFT 2010 is live</a></li><li><a href="http://reinventar.com/2006/10/01/shift-06/" rel="bookmark" class="crp_title">Shift conference 2006</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://reinventar.com/2010/04/13/dont-miss-shift-on-the-16th-and-17th-april/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

