<?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>Xavi Esteve &#187; Work</title>
	<atom:link href="http://xaviesteve.com/category/life/work/feed/" rel="self" type="application/rss+xml" />
	<link>http://xaviesteve.com</link>
	<description>I&#039;m a front end web developer and graphic designer from Barcelona based in London. I am passionate in JavaScript, jQuery, CSS, PHP, Wordpress, usability and SEO.</description>
	<lastBuildDate>Thu, 10 May 2012 11:45:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Compare files with Dreamweaver in Mac OSX &#8211; Step by step guide</title>
		<link>http://xaviesteve.com/3096/compare-files-with-dreamweaver-in-mac-osx-step-by-step-guide/</link>
		<comments>http://xaviesteve.com/3096/compare-files-with-dreamweaver-in-mac-osx-step-by-step-guide/#comments</comments>
		<pubDate>Tue, 27 Mar 2012 13:34:46 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[dreamweaver]]></category>
		<category><![CDATA[teamwork]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=3096</guid>
		<description><![CDATA[It is very helpful to be able to compare different code files to see their changes, specially when working in a team. Adobe Dreamweaver is my main choice when developing since I like the color highlighting theme, it has an FTP client included and a simple check-in/check-out functionality that doesn&#8217;t need to be set up [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://xaviesteve.com/wp-content/uploads/2012/03/dreamweaver-diffmerge-osx.jpg"><img class="aligncenter size-full wp-image-3112" title="Dreamweaver DIffMerge OSX" src="http://xaviesteve.com/wp-content/uploads/2012/03/dreamweaver-diffmerge-osx.jpg" alt="" width="600" height="300" /></a></p>
<p>It is very helpful to be able to <strong>compare different code files</strong> to see their changes, specially when working in a team. <strong>Adobe Dreamweaver</strong> is my main choice when developing since I like the color highlighting theme, it has an FTP client included and a simple check-in/check-out functionality that doesn&#8217;t need to be set up like SVN and works in cheap shared hostings that don&#8217;t support any version control.</p>
<p>To compare files in Macintosh there are several applications and the best, lighter and faster to load is <strong>DiffMerge</strong> (works great in my old white Macbook), it is also <strong>free and open source</strong> so more than welcome. This is how you set it up in Dreamweaver so that you can compare files easily by right-clicking the file and selecting <em>Compare with Remote Server</em>:</p>
<p><img class="aligncenter size-full wp-image-3097" title="Compare with Remote Server" src="http://xaviesteve.com/wp-content/uploads/2012/03/Screen-shot-2012-03-27-at-12.11.45.png" alt="Compare with Remote Server" width="378" height="169" /></p>
<p>Also when uploading a file Dreamweaver may warn you that the file in the server has been modified and you may overwrite someone else&#8217;s changes:</p>
<p><img class="aligncenter size-full wp-image-3098" title="Compare files in Dreamweaver" src="http://xaviesteve.com/wp-content/uploads/2012/03/Screen-shot-2012-03-27-at-12.13.47.png" alt="Compare files in Dreamweaver" width="541" height="186" /></p>
<p>And also in the Synchronize files list:</p>
<p><a href="http://xaviesteve.com/wp-content/uploads/2012/03/Screen-shot-2012-03-28-at-15.48.12.png"><img class="aligncenter size-full wp-image-3119" title="Dreamweaver Synchronize files" src="http://xaviesteve.com/wp-content/uploads/2012/03/Screen-shot-2012-03-28-at-15.48.12.png" alt="Dreamweaver Synchronize files" width="514" height="135" /></a></p>
<p>It becomes really useful to see what has changed, once you click the <em>Compare</em> button this is how DiffMerge looks like:</p>
<p><img class="aligncenter size-full wp-image-3100" title="DiffMerge comparing a CSS file" src="http://xaviesteve.com/wp-content/uploads/2012/03/Screen-shot-2012-03-27-at-12.30.41.png" alt="DiffMerge comparing a CSS file" width="595" height="427" /></p>
<p>Looks good, huh? Let&#8217;s get to work then!</p>
<h2>Setting up DiffMerge with Dreamweaver</h2>
<p>First thing to do is to <a title="DiffMerge Download" href="http://www.sourcegear.com/diffmerge/downloads.php" target="_blank">download DiffMerge</a> from the official site and install it, no need to open it.</p>
<p>Dreamweaver needs a shell command to open DiffMerge with both files. We will install a small script (10 lines of code) into the /usr/bin folder. To do this you first need to be able to view all hidden files:</p>
<pre>defaults write com.apple.Finder AppleShowAllFiles YES
killall Finder</pre>
<p>Open <em>Finder</em>, go to <em>Utilities</em> and open <em>Terminal</em>. Paste the code above. <em>Finder</em> will restart and all your Finder open windows will close. If the code above doesn&#8217;t work then change YES to TRUE and try again.</p>
<p>Now go to Macintosh HD or your main drive and go to usr/bin:</p>
<p><img class="aligncenter size-full wp-image-3101" title="Path to usr/bin" src="http://xaviesteve.com/wp-content/uploads/2012/03/Screen-shot-2012-03-27-at-12.44.23.png" alt="Path to usr/bin" width="220" height="20" /></p>
<p><a title="DiffMerge.sh" href="http://xaviesteve.com/wp-content/uploads/2012/03/diffmerge.sh_1.txt" target="_blank">Download this file</a> and rename it as <code>diffmerge.sh</code></p>
<p>Move diffmerge.sh to the /usr/bin folder, you will probably need to enter your Administrator password since that is a system folder.</p>
<p>Now go to Dreamweaver, open <em>Preferences</em> and go to the <em>File Compare </em>section. In there, paste this text:</p>
<pre>Macintosh HD:usr:bin:diffmerge.sh</pre>
<p>Yes, it&#8217;s got <code>:</code> instead of <code>/</code> but it&#8217;s how it works.</p>
<p><img class="aligncenter size-large wp-image-3104" title="Screen shot 2012-03-27 at 12.55.05" src="http://xaviesteve.com/wp-content/uploads/2012/03/Screen-shot-2012-03-27-at-12.55.05-600x317.png" alt="" width="600" height="317" /></p>
<p>Save the settings by clicking OK at the bottom.</p>
<p>You are done! Now you can compare files and see what has changed, great to keep track of your peer changes and even some changes you made months ago and can&#8217;t remember.</p>
<p>You can hide the hidden files again by going to Terminal and typing:</p>
<pre>defaults write com.apple.Finder AppleShowAllFiles NO
killall Finder</pre>
<p>Nice! You made it until the end of the post. Here&#8217;s an extra gift for you, a very useful tool to disable or customize the annoying startup sound in all Mac OSX, it is called Startup Sound and it installs in the System Preferences so it gets completely integrated with your system. It&#8217;s free too, <a title="Annoying Startup Sound Mac OSX" href="http://www5e.biglobe.ne.jp/~arcana/StartupSound/index.en.html" target="_blank">download here</a>.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/3096/compare-files-with-dreamweaver-in-mac-osx-step-by-step-guide/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kohana 3.2 Documentation all-in-one PDF, ePub and HTML formats</title>
		<link>http://xaviesteve.com/2965/kohana-3-2-documentation-all-in-one-pdf-epub-and-html-formats/</link>
		<comments>http://xaviesteve.com/2965/kohana-3-2-documentation-all-in-one-pdf-epub-and-html-formats/#comments</comments>
		<pubDate>Fri, 24 Feb 2012 12:14:54 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[documentation]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[kohana]]></category>
		<category><![CDATA[manual]]></category>
		<category><![CDATA[official]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=2965</guid>
		<description><![CDATA[Kohana&#8217;s official documentation is pretty complete and useful as well as well written. I have been studying it for a few days but wanted to read the tutorials also whenever I had no Internet connectivity. Searching on the Internet for PDFs or ePubs on Kohana didn&#8217;t really show much so I developed a little tool [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-2982" title="Kohana ePub file" src="http://xaviesteve.com/wp-content/uploads/2012/02/kohana-epub.jpg" alt="Kohana ePub file" width="600" height="425" /></p>
<p>Kohana&#8217;s <strong>official documentation</strong> is pretty complete and useful as well as well written. I have been studying it for a few days but wanted to read the <strong>tutorials</strong> also whenever I had <strong>no Internet connectivity</strong>. Searching on the Internet for PDFs or ePubs on Kohana didn&#8217;t really show much so I developed a little tool that extracts the official documentation and outputs it in <strong>one single file</strong> so you can read the official Kohana <strong>guide</strong> anywhere anytime.</p>
<p>You can download the documentation both in <strong>ePub</strong>, <strong>PDF</strong> and <strong>HTML</strong> formats. The ePub format does not have the images in it (I used an online tool and it removed them, there aren&#8217;t a lot anyway) but works great in the iPad, Kindle and Android tablets.</p>
<p><strong><a href="http://www.mediafire.com/?ac2mebegnm0cx67" rel="nofollow">Kohana 3.2 Documentation in PDF format</a></strong> (<a href="http://min.us/mlZHsYfmD#2o">mirror</a>) (3.3MB)</p>
<p><strong><a href="http://www.mediafire.com/?u9r6clwut2g4q4e" rel="nofollow">Kohana 3.2 Documentation in ePub format</a></strong> (<a href="http://min.us/mlZHsYfmD#1o">mirror</a>) (240KB)</p>
<p><strong><a href="http://www.mediafire.com/?m5bq0p3icdqigv9" rel="nofollow">Kohana 3.2 Documentation in HTML format</a></strong> (<a href="http://min.us/mlZHsYfmD#3o">mirror</a>) (310KB)</p>
<p>I have done my best with the crawling tool but it hasn&#8217;t been 100% tested so some sections may have been skipped, please let me know in the comments if that&#8217;s the case.</p>
<p>Thanks to all the contributors to the Kohana Documentation, as I am still learning Kohana accept this as my little contribution to the framework :)</p>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/2965/kohana-3-2-documentation-all-in-one-pdf-epub-and-html-formats/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iPad web based Code Editor (with extra symbols keyboard)</title>
		<link>http://xaviesteve.com/2928/ipad-web-based-code-editor-with-extra-symbols-keyboard/</link>
		<comments>http://xaviesteve.com/2928/ipad-web-based-code-editor-with-extra-symbols-keyboard/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 16:11:39 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Front-End]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=2928</guid>
		<description><![CDATA[I mostly use the iPad for reading email, news and blogs although I am still perplexed at how few apps there are for actually doing some work. Well, to be honest, there are many apps to do some work. But I believe in platform-agnostic web-apps or SAAS to be the future of our world and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-2932" title="iPad Code Editor Web Based" src="http://xaviesteve.com/wp-content/uploads/2012/02/ipad-code-editor-web-based.jpg" alt="iPad Code Editor Web Based" width="600" height="300" /></p>
<p>I mostly use the iPad for reading email, news and blogs although I am still perplexed at how few apps there are for actually doing some work. Well, to be honest, there are many apps to do some work. But I believe in platform-agnostic web-apps or SAAS to be the future of our world and the amount, variety and features of current web apps for web development is still quite scarce.</p>
<p>One of the big gaps that I found was regarding code editors. The lack of fast symbol typing in the keyboard is very frustrating and slow (you need to use iOS&#8217;s default keyboard and type 3 keys just to get a &#8220;&lt;&#8221; sign, plus another one to get back). This is why I came up with a proof of concept on<strong> additional keyboard rows with extra keys for touch screen devices</strong> and added all symbols frequently used for coding and programming so you don&#8217;t need to keep switching from one keyboard set to another. It has been optimised for the iPad in portrait mode although with some responsive CSS queries and device detection it can be adapted anywhere.</p>
<p>The code itself is basic HTML, CSS and a bit of JavaScript and jQuery. I&#8217;ve kept it simple to aid scalability and customisation. This is how it looks:</p>
<p><a href="http://xaviesteve.com/wp-content/uploads/2012/02/ipad-additional-keyboard-coding-programming-symbols.png"><img class="alignnone size-large wp-image-2929" title="iPad additional web-based keyboard for coding" src="http://xaviesteve.com/wp-content/uploads/2012/02/ipad-additional-keyboard-coding-programming-symbols-600x800.png" alt="iPad additional web-based keyboard for coding" width="600" height="800" /></a></p>
<h2>Demo and download</h2>
<p>Click the following link to open the Code Editor. To test it properly you will need an <em>iPad in portrait mode</em>.</p>
<p><a class="button blue" href="http://xaviesteve.com/pro/ipadkeyboard" target="_blank">iPad web-based code editor with extra symbols keyboard</a></p>
<h3>License</h3>
<p>Public Domain, keeping the Internet open. You can use it commercially and distribute it as much as you want without being forced to credit the author.</p>
<h3>Changelog</h3>
<p>If you have developed it further send me an email and I will include it in the next release and you in the Credits.</p>
<h4>8 February 2012 (v1.0)</h4>
<ul>
<li>First release</li>
</ul>
<p>If you haven&#8217;t seen my <a title="iPad/iPhone/mobile HTML/CSS template for web apps (responsive, no javascript)" href="http://xaviesteve.com/2899/ipad-iphone-mobile-html-css-template-for-web-apps/">iPad HTML/CSS template</a> you must see it now.</p>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/2928/ipad-web-based-code-editor-with-extra-symbols-keyboard/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Test de usabilidad web económico</title>
		<link>http://xaviesteve.com/2913/test-de-usabilidad-web-economico/</link>
		<comments>http://xaviesteve.com/2913/test-de-usabilidad-web-economico/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 19:47:49 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Español]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[UX]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=2913</guid>
		<description><![CDATA[Si nos falta el tiempo y el dinero para poder ejecutar un estudio de usabilidad de nuestra página web siempre podemos recurrir a sistemas caseros que son rápidos y económicos. Escoger la lista de perfiles Muchos usuarios visitarán nuestra web en el futuro. Entre éstos tenemos que identificar los diferentes perfiles de usuario (llamados &#8220;personas&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-2917" title="" src="http://xaviesteve.com/wp-content/uploads/2012/02/11.jpeg" alt="" width="600" height="250" /></p>
<p>Si nos falta el tiempo y el dinero para poder ejecutar un estudio de usabilidad de nuestra página web siempre podemos recurrir a sistemas caseros que son rápidos y económicos.</p>
<h2>Escoger la lista de perfiles</h2>
<p>Muchos usuarios visitarán nuestra web en el futuro. Entre éstos tenemos que identificar los diferentes perfiles de usuario (llamados &#8220;personas&#8221; en inglés) y de estos perfiles escoger los <strong>dos o tres principales</strong>, si hay algo que está claro es que la página web nunca será del agrado de todos nuestros usuarios ya que es <strong>imposible que agrade a todo el mundo</strong> aunque sí que podemos adaptarla a la mayoría que nos interese. Un perfil de usuario sería algo así:</p>
<blockquote><p>Persona de entre 25 y 35 años con poder adquisitivo medio-alto, educación universitaria, que vive en una ciudad, no tiene hijos, con conocimientos medios de informática, que navega entre 30 minutos y 2 horas al día por Internet vía un ordenador portátil o de escritorio. Realiza actividades de ocio entre 4 y 8 veces al mes.</p></blockquote>
<p>Una vez tengamos los perfiles principales deberemos encontrar gente que se adapte a ellos. Si nuestro presupuesto es bajo podemos recurrir a favores de amigos, familiares y conocidos. Lo importante es que puedan estar presencialmente con nosotros.</p>
<h2>Test de usabilidad</h2>
<p>Una vez tengamos una lista de los diferentes perfiles de usuario, situaremos al primero delante del ordenador y dejaremos unos minutos para que el usuario se acomode y familiarice con él, encuentre el icono del navegador web y lo abra. Si puedes realizar el test desde el ordenador del usuario muchísimo mejor.</p>
<h3>Misión</h3>
<p>El siguiente paso es el más importante y es que sólo le encomendamos <strong>una misión no más larga que una oración</strong> y cuya tarea debe durar <strong>menos de 15-30 minutos</strong> (podemos encomendarle varias misiones, una a una, pero una sola a la vez). Por ejemplo:</p>
<blockquote><p>Visita la página xaviesteve.com y compra el aparato de música de entre 100 y 200 euros que más te guste.</p></blockquote>
<p>En esa frase queda implícito que el usuario deberá: buscar el producto, registrarse para poder comprar, confirmar un enlace de activación de la cuenta en su correo, hacer click en Comprar, introducir sus datos de la tarjeta de crédito (una vez saque su tarjeta de crédito le proporcionaremos una nuestra de prueba) y finalmente confirmar. Otro ejemplo sería:</p>
<blockquote><p>Mañana quieres ir a cenar a un restaurante japonés, haz una reserva para 2 en la web helloplan.com y encuentra donde está ubicado.</p></blockquote>
<h3>Nuestro papel</h3>
<p>Lo importante es que <strong>el usuario lo deduzca todo por él mismo</strong> sin que tengamos que explicarle nada. Si nos hace preguntas le diremos que no se preocupe, que intente descubrirlo él mismo. Si vemos que duda demasiado o empieza a frustrarse le ayudaremos.</p>
<h3>Pensando en voz alta</h3>
<p>Al usuario le pediremos que piense en voz alta durante el proceso, es decir, que <strong>vaya contando todo lo que piensa, hace y por qué</strong>, por ejemplo:</p>
<blockquote><p>Espero a que la página se cargue, a ver&#8230; ¡Ahá! Aquí pone Electrónica, los aparatos de música estarán dentro, ah no, hay otro que se llama Música, debe ser este mejor, hago clic&#8230; Ok este es, bien, a ver, aquí centrado hay las mejore ofertas&#8230; aquí a la izquierda me sale una lista con subcategorías&#8230; voy a clicar aquí&#8230;</p></blockquote>
<h3>Analizar con detalle</h3>
<p>Si disponemos de una cámara de vídeo o programa de screencasts, nos ayudará muchísimo para poder analizar mas tarde cualquier duda que el usuario haya podido tener y descurir las dudas y micro-gestos que ha tenido y que ocurren en milisegundos (estas son las que cuestan más de detectar y las que tenemos que solucionar) o aquellas donde el usuario duda de entre varias opciones.</p>
<h2>Objetivo del test</h2>
<p>Nuestro objetivo final del test de usabilidad es detectar qué podemos cambiar o mejorar para que nuestros usuarios reales tengan que pensar o dudar lo mínimo. Cuanto menos hagamos pensar a nuestro usuario <strong>menor será su nivel de frustración y mayor el de autorealización</strong>. Una web usable es aquella donde <strong>el usuario cumple su objetivo por intuición</strong> sin tener que pensar demasiado. Para acabar, una cita de uno de los genios en usabilidad web, os recomiendo su libro.</p>
<blockquote><p>Una web poco usable no es aquella web que no se usará pero sí aquella que se usará menos.<br />
&#8211;Steve Krug en &#8216;Don&#8217;t make me Think&#8217;</p></blockquote>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/2913/test-de-usabilidad-web-economico/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Send and Receive emails from your company&#8217;s account directly in Gmail</title>
		<link>http://xaviesteve.com/2701/send-and-receive-emails-from-your-companys-account-directly-in-gmail/</link>
		<comments>http://xaviesteve.com/2701/send-and-receive-emails-from-your-companys-account-directly-in-gmail/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 16:31:27 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[startups]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=2701</guid>
		<description><![CDATA[If you have set up a new website or a company and want to send and receive emails with your company&#8217;s email address but don&#8217;t want to have multiple inboxes (specially when you manage more than 5 different email accounts) the best way to do it is to redirect all your emails to the same [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-2712" title="" src="http://xaviesteve.com/wp-content/uploads/2011/11/gmail-company-email-address.jpg" alt="" width="600" height="300" /></p>
<p>If you have set up a new website or a company and want to <strong>send</strong> and <strong>receive</strong> emails with your <strong>company&#8217;s email address</strong> but don&#8217;t want to have multiple inboxes (specially when you manage more than 5 different email accounts) the best way to do it is to redirect all your emails to the same email account. And thanks to the power of Google Mail or Gmail you can manage unlimited accounts effortlessly and send and receive emails from different accounts easily into one inbox. Follow these two step-by-step guides to set up receiving and sending:</p>
<h2>Receiving emails from your website to your email</h2>
<p>Go to your website&#8217;s <strong>cPanel</strong> (if you don&#8217;t know what cPanel is then send this website to your web developer to do this for you) and click on <em>Forwarding</em>:</p>
<p><img class="alignnone size-full wp-image-2702" title="" src="http://xaviesteve.com/wp-content/uploads/2011/11/step1.gif" alt="" width="521" height="275" /></p>
<p>Then click on <em>Add Forwarder</em>:</p>
<p><img class="alignnone size-full wp-image-2703" title="" src="http://xaviesteve.com/wp-content/uploads/2011/11/step2.gif" alt="" width="600" height="291" /></p>
<p>Now fill in your email account name (what goes before the @ symbol) and select the domain you want to use, then forward it to your Gmail account like in the image:</p>
<p><img class="alignnone size-full wp-image-2704" title="" src="http://xaviesteve.com/wp-content/uploads/2011/11/step3.jpg" alt="" width="600" height="352" /></p>
<p>Click on Add Forwarder and a success message will appear. You can now close cPanel. You must wait for a few minutes or even a few hours for the mail server to update and spread your new email account before it forwards emails correctly and you start receiving them.</p>
<h2>Sending emails from your company&#8217;s email address</h2>
<p>First of all make sure that emails sent to your company&#8217;s email address are successfully forwarded to your Gmail account, try sending a test email now and look in your Gmail account for the message to arrive. Once you open the message you should see your company&#8217;s email address in the To: field as in this screenshot:</p>
<p><img class="alignnone size-full wp-image-2710" title="" src="http://xaviesteve.com/wp-content/uploads/2011/11/check.gif" alt="" width="600" height="319" /></p>
<p>If you are not receiving them then wait a few hours and try again later or check the Spam folder in case it went there.</p>
<p>Once you are receiving the emails you can set Gmail up to start sending emails with your company&#8217;s email address:</p>
<p>Go to the top right corner of Gmail and click <em>Options</em> &gt; <em>Mail settings</em>:</p>
<p><img class="alignnone size-full wp-image-2705" title="" src="http://xaviesteve.com/wp-content/uploads/2011/11/stepb1.gif" alt="" width="491" height="324" /></p>
<p>The Settings page will open, click on <em>Accounts and Import</em>:</p>
<p><img class="alignnone size-full wp-image-2706" title="" src="http://xaviesteve.com/wp-content/uploads/2011/11/stepb2.gif" alt="" width="487" height="226" /></p>
<p>Now keep scrolling down until you see a <em>Send email as</em> section and a link to <em>Add another email address you own</em>, click that:</p>
<p><img class="alignnone size-full wp-image-2707" title="" src="http://xaviesteve.com/wp-content/uploads/2011/11/stepb3.gif" alt="" width="467" height="101" /></p>
<p>A popup window will open, on this step you need to fill in the name that will show when people receive an email from your company&#8217;s address and your company&#8217;s email address, then click on <em>Next Step</em>:</p>
<p><img class="alignnone size-full wp-image-2708" title="" src="http://xaviesteve.com/wp-content/uploads/2011/11/stepb4.gif" alt="" width="432" height="282" /></p>
<p>The easy and quick way now is to select <em>Send through Gmail</em> and click <em>Next Step</em>. If you want to send it through the SMTP servers of your company you will need to find them out asking your web developer or IT company. For HostGator accounts have a look at the <a href="http://support.hostgator.com/articles/specialized-help/email/outlook-eudora-thunderbird-mac-ipad-phone-client-settings" rel="nofollow">Email client settings</a>.</p>
<p><img class="alignnone size-full wp-image-2709" title="" src="http://xaviesteve.com/wp-content/uploads/2011/11/stepb5.gif" alt="" width="453" height="305" /></p>
<p>The next steps are pretty straight forward, a confirmation email will be sent to the company email address (which will be forwarded to your Gmail account), open it and click on the activation link to authorize Gmail to send emails as the company&#8217;s address.</p>
<p>Now, when writing a new email or replying to one, there will be a <em>From:</em> dropdown from which you will be able to choose the account to use:</p>
<p><img class="alignnone size-full wp-image-2711" title="" src="http://xaviesteve.com/wp-content/uploads/2011/11/from.gif" alt="" width="600" height="171" /></p>
<h2>Organizing your inbox</h2>
<p>Once you start using multiple email accounts in the same inbox things may start to get unorganised. To solve this you can create tags. Go to your Gmail and go to <em>Mail settings</em> again (at the top right), then select the <em>Filters</em> tab and click <em><strong>Create a new filter</strong></em> and type in your company&#8217;s email address there and click <em>Create filter with this search</em>:</p>
<p><img class="alignnone size-full wp-image-2713" title="" src="http://xaviesteve.com/wp-content/uploads/2011/11/labels1.jpg" alt="" width="350" height="353" /></p>
<p>In this step select Apply label and create a new label:</p>
<p><img class="alignnone size-full wp-image-2714" title="" src="http://xaviesteve.com/wp-content/uploads/2011/11/labels2.jpg" alt="" width="350" height="353" /></p>
<p>You are done! Now, every time you receive an email to the company&#8217;s email address a label will appear next to the subject, you can customize the colour of the label and rename it to whatever you want.</p>
<p>In your inbox sidebar you will be able to filter messages sent only to that email address. Find below my own inbox, I have more than 10 email accounts configured and all of them have a different Label so that I keep everything organised:</p>
<p><img class="alignnone size-full wp-image-2715" title="" src="http://xaviesteve.com/wp-content/uploads/2011/11/labels3.jpg" alt="" width="600" height="290" /></p>
<p>If you have any questions or anything is unclear let me know in the comments section below and I will do my best to help you.</p>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/2701/send-and-receive-emails-from-your-companys-account-directly-in-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>At last, the CHEAPEST &amp; BEST mobile phone company in the UK</title>
		<link>http://xaviesteve.com/2653/at-last-the-cheapest-best-mobile-phone-company-in-the-uk/</link>
		<comments>http://xaviesteve.com/2653/at-last-the-cheapest-best-mobile-phone-company-in-the-uk/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 19:19:41 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[uk]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=2653</guid>
		<description><![CDATA[After trying several mobile phone network companies such as Orange, Tesco and Vodafone I&#8217;ve finally discovered the best mobile phone network company in the United Kingdom. It&#8217;s called GiffGaff (strange name but keep reading) and it is by far the cheapest and best of them all. Better than T-Mobile, O2, Orange, Vodafone, Tesco, Three, Lebara and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://xaviesteve.com/go/giffgaff"><img class="alignnone size-full wp-image-2660" title="Cheapest UK Mobile Phone" src="http://xaviesteve.com/wp-content/uploads/2011/11/cheapest-uk-mobile-phone-company1.jpg" alt="cheapest-uk-mobile-phone-company" width="600" height="300" /></a></p>
<p>After trying several mobile phone network companies such as Orange, Tesco and Vodafone I&#8217;ve finally discovered the <strong>best mobile phone network company in the United Kingdom</strong>. It&#8217;s called <strong><a href="http://xaviesteve.com/go/giffgaff">GiffGaff</a></strong> (strange name but keep reading) and it is by far the cheapest and best of them all. Better than T-Mobile, O2, Orange, Vodafone, Tesco, Three, Lebara and so on&#8230;</p>
<p style="text-align: center;"><img style="border: 5px solid #fff;" title="" src="http://xaviesteve.com/wp-content/uploads/2011/11/giffgaff-goodybags.jpg" alt="giffgaff goodybags" width="409" height="130" /></p>
<p>Let&#8217;s have a look at the green goodybag. For just <strong>£10 a month</strong> you get <strong>unlimited 3G Internet</strong> (there is a flexible limit of 6,000 MB per month which is much more than you can use in a mobile phone), <strong>unlimited texts</strong> to any UK mobile phone, <strong>250 minute calls</strong> to any UK mobile or landline phone and <strong>unlimited free calls to other GiffGaff</strong> mobile phones (get your friends and family to switch to GiffGaff and you can call them for free).</p>
<p>Already convinced? <strong><a class="button blue" href="http://xaviesteve.com/go/giffgaff">Click here to receive a free GiffGaff SIM card now</a></strong></p>
<h2>Frequently Asked Questions</h2>
<h4>What is the network coverage quality?</h4>
<p>It uses the O2 network so it is by far the best in the whole United Kingdom.</p>
<h4>Is there a permanent/fixed-term contract required?</h4>
<p>None at all! If you don&#8217;t like it you can switch to any other mobile network company whenever you want. Period. No need to tell them or anything.</p>
<h4>Can I keep my old number?</h4>
<p>Yes! You can try GiffGaff and if you like it transfer your old number whenever you want so you can keep using it seamlessly. To transfer it you need to ask for a PAC code to your current company and then GiffGaff will switch your number during the night so you don&#8217;t have any downtime.</p>
<h4>Are there any hidden fees or small print?</h4>
<p>Transparent as water! GiffGaff has proven to be a serious company, not like other dodgy mobile companies that say you pay X and at the end of the month you end up paying two times what they promised because you forgot to read the small print in the contract.</p>
<h4>Can I get a phone with it?</h4>
<p>Nope&#8230; for that cheap and without contracts they can&#8217;t offer free phones but with the money you save you can buy an unblocked phone and still save money. I bought an unlocked iPhone and have been using GiffGaff for the past several months so saved quite a lot of money.</p>
<h4>Can I go on a contract mode instead of Pay-As-You-Go?</h4>
<p>If you are looking to not have to worry about topping up: Yes! You can set up auto-topup so that every month (or whenever you run out of credit) your SIM card gets more credit and you never run out of it. It is better than a &#8220;contract&#8221; since you can cancel it or pause it through the website at any time.</p>
<h4>What if I have any problems with it? How is the support like?</h4>
<p>Here comes the best part, GiffGaff is mostly web based (you still have a support phone number) but I hugely prefer its web based support. The good thing of being web based is that the support is completely free for you and it is also immediate since other expert giffgaffers earn free credits for answering questions successfully so there is always people there helping you out in a few minutes instead of calling and waiting on the line for a useless operator to come available and drive you nuts.</p>
<h4>How about roaming and international calls?</h4>
<p>Great! They are also surprisingly cheap compared to other mobile phone network companies and they keep lowering the prices every now and then:</p>
<ul>
<li><span style="text-decoration: underline;">All <strong>EU countries</strong>, Australia, Andorra, Croatia, Faroe Islands, Gibraltar, Iceland, India, Kosovo, Liechtenstein, Monaco, Montenegro, New Zealand, Norway, Pakistan, San Marino, Serbia, Switzerland, Vatican City:</span> 8p/min landlines, 16p/min mobiles, 8p/text, £1.50 per MB</li>
<li><span style="text-decoration: underline;"><strong>USA</strong> and Canada:</span> 8p/min landlines and mobiles, 8p/text, £5 per MB</li>
<li><span style="text-decoration: underline;">Other countries:</span> £1/min, 20p text, £5 per MB</li>
</ul>
<div>When you visit another country you get a free text from GiffGaff with the updated tariffs in there.</div>
<h4>250 minutes is not enough for me, is there anything else?</h4>
<p>I&#8217;ve been using the £10 (250 minutes) for the past several months and never reached the limit but if you speak a lot on your phone you can pay <strong>£15 a month and get 400 minutes</strong>, or for <strong>£20 you get 800 minutes</strong> per month, for <strong>£25 you get 1500 minutes&#8230;</strong> which is insane! All of these are with unlimited Internet, texts and GiffGaff calls included so you may want to get your frequent callers to switch to GiffGaff and then you don&#8217;t waste any minutes.</p>
<h2>YEAH! Where do I get my free SIM card?!</h2>
<p>Use the link below to request your free SIM card and get an extra £5 credit thanks to my recommendation. <strong>Important:</strong> Fill in the form there and in the next step top up £10 of credit but make sure to <strong>get a Goodybag</strong>, goodybags are the best!</p>
<p>&nbsp;</p>
<p><a class="big button blue" href="http://xaviesteve.com/go/giffgaff">Click here to get a free GiffGaff SIM card</a></p>
<p>&nbsp;</p>
<p>Once you request the SIM it should arrive home in about 3 days (it can take up to 5, don&#8217;t stress out). Use it for a few days and let me know your feedback, I am pretty sure you will LOVE THIS COMPANY, personally, it changed the way I saw mobile phone companies, for me they where money suckers, now GiffGaff changed that. Wish we had the same in Spain&#8230;</p>
<p><small>Disclaimer: I&#8217;ve done extensive research. If there is a better option post it in the comments and I&#8217;ll update this post. I do not work for GiffGaff or anything similar, I just get free credits when someone asks for a free SIM thanks to my recommendation, the asker also gets free credits so it is a mutual win-win. You can get to recommend other people once you get your GiffGaff SIM card too! :)</small></p>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/2653/at-last-the-cheapest-best-mobile-phone-company-in-the-uk/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>10 essential WordPress SEO tips for content writers (one page PDF download)</title>
		<link>http://xaviesteve.com/2483/10-essential-wordpress-seo-tips-for-content-writers-one-page-pdf-download/</link>
		<comments>http://xaviesteve.com/2483/10-essential-wordpress-seo-tips-for-content-writers-one-page-pdf-download/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 07:22:16 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[content writing]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=2483</guid>
		<description><![CDATA[About a year ago I created a one-page document for content writers in my team to write better online articles. I am now releasing it so you can print it and have it close to you while writing. These are the most basic and important SEO tips you need to know if you want your [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://xaviesteve.com/wp-content/uploads/2011/10/seo-content-writing-wordpress.jpg"><img class="alignnone size-full wp-image-2545" title="SEO content writing wordpress" src="http://xaviesteve.com/wp-content/uploads/2011/10/seo-content-writing-wordpress.jpg" alt="" width="600" height="272" /></a></p>
<p>About a year ago I created a one-page document for content writers in my team to write better online articles. I am now releasing it so you can print it and have it close to you while writing. These are the most basic and important SEO tips you need to know if you want your posts to succeed. You will find a link to download the one-page PDF at the bottom of the article.</p>
<h3><strong>1. The most important tip is to create quality content</strong></h3>
<p>Posts that are <em>bookmarked</em>, <em>shared</em>, <em>linked</em>, <em>commented</em> or <em>thanked</em>. That should be the purpose of every post and should either be:</p>
<ol>
<li><strong>Useful</strong> (people reference to them)</li>
<li><strong>Interesting</strong> (people bookmark them)</li>
<li><strong>Funny</strong> or entertaining (people share them)</li>
</ol>
<p>Here&#8217;s a good article extending this concept on <a title="Effective SEO – Purposes and Actions in Content Writing" href="http://xaviesteve.com/1912/effective-seo-purposes-and-actions-in-content-writing/">writing with a purpose</a>.</p>
<h3><strong>2. User goes always first</strong></h3>
<p>Keep the post readable and attractive to humans. Google is secondary. Ensuring you write for your users will have <a title="Future-proof SEO – Avoiding Google penalization" href="http://xaviesteve.com/1985/future-proof-seo-avoiding-google-penalization/">long-term SEO benefits</a>.</p>
<h3><strong>3. Use Headings to split the content</strong></h3>
<p>Heading 1 is always the page title and it is the most important title. Headings to use in the content <strong>must start from Heading 2</strong> to a max depth of H6. Use headings instead of bolding or formatting the text yourself.</p>
<h3><strong>4. Use eye-catching titles but keep them short</strong></h3>
<p>Don&#8217;t be just informative, get the user&#8217;s attention.</p>
<ol>
<li><span style="text-decoration: line-through;">Windows tricks</span> -&gt; Top 10 coolest tricks for Windows!</li>
<li><span style="text-decoration: line-through;">London party places</span> -&gt; Best secret places to party in London</li>
</ol>
<h3><strong>5. First paragraphs are the most important ones</strong></h3>
<p>Search Engines give more importance to the first part of the posts. In fact, really large posts are usually not indexed completely.</p>
<h3><strong>6. Be descriptive by adding keywords whenever possible</strong></h3>
<p>All headings should have <strong>keywords</strong> in them:</p>
<ol>
<li><span style="text-decoration: line-through;">What I like</span> -&gt; What I like about the HP Pavilion laptop</li>
<li><span style="text-decoration: line-through;">My trip</span> -&gt; My awesome trip to Barcelona this summer</li>
</ol>
<h3><strong>7. Use synonyms</strong></h3>
<p>Don’t repeat keywords you are not targeting for, <strong>use a lot of synonyms</strong> instead.</p>
<ol>
<li>What I like about Acer -&gt; Review about Acer computers / My opinion on Acer laptops</li>
</ol>
<p>This way, users searching for &#8220;acer review&#8221;, &#8220;acer opinion&#8221; or &#8220;acer laptop&#8221; will find our page.</p>
<h3><strong>8. Rich formatting increases SEO</strong></h3>
<p>Eases Search Engines to identify the content.</p>
<ul>
<li>Using <strong>lists</strong> (and differentiating between ordered and unordered lists),</li>
<li><strong>bold</strong> and <strong>italic</strong> words or sentences,</li>
<li><strong>blockquote</strong> paragraphs when quoting or pasting literal text</li>
</ul>
<h3><strong>9. Add both inbound and outbound links</strong></h3>
<p>Links to authority webs like Flickr, Wikipedia or YouTube can be frequent (you don&#8217;t lose any PageRank juice). But don’t link too much to other websites (one or two per paragraph). Always <strong>describe the links</strong>:</p>
<ol>
<li><span style="text-decoration: line-through;">Download the Flash player by <span style="text-decoration: underline;">clicking here</span>.</span> -&gt; <span style="text-decoration: underline;">Download the Flash player</span>.</li>
</ol>
<h3><strong>10. Format posts inside WordPress</strong></h3>
<p>Text editors like Microsoft Word may add irrelevant or invalid code into posts. If the text is in Word, paste it in Notepad so it looses all formatting, then copy and paste into WordPress and <strong>format it there</strong> using Headings, lists, bold, italic, etc.</p>
<h2>Download the 10 SEO tips for WordPress PDF file</h2>
<p><a class="button blue" href="http://xaviesteve.com/wp-content/uploads/2011/09/Wordpress-SEO-writer-tips.pdf">10 SEO tips for WordPress PDF file</a><br />
If you have any doubts feel free to ask them in the comments. Also, share this article with your team, friends and colleagues for increased results and better blogging.</p>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/2483/10-essential-wordpress-seo-tips-for-content-writers-one-page-pdf-download/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Qué son los Business Angels y Fondos de Capital de Riesgo (Venture Capital)</title>
		<link>http://xaviesteve.com/2211/que-son-los-business-angels-y-fondos-de-capital-de-riesgo-venture-capital/</link>
		<comments>http://xaviesteve.com/2211/que-son-los-business-angels-y-fondos-de-capital-de-riesgo-venture-capital/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 13:17:19 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[Español]]></category>
		<category><![CDATA[Project management]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[_Minipost]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[finance]]></category>
		<category><![CDATA[funding]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[investment]]></category>
		<category><![CDATA[startups]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=2211</guid>
		<description><![CDATA[Cuando una startup empieza se suelen buscar Business Angels. Una vez la startup despega y gana sus primeros beneficios entonces es cuando los Capitales de Riesgo suelen incorporarse. Ambos tendrán un capital privado (no cotizado en bolsa) de la startup que se debe negociar. Esto no debe confundirse con Préstamos o Financiaciones ya que éstos [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-2240" src="http://xaviesteve.com/wp-content/uploads/2011/05/startup-finance.jpg" alt="" width="600" height="236" />Cuando una <strong>startup </strong>empieza se suelen buscar <strong>Business Angels</strong>. Una vez la startup despega y gana sus primeros beneficios entonces es cuando los <strong>Capitales de Riesgo</strong> suelen incorporarse. Ambos tendrán un capital privado (no cotizado en bolsa) de la startup que se debe negociar.</p>
<p>Esto no debe confundirse con <strong>Préstamos </strong>o <strong>Financiaciones </strong>ya que éstos deben devolverse incluso cuando el negocio fracasa o no sale rentable.</p>
<h2>Bussiness Angels</h2>
<p>Suelen ser personas individuales (normalmente gente de negocios exitosa) que invierten de 10,000€ a 100,000€ en un <strong>negocio que está por empezar</strong> o ya en marcha. Tienen <strong>experiencia </strong>del mercado y contactos con los que ayudar y <strong>no requieren un puesto</strong> en la toma de decisiones del negocio.</p>
<h2>Capital de Riesgo (Venture Capital)</h2>
<p>Suelen ser empresas que invierten en <strong>negocios ya en marcha</strong> (o en negocios nuevos con fundadores que tienen reputación) y llegan a invertir cantidades de 200,000€ a más de 1,000,000€ (el dinero proviene de un <strong>grupo de inversores</strong>). Tienen contactos y normalmente <strong>requieren tomar parte en la junta directiva</strong> del negocio.</p>
<h2>Series A round, Series B round&#8230;</h2>
<p>Se refiere a las rondas de financiamiento que ha habido. Series A es la primera, Series B la segunda y así succesivamente.</p>
<p><small>Photo by Xavi Esteve, Tim Dorr and net_efekt</small></p>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/2211/que-son-los-business-angels-y-fondos-de-capital-de-riesgo-venture-capital/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My 12 favourite iPhone apps ever</title>
		<link>http://xaviesteve.com/2371/my-12-favourite-iphone-apps-ever/</link>
		<comments>http://xaviesteve.com/2371/my-12-favourite-iphone-apps-ever/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 06:38:04 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[smartphones]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=2371</guid>
		<description><![CDATA[Here&#8217;s a list of the best 12 apps I have installed in my iPhone and probably the ones I use most in my device. They range from categories such as News, Productivity, Tools, Communication, Fitness, Reference, Music, Internet and Games. These iPhone apps are must-haves The most important apps in my iPhone. Reeder By far [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a list of the <strong>best 12 apps I have installed</strong> in my iPhone and probably the ones I use most in my device. They range from categories such as News, Productivity, Tools, Communication, Fitness, Reference, Music, Internet and Games.</p>
<h2>These iPhone apps are must-haves</h2>
<p>The most important apps in my iPhone.</p>
<h3>Reeder</h3>
<p><a href="http://xaviesteve.com/wp-content/uploads/2011/06/Photo-23-06-2011-00-20-50.png"><img class="fleft alignnone size-thumbnail wp-image-2384" src="http://xaviesteve.com/wp-content/uploads/2011/06/Photo-23-06-2011-00-20-50-150x150.png" alt="" width="150" height="150" /></a></p>
<p><strong>By far the most used app in my iPhone.</strong> Reeder is an <a title="RSS explanation for non technical people" href="http://xaviesteve.com/rss-explanation-for-non-technical-people/">RSS feed reader</a> that gathers all your feeds from your <a title="My Google Reader shared items" href="http://www.google.co.uk/reader/shared/xestevev" target="_blank">favourite websites</a> (blogs, newspapers, comics, etc.) and displays them all in a nice ordered list ready for you to read one after another. But that&#8217;s not all, its offline caching ability allows you to download up to 5000 new articles/posts in just 10 seconds and then read them anywhere (tube, airplane, pub or even bathroom) without needing an Internet connection or 3G. Since I&#8217;ve got this app I no longer get the free newspaper every morning as I can read tons of online newspapers in my iPhone and I get to read news that happened a few minutes ago. I prefer how <strong>MobileRSS Pro</strong> works but it is incredibly buggy and Reeder synchronises incredibly well with Google Reader.</p>
<p>Rating: 9/10. Use it 3 times a day. £1.79</p>
<h3>RememberTheMilk</h3>
<p><a href="http://xaviesteve.com/wp-content/uploads/2011/06/photo-23-06-2011-00-21-54.png"><img class="fleft alignnone size-thumbnail wp-image-2385" src="http://xaviesteve.com/wp-content/uploads/2011/06/photo-23-06-2011-00-21-54-150x150.png" alt="" width="150" height="150" /></a></p>
<p><strong>The best Get Things Done app ever.</strong> RememberTheMilk is my favourite To-Do list. Since I started using this app I have improved my personal and <a title="Set up an effective small business team online for free" href="http://xaviesteve.com/set-up-an-effective-small-business-team-online-for-free/">professional organisation</a> a lot. The simplicity of the app is something I still find surprising. You open the app, tap, enter a task and a time such as &#8220;<em>meeting w john 8:55</em>&#8221; and RTM will remind you on the task at 8:55 (if today is later than 8:55 then it adds it for tomorrow). There are many date shortcuts such as &#8220;<em>next tue</em>&#8221; or &#8220;<em>august</em>&#8221; and also features such as priority, repetition, lists, tags, location or sharing. Another nice touch and well done feature is the reminder notification, you can fully customise it to your liking with the perfect sound and timing. The web interface is also great and full of features in a beautiful and simple interface which allows you to either use it for a couple features or utilize its maximum power. <strong>Wunderlist</strong> is very nice but not as featured as RTM.</p>
<p>Rating: 10/10. Use it 2-5 times a day. Free or £15/year</p>
<h2>You should get an iPhone just for this</h2>
<p>Anyone without a smartphone should get one immediately just because of these ones.</p>
<h3>Skype</h3>
<p><a href="http://xaviesteve.com/wp-content/uploads/2011/06/Photo-23-06-2011-00-24-02.png"><img class="fleft alignnone size-thumbnail wp-image-2386" src="http://xaviesteve.com/wp-content/uploads/2011/06/Photo-23-06-2011-00-24-02-150x150.png" alt="" width="150" height="150" /></a></p>
<p><strong>Free national and international calls to smartphones and computers at anytime.</strong> That is something really amazing. Just for that, people should invest in a smartphone and recycle their old mobile phone. For the chat I stay with Imo app as I find the Skype chat pretty slow and bloated.</p>
<p>Rating: 8/10.Use it twice a month. Free</p>
<h3>Imo instant messenger</h3>
<p><a href="http://xaviesteve.com/wp-content/uploads/2011/06/imo.png"><img class="fleft alignnone size-thumbnail wp-image-2387" src="http://xaviesteve.com/wp-content/uploads/2011/06/imo-150x150.png" alt="" width="150" height="150" /></a></p>
<p><strong>Imo is a free online chat</strong> with support for <a title="Best Facebook setup to privacy using Access lists" href="http://xaviesteve.com/best-facebook-setup-to-privacy-using-access-lists/">Facebook</a>, Skype, Gmail and many more. I discovered this app a few weeks ago and now I can be online on more than 7 different chat services and always available to speak to anyone. This is a feature I was missing in my phone but didn&#8217;t care too much until I actually had it in my hands and saw the main advantages of the &#8220;new mobile texting&#8221;. Some people love <strong>WhatsApp</strong> (Blackberry users mainly) but I find it annoying and heavy to use. Plus you need all your friends to have a Blackberry or a smartphone to contact them while with Imo you can speak to anyone online in their computer or smartphone. The notification system at Imo is pretty sweet and unobtrusive too.</p>
<p>Rating: 8/10.Use it once a day. Free</p>
<h2>Very nice apps I&#8217;m glad someone invented</h2>
<p>Non-essential apps that you could live without although having them available makes a difference in your life.</p>
<h3>RunKeeper</h3>
<p><a href="http://xaviesteve.com/wp-content/uploads/2011/06/Photo-23-06-2011-00-25-25.png"><img class="fleft alignnone size-thumbnail wp-image-2388" src="http://xaviesteve.com/wp-content/uploads/2011/06/Photo-23-06-2011-00-25-25-150x150.png" alt="" width="150" height="150" /></a></p>
<p><strong>Tracks your speed and location by GPS</strong> and provides you with statistics and maps. As RememberTheMilk made me a more organised person, RunKeeper makes me healthier. Since I go running with it every week I know how much I run, my average speed, time and route and I can compare it with previous runs to monitor my physical improvements in stamina and speed. You can also use it while driving and it is quite interesting to see the fastest routes around the city and how well/safe you drive.</p>
<p>Rating: 7/10.Use it once/twice a week. Free or £12.50/year</p>
<h3>Dropbox</h3>
<p><a href="http://xaviesteve.com/wp-content/uploads/2011/06/dropbox.png"><img class="fleft alignnone size-thumbnail wp-image-2389" src="http://xaviesteve.com/wp-content/uploads/2011/06/dropbox-150x150.png" alt="" width="150" height="150" /></a></p>
<p><strong>Synchronises a super folder</strong> between computers and smartphones so you can access your files anytime/anywhere without the need of USB sticks or emails. I found it to be the best way to move photos from my iPhone to the computer in big bunches as iPhoto from Apple is slow and tedious (I still haven&#8217;t figured out how). And Dropbox is completely free (use <a href="http://xaviesteve.com/go/dropbox" target="_blank">this link</a> to get an extra free 250MB).</p>
<p>Rating: 8/10.Use it once a week. Free or £6.20/month</p>
<h3>Shazam</h3>
<p><a href="http://xaviesteve.com/wp-content/uploads/2011/06/Photo-23-06-2011-00-26-32.png"><img class="fleft alignnone size-thumbnail wp-image-2390" src="http://xaviesteve.com/wp-content/uploads/2011/06/Photo-23-06-2011-00-26-32-150x150.png" alt="" width="150" height="150" /></a></p>
<p><strong>Tells you which song is playing</strong> from any place. You put the phone close to the speaker and hold it there for 10 seconds, wait 5 seconds more and the app tells you the name of the song, the artist, etc. Shazam is not one of the most used apps in my phone but the one I sometimes appreciate most when there is a good track playing and I don&#8217;t know the name of it.</p>
<p>Rating: 7/10.Use it twice a month. Free or £3.49 (unlimited)</p>
<h3>Millionaire Tycoon</h3>
<p><a href="http://xaviesteve.com/wp-content/uploads/2011/06/millionaire.png"><img class="fleft alignnone size-thumbnail wp-image-2391" src="http://xaviesteve.com/wp-content/uploads/2011/06/millionaire-150x150.png" alt="" width="150" height="150" /></a></p>
<p><strong>Better game than Monopoly.</strong> I payed for Monopoly and I haven&#8217;t really played it yet since I&#8217;ve spent decent hours with this addicting game, much similar to Monopoly but with more features and a richer gameplay and smarter computer AI that allows for a more complex strategy and challenging game.</p>
<p>Rating: 7/10. Use it once a month. Free or £0.59 (more levels)</p>
<h3>TuneIn Radio</h3>
<p><a href="http://xaviesteve.com/wp-content/uploads/2011/06/Photo-23-06-2011-00-27-56.png"><img class="fleft alignnone size-thumbnail wp-image-2392" src="http://xaviesteve.com/wp-content/uploads/2011/06/Photo-23-06-2011-00-27-56-150x150.png" alt="" width="150" height="150" /></a></p>
<p><strong>Radio</strong> is something I started neglecting five years ago until last week I discovered TuneIn. Every morning I use to listen to music while having a shower and getting dressed to go to work but listening to someone telling the news is something much better.</p>
<p>Rating: 6/10.Use it every morning. Free or £0.59 (no ads)</p>
<p>&nbsp;</p>
<h2>Life saver apps</h2>
<p>These are apps I rarely use but occasionally I need them.</p>
<h3>Tube Exits</h3>
<p><a href="http://xaviesteve.com/wp-content/uploads/2011/06/Photo-23-06-2011-00-28-27.png"><img class="fleft alignnone size-thumbnail wp-image-2393" src="http://xaviesteve.com/wp-content/uploads/2011/06/Photo-23-06-2011-00-28-27-150x150.png" alt="" width="150" height="150" /></a></p>
<p>While travelling by underground it tells you <strong>which carriage to board</strong> to arrive right by your platform exit allowing you to save crowds of people and time. London&#8217;s Tube gets specially crowded at peak times and this app makes my travels much better and less annoying. Easy to use and with a great interface.</p>
<p>Rating: 7/10.Use it twice a week. £0.59</p>
<h3>Amazon UK</h3>
<p><a href="http://xaviesteve.com/wp-content/uploads/2011/06/Photo-23-06-2011-00-28-56.png"><img class="fleft alignnone size-thumbnail wp-image-2394" src="http://xaviesteve.com/wp-content/uploads/2011/06/Photo-23-06-2011-00-28-56-150x150.png" alt="" width="150" height="150" /></a></p>
<p><strong>Online price comparison.</strong> Anytime I go shopping for anything except groceries I check the prices online from the best and biggest online market. Yesterday I purchased directly from it for the first time and it was very simple and easy.</p>
<p>Rating: 8/10.Use it once a month. Free</p>
<h3>Camera+</h3>
<p><a href="http://xaviesteve.com/wp-content/uploads/2011/06/cameraplus.png"><img class="fleft alignnone size-thumbnail wp-image-2395" src="http://xaviesteve.com/wp-content/uploads/2011/06/cameraplus-150x150.png" alt="" width="150" height="150" /></a></p>
<p><strong>Full-featured digital camera.</strong> I had always been using the default&#8217;s iPhone camera and edited the photos with Photoshop/Fireworks later until I finally decided to purchase Camera+ as I saw a lot of people had it and after using it for a while I must say that it has been a great decision. The app is very powerful and can 80% of the times do what I would do in a computer in terms of edition and photoshopping and it actually saves me a lot of time.</p>
<p>Rating: 7/10.Use it 2 times a week. £0.59</p>
<h2>Honorable mentions</h2>
<ul>
<li><strong>SimpleNote</strong>: note taking with sync functionality</li>
<li><strong>ShopShop</strong>: groceries list</li>
<li><strong>0870</strong>: free phone alternatives</li>
<li><strong>AroundMe</strong>: shops and places around you</li>
<li><strong>Tube Deluxe</strong>: Tube status updated live</li>
<li><strong>Wikihood</strong>: sights around you</li>
<li><strong>Sleep Cycle</strong>: intelligent alarm</li>
<li><strong>WordPress</strong>: update your blog through the iPhone</li>
<li><strong>TeamViewer</strong>: see your computers&#8217; screen</li>
<li><strong>TouchMouse</strong>: use your iPhone as a trackpad</li>
<li><strong>XE Currency</strong>: currency conversions</li>
<li><strong>Light</strong>: flashlight with the iPhone</li>
<li><strong>Pro HDR</strong>: nice photos on the fly</li>
<li><strong>360 Panorama</strong>: awesome 360 degree photos</li>
<li><strong>Justin.tv</strong>: video streaming</li>
<li><strong>WhiteNoise</strong>: relaxing noise</li>
<li><strong>SongKick</strong>: latest concerts</li>
<li><strong>SoundCloud</strong>: great music radio</li>
</ul>
<p>There are 30 apps mentioned and they are basically the ones I use. I have more than 130 apps installed right now in the iPhone from which I may use about 60.</p>
<p>What are your favourite apps you can&#8217;t live without?</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/2371/my-12-favourite-iphone-apps-ever/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cómo repartir las acciones de una empresa equitativamente entre fundadores, inversores y trabajadores</title>
		<link>http://xaviesteve.com/2341/como-repartir-las-acciones-de-una-empresa-equitativamente-entre-fundadores-inversores-y-trabajadores/</link>
		<comments>http://xaviesteve.com/2341/como-repartir-las-acciones-de-una-empresa-equitativamente-entre-fundadores-inversores-y-trabajadores/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 06:21:33 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[Español]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Project management]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[company]]></category>
		<category><![CDATA[investment]]></category>
		<category><![CDATA[startups]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=2341</guid>
		<description><![CDATA[Esta es una pregunta muy común que toda nueva empresa se plantea y que debe resolverse lo antes posible. Es recomendable dejarlo todo firmado y por escrito y consultar un abogado o notario cuando sea necesario. El principio más importante a la hora de decidir como repartir una empresa entre sus fundadores es el de [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-2354" title="repartir acciones empresa justamente" src="http://xaviesteve.com/wp-content/uploads/2011/06/repartir-acciones-empresa-justamente.jpg" alt="" width="600" height="328" />Esta es una pregunta muy común que toda nueva empresa se plantea y que debe resolverse lo antes posible. Es recomendable dejarlo todo firmado y por escrito y consultar un abogado o notario cuando sea necesario.</p>
<p>El principio más importante a la hora de decidir como repartir una empresa entre sus fundadores es el de <strong>Equidad, y la percepción de justicia, éstos son mucho más valiosos que la cantidad de acciones que se poseen</strong>. Tenemos que partir de la realidad de que casi todo lo que puede ir mal en una nueva empresa saldrá mal, y una de las cosas más importantes que pueden salir mal son trascendentales y airadas discusiones entre los cofundadores sobre quién trabajo más duro, quién posee más parte de la empresa, de quién fue la idea, etc. Es por eso que siempre repartiría una empresa al 50-50 con un amigo en vez de insistir en un 60% porque &#8220;fue idea mía&#8221;, o porque &#8220;yo tengo más experiencia&#8221; o cualquier otro motivo. ¿Por qué? Porque si se reparte la empresa 60-40 la empresa fracasará cuando se discutan las cosas entre cofundadores. Y si se decide &#8220;que le den, nunca averiguaremos como dividir la empresa correctamente así que seamos amigos y vayamos todos al 50-50&#8243; permaneceréis amigos y la empresa sobrevivirá.</p>
<p>Así es como os presento con el Sistema Joel para repartir una empresa de manera justa.</p>
<h2>Sistema Joel para repartir una empresa de manera justa</h2>
<p>Por razones de simplicidad, asumiremos que no se va a recurrir a capital de riesgo y que no se tendrán inversores externos. Más tarde explicaré como tratar con el capital de riesgo pero por ahora asumamos que no hay inversores.</p>
<p>También por razones de simplicidad, vamos a asumir temporalmente que todos los fundadores han renunciado a sus puestos de trabajo y empiezan a trabajar en la compañía a tiempo completo, al mismo tiempo. Más tarde, explicaré como tratar con fundadores que no se inician al mismo tiempo.</p>
<p>Esto es el principio. A medida que la empresa crece, se tiende a ir agregando personas en diferentes &#8220;capas&#8221;.</p>
<ol>
<li>La capa superior es el primer fundador o cofundadores. Podéis ser uno, dos, tres o más fundadores, pero todos empezáis a trabajar casi al mismo tiempo, y todos tomáis el mismo riesgo, dejamos nuestros trabajos para ir a trabajar para una empresa nueva sin idea de sus resultados.</li>
<li>La segunda capa es la primera que empieza a tener empleados. En el momento de contratar este nivel, la empresa ya tiene dinero en efectivo que proviene de alguna parte (ya sean inversores o clientes). Estas personas no toman tanto riesgo, ya que tienen un salario desde el primer día y, honestamente, no han creado la empresa, se unieron a ella como a cualquier otro empleo.</li>
<li>El tercer nivel son más empleados. En el momento en que se unen a la compañía ésta ya funciona bastante bien y avanza.</li>
</ol>
<p>Para muchas empresas, cada capa se irá añadiendo anualmente. En el momento en que la empresa es lo suficientemente grande como para ser vendida a Google o salir a Bolsa o lo que sea, es probable que tenga alrededor de 6 capas: los fundadores y 5 capas de trabajadores. Cada capa sucesiva es más grande. Puede haber dos fundadores iniciales, cinco empleados en la capa 2, 25 empleados en la capa 3 y 200 empleados en la capa 4. <strong>Las capas más recientes tuvieron un menor riesgo.</strong></p>
<p>Bien, ahora explico como se utiliza esta información:</p>
<p>Los fundadores deben terminar con un 50% de la compañía, en total. Cada una de las próximas cinco capas debe terminar con un 10% de la empresa, dividida en partes iguales entre todos los miembros de la capa.</p>
<p>Ejemplo:</p>
<ul>
<li>Dos fundadores inician la empresa. Cada uno toma 2,500 acciones de las 5,000 que hay en circulación por lo que cada fundador es propietario de la mitad.</li>
<li>En el año 1 contratan a 4 empleados. Cada uno obtendrá 250 acciones de las 6,000 que habrá en circulación.</li>
<li>Se contratan 20 empleados el segundo año. Cada uno obtendrá 50 acciones. Éstos reciben menos acciones ya que tuvieron menor riesgo que las otras capas, y se dan 50 acciones porque estamos dando a cada capa 1,000 acciones a repartir.</li>
<li>Cuando la compañía tenga 6 capas, se habrán dado 10,000 acciones en total. Cada fundador termina siendo el dueño del 25%. Cada capa de empleados posee el 10% del total de la empresa. Los primeros empleados que tomaron la mayor parte del riesgo tienen la mayoría de acciones.</li>
</ul>
<p>¿Tiene sentido? No tenéis por que seguir esta formula exacta, pero la idea básica es que se configuren capas de antigüedad, donde la franja superior fue la que más riesgo tuvo que asumir y la franja inferior la que menos. Cada capa comparte el mismo número de acciones con lo cual los empleados de capas superiores tendrán más acciones que los de capas inferiores.</p>
<p>Un sistema un poco diferente al uso de capas es basándose en la antigüedad. La capa superior es la de los fundadores, a continuación se reserva una franja entera para los directores que controlan el 10%, por debajo de esta capa está la de los primeros empleados y/o managers, etc. La forma que se escoja para organizar las capas tiene que ser simple, clara, fácil de entender y no susceptible a crear discusiones.</p>
<p>Ahora que tenemos un sistema justo establecido, hay un principio muy importante. <strong>Se debe tener compromiso</strong>. Preferentemente 4 o 5 años. Nadie gana sus acciones hasta que se ha quedado en la empresa durante al menos un año. Un buen programa de compromiso es obtener el 25% de las acciones que tocan el primer año e ir sumando un 2% cada mes. Si no, un cofundador podría irse a las tres semanas y volver 7 años más tarde reclamando que es propietario del 25% de la empresa. Nunca tiene sentido dar equidad sin compromiso. Este es un error muy común y es terrible cuando pasa. Imaginemos esa compañía con 3 cofundadores que han estado trabajando día y noche durante 5 años y de repente descubren que hay un gilipollas que lo dejó al cabo de dos semanas y aún posee un 25% de la empresa por sus dos semanas que estuvo trabajando.</p>
<p>Ahora pasemos a los detalles que complican la situación.</p>
<h3>¿Qué ocurre si se obtiene inversión externa?</h3>
<p>La inversión externa puede llegar de cualquier forma: un business angel, Venture Capital o incluso el padre de alguien. La respuesta es simple: la inversión se divide entre todos.</p>
<p>Usando el mismo ejemplo que el de arriba, dos cofundadores tienen 2,500 acciones cada uno (donde cada uno tiene el 50% de la empresa) y llega un VC y ofrece 1 millón de euros a cambio de 1/3 de la empresa.</p>
<p>1/3 de la empresa son 2,500 acciones. Así que se crean 2,500 acciones y se le dan al VC. Este es propietario de 1/3 de la empresa y cada uno de los cofundadores tiene otro 1/3. Así de simple.</p>
<h3>¿Qué pasa si no todos los cofundadores necesitan tener un salario?</h3>
<p>Con frecuencia, hay algún cofundador que tiene algo de dinero ahorrado y decide no cobrar salario durante un tiempo, mientras otros cofundadores, que necesitan el dinero, deciden obtener un salario. Es tentador darle más acciones al fundador que decidió no tener salario al principio para equilibrar las cosas. El problema es que nunca se podrá resolver cuanta cantidad de acciones se tienen que dar de más. Esto sólo causara conflictos. No resolváis este tipo de problemas con acciones. En cambio, mantened una contabilidad de cuánto se pagó a cada uno de los fundadores y si alguien no está cobrando salario se le da un pagaré. Mas tarde, cuando la empresa tenga dinero, se le paga en efectivo la diferencia. En unos años cuando el dinero empieza a llegar, o incluso después de la primera inversión de capital, se puede pagar lo debido a cada fundador para que todos los cofundadores hayan cobrado lo mismo en la empresa.</p>
<h3>¿Debería tener más acciones ya que la idea fue mía?</h3>
<p>No. Las ideas no tienen prácticamente valor. No son rentables las discusiones que podría causar pagar más acciones a alguien por haber tenido la idea. Si uno de vosotros tuvo la idea pero todos dejáis vuestros trabajos y empezáis a trabajar al mismo tiempo, deberíais tener todos la misma cantidad de acciones. Trabajar para la compañía es lo que da valor, no el hecho de tener una invención loca un día bajo la ducha.</p>
<h3>¿Qué pasa si uno de los fundadores no trabaja a tiempo completo para la empresa?</h3>
<p>Entonces no es un fundador. En mi libro nadie quien no trabaja a tiempo completo no es un fundador. Cualquiera que mantiene su otro trabajo gana un salario o pagarés, pero no acciones. Si trabaja en otra compañía y cuando llega la inversión de VC empieza a trabajar para la empresa a tiempo completo entonces no corrió tanto riesgo y tiene que recibir una cantidad de acciones acorde a la primera capa de empleados.</p>
<h3>¿Qué pasa si alguien trae equipamiento (ordenadores, teléfonos móviles, etc.) o valores (patentes, nombres de dominio, licencias de software, etc.) a la empresa?</h3>
<p>Perfecto. Se le paga en efectivo o pagarés, no en acciones. Calculad el precio justo para ese ordenador que trajo con él o su patente y darle pagarés a hacerse efectivos cuando la empresa vaya bien. Tratar de pagar cosas con acciones en esta primera etapa solo lleva a desequilibrio, discusiones e injusticia.</p>
<h3>¿Cuánto deberían tener los inversores frente a los fundadores y empleados?</h3>
<p>Eso depende de las condiciones del mercado. Siendo realistas, si los inversores acaban teniendo más del 50% de la compania, los fundadores van a sentirse unos mandados y perderán motivación. Recuerda que los buenos inversores no son avariciosos. Si la empresa puede arrancar sin inversores, los cofundadores y empleados acabaran teniendo el 100% de la compañía. Es interesante saber que hay mucha presión en cómo mantener las cosas equilibradas entre inversores y fundadores/trabajadores; una vieja regla de oro es que cuando se sale a Bolsa (cuando se tienen todos los empleados contratados y el dinero que se planeaba) los inversores tendrán el 50% y los fundadores/empleados el otro 50%, pero con las startups de Internet en 2011 los inversores acaban teniendo mucho menos del 50%.</p>
<h2>Conclusión</h2>
<p>No hay una única solución para todas las situaciones, pero cualquier cosa que se pueda hacer para que todo sea simple, transparente, al grano, y ante todo justo, hará que la compañía tenga más números de tirar adelante.</p>
<p><small>Este texto es una traducción al castellano de <a href="http://answers.onstartups.com/questions/6949/forming-a-new-software-startup-how-do-i-allocate-ownership-fairly">Forming a new software startup, how do I allocate ownership fairly?</a> de <a href="http://www.joelonsoftware.com/">Joel Spolsky</a> por <a href="http://xaviesteve.com/">Xavi Esteve</a> bajo licencia <a href="http://creativecommons.org/licenses/by-sa/3.0/deed.es_PE">Creative Commons Reconocimiento Compartir-Igual 3.0</a>. Fotografía por Xavi Esteve bajo la misma licencia.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/2341/como-repartir-las-acciones-de-una-empresa-equitativamente-entre-fundadores-inversores-y-trabajadores/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

