<?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>Jorge Bernal &#187; eBox</title>
	<atom:link href="http://www.jorgebernal.info/category/business/ebox/feed" rel="self" type="application/rss+xml" />
	<link>http://www.jorgebernal.info</link>
	<description></description>
	<lastBuildDate>Mon, 18 Jan 2010 15:33:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How we track outbound links with Google Analytics Events API</title>
		<link>http://www.jorgebernal.info/development/track-outbound-links-google-analytics-events-api</link>
		<comments>http://www.jorgebernal.info/development/track-outbound-links-google-analytics-events-api#comments</comments>
		<pubDate>Tue, 01 Dec 2009 18:12:30 +0000</pubDate>
		<dc:creator>Jorge Bernal</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[eBox]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[bounce]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.jorgebernal.info/?p=474</guid>
		<description><![CDATA[
Since the redesign of eBox platform, our bounce rate increased dramatically. After a short investigation, it made sense: our new website was just the homepage and news, and the rest of the content was on different domains (trac, eBox Technologies, &#8230;).
So our bounces were either real bounces, or people visiting our other sites (which I [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.jorgebernal.info/wp-content/uploads/2009/12/ebox.jpg" alt="eBox Platform homepage" title="eBox Platform homepage" width="700" height="200" class="alignnone size-full wp-image-480" /></p>
<p>Since the <a href="http://www.jorgebernal.info/business/ebox/redesigning-ebox-homepage">redesign of eBox platform</a>, our bounce rate increased dramatically. After a short investigation, it made sense: our new website was just the homepage and news, and the rest of the content was on different domains (<a href="http://trac.ebox-platform.com/">trac</a>, <a href="http://www.ebox-technologies.com/">eBox Technologies</a>, &#8230;).</p>
<p>So our bounces were either real bounces, or <strong>people visiting our other sites</strong> (which I wouldn&#8217;t count as bounces).</p>
<p>My solution: <strong>track outgoing links</strong>.</p>
<p>I searched for a solution and found <a href="http://think2loud.com/use-jquery-with-google-analytics-to-track-clicks-on-outgoing-links-from-your-site/">this article</a>, but it wasn&#8217;t exactly what I wanted.</p>
<p>It&#8217;s a good first approach, but tracking external links as pageviews makes the analytics reports more confusing. <a href="http://code.google.com/apis/analytics/docs/tracking/eventTrackerGuide.html">Events Tracking API</a> to the rescue! This API was conceived to track actions that don&#8217;t match a page view, like video plays and other application interactions.</p>
<p>So, with events we could track our exits separately, get the information we need, and get a more accurate Bounce rate.</p>
<p>The extra code:<br />
<script src="http://gist.github.com/246463.js"></script></p>
<p>The original article used <code>rel="external"</code> to mark the links to track. There is an easiest way: searching for absolute URLS in the <code>href</code> attribute. Also, I&#8217;m using the <strong>action</strong> parameter to differentiate between internal (our other websites) and external (facebook, twitter,&#8230;) links.</p>
<p>What we are tracking, and will be able to see on the Analytics reports is:</p>
<ul>
<li><strong>Category:</strong> Exits. Could have been called &#8216;outbound links&#8217;, or any other variation</li>
<li><strong>Action:</strong> external or internal</li>
<li><strong>Label:</strong> the destination URL</li>
<li><strong>Value:</strong> not using it. This could be useful for other kind of events, like <a href="http://code.google.com/apis/analytics/docs/tracking/eventTrackerGuide.html#Values">tracking video load times</a></li>
</ul>
<p><strong>Warning:</strong> your bounce rate will probably drop by tracking events. For us, it reflects our visits more accurately, but that might not be your case.</p>
<p>This is what google has to say on <a href="http://code.google.com/apis/analytics/docs/tracking/eventTrackerGuide.html#implementationConsiderations">bounce rate impact</a>: </p>
<blockquote><p>
In general, a &#8220;bounce&#8221; is described as a single-page visit to your site. In Analytics, a bounce is calculated specifically as a session that triggers only a single GIF request, such as when a user comes to a single page on your website and then exits without causing any other request to the Analytics server for that session. However, if you implement Event Tracking for your site, you might notice a change in bounce rate metrics for those pages where Event Tracking is present. This is because Event Tracking, like page tracking is classified as an interaction request.</p>
<p>For example, suppose you have a page with a video player where the bounce rate is historically high, and you have not implemented Event Tracking for the page. If you subsequently set up Event Tracking for the player, you might notice a decrease in the bounce rate for that page, because Analytics will record user interaction with the player and send that interaction to the server as an additional GIF request. Thus, even though the same percentage of visitors to the page might still exit without viewing any other page on your site, their interaction with the video player triggers Event Tracking calls, which disqualifies their visit as a bounce.</p>
<p><strong>In this way, &#8220;bounces&#8221; for your event-enabled pages means something slightly different: a single-page visit that includes no user interaction on tracked events.</strong></p></blockquote>
<h3  class="related_post_title">Related posts</h3><ul class="related_post"><li><a href="http://www.jorgebernal.info/business/ebox/redesigning-ebox-homepage" title="Redesigning eBox homepage">Redesigning eBox homepage</a></li><li><a href="http://www.jorgebernal.info/photography/discovr-flickr-experiment-wrong" title="Discovr: a flickr experiment gone wrong">Discovr: a flickr experiment gone wrong</a></li><li><a href="http://www.jorgebernal.info/business/ebox/ebox-technologies-website" title="eBox Technologies new website">eBox Technologies new website</a></li><li><a href="http://www.jorgebernal.info/business/ebox/local-global" title="Local vs. global">Local vs. global</a></li><li><a href="http://www.jorgebernal.info/business/ebox/planet-ebox-running" title="Planet eBox up and running">Planet eBox up and running</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jorgebernal.info/development/track-outbound-links-google-analytics-events-api/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Redesigning eBox homepage</title>
		<link>http://www.jorgebernal.info/business/ebox/redesigning-ebox-homepage</link>
		<comments>http://www.jorgebernal.info/business/ebox/redesigning-ebox-homepage#comments</comments>
		<pubDate>Fri, 27 Nov 2009 16:57:58 +0000</pubDate>
		<dc:creator>Jorge Bernal</dc:creator>
				<category><![CDATA[eBox]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[ebox platform]]></category>
		<category><![CDATA[redesign]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.jorgebernal.info/?p=463</guid>
		<description><![CDATA[
Redesign eBox Platform homepageView more documents from Jorge Bernal.

It&#8217;s been 3 weeks since we launched the new eBox Platform homepage, and I wanted to share the different steps through the redesign.
Do you like the new design?
Do you like any of the previous steps better?
Do you have any suggestions?
Related postsHow we track outbound links with Google [...]]]></description>
			<content:encoded><![CDATA[<div style="width:477px;text-align:left" id="__ss_2597686"><object style="margin:0px" width="477" height="510"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayerd.swf?doc=progression-091127105020-phpapp02&#038;rel=0&#038;stripped_title=redesign-ebox-platform-homepage-2597686" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayerd.swf?doc=progression-091127105020-phpapp02&#038;rel=0&#038;stripped_title=redesign-ebox-platform-homepage-2597686" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="477" height="510"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;padding-top:2px;margin-bottom:10px"><a href="http://www.slideshare.net/koke/redesign-ebox-platform-homepage-2597686" title="Redesign eBox Platform homepage">Redesign eBox Platform homepage</a><br/>View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">documents</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/koke">Jorge Bernal</a>.</div>
</div>
<p>It&#8217;s been 3 weeks since we <a href="http://twitter.com/eboxplatform/status/5475628078">launched</a> the new <a href="http://www.ebox-platform.com">eBox Platform</a> homepage, and I wanted to share the different steps through the redesign.</p>
<p>Do you like the new design?</p>
<p>Do you like any of the previous steps better?</p>
<p>Do you have any suggestions?</p>
<h3  class="related_post_title">Related posts</h3><ul class="related_post"><li><a href="http://www.jorgebernal.info/development/track-outbound-links-google-analytics-events-api" title="How we track outbound links with Google Analytics Events API">How we track outbound links with Google Analytics Events API</a></li><li><a href="http://www.jorgebernal.info/business/ebox/ebox-technologies-website" title="eBox Technologies new website">eBox Technologies new website</a></li><li><a href="http://www.jorgebernal.info/business/ebox/local-global" title="Local vs. global">Local vs. global</a></li><li><a href="http://www.jorgebernal.info/business/ebox/planet-ebox-running" title="Planet eBox up and running">Planet eBox up and running</a></li><li><a href="http://www.jorgebernal.info/business/innovate-09" title="Innovate 09 is over">Innovate 09 is over</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jorgebernal.info/business/ebox/redesigning-ebox-homepage/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t upgrade to wordpress 2.8</title>
		<link>http://www.jorgebernal.info/opensource/upgrade-wordpress-28</link>
		<comments>http://www.jorgebernal.info/opensource/upgrade-wordpress-28#comments</comments>
		<pubDate>Fri, 12 Jun 2009 15:04:34 +0000</pubDate>
		<dc:creator>Jorge Bernal</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[eBox]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.jorgebernal.info/?p=346</guid>
		<description><![CDATA[
At least not using automatic upgrade. This morning I did that and not only I lost our website, but also the trac, subersion and the forum. And it seems it&#8217;s not just me.
Related postsSick of getting your wordpress hacked? (contest below)You don&#8217;t pay much attention to your blog when&#8230;Introducing wordpress-scripts 0.1 (0.2 out)Does your company [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/koke/3144507370/"><img src="http://farm4.static.flickr.com/3084/3144507370_52098b43fb.jpg" /></a></p>
<p>At least not using automatic upgrade. This morning I did that and not only I lost <a href='http://ebox-platform.com/'>our website</a>, but also the trac, subersion and the forum. And it seems <a href="http://wordpress.org/search/upgrade+2.8+delete?forums=1">it&#8217;s not just me</a>.</p>
<h3  class="related_post_title">Related posts</h3><ul class="related_post"><li><a href="http://www.jorgebernal.info/opensource/sick-wordpress-hacked-contest" title="Sick of getting your wordpress hacked? (contest below)">Sick of getting your wordpress hacked? (contest below)</a></li><li><a href="http://www.jorgebernal.info/wtf/pay-attention-blog" title="You don&#8217;t pay much attention to your blog when&#8230;">You don&#8217;t pay much attention to your blog when&#8230;</a></li><li><a href="http://www.jorgebernal.info/opensource/introducing-wordpress-scripts-01" title="Introducing wordpress-scripts 0.1 (0.2 out)">Introducing wordpress-scripts 0.1 (0.2 out)</a></li><li><a href="http://www.jorgebernal.info/business/does-your-company-have-happiness-engineers" title="Does your company have Happiness Engineers?">Does your company have Happiness Engineers?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jorgebernal.info/opensource/upgrade-wordpress-28/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>eBox Technologies new website</title>
		<link>http://www.jorgebernal.info/business/ebox/ebox-technologies-website</link>
		<comments>http://www.jorgebernal.info/business/ebox/ebox-technologies-website#comments</comments>
		<pubDate>Tue, 02 Jun 2009 09:10:44 +0000</pubDate>
		<dc:creator>Jorge Bernal</dc:creator>
				<category><![CDATA[eBox]]></category>

		<guid isPermaLink="false">http://www.jorgebernal.info/?p=334</guid>
		<description><![CDATA[
Finally, after weeks of hard work, eBox Technologies has a new website. Much more focused on the product, services we offer and our partner network.


Related postsHow we track outbound links with Google Analytics Events APIRedesigning eBox homepageLocal vs. globalPlanet eBox up and runningInnovate 09 is over]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ebox-technologies.com/"><img class="alignnone size-full wp-image-339" title="eBox Home" src="http://www.jorgebernal.info/wp-content/uploads/2009/06/eboxhome.png" alt="eBox Home" width="452" height="601" /></a></p>
<p>Finally, after weeks of hard work, <a href="http://www.ebox-technologies.com/">eBox Technologies</a> has a new website. Much more focused on the <a href="http://www.ebox-technologies.com/products/">product</a>, <a href="http://www.ebox-technologies.com/services/">services</a> we offer and our <a href="http://www.ebox-technologies.com/partners/">partner</a> network.</p>
<p><a href="http://www.ebox-technologies.com/products/gateway/"><img class="alignnone size-full wp-image-338" title="eBox Gateway" src="http://www.jorgebernal.info/wp-content/uploads/2009/06/eboxgw.png" alt="eBox Gateway" width="452" height="609" /></a></p>
<p><a href="http://www.ebox-technologies.com/services/support/"><img class="alignnone size-full wp-image-340" title="eBox Support" src="http://www.jorgebernal.info/wp-content/uploads/2009/06/eboxsupport.png" alt="eBox Support" width="452" height="618" /></a></p>
<h3  class="related_post_title">Related posts</h3><ul class="related_post"><li><a href="http://www.jorgebernal.info/development/track-outbound-links-google-analytics-events-api" title="How we track outbound links with Google Analytics Events API">How we track outbound links with Google Analytics Events API</a></li><li><a href="http://www.jorgebernal.info/business/ebox/redesigning-ebox-homepage" title="Redesigning eBox homepage">Redesigning eBox homepage</a></li><li><a href="http://www.jorgebernal.info/business/ebox/local-global" title="Local vs. global">Local vs. global</a></li><li><a href="http://www.jorgebernal.info/business/ebox/planet-ebox-running" title="Planet eBox up and running">Planet eBox up and running</a></li><li><a href="http://www.jorgebernal.info/business/innovate-09" title="Innovate 09 is over">Innovate 09 is over</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jorgebernal.info/business/ebox/ebox-technologies-website/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Warpbecue</title>
		<link>http://www.jorgebernal.info/photography/warpbecue</link>
		<comments>http://www.jorgebernal.info/photography/warpbecue#comments</comments>
		<pubDate>Sun, 17 May 2009 16:49:24 +0000</pubDate>
		<dc:creator>Jorge Bernal</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[eBox]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[warp]]></category>

		<guid isPermaLink="false">http://www.jorgebernal.info/?p=322</guid>
		<description><![CDATA[
Yesterday, the ebox and warp staff went to Alagon (25km from Zaragoza) to have a very nice BBQ, or should I say WBQ?

We had delicious food, drinks, music, a swimming pool and weather couldn&#8217;t be more perfect. 



And also we ended up with a new guest in our home

View warpbacoa on flickr:
[flickrset id="72157618335689578" thumbnail="square"] 
Related [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/koke/3539192606/" title="The fire" target="_blank" class="flickr-image alignnone"><img src="http://farm3.static.flickr.com/2178/3539192606_4725103e0d.jpg" alt="The fire" class=""  /></a></p>
<p>Yesterday, the <a href="http://ebox-platform.com/">ebox</a> and <a href="http://warp.es/">warp</a> staff went to Alagon (25km from Zaragoza) to have a very nice BBQ, or should I say WBQ?</p>
<p><a href="http://www.flickr.com/photos/koke/3538386055/" title="Yummy" target="_blank" class="flickr-image alignnone"><img src="http://farm4.static.flickr.com/3362/3538386055_a86e4ed448.jpg" alt="Yummy" class=""  /></a></p>
<p>We had delicious food, drinks, music, a swimming pool and weather couldn&#8217;t be more perfect. </p>
<p><a href="http://www.flickr.com/photos/koke/3539206036/" title="Music" target="_blank" class="flickr-image alignnone"><img src="http://farm4.static.flickr.com/3588/3539206036_5bae7de30a.jpg" alt="Music" class=""  /></a></p>
<p><a href="http://www.flickr.com/photos/koke/3538398695/" title="Volley" target="_blank" class="flickr-image alignnone"><img src="http://farm3.static.flickr.com/2176/3538398695_e9527ba9e8.jpg" alt="Volley" class=""  /></a></p>
<p><a href="http://www.flickr.com/photos/koke/3538390765/" title="Sky" target="_blank" class="flickr-image alignnone"><img src="http://farm4.static.flickr.com/3316/3538390765_4cba991c38.jpg" alt="Sky" class=""  /></a></p>
<p>And also we ended up with a new guest in our home</p>
<p><a href="http://www.flickr.com/photos/koke/3538614853/" title="Birra" target="_blank" class="flickr-image alignnone"><img src="http://farm4.static.flickr.com/3612/3538614853_1877cd1de8.jpg" alt="Birra" class=""  /></a></p>
<p>View <a href="http://www.flickr.com/photos/koke/sets/72157618335689578/">warpbacoa on flickr</a>:</p>
<p>[flickrset id="72157618335689578" thumbnail="square"] </p>
<h3  class="related_post_title">Related posts</h3><ul class="related_post"><li><a href="http://www.jorgebernal.info/opensource/speaking-mysql-conference" title="Speaking at the MySQL conference">Speaking at the MySQL conference</a></li><li><a href="http://www.jorgebernal.info/technology/introducing-warptalks" title="Introducing WarpTalks">Introducing WarpTalks</a></li><li><a href="http://www.jorgebernal.info/personal/york" title="New York">New York</a></li><li><a href="http://www.jorgebernal.info/business/does-your-company-have-happiness-engineers" title="Does your company have Happiness Engineers?">Does your company have Happiness Engineers?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jorgebernal.info/photography/warpbecue/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Local vs. global</title>
		<link>http://www.jorgebernal.info/business/ebox/local-global</link>
		<comments>http://www.jorgebernal.info/business/ebox/local-global#comments</comments>
		<pubDate>Wed, 13 May 2009 12:23:28 +0000</pubDate>
		<dc:creator>Jorge Bernal</dc:creator>
				<category><![CDATA[eBox]]></category>
		<category><![CDATA[prize]]></category>

		<guid isPermaLink="false">http://www.jorgebernal.info/?p=319</guid>
		<description><![CDATA[
Yesterday, we received the second prize for the IDEA contest. And I wonder, how can a company be amongst the 10 most promising startups in Europe, and finish second on a local contest?
Related postsHow we track outbound links with Google Analytics Events APIRedesigning eBox homepageeBox Technologies new websitePlanet eBox up and runningInnovate 09 is over]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/koke/3528323152/"><img src="http://farm3.static.flickr.com/2368/3528323152_914604ae49.jpg" /></a></p>
<p>Yesterday, <a href="http://ebox-platform.com/">we</a> received the second prize for the IDEA contest. And I wonder, how can a company be amongst the <a href="http://www.innovate-events.com/2009/05/announcing-innovateeuropes-master-class-finalists/">10 most promising startups in Europe</a>, and finish second on a local contest?</p>
<h3  class="related_post_title">Related posts</h3><ul class="related_post"><li><a href="http://www.jorgebernal.info/development/track-outbound-links-google-analytics-events-api" title="How we track outbound links with Google Analytics Events API">How we track outbound links with Google Analytics Events API</a></li><li><a href="http://www.jorgebernal.info/business/ebox/redesigning-ebox-homepage" title="Redesigning eBox homepage">Redesigning eBox homepage</a></li><li><a href="http://www.jorgebernal.info/business/ebox/ebox-technologies-website" title="eBox Technologies new website">eBox Technologies new website</a></li><li><a href="http://www.jorgebernal.info/business/ebox/planet-ebox-running" title="Planet eBox up and running">Planet eBox up and running</a></li><li><a href="http://www.jorgebernal.info/business/innovate-09" title="Innovate 09 is over">Innovate 09 is over</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jorgebernal.info/business/ebox/local-global/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Planet eBox up and running</title>
		<link>http://www.jorgebernal.info/business/ebox/planet-ebox-running</link>
		<comments>http://www.jorgebernal.info/business/ebox/planet-ebox-running#comments</comments>
		<pubDate>Sat, 09 May 2009 01:29:20 +0000</pubDate>
		<dc:creator>Jorge Bernal</dc:creator>
				<category><![CDATA[eBox]]></category>

		<guid isPermaLink="false">http://www.jorgebernal.info/?p=313</guid>
		<description><![CDATA[
Make sure to visit Planet eBox and subscribe.
Related postsHow we track outbound links with Google Analytics Events APIRedesigning eBox homepageeBox Technologies new websiteLocal vs. globalInnovate 09 is over]]></description>
			<content:encoded><![CDATA[<p><a href="http://planet.ebox-platform.com/"><img src="http://www.jorgebernal.info/wp-content/uploads/2009/05/planet-ebox.png" alt="planet-ebox" title="planet-ebox" width="500" height="649" class="alignnone size-full wp-image-316" /></a></p>
<p>Make sure to visit <a href="http://planet.ebox-platform.com/">Planet eBox</a> and <a href="http://feeds.ebox-platform.com/PlanetEbox">subscribe</a>.</p>
<h3  class="related_post_title">Related posts</h3><ul class="related_post"><li><a href="http://www.jorgebernal.info/development/track-outbound-links-google-analytics-events-api" title="How we track outbound links with Google Analytics Events API">How we track outbound links with Google Analytics Events API</a></li><li><a href="http://www.jorgebernal.info/business/ebox/redesigning-ebox-homepage" title="Redesigning eBox homepage">Redesigning eBox homepage</a></li><li><a href="http://www.jorgebernal.info/business/ebox/ebox-technologies-website" title="eBox Technologies new website">eBox Technologies new website</a></li><li><a href="http://www.jorgebernal.info/business/ebox/local-global" title="Local vs. global">Local vs. global</a></li><li><a href="http://www.jorgebernal.info/business/innovate-09" title="Innovate 09 is over">Innovate 09 is over</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jorgebernal.info/business/ebox/planet-ebox-running/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
