<?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>Now from home</title>
	<atom:link href="http://www.nowfromhome.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nowfromhome.com</link>
	<description>Working from home</description>
	<lastBuildDate>Sat, 22 May 2010 19:33:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>If you get stucked with a RoR error, restart script/server</title>
		<link>http://www.nowfromhome.com/if-you-are-stucked-with-a-ror-error-restart-scriptserver/</link>
		<comments>http://www.nowfromhome.com/if-you-are-stucked-with-a-ror-error-restart-scriptserver/#comments</comments>
		<pubDate>Fri, 21 May 2010 07:24:38 +0000</pubDate>
		<dc:creator>Jos</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[RubyOnRails]]></category>

		<guid isPermaLink="false">http://www.nowfromhome.com/if-you-are-stucked-with-a-ror-error-restart-scriptserver/</guid>
		<description><![CDATA[Yesterday I had an idea for a web app (again!). I decided to sketch it out using Ruby On Rails as a way to experiment what’s outside the .NET ecosystem. Besides, if the idea finally crystallizes, it will fit much better in a Linux box than on a Windows server mostly because I think it [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I had an idea for a web app (again!). I decided to sketch it out using Ruby On Rails as a way to experiment what’s outside the .NET ecosystem. Besides, if the idea finally crystallizes, it will fit much better in a Linux box than on a Windows server mostly because I think it will be hard to find a good revenue model.</p>
<p>This post is just a note to myself. I have to admin than I’m totally lost with RoR for now. I’m following several screencasts and reading every beginner’s tutorial I can find. </p>
<p>Following one of those tutorials I got stucked. I checked my config files, checked that I had not misspelled anything but nothing came out. </p>
<p>Finally I saw an error on the server log:</p>
<blockquote><p>Rendering rescues/layout (internal server error)</p>
</blockquote>
<p>That error message was logged 55 minutes ago!! Just restarting the ruby server made my error go away. This is the second time this happens, so I’m writing this post as a reminder. Depending of what files you touch, you could need to restart your app.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nowfromhome.com/if-you-are-stucked-with-a-ror-error-restart-scriptserver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving from Subversion to Mercurial</title>
		<link>http://www.nowfromhome.com/moving-from-subversion-to-mercurial/</link>
		<comments>http://www.nowfromhome.com/moving-from-subversion-to-mercurial/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 08:11:19 +0000</pubDate>
		<dc:creator>Jos</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[hg]]></category>

		<guid isPermaLink="false">http://www.nowfromhome.com/moving-from-subversion-to-mercurial/</guid>
		<description><![CDATA[I’ve been using Subversion for the last 5 years and it has served me well. I can’t conceive writing any meaningful code without using it. Using a source control tool is the definitive backup tool for your code and you should be using one no matter what. Because I work mostly alone, merging has never [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="mercurial" border="0" alt="mercurial" align="right" src="http://www.nowfromhome.com/wp-content/uploads/2010/03/mercurial1.png" width="204" height="244" /> I’ve been using Subversion for the last 5 years and it has served me well. I can’t conceive writing any meaningful code without using it. Using a source control tool is the definitive backup tool for your code and you should be using one no matter what.</p>
<p>Because I work mostly alone, merging has never been a real issue for me. Mainly because I rarely branched my code to work on different branches in parallel. </p>
<p>I used to have just a main branch (trunk) where I add new code. When the code it’s ready to release, I tag it and branch it. Then I continue to add code to the trunk. The branch is used only for maintenance of the shipped code. </p>
<p>When I touch code in the maintenance branch I can merge with the trunk or usually just fix the code in the trunk manually.</p>
<p>That’s it. No branches per feature, usually no experimental branches, life was easy.</p>
<p>However, as some of my projects begun to get momentum (read ‘get real paying customers’), my needs started to grow. </p>
<p>Now I have to have more than one active maintenance branch. I also need branches to develop some custom modules for some customers, and as my time to develop a single feature grows I also need branches to develop features that need a long time to complete.</p>
<blockquote><p>If you branch a lot you have to merge a lot.</p>
</blockquote>
<p>This implies that if you have problems merging you’ll try to avoid branching, and if you can’t branch as needed your source control tool is failing you.</p>
<p>I’ve been avoiding branching in subversion because the merging is sometimes complicated. More than once I end up applying changes manually or overwriting files from folder to folder. Not fun.</p>
<p>I started paying attention to all the buzz about <a href="http://git-scm.com/" target="_blank">git</a> and its branching/merging model. I installed it and played with it. I saw the benefits but I find some concepts difficult to grasp, so I continued to use subversion while playing with git. Then I found <a href="http://hginit.com/" target="_blank">hgInit</a>, a <a href="http://mercurial.selenic.com/" target="_blank">Mercurial</a> tutorial by <a href="http://www.joelonsoftware.com/" target="_blank">Joel Spolsky</a>. Turns out that Mercurial it’s pretty much like git, but simpler.</p>
<p>There are some differences that I’m not going to describe here, but they are not as important as their similarities. The key here is that merging code works great!</p>
<p>If you are using subversion please take a look at Mercurial or git. They are a really a big step forward. They have a different model than subversion so it takes a while to grasp the difference between a centralized and distributed source control system, but it’s worth it.</p>
<p>Here are some links that helped me see light:</p>
<p><a title="http://hginit.com/" href="http://hginit.com/">http://hginit.com/</a></p>
<p><a href="http://www.youtube.com/watch?v=4XpnKHJAok8" target="_blank">Linus Torvals on git</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nowfromhome.com/moving-from-subversion-to-mercurial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading my network: Linksys WRT320n</title>
		<link>http://www.nowfromhome.com/upgrading-my-network-linksys-wrt320n/</link>
		<comments>http://www.nowfromhome.com/upgrading-my-network-linksys-wrt320n/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 15:49:52 +0000</pubDate>
		<dc:creator>Jos</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[gadgets]]></category>

		<guid isPermaLink="false">http://www.nowfromhome.com/upgrading-my-network-linksys-wrt320n/</guid>
		<description><![CDATA[I wrote some time ago that I was having problems with my Windows Home Server and my main PC, mainly because the transfer speeds from my WHS to my PC were ridiculous. Uploads were fine though. After looking into it for a long time, the problem was that my router/switch, an SMC Barricade, was not [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nowfromhome.com/wp-content/uploads/2010/02/Linksyssm.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="Linksyssm" border="0" alt="Linksyssm" align="right" src="http://www.nowfromhome.com/wp-content/uploads/2010/02/Linksyssm_thumb.jpg" width="190" height="190" /></a> I <a href="http://www.nowfromhome.com/windows-7-x64-and-intel-82562v-2-dont-work-well-together/" target="_blank">wrote</a> some time ago that I was having problems with my Windows Home Server and my main PC, mainly because the transfer speeds from my WHS to my PC were ridiculous. Uploads were fine though. </p>
<p>After looking into it for a long time, the problem was that my router/switch, an SMC Barricade, was not handling the traffic from the WHS properly. Every other PC was working right.</p>
<p>Anyway, I’ve changed the router by a <a href="http://www.linksysbycisco.com/US/en/products/WRT320N" target="_blank">Linksys WRT320n</a>. This means that I’ve upgraded my LAN from 100 Mbps to 1 Gbps.</p>
<p>Transfer speeds are now ok, getting 60 MB/s out of the box. Also, the wireless speed has improved dramatically, specially when using my iPhone 3Gs. Using my old router I was unable to watch YouTube videos and now they are loaded in no time.</p>
<p>I’ve been using this router only for a couple of days, but I’m already very happy with the upgrade.</p>
<p>I have had only one minor problem setting up the wireless connection. For some reason none of my WIFI devices were able to connect to the router. I needed to manually change the &#8216;WIFI channel’ from <em>Auto</em> to <em>channel 11</em> in order to get it to work. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.nowfromhome.com/upgrading-my-network-linksys-wrt320n/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shell extensions, the root of a lot of problems</title>
		<link>http://www.nowfromhome.com/shell-extensions-the-root-of-a-lot-of-problems/</link>
		<comments>http://www.nowfromhome.com/shell-extensions-the-root-of-a-lot-of-problems/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 08:03:25 +0000</pubDate>
		<dc:creator>Jos</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.nowfromhome.com/?p=251</guid>
		<description><![CDATA[In one of my computers, the simple action of creating a new folder or renaming a file was taking a lot of time. Windows Explorer seemed to freeze for a variable amount of time. Sometimes a few seconds sometimes as long a one minute! Obviously some shell extension was the culprit, but which one? The [...]]]></description>
			<content:encoded><![CDATA[<p>In one of my computers, the simple action of creating a new folder or renaming a file was taking a lot of time. Windows Explorer seemed to freeze for a variable amount of time. Sometimes a few seconds sometimes as long a one minute!</p>
<p>Obviously some shell extension was the culprit, but which one? The idea of uninstalling one by one was discouraging, so I lived for a while with the problem until I found this little tool:</p>
<p><a href="http://www.nirsoft.net/utils/shexview.html">ShellExView</a></p>
<p><img class="alignnone" title="ShellExView" src="http://www.nirsoft.net/utils/shexview.gif" alt="" width="610" height="285" /></p>
<blockquote><p>The ShellExView utility displays the details of shell extensions installed on your computer, and allows you to easily disable and enable each shell extension.</p></blockquote>
<p>It literally save me a lot of time. You need to run this tool as an Administrator if you want to disable any shell extension.</p>
<p>It turns out that the shell extension that was causing the slow down was TortoiseSVN. For some reason it doesn&#8217;t seem to work well on my Windows 7 x64 computer. It does work ok on my laptop (W7 x86).</p>
<p>Time to update to the lastest version and review my settings.</p>
<p><em>Note: Installing TortoiseSVN&#8217;s latest version solved the problem, but I needed to run ShellExView again to enable it again.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nowfromhome.com/shell-extensions-the-root-of-a-lot-of-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can&#8217;t modify my Visual Studio 2008 installation</title>
		<link>http://www.nowfromhome.com/cant-modify-my-visual-studio-2008-installation/</link>
		<comments>http://www.nowfromhome.com/cant-modify-my-visual-studio-2008-installation/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 08:53:45 +0000</pubDate>
		<dc:creator>Jos</dc:creator>
				<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.nowfromhome.com/cant-modify-my-visual-studio-2008-installation/</guid>
		<description><![CDATA[I run setup to add the Web developer extensions to Visual Studio 2008 from the DVD and it complaint with the following message: A problem has been encountered while loading the setup components. Cancelling Setup What!!! Ok, I know what’s going on. The DVD has Microsoft Visual Studio 2008 installation program, but I have Visual [...]]]></description>
			<content:encoded><![CDATA[<p>I run setup to add the Web developer extensions to Visual Studio 2008 from the DVD and it complaint with the following message:</p>
<blockquote><p>A problem has been encountered while loading the setup components. Cancelling Setup</p>
</blockquote>
<p><a href="http://www.nowfromhome.com/wp-content/uploads/2009/11/image.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.nowfromhome.com/wp-content/uploads/2009/11/image_thumb.png" width="497" height="171" /></a> </p>
<p>What!!!</p>
<p>Ok, I know what’s going on. The DVD has Microsoft Visual Studio 2008 installation program, but I have Visual Studio 2008 <strong>Service Pack 1</strong> installed.</p>
<p>So, I need to modify the installation using <em>Add/Remove programs </em>and select <em>Uninstall/Change. </em>Then I got this:</p>
<blockquote><p>A selected drive is no longer valid. Please review your installation path settings before continuing with setup.</p>
</blockquote>
<p><a href="http://www.nowfromhome.com/wp-content/uploads/2009/11/image1.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.nowfromhome.com/wp-content/uploads/2009/11/image_thumb1.png" width="492" height="171" /></a> </p>
<p>Oh, great!</p>
<p>After wasting some time through the internets, the solution was to uninstall the Service Pack 1, add or remove the features you want and reinstall Service Pack 1.</p>
<p>Hope this saves you some time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nowfromhome.com/cant-modify-my-visual-studio-2008-installation/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>V 2009: I&#8217;ve been in some of the buildings inside Anna&#8217;s mothership</title>
		<link>http://www.nowfromhome.com/v-2009-ive-been-in-some-of-the-buildings-inside-annas-mothership/</link>
		<comments>http://www.nowfromhome.com/v-2009-ive-been-in-some-of-the-buildings-inside-annas-mothership/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 17:56:19 +0000</pubDate>
		<dc:creator>Jos</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[fun Valencia TV]]></category>

		<guid isPermaLink="false">http://www.nowfromhome.com/v-2009-ive-been-in-some-of-the-buildings-inside-annas-mothership/</guid>
		<description><![CDATA[I’ve managed to see the V’s pilot episode, the 2009 remake anyway. And there’s a scene where we see a panoramic view of the spaceship’s guts above New York. Instantly I recognized some buildings because they exist for real and in fact they are in my city, Valencia. Take a look at the pictures. Next [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve managed to see the <a href="http://www.imdb.com/title/tt1307824/" target="_blank">V’s pilot episode</a>, the 2009 remake anyway. And there’s a scene where we see a panoramic view of the spaceship’s guts above New York. Instantly I recognized some buildings because they exist for real and in fact they are in my city, Valencia.</p>
<p>Take a look at the pictures. Next time I visit <a href="http://images.google.com/images?hl=en&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official&amp;hs=cUc&amp;q=ciudad%20de%20las%20artes%20y%20las%20ciencias&amp;um=1&amp;ie=UTF-8&amp;sa=N&amp;tab=wi" target="_blank">La Ciudad de Las Artes y Las Ciencias</a> I’ll look at those buildings with suspicious eyes <img src='http://www.nowfromhome.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="v_inside_mothership" border="0" alt="v_inside_mothership" src="http://www.nowfromhome.com/wp-content/uploads/2009/11/v_inside_mothership.jpg" width="500" height="327" /> </p>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="valencia_ciudad_artes1" border="0" alt="valencia_ciudad_artes1" src="http://www.nowfromhome.com/wp-content/uploads/2009/11/valencia_ciudad_artes1.jpg" width="500" height="360" />&#160;</p>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="valencia_ciudad_artes2" border="0" alt="valencia_ciudad_artes2" src="http://www.nowfromhome.com/wp-content/uploads/2009/11/valencia_ciudad_artes2.jpg" width="500" height="375" /> </p>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="valencia_ciudad_artes3" border="0" alt="valencia_ciudad_artes3" src="http://www.nowfromhome.com/wp-content/uploads/2009/11/valencia_ciudad_artes3.jpg" width="500" height="317" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nowfromhome.com/v-2009-ive-been-in-some-of-the-buildings-inside-annas-mothership/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Movistar, precio de los MMS</title>
		<link>http://www.nowfromhome.com/movistar-precio-de-los-mms/</link>
		<comments>http://www.nowfromhome.com/movistar-precio-de-los-mms/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 09:11:45 +0000</pubDate>
		<dc:creator>Jos</dc:creator>
				<category><![CDATA[economy]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Movistar]]></category>

		<guid isPermaLink="false">http://www.nowfromhome.com/movistar-precio-de-los-mms/</guid>
		<description><![CDATA[Como comenté en mi post anterior, ahora estoy con Movistar para poder disfrutar de un iPhone. Por cierto que el terminal es simplemente alucinante. Como ya me temía, a cambio del iPhone estoy obligado a sufrir a este operador. No quisiera convertir este blog en mi muro de las lamentaciones contra Movistar pero… Este es [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nowfromhome.com/wp-content/uploads/2009/10/IMG_0004.jpg"><img style="border-bottom: 0px; border-left: 0px; margin: 0px 8px; display: inline; border-top: 0px; border-right: 0px" title="IMG_0004" border="0" alt="IMG_0004" align="right" src="http://www.nowfromhome.com/wp-content/uploads/2009/10/IMG_0004_thumb.jpg" width="202" height="240" /></a>Como comenté en mi <a href="http://www.nowfromhome.com/firm-un-pacto-con-el-diablo/" target="_blank">post anterior</a>, ahora estoy con Movistar para poder disfrutar de un iPhone. Por cierto que el terminal es simplemente alucinante.</p>
<p>Como ya me temía, a cambio del iPhone estoy obligado a sufrir a este operador. No quisiera convertir este blog en mi muro de las lamentaciones contra Movistar pero…</p>
<p>Este es el mensaje que acabo de recibir:</p>
<blockquote><p>Por las características de tu terminal se informa que podrás enviar y recibir en un mismo mensaje: fotos, videos, melódías y hasta tu propia voz. Enviarlo es muy sencillo…</p>
<p>… Sólo te costará 1 euro más impuestos indirectos…</p>
</blockquote>
<p> Sólo 1,16 € (pronto 1,18 €) !! Gracias por la información Movistar. Tiene gracia además que el mensaje te lo envían como un MMS y adjuntan una foto con 2 chiquitas muy monas usando sus teléfonos (apuesto a que no son de Movistar).</p>
<p>Como referencia, <a href="http://www.yoigo.com/tarifas/index.php" target="_blank">en Yoigo un MMS cuesta 30 céntimos</a>.</p>
<p>En fin, una funcionalidad menos que tiene el iPhone gracias a Movistar.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nowfromhome.com/movistar-precio-de-los-mms/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Firm&#233; un pacto con el diablo&#8230;</title>
		<link>http://www.nowfromhome.com/firm-un-pacto-con-el-diablo/</link>
		<comments>http://www.nowfromhome.com/firm-un-pacto-con-el-diablo/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 06:57:01 +0000</pubDate>
		<dc:creator>Jos</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.nowfromhome.com/firm-un-pacto-con-el-diablo/</guid>
		<description><![CDATA[Es decir, con Movistar. A cambio me concede el deseo de disfrutar de un iPhone. En los comentarios de este post comentaba que me había rendido en el tema del iPhone y que no quería seguirle el juego a Movistar. Sin embargo, caprichos del destino, mi teléfono decidió aprovechar el&#160; magnífico tiempo que hizo este [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nowfromhome.com/wp-content/uploads/2009/10/3225900092_2a9c90c85c_m.jpg"><img style="border-right-width: 0px; margin: 0px 0px 0px 10px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="3225900092_2a9c90c85c_m" border="0" alt="3225900092_2a9c90c85c_m" align="right" src="http://www.nowfromhome.com/wp-content/uploads/2009/10/3225900092_2a9c90c85c_m_thumb.jpg" width="244" height="165" /></a> Es decir, con Movistar. A cambio me concede el deseo de disfrutar de un iPhone. </p>
<p>En los comentarios de <a href="http://www.nowfromhome.com/iphone-3gs-disponibilidad-nula-en-valencia/" target="_blank">este post</a> comentaba que me había rendido en el tema del iPhone y que no quería seguirle el juego a Movistar. Sin embargo, caprichos del destino, mi teléfono decidió aprovechar el&#160; magnífico tiempo que hizo este pasado puente y se dió un chapuzón en la piscina. ¿Qué mejor excusa para retomar el tema de iPhone?</p>
<p>En fin que tomada la decisión, me empapé bien de las tarifas disponibles y me lancé de nuevo a la caza.</p>
<p>En la primera tienda que fui no tenían. En la segunda sí habían y esto es lo que pasó:</p>
<blockquote><p>Yo: Buenos días, ¿tienen iPhones en stock?</p>
<p>Movi: Me tienen que entrar… ¿para qué era?</p>
<p>Yo: Portabilidad</p>
<p>Movi: ah, pues me parece que alguno tengo en el almacén.</p>
<p>Yo: Entonces, ¿me espero? (había más gente en la tienda)</p>
<p>Movi: Sí, espérate.</p>
</blockquote>
<p>Vamos a ver, ¿te tienen que entrar o tienes? ¿Es que depende de si es una portabilidad o no? La respuesta está clara.</p>
<p>Cuando termina con la persona que estaba atendiendo, mete la mano debajo del mostrador y saca un iPhone 3GS precintado.</p>
<p>Me quedo flipado con la desfachatez de la dependienta. La cosa sigue…</p>
<blockquote><p>Movi: Bueno tenemos varias tarifas…</p>
<p>Yo: Quiero la de Autónomos 12 con el plan de Internet básico de 15 €</p>
<p>Movi: A ver que consulte las tarifas…</p>
<p>(2 minutos mirando cosas en la pantalla del ordenador).</p>
<p>Movi: La tarifa de Autónomos 12 obliga a contratar el plan de datos Premium de 40 €</p>
<p>Yo: Imposible. Acabo de verlo en Internet</p>
<p>Movi: Bueno, ten en cuenta que la página de Internet trabaja con otras tarifas.</p>
<p>Yo: Ok, entonces me lo pillaré por Internet.</p>
<p>Movi: Espera que mire los correos electrónicos a ver si ha entrado algo más nuevo…</p>
<p>(Otro ratito jugando con el ratón)</font></p>
<p>Movi: A si, si. Aquí está tarifa 15 € con portabilidad… Vale, puedes contratar la de 15 €.</p>
<p>Movi: Bueno, pues entonces el móvil te sale por 139 €</p>
<p>Yo: Seguro, creo recordar que con portabilidad eran 99 €</p>
<p>Movi: Si, sí. Aquí lo tengo.</p>
<p>Yo: Pues estoy seguro de que he leído que eran 99 €. ¿Puedes meterte en la página del iPhone / Movistar y comprobarlo? Si pone 139 € me lo llevo sin más.</p>
<p>(Reticente, se pone a buscar pero no encuentra la tabla de precios)</p>
<p>Movi: Pues mira, no aparece y esto es la última información que me ha llegado.</p>
<p>Yo: ¿Estás de acuerdo conmigo en que no tiene sentido pagar 40 € más por lo mismo? ¿verdad?</p>
<p>Movi: Espera que voy a llamar…</p>
<p>(llama a alguien)</p>
<p>Movi: Ok, 99 €.</p>
<p>Yo: Vale. Vamos a hacer los papeles.</p>
</blockquote>
<p>De verdad que estuve a punto de coger y marcharme. Pero pudo más la atracción de Apple.</p>
<p>Por supuesto el tema del seguro se lo reservó hasta que todo estuvo firmado. </p>
<blockquote><p>Movi: Ay!, casi se me olvida. Sabes que el seguro es obligatorio ¿no?</p>
<p>(haciéndome el tonto y con sonrisa socarrona)</p>
<p>Yo: ¿Seguro? ¿Qué seguro? Yo no quiero ningún seguro.</p>
<p>(con cara descompuesta y visiblemente nerviosa. A estas alturas la tienda estaba llena de gente</p>
<p>Movi: Si, sí, es obligatorio sacarse este seguro para todos los móviles que superan (no se cuántos) euros.</p>
<p>Yo: Ok, si que lo sabía. Me parece que tomáis el pelo a la gente y que probablemente no sea ni legal. Pero bueno, cobrame los 40 € del seguro.</p>
<p>Movi: Ok, pues ya está todo. En unos 6 días te llamaremos</p>
</blockquote>
<p>Por si alguno tiene la duda de lo que te cubre el seguro, os lo pongo a continuación. A la vez da risa y ganas de ir a la OCU.</p>
<p>- Robo o hurto (no especifica cantidad pero me he enterado que cubre 200 €)</p>
<p>- Llamadas fraudulentas hasta 2 horas antes de la declaración del siniestro y hasta 1200€</p>
<p>- Reparación del terminal, hasta 90 € (periodo de carencia de 45 días)</p>
<p>- Pérdida, con reembolso de 100 €</p>
<p>Y ya está!. Teniendo en cuenta que tendría que pagarle a Movistar 584 € si no cumplo los 18 meses de permanencia, en caso de robo o rotura el seguro no sirve para nada. </p>
<p>Todo esto intentando captarme como cliente nuevo. Imaginaros dentro de 18 meses cuando quiera cambiar mi iPhone por otro. Terrible.</p>
<p>Espero que esto le sirva a alguien que todavía vaya detrás del iPhone. Ir preparados porque van a intentar jugarosla en todos los pasos.</p>
<p>También recomiendo leer los ya famosos posts de: <a href="http://www.tengounmac.com/archivo/odisea-comprar-iphone-3gs-espana-i.xhtml" target="_blank">La odisea de comprar un iPhone en España I</a>, <a href="http://www.tengounmac.com/archivo/odisea-comprar-iphone-3gs-espana-ii.xhtml" target="_blank">II</a> y <a href="http://www.tengounmac.com/archivo/odisea-comprar-iphone-3gs-espana-iii-final-feliz.xhtml" target="_blank">III</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nowfromhome.com/firm-un-pacto-con-el-diablo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Vado HD: Pocket high-definition video camera</title>
		<link>http://www.nowfromhome.com/vado-hd-pocket-high-definition-video-camera/</link>
		<comments>http://www.nowfromhome.com/vado-hd-pocket-high-definition-video-camera/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 07:15:45 +0000</pubDate>
		<dc:creator>Jos</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[gadgets]]></category>

		<guid isPermaLink="false">http://www.nowfromhome.com/vado-hd-pocket-high-definition-video-camera/</guid>
		<description><![CDATA[Last month, my Sony HC-90 Handycam stopped working. The failure was quite simple, the objective’s cover didn’t fully open. I tried to repair it myself but it was impossible. I contacted Sony Service Support but they asked me 60 €. Too much for such a simple problem. I decided to check what the market could [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nowfromhome.com/wp-content/uploads/2009/10/image.png"><img style="border-bottom: 0px; border-left: 0px; margin: 0px 0px 0px 10px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" align="right" src="http://www.nowfromhome.com/wp-content/uploads/2009/10/image_thumb.png" width="272" height="275" /></a> Last month, my Sony HC-90 Handycam stopped working. The failure was quite simple, the objective’s cover didn’t fully open. I tried to repair it myself but it was impossible. I contacted Sony Service Support but they asked me 60 €. Too much for such a simple problem.</p>
<p>I decided to check what the market could offer me. I remembered to have read some great reviews about the <a href="http://www.theflip.com/products_flip_ultra.shtml#scene=sceneMain" target="_blank">Flip Ultra</a> camera, which opened&#160; a new segment called ultaportable video cameras. I started reading reviews and comparisons charts with other ultraportable cameras.</p>
<p>Turns out that the Flip can’t be bought in Spain, so I lean towards the <a href="http://us.creative.com/products/product.asp?category=833&amp;subcategory=834&amp;product=18108" target="_blank">Creative Vado HD</a>. It <a href="http://reviews.cnet.com/digital-camcorders/creative-vado-hd/4505-6500_7-33438638.html" target="_blank">compares very good with the MinoHD</a>.</p>
<p>For just 200 € shipped (much less if you can buy it from Amazon!) you get a video camera that fits in your pocket (just like a mobile phone), that can do HD (1280&#215;720) and that has no moving parts. It has 8 GB of memory which is enough for 2 hours of high definition video. It also includes an HDMI cable. </p>
<p>Video quality is great even indoors with low light. Of course it cannot be compared with other bigger HD cameras, but it’s ok to shot home videos. </p>
<p>The camera has been designed with one goal in mind: simplicity. You turn on the camera (by the way is ready to shoot video in 1 second) and press the red button to start recording. Press it again to stop it. Each time you press the red button a new file is created.</p>
<p>The you can view the videos on the built-in small screen and delete those you don’t want. You can directly plug the camera to your TV (via HDMI), or connect it to any USB port in your computer and transfer the files.</p>
<p>It also includes some software to manage the videos and uploading them to YouTube and other services but I have not tried it yet. Honestly I don’t care about that software.</p>
<p>I’m very happy with the camera. The best advantage I see over traditional cameras is that you can bring it with you all the times and therefore you shoot a lot more videos. Ask my son <img src='http://www.nowfromhome.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.nowfromhome.com/vado-hd-pocket-high-definition-video-camera/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 x64 and Intel 82562V-2 don&#8217;t work well together</title>
		<link>http://www.nowfromhome.com/windows-7-x64-and-intel-82562v-2-dont-work-well-together/</link>
		<comments>http://www.nowfromhome.com/windows-7-x64-and-intel-82562v-2-dont-work-well-together/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 20:03:51 +0000</pubDate>
		<dc:creator>Jos</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.nowfromhome.com/windows-7-x64-and-intel-82562v-2-dont-work-well-together/</guid>
		<description><![CDATA[As soon as Windows 7 RTM got released I upgraded my main computer and my laptop. On my main machine I put Windows 7 x64 as I have 8 GB there. Everything worked great except the network card. I was unable to get more than a couple of hundreds of KB/s of transfer speed. I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nowfromhome.com/wp-content/uploads/2009/09/networkcard.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="networkcard" border="0" alt="networkcard" align="right" src="http://www.nowfromhome.com/wp-content/uploads/2009/09/networkcard_thumb.jpg" width="240" height="188" /></a> As soon as Windows 7 RTM got released I upgraded my main computer and my laptop. On my main machine I put Windows 7 x64 as I have 8 GB there. Everything worked great except the network card. I was unable to get more than a couple of hundreds of KB/s of transfer speed.</p>
<p>I updated the drivers to <a href="http://downloadcenter.intel.com/filter_results.aspx?strTypes=all&amp;ProductID=998&amp;OSFullName=Windows+7%2C+64-bit*&amp;lang=eng&amp;strOSs=190&amp;submit=Go!">the latest</a> version from Intel, but it made no difference. Of course this was a show-stopping problem because backups takes forever and even browsing photos from a network share is simply impossible.</p>
<p>I’ve finally solved the problem purchasing a 6 € Gigabit network card. It works just fine and now I’m getting around 12 MB/s again (my network is 100MB for now).</p>
</p>
<p>I’m sure Intel will update their drivers before Windows 7 reaches General Availability.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nowfromhome.com/windows-7-x64-and-intel-82562v-2-dont-work-well-together/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
