<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>blog or not blog?</title>
	<atom:link href="http://robertrv.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://robertrv.wordpress.com</link>
	<description>mind the bridge!</description>
	<lastBuildDate>Thu, 06 Oct 2011 19:13:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='robertrv.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>blog or not blog?</title>
		<link>http://robertrv.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://robertrv.wordpress.com/osd.xml" title="blog or not blog?" />
	<atom:link rel='hub' href='http://robertrv.wordpress.com/?pushpress=hub'/>
		<item>
		<title>manage https redirects in tomcat inside a proxy/firewall</title>
		<link>http://robertrv.wordpress.com/2011/09/01/tomcat-valve-http-header-proxy/</link>
		<comments>http://robertrv.wordpress.com/2011/09/01/tomcat-valve-http-header-proxy/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 21:13:12 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[elb]]></category>
		<category><![CDATA[jboss]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[valve]]></category>

		<guid isPermaLink="false">http://robertrv.wordpress.com/?p=130</guid>
		<description><![CDATA[explanation about how to configure tomcat Valve to be inside a firewall/proxy where you don't need http anymore<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=130&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We have had a problem with a proxy and some secure connections throw apache-jboss, more precisely ELB from Amazon Web Service (Elastic Load Balancer).</p>
<p>Our scenario was previously just an apache sending requests to Jboss, and there Jboss application was configured with a security-constraint so some http requests are redirected to the user to be accessible just via https, and the user some times just ask for http and other for https. Something like:</p>
<p style="text-align:center;"><a href="http://robertrv.files.wordpress.com/2011/09/jboss-apache2.jpg" target="_blank"><img class="aligncenter size-medium wp-image-151" title="jboss-apache" src="http://robertrv.files.wordpress.com/2011/09/jboss-apache2.jpg?w=300&#038;h=295" alt="" width="300" height="295" /></a></p>
<p><span id="more-130"></span></p>
<p>As you can there are some important steps:</p>
<p>2 &amp; 3.- When the request arrives to jboss the security-constraint intercepts the request and return a 302 response to the user to access properly with an https request instead of plan http.</p>
<h3>The problem</h3>
<p>But after having this service working we have the change explained, a new element comes to the architecture : the proxy !</p>
<p>This proxy is configured to handle the SSL certificates, which is a good decision to have just one point with SSL (less money), the rest of the infrastructure does not have to work with SSL (less CPU) and also in the case of AWS without the possibility to have multiple ip&#8217;s per server is a way to avoid having too much servers (less money and less headaches &#8230; I hope !). [1]</p>
<p>But this lead to the new situation where all the traffic after proxy is plain traffic:</p>
<p><a href="http://robertrv.files.wordpress.com/2011/09/jboss-apache-elb1.jpg" target="_blank"><img class="size-medium wp-image-150 alignleft" title="jboss-apache-elb" src="http://robertrv.files.wordpress.com/2011/09/jboss-apache-elb1.jpg?w=298&#038;h=299" alt="" width="298" height="299" /></a></p>
<p>As you can see here we have the problem at point 9, where the user makes a proper request (https) but the proxy is just sending the wrong plain request again (http).</p>
<h3></h3>
<h3></h3>
<h3></h3>
<h3></h3>
<h3></h3>
<h3></h3>
<h3>The solution</h3>
<p>Most of the proxies, in our case ELB also[2], supports X-Forwarded-Proto http header. So we can take this header to know whether the user is really making a secure or plain request. But in order to use this header inside our J2EE app without any extra change we can use a Valve [3]. We finally find that there is an official Valve to manage exactly this situation (and some others) which name is <em>RemoteIpValve</em>. [4]</p>
<p><a href="http://robertrv.files.wordpress.com/2011/09/solution-elb1.jpg" target="_blank"><img class="size-medium wp-image-152 alignright" title="solution-elb" src="http://robertrv.files.wordpress.com/2011/09/solution-elb1.jpg?w=160&#038;h=300" alt="" width="160" height="300" /></a>To use it you have to change your server.xml in Jboss (normally located at JBOSS_HOME/server/default/deploy/jbossweb.sar/) adding this new valve:</p>
<pre>&lt;Valve
  className="org.apache.catalina.connector.RemoteIpValve"
  remoteIPHeader="X-Forwarded-For"
  remoteIPProxiesHeader="X-Forwarded-By"
  protocolHeader="X-Forwarded-Proto"
  /&gt;</pre>
<p>Some versions of Tomcat already install this Valve by default, because the original project is integrated in, but some of them does not. In our case is not installed, so just drop the corresponding jars (see project page [4]) in the jboss library folder.</p>
<p>At this point the important points are:</p>
<p>8.- The user send an https request and proxy translate it to http but adding the mentioned header</p>
<p>10.- The Valve translate the protocol used inside the request to transform again to https and the server still work as before.</p>
<p>It&#8217;s a bit convoluted, but no big changes are needed. And that&#8217;s it !</p>
<p>NOTE: For any reason, during the testing we have found the attribute redirectPort in the AJP connector of tomcat is just ignored, in not just ignored when is set is always using the default port value: 8443. But when we remove this attribute is just getting the standard 443. Don&#8217;t know why but is really strange, anyone has any suggestion here ?</p>
<p>[1] You can see the way to configure multiple SSL certificates on this <a title="Multiple SSL served by one ELB" href="http://elwoodicious.com/2009/12/23/using-elb-to-serve-multiple-domains-over-ssl-on-ec2-for-giggles/" target="_blank">post</a>.</p>
<p>[2] <a href="http://aws.typepad.com/aws/2010/10/keeping-customers-happy-another-new-elastic-load-balancer-feature.html">Announcement</a> of some new headers supports in ELB by Amazon team.</p>
<p>[3] Explanation of tomcat (the Jboss embedded web server) and its Valves we can have a look to this <a href="http://ivanator.wordpress.com/tag/tomcat/">tutorial</a>.</p>
<p>[4] Original <a href="http://code.google.com/p/xebia-france/wiki/RemoteIpValve">project page</a> for the valve.</p>
<br /> Tagged: <a href='http://robertrv.wordpress.com/tag/aws/'>aws</a>, <a href='http://robertrv.wordpress.com/tag/elb/'>elb</a>, <a href='http://robertrv.wordpress.com/tag/jboss/'>jboss</a>, <a href='http://robertrv.wordpress.com/tag/sysadmin/'>sysadmin</a>, <a href='http://robertrv.wordpress.com/tag/valve/'>valve</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertrv.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertrv.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertrv.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertrv.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robertrv.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robertrv.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robertrv.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robertrv.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertrv.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertrv.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertrv.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertrv.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertrv.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertrv.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=130&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robertrv.wordpress.com/2011/09/01/tomcat-valve-http-header-proxy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a96cbdbca4282965a4474835ea435ba?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">robin</media:title>
		</media:content>

		<media:content url="http://robertrv.files.wordpress.com/2011/09/jboss-apache2.jpg?w=300" medium="image">
			<media:title type="html">jboss-apache</media:title>
		</media:content>

		<media:content url="http://robertrv.files.wordpress.com/2011/09/jboss-apache-elb1.jpg?w=298" medium="image">
			<media:title type="html">jboss-apache-elb</media:title>
		</media:content>

		<media:content url="http://robertrv.files.wordpress.com/2011/09/solution-elb1.jpg?w=160" medium="image">
			<media:title type="html">solution-elb</media:title>
		</media:content>
	</item>
		<item>
		<title>Ya tenemos la nueva campaña del juerguista</title>
		<link>http://robertrv.wordpress.com/2009/10/21/ya-tenemos-la-nueva-campana-del-juerguista/</link>
		<comments>http://robertrv.wordpress.com/2009/10/21/ya-tenemos-la-nueva-campana-del-juerguista/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 10:18:36 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[1]]></category>
		<category><![CDATA[1000 Euros]]></category>
		<category><![CDATA[crisis]]></category>
		<category><![CDATA[dooplan]]></category>
		<category><![CDATA[fiesta]]></category>
		<category><![CDATA[juerguista]]></category>
		<category><![CDATA[sueldo]]></category>

		<guid isPermaLink="false">http://robertrv.wordpress.com/?p=104</guid>
		<description><![CDATA[nuevo juerguista para Sevilla, Valencia o Zaragoza<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=104&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>En dooplan.com ya hemos lanzado la nueva campaña, buscamos un juerguista para las Sevilla, Valencia o Zaragoza &#8230; te atreves a irte de fiesta cada día, tener un trabajo que te paguen 1000 € al mes, y encima con entradas gratis ? pues esta es tu oportunidad:</p>
<p><a title="Buscamos juerguista para pagarle un sueldo de 1000 Euros al mes" href="http://www.dooplan.com/buscamosjuerguista/">Buscamos a un nuevo juerguista!</a></p>
<br /> Tagged: 1000 Euros, crisis, dooplan, fiesta, juerguista, sueldo <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertrv.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertrv.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertrv.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertrv.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robertrv.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robertrv.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robertrv.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robertrv.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertrv.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertrv.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertrv.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertrv.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertrv.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertrv.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=104&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robertrv.wordpress.com/2009/10/21/ya-tenemos-la-nueva-campana-del-juerguista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a96cbdbca4282965a4474835ea435ba?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">robin</media:title>
		</media:content>
	</item>
		<item>
		<title>Install just release Light Fast Shop</title>
		<link>http://robertrv.wordpress.com/2009/10/12/install-just-release-light-fast-shop/</link>
		<comments>http://robertrv.wordpress.com/2009/10/12/install-just-release-light-fast-shop/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 17:44:56 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[django]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[hg]]></category>
		<category><![CDATA[lsf]]></category>
		<category><![CDATA[mercurial]]></category>
		<category><![CDATA[shop]]></category>
		<category><![CDATA[virtualenv]]></category>

		<guid isPermaLink="false">http://robertrv.wordpress.com/?p=101</guid>
		<description><![CDATA[my first experience with django-lfs<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=101&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve seen the django-lfs [1] (Light Fast Shop[2]) just released to the public today [3]</p>
<p>In order to get your code working you have to follow instalation instructions, but you will probably need something else. I had some problems with missing dependencies (mainly .h, because by default I&#8217;m using virtualenv with python2.6, and on my ubuntu everything is ready for python2.5 &#8230; versions can be a nightmare !). So what I did before I got lfs working was:</p>
<ul>
<li>sudo apt-get install python2.6-dev    (should be changed in case to 2.5 in case your installation uses 2.5 &#8230; type &#8216;python &#8211;version&#8217; to know the exact version)</li>
<li>sudo apt-get install sqlite3 libsqlite3-dev</li>
<li>sudo apt-get install python-profiler</li>
<li><span style="font-weight:bold;font-style:normal;">apt</span>-<span style="font-weight:bold;font-style:normal;">get install mercurial</span><em> </em></li>
</ul>
<p>Finally you can follow the instructions to install lfs using the quickstart [4]</p>
<p>And if you want to have some data on this:</p>
<p>./lfs-buildout-quickstart/bin/django loaddata eggs/django_lfs-0.1.3-py2.6.egg/lfs/core/fixtures/lfs_initial.xml</p>
<p>The reason why I post this info is because I like the way this is distributed, the infrastructure and some features (as well is much easier to install than satchmo[5], sorry :S, which can be a problem in a hosting, specially if is shared):</p>
<ul>
<li>jgrowl: Nice jQuery Notification system, who knows me know that I like this useless things !</li>
<li>All the admin interface tunned with jQuery [7]</li>
<li>the use of portlets</li>
<li>Completely separate themes [8], which can become a possible monetization in the future to work with customization as well at this point</li>
<li>&#8230;.</li>
</ul>
<p>Things I don&#8217;t like and probably will be fixed in a future:</p>
<ul>
<li>Lack of documentation in the terms of description of the main entities.</li>
<li>Lack of translation to other language.</li>
</ul>
<p><span style="background-color:#ffffff;"><a href="http://bitbucket.org/diefenbach/django-lfs/wiki/Home">[1]</a> project home on bitbucket which has moved from the old <a href="http://code.google.com/p/django-lfs/">django-lfs</a> google code</span></p>
<p><a href="http://www.getlfs.com/">[2]</a> The &#8220;commercial&#8221; web site to explain and get relevance about the project, nice !</p>
<p><a href="http://twitter.com/lfsproject/status/4808354159">[3]</a> Twitter post on the project</p>
<p><a href="http://bitbucket.org/diefenbach/django-lfs/wiki/Quickstart">[4]</a> Install instructions for lfs</p>
<p><a href="http://www.satchmoproject.com/docs/svn/new_installation.html">[5]</a> Satchmo installation process</p>
<p><a href="http://stanlemon.net/projects/jgrowl.html">[6]</a> Notification system</p>
<p><a href="http://demo.getlfs.com/manage/">[7]</a> Admin interface for django-lfs</p>
<p><a href="http://pypi.python.org/pypi/django-lfstheme/0.1.1">[8]</a> Current django theme</p>
<br /> Tagged: django, ecommerce, hg, lsf, mercurial, shop, virtualenv <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertrv.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertrv.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertrv.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertrv.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robertrv.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robertrv.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robertrv.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robertrv.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertrv.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertrv.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertrv.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertrv.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertrv.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertrv.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=101&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robertrv.wordpress.com/2009/10/12/install-just-release-light-fast-shop/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a96cbdbca4282965a4474835ea435ba?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">robin</media:title>
		</media:content>
	</item>
		<item>
		<title>Entradas gratis !</title>
		<link>http://robertrv.wordpress.com/2009/10/07/entradas-gratis/</link>
		<comments>http://robertrv.wordpress.com/2009/10/07/entradas-gratis/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 13:55:59 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://robertrv.wordpress.com/?p=96</guid>
		<description><![CDATA[entradas gratis en dooplan<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=96&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ahora en dooplan tenemos entradas gratis !</p>
<p>Si realmente gratis (viva la filosofía anti-crisis) y para conseguirlas simplemente tenéis que ir a ver la <a href="http://www.dooplan.com/activity/raffle/list/">lista de entradas gratis</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertrv.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertrv.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertrv.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertrv.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robertrv.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robertrv.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robertrv.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robertrv.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertrv.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertrv.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertrv.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertrv.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertrv.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertrv.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=96&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robertrv.wordpress.com/2009/10/07/entradas-gratis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a96cbdbca4282965a4474835ea435ba?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">robin</media:title>
		</media:content>
	</item>
		<item>
		<title>dooplan ahora en diferentes idiomas!</title>
		<link>http://robertrv.wordpress.com/2009/09/22/dooplan-ahora-en-diferentes-idiomas/</link>
		<comments>http://robertrv.wordpress.com/2009/09/22/dooplan-ahora-en-diferentes-idiomas/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 06:33:43 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[aleman y frances]]></category>
		<category><![CDATA[dooplan]]></category>
		<category><![CDATA[idiomas]]></category>
		<category><![CDATA[ingles]]></category>
		<category><![CDATA[italiano]]></category>
		<category><![CDATA[portugues]]></category>

		<guid isPermaLink="false">http://robertrv.wordpress.com/?p=91</guid>
		<description><![CDATA[dooplan en otros idiomas: ingles, portugues, aleman, italiano y frances<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=91&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Este verano nos aburriamos y hemos decidido que dooplan debería estar en otros idiomas, así que ni cortos ni perezosos nos hemos puesto a traducir <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  (bueno, la verdad es q no hemos traducido mucho, lo hemos automatizado un poco <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ) pero ahora podemos ver dooplan en otros idiomas.</p>
<p>Hasta 5 diferentes: <a href="http://en.dooplan.com">ingles</a>, <a href="http://de.dooplan.com">aleman</a>, <a href="http://pt.dooplan.com">portugues</a>, <a href="http://fr.dooplan.com">frances</a> e <a href="http://it.dooplan.com">italiano</a> !</p>
<br /> Tagged: aleman y frances, dooplan, idiomas, ingles, italiano, portugues <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertrv.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertrv.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertrv.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertrv.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robertrv.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robertrv.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robertrv.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robertrv.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertrv.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertrv.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertrv.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertrv.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertrv.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertrv.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=91&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robertrv.wordpress.com/2009/09/22/dooplan-ahora-en-diferentes-idiomas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a96cbdbca4282965a4474835ea435ba?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">robin</media:title>
		</media:content>
	</item>
		<item>
		<title>Buscamos Juerguista para pagarle un sueldo en tiempos de crisis!</title>
		<link>http://robertrv.wordpress.com/2009/05/20/buscamos-juerguista-para-pagarle-un-sueldo-en-tiempos-de-crisis/</link>
		<comments>http://robertrv.wordpress.com/2009/05/20/buscamos-juerguista-para-pagarle-un-sueldo-en-tiempos-de-crisis/#comments</comments>
		<pubDate>Wed, 20 May 2009 07:28:10 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://robertrv.wordpress.com/?p=88</guid>
		<description><![CDATA[información sobre campaña de marketing de dooplan que ofrece un sueldo por hacer lo q más te gusta!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=88&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>En dooplan tenemos una nueva campaña de márketing, buscamos a un candidato/a para pagarle un sueldo por pasarlo bien, ir a conciertos, museos, conferencias y de más !!!!</p>
<p>Si os interesa, mirad la web de la camapaña y apuntáos &#8230; ah, y suerte <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>WEB: <a href="http://www.dooplan.com/buscamosjuerguista/">http://www.dooplan.com/buscamosjuerguista/</a></p>
<p>Nada mejor en tiempos de crisis!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertrv.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertrv.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertrv.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertrv.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robertrv.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robertrv.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robertrv.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robertrv.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertrv.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertrv.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertrv.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertrv.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertrv.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertrv.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=88&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robertrv.wordpress.com/2009/05/20/buscamos-juerguista-para-pagarle-un-sueldo-en-tiempos-de-crisis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a96cbdbca4282965a4474835ea435ba?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">robin</media:title>
		</media:content>
	</item>
		<item>
		<title>heat maps with django</title>
		<link>http://robertrv.wordpress.com/2009/03/11/heat-maps-with-django/</link>
		<comments>http://robertrv.wordpress.com/2009/03/11/heat-maps-with-django/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 23:58:42 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[django]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[django-gheat]]></category>
		<category><![CDATA[gheat]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://robertrv.wordpress.com/?p=78</guid>
		<description><![CDATA[At dooplan we have implemented gheat in django. Gheat is a simple system heat maps to show in a google map. It normally works with an external and WSGI  compliant server (named aspen), but we want to have it inside our infraestructure, both in development (just django development server) as well as in our production [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=78&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>At <a href="http://www.dooplan.com">dooplan</a> we have implemented <a href="http://code.google.com/p/gheat/">gheat</a> in django.</p>
<p>Gheat is a simple system heat maps to show in a google map.</p>
<p><span id="more-78"></span>It normally works with an external and WSGI  compliant server (named <a href="http://www.zetadev.com/software/aspen/">aspen</a>), but we want to have it inside our infraestructure, both in development (just django development server) as well as in our production server. So we have made a port from normal python gheat to django gheat.</p>
<p>I have published it on github : http://github.com/robertrv/django-gheat/tree/master</p>
<p>I will post a extend tutorial on how to customize it, but for now if you want to use it (having installed <a href="http://www.djangoproject.com/">django</a> and <a href="http://git-scm.com/">git</a>) you can do the following instructions</p>
<blockquote><p>git clone git://github.com/robertrv/django-gheat.git</p>
<p>cd django-gheat/samples/persisted/</p>
<p>python manage.py runserver</p></blockquote>
<p>then go to your browser on http://127.0.0.1:8000/home/ and you will see something like:</p>
<p style="text-align:center;"><img class="size-full wp-image-79 aligncenter" title="django-gheat-sample" src="http://robertrv.files.wordpress.com/2009/03/django-gheat-sample.png?w=500" alt="django-gheat-sample"   /></p>
<p>You can also see the live effect in dooplan, where we show which are the<a href="http://www.dooplan.com/places/list/"> &#8220;hot&#8221; places</a> in barcelona or madrid.</p>
<br /> Tagged: development, django, django-gheat, gheat, git <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertrv.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertrv.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertrv.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertrv.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robertrv.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robertrv.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robertrv.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robertrv.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertrv.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertrv.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertrv.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertrv.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertrv.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertrv.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=78&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robertrv.wordpress.com/2009/03/11/heat-maps-with-django/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a96cbdbca4282965a4474835ea435ba?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">robin</media:title>
		</media:content>

		<media:content url="http://robertrv.files.wordpress.com/2009/03/django-gheat-sample.png" medium="image">
			<media:title type="html">django-gheat-sample</media:title>
		</media:content>
	</item>
		<item>
		<title>Eligiendo compañías</title>
		<link>http://robertrv.wordpress.com/2008/11/30/eligiendo-companias/</link>
		<comments>http://robertrv.wordpress.com/2008/11/30/eligiendo-companias/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 23:07:55 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[decissions]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://robertrv.wordpress.com/?p=74</guid>
		<description><![CDATA[Explicación de como y porqué estoy eligiendo las compañías que tengo<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=74&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hola ! </p>
<p>no, no voy a hablar de la mala gente con la que nos juntamos los fines de semana, voy a hablar de compañías que ofrecen servicios que yo uso: teléfono, internet, seguros</p>
<p><span id="more-74"></span></p>
<p>Pues bien, estoy en fase de cambiar de varias compañías y he pensado que tal vez le pueda servir a alguien saber que tengo y que voy a tener para poder elegir a conciencia.</p>
<p>Como dijo Jack, vamos por partes:</p>
<h2>Telefono</h2>
<p>Tengo vodafone con un consumo medio de 25 € mensuales. He evaluado dos alternativas Simyo y Yoigo, miré <a href="http://spanish.martinvarsavsky.net/general/simyo-y-yoigo-son-mejores-que-vodafone-orange-y-movistar.html">algunos</a> <a href="http://simyoblog.wordpress.com/2008/02/06/comparativa-de-tarifas-entre-simyo-yoigo-y-pepephone/">posts</a>, y ver las ofertas actuales me he decidido por Simyo. </p>
<p><em>Puntos interesantes de la decisión</em></p>
<ul>
<li>Yoigo te obliga a elegir entre 0&#8217;08 €/minuto a no-yoigos o 0 €/min. a yoigos. Simyo, te das ambas cosas</li>
<li>Para navegar parece que con consumo medio yoigo tiene una buena oferta sólo 1&#8217;2 € por día máximo pero simyo si no te pasas (aunque acepta p2p no creo q lo use para eso), <a href="http://www.simyo.es/internet/">lo mejora</a></li>
<li>Yoigo tiene claramente mucho más moviles y a mejor precio que simyo, pero con la pega de la permanencia (18 meses). En mi caso ya tengo teléfono libre, y para mis padres les voy a comprar uno, por lo que no me sirve de mucho.</li>
<li>Simyo te ofrece 5 € por cada amigo q lleves y 5 € para ese amigo, yoigo le da 20 € al que trae amigos a yoigo &#8230; claramente una ventaja ! (lo siento Nat, no he escogido yoigo :S)</li>
<li>Simyo te da 50 €(20 si no eres contrato) por hacer portabilidad de Vodafone, Orange o Movistar. Distribuidos durante los siguientes 5 meses en las facturas mensuales. Yoigo creo q ahora no tiene oferta similar.</li>
</ul>
<p>En definitiva, he escogido Simyo, la parte buena es que si no me gusta me doy de baja y me voy a Yoigo u otros con la permanencia debajo del brazo &#8230; ya os contaré si ha valido la pena !</p>
<h2>Seguro</h2>
<p>En mi caso tengo el seguro de moto con mapfre, pago 300 € por un seguro a terceros para una motocicleta 125 cc. Para mi increible !</p>
<p>Gracia a Iván he encontrado <a href="https://www.pontgrup.com/">pontgrup</a> que me ofrece un seguro por 190 € anuales (63 %) que en realidad subcontrata a sovag, para mi desconocido. Este mundo creo que es muy personificado, cada compañía te hace un precio diferente. Yo por ahora esta es la mejor que he encontrado, sigo la búsqueda, tengo hasta el 23 de diciembre para decidir una !</p>
<h2>Internet</h2>
<p>Este capitulo lo tengo q explotar bastante. Cuando llegué de UK decidí coger Telefónica por agilidad de contratación y seguridad, pero llevo ya un año pagando las burradas q piden esta gente ! (40 € mensuales por menos de 3megas, a mi casa no llega mas <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  )</p>
<p>Por lo pronto he estado mirando una <a href="http://www.ahorrodiario.com/2008/11/29-comparativa-de-precios-de-conexiones-adsl">comparativa</a> e incluso evaluando la posibilidad de dejar de tener internet en casa. Pero realmente me parece increible el precio que paguemos una media de 40 € por mes por tener una conexión a internet en casa &#8230; respecto al resto de europa, como suele ser habitual salimos <a href="http://www.oxigenstar.com/tecnologia/interesante-comparativa-del-adsl-en-europa">perjudicados.</a></p>
<p>Por ahora mi preferencia es Jazztel por una menor cuota mensual y porque no he leido exceivas criticas sobre ella &#8230; en comparación con el resto, claro !.</p>
<br /> Tagged: decissions, money, personal <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertrv.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertrv.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertrv.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertrv.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robertrv.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robertrv.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robertrv.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robertrv.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertrv.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertrv.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertrv.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertrv.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertrv.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertrv.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=74&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robertrv.wordpress.com/2008/11/30/eligiendo-companias/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a96cbdbca4282965a4474835ea435ba?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">robin</media:title>
		</media:content>
	</item>
		<item>
		<title>Ayudemos a salvar a mobuzz</title>
		<link>http://robertrv.wordpress.com/2008/11/04/ayudemos-a-salvar-a-mobuzz/</link>
		<comments>http://robertrv.wordpress.com/2008/11/04/ayudemos-a-salvar-a-mobuzz/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 22:37:52 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[1]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[startup]]></category>

		<guid isPermaLink="false">http://robertrv.wordpress.com/?p=72</guid>
		<description><![CDATA[Bueno, que voy a decir si ya casi todos lo dicen, simplemente intentaré extender algo más el mensaje Tagged: internet, startup<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=72&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Bueno, que voy a decir si ya casi todos lo dicen, simplemente intentaré extender algo más el <a href="http://vimeo.com/2150737?pg=embed&amp;sec=2150737">mensaje</a></p>
<br /> Tagged: internet, startup <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertrv.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertrv.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertrv.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertrv.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robertrv.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robertrv.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robertrv.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robertrv.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertrv.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertrv.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertrv.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertrv.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertrv.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertrv.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=72&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robertrv.wordpress.com/2008/11/04/ayudemos-a-salvar-a-mobuzz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a96cbdbca4282965a4474835ea435ba?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">robin</media:title>
		</media:content>
	</item>
		<item>
		<title>Oficina de bolsillo?</title>
		<link>http://robertrv.wordpress.com/2008/10/29/oficina-de-bolsillo/</link>
		<comments>http://robertrv.wordpress.com/2008/10/29/oficina-de-bolsillo/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 15:12:41 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[google calendar]]></category>
		<category><![CDATA[mobility]]></category>
		<category><![CDATA[windows mobile]]></category>

		<guid isPermaLink="false">http://robertrv.wordpress.com/?p=61</guid>
		<description><![CDATA[Nueva herramienta online: GooSync<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=61&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hace tiempo q soy un fan de los pequeños dispoitivos &#8230; lo llamado <em>organizadores de bolsillo. </em>Estos pueden ser muy útiles, pues no hay duda de que en cualquier momento te puede asaltar(1) la necesidad de apuntar una cosa que nunca de acuerdas, algo de lo que te quieres acordar o incluso teléfonos, o simplemente notas.</p>
<p><span id="more-61"></span></p>
<p>Tener esta posibilidad está genial, pero en ocasiones ya tienes la tarea o la cita en tu calendario en casa o en la oficina &#8230; vamos, en un calendario que accedes desde tu ordenador.</p>
<p>Yo començé con una palm 105, que se sincronizaba directamente con un software absolutamente propietario, en concreto sólo me funcionaba con Windows.</p>
<p>Después pasé a un móvil 3g (un motorola muy funcional) que tenía un software aún más propietario. Por supuesto sólo funcionaba en windows.</p>
<p>Finalmente ahora tengo una qtek s200, que tiene el sistema operativo windows mobile. Claro, es propietario, y su sincronización a no ser que te rompas mucho los cuernos, también funciona en software propietario.</p>
<p>Durante este tiempo también he seguido las evoluciones de los principales PIM&#8217;s (<em>Personl Information Manager</em>) online. Primero con Yahoo y ahora con Google calendar.</p>
<p>Hasta hace poco usaba el google calendar para <a href="http://www.google.com/support/calendar/bin/answer.py?answer=89955">sincronizarlo</a> con mi microsoft outlook y de allí a mi móvil.</p>
<p>Llevo un tiempo trabajando en dooplan con sistema únicamente Linux y quiero liberarme del software propietario &#8230; y he encontrado (supongo que ya hace tiempo que existe) una posible solución: <a href="http://www.goosync.com">GooSync</a></p>
<div style="float:left;">
<div>
 Este sistema funciona de la manera más senzilla &#8230; sincroniza tu móvil con tu google calendar/contacts &#8230; Parece lo más lógico si es que vamos hacia una plataforma cada vez más basada en la web. Pero (siempre hay un <em>pero</em>), es de pago&#8230; 19,95 $ (15.5 €) al año. Vale la pena ? Vosotros que haríais ?</div>
<div><a href="http://polldaddy.com/poll/1056092/">View This Poll</a></div>
</div>
<p>(1): A que parece que sé cuando quiero <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<br /> Tagged: google calendar, Life, mobility, windows mobile <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertrv.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertrv.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertrv.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertrv.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robertrv.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robertrv.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robertrv.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robertrv.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertrv.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertrv.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertrv.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertrv.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertrv.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertrv.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertrv.wordpress.com&amp;blog=843574&amp;post=61&amp;subd=robertrv&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robertrv.wordpress.com/2008/10/29/oficina-de-bolsillo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a96cbdbca4282965a4474835ea435ba?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">robin</media:title>
		</media:content>
	</item>
	</channel>
</rss>
