<?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; Computers</title>
	<atom:link href="http://xaviesteve.com/category/computers/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>Best Base64 online file encoder</title>
		<link>http://xaviesteve.com/2974/best-base64-online-file-encoder/</link>
		<comments>http://xaviesteve.com/2974/best-base64-online-file-encoder/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 08:55:24 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Front-End]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=2974</guid>
		<description><![CDATA[I&#8217;ve created a simple yet powerful free online tool to convert any image or file into a Base64 encoded string. The tool works by either providing a URL to a file or by uploading your file directly. Why should you base64 encode? Base64 encoding allows you to embed media into your HTML, CSS or JavaScript [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://xaviesteve.com/pro/base64.php"><img class="alignnone size-large wp-image-2975" title="Base64 encoder" src="http://xaviesteve.com/wp-content/uploads/2012/02/Screen-shot-2012-02-24-at-13.10.46-600x427.png" alt="Base64 encoder" width="600" height="427" /></a></p>
<p>I&#8217;ve created a simple yet powerful free online tool to convert any image or file into a Base64 encoded string. The tool works by either providing a URL to a file or by uploading your file directly.</p>
<h2>Why should you base64 encode?</h2>
<p>Base64 encoding allows you to embed media into your HTML, CSS or JavaScript files which means you save one or more server requests. Keeping your website with as fewer requests as possible is one of the best ways of loading websites faster.</p>
<h3>When not to base64 encode?</h3>
<p>If your file is bigger than 20KB or appears in several pages of your site then it is best to load it as a separate file and let the user&#8217;s browser cache it.</p>
<h3>Extra features</h3>
<p>Apart from providing you the code to embed into your project, I&#8217;ve also made available copy-paste codes already with the base64 string in it so if you want to embed your code as a favicon, an image, JavaScript file, CSS sprite map or CSS image you are just a few keystrokes away:</p>
<p><img class="alignnone size-full wp-image-2976" title="Base64 encoder results" src="http://xaviesteve.com/wp-content/uploads/2012/02/Screen-shot-2012-02-24-at-13.11.05.png" alt="Base64 encoder results" width="508" height="656" /></p>
<h2>Base64 encoder website</h2>
<p>Ok, enough talking, here&#8217;s the link to the tool:</p>
<p><a class="button blue" title="Online base64 encoder" href="http://xaviesteve.com/pro/base64.php">Online Base64 encoder</a></p>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/2974/best-base64-online-file-encoder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Awesome trick to remember thousands of different passwords</title>
		<link>http://xaviesteve.com/2985/awesome-trick-to-remember-thousands-of-different-passwords/</link>
		<comments>http://xaviesteve.com/2985/awesome-trick-to-remember-thousands-of-different-passwords/#comments</comments>
		<pubDate>Sat, 25 Feb 2012 18:10:27 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=2985</guid>
		<description><![CDATA[Here&#8217;s a very cool technique to remember unique passwords for each website or service that you access while keeping them super secure. So no need to worry about either having to remember 10 different passwords or using the same password for all the online accounts you have. The way it works is pretty straight forward, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-2987" title="The Human Password Generator" src="http://xaviesteve.com/wp-content/uploads/2012/02/13.jpeg" alt="The Human Password Generator" width="600" height="300" /></p>
<p>Here&#8217;s a very cool <strong>technique to remember unique passwords</strong> for <strong>each website</strong> or service that you access while keeping them super <strong>secure</strong>. So no need to worry about either having to remember 10 different passwords or <strong>using the same password</strong> for all the online accounts you have.</p>
<p>The way it works is pretty straight forward, every time you refresh the page <strong>The Human Password Generator</strong> it generates a short list of steps you need to remember that will generate very secure passwords on every different website&#8230; sounds good? Check it yourself in one click:</p>
<p><a class="button blue" href="http://xaviesteve.com/pro/password">The Human Password Generator</a></p>
<p>Click the Refresh button until you find nice looking passwords and print the page to keep it very safe. It is just a piece of paper so you can hide it very well nearly anywhere. I would also recommend to change all your passwords once every 6 months (imagine you kept your password combination in a book and one your day your sister accidentally sold it).</p>
<p>You can also just keep the URL that&#8217;s at the bottom of the website, it stores the exact combination that you have.</p>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/2985/awesome-trick-to-remember-thousands-of-different-passwords/feed/</wfw:commentRss>
		<slash:comments>0</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>iPad/iPhone/mobile HTML/CSS template for web apps (responsive, no javascript)</title>
		<link>http://xaviesteve.com/2899/ipad-iphone-mobile-html-css-template-for-web-apps/</link>
		<comments>http://xaviesteve.com/2899/ipad-iphone-mobile-html-css-template-for-web-apps/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 17:03:16 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Front-End]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=2899</guid>
		<description><![CDATA[iPad/iPhone template made in pure HTML and CSS (no JavaScript needed) that works perfectly on any modern browser (iPad (including iPad 3), iPhone, tablets, mobiles, laptops, etc.). The template uses responsive queries to hide the sidebar in iPad portrait mode and in the iPhone and smaller screens (you can disable that easily if you want [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://xaviesteve.com/wp-content/uploads/2012/01/ipad-web-html-css-template.jpg"><img class="alignnone size-full wp-image-2902" title="Xavi's iPad web HTML/CSS template" src="http://xaviesteve.com/wp-content/uploads/2012/01/ipad-web-html-css-template.jpg" alt="Xavi's iPad web HTML/CSS template" width="600" height="448" /></a></p>
<p>iPad/iPhone template made in <strong>pure HTML and CSS</strong> (no JavaScript needed) that works perfectly on any modern browser (iPad (including iPad 3), iPhone, tablets, mobiles, laptops, etc.). The template uses responsive queries to hide the sidebar in iPad portrait mode and in the iPhone and smaller screens (you can disable that easily if you want to).</p>
<p>Here&#8217;s how it looks in the iPhone (click image to view full size):</p>
<p style="text-align: center;"><a href="http://xaviesteve.com/wp-content/uploads/2012/01/html-css-iphone-template-responsive-no-javascript.png"><img class="aligncenter  wp-image-3154" title="HTML CSS iPhone template (responsive, no javascript)" src="http://xaviesteve.com/wp-content/uploads/2012/01/html-css-iphone-template-responsive-no-javascript-600x900.png" alt="HTML CSS iPhone template (responsive, no javascript)" width="227" height="340" /></a></p>
<p>This template is the perfect start for any front-end or back-end developer to build complex web apps without spending time on developing the main structure. Or even to create a mobile version of your current site.</p>
<p>The code has been developed so that there is no &#8220;divitis&#8221;, completely optimized, semantically correct and <strong>minimal HTML code</strong>. There are no images or animations at all, everything has been coded using some of the latest CSS3 available features and tested it in most modern browsers. Ready for you to download and start developing. These are some of the template&#8217;s features:</p>
<h2>Features</h2>
<h3>App-ready</h3>
<p><strong></strong>You can install this template as a normal <strong>App Store app</strong>, removing the Safari top navigation bar and enjoying the full screen.</p>
<h3>Responsive Web Design</h3>
<p><strong></strong>Hides the sidebar in iPhone, mobiles and iPad portrait mode. Adapts nicely to the full screen.</p>
<h3>No images</h3>
<p><strong></strong>The whole template has been built <strong>without requiring any images</strong> which means less server queries and increased bandwidth savings.</p>
<h3>Heading styles</h3>
<p><strong></strong>Two different heading styles: the main black one and the smaller blueish.</p>
<h3>Anchor texts (links)</h3>
<p><strong></strong>The <strong>whole clickable area</strong> is active so that even fat fingers can click comfortably.</p>
<h3>Scrollable</h3>
<p><strong></strong>Both the sidebar and the main content can be <strong>scrolled separately</strong> in the iPad and other touch screen tablets.</p>
<h3>Tables</h3>
<p><strong></strong>Fully flexible and <strong>liquid tables</strong> that allow you to include more information while keeping the same look and feel as in any Apple app.</p>
<h3>Forms</h3>
<p><strong></strong>Fillable textboxes, password fields, select dropdowns and buttons.</p>
<h3>Fully tested in several devices</h3>
<p><strong></strong>Works great in: iPhone 4, iPhone 3GS, iPad 2, Samsung Galaxy Tab (GT-P7510), Safari 5, Chrome 16 and Firefox 9.</p>
<p>Graceful degradation: IE9 (no rounded corners), IE8.</p>
<p>Not working: (none tested yet).</p>
<h3><strong>License</strong></h3>
<p><strong></strong>The best of it, I am releasing it under a <strong>Public Domain license</strong>. This means it is free to use as many times as you want (even for <strong>commercial projects</strong>) and you do not need to give me credits if you don&#8217;t want to. I would appreciate if you do so or if you send me a link to your creation, it will motivate me to develop it further and make me happy.</p>
<h2>Download the template</h2>
<p>To <strong>download</strong> the most recent version of the Xavi iPad template click the link below:</p>
<p><a class="big button blue" title="Xavi iPad template" href="http://xaviesteve.com/pro/ipad-template/" target="_blank">Xavi iPad template</a></p>
<p>And then go to File &gt; Save as&#8230; The CSS has been coded in a &lt;style&gt; tag to keep everything in a single file.</p>
<p>For a better experience open the template in an iPad and test how cool Responsive Web Design is by rotating the iPad.</p>
<h4>Comments, improvements, feedback, feature requests and bugs</h4>
<p>If you have any comments, doubts or would like to point out a bug or a feature request you can write a comment below or tweet me at @xaviesteve in Twitter. If you code your own improvements and would like to share them with everyone let me know and I will include them in the next release. Bear in mind that the purpose of this plugin is to remain as simple as possible so drag&#8217;n'drops, special effects and lengthy scripts should be avoided.</p>
<h4>Changelog</h4>
<h5>Version 1.0 (31 January 2012)</h5>
<ul>
<li>Moved sidebar to the bottom of the HTML.</li>
<li>Fixed content header left and right link clickable area</li>
<li>Added commented <code>&lt;link rel="stylesheet"&gt;</code>, <code>&lt;script&gt;</code> and favicon for faster development</li>
<li>Disabled the callout shown when you touch and hold a touch target (thanks 185)</li>
<li>Added <code>-webkit-user-select: none</code> (thanks Josiah)</li>
</ul>
<h5>Version 0.9b (27 January 2012)</h5>
<ul>
<li>First release.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/2899/ipad-iphone-mobile-html-css-template-for-web-apps/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Best alternative to MegaUpload</title>
		<link>http://xaviesteve.com/2869/best-alternative-to-megaupload/</link>
		<comments>http://xaviesteve.com/2869/best-alternative-to-megaupload/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 12:01:17 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=2869</guid>
		<description><![CDATA[The FBI has closed Megaupload without any warnings or notices and I, as many other people, have lost hundreds of backed up files I had hosted in there. So here&#8217;s a list of the best 25+ alternative sites where you can host your files (comparison information provided is for the free plans): MediaFire link Great [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://xaviesteve.com/wp-content/uploads/2012/01/megaupload-alternative-to-censorship.jpg"><img class="alignnone size-full wp-image-2870" title="MegaUpload alternatives to censhorship" src="http://xaviesteve.com/wp-content/uploads/2012/01/megaupload-alternative-to-censorship.jpg" alt="MegaUpload alternatives to censhorship" width="600" height="300" /></a></p>
<p>The FBI has closed Megaupload without any warnings or notices and I, as many other people, have lost hundreds of backed up files I had hosted in there. So here&#8217;s a list of the <strong>best 25+ alternative</strong> sites where you can host your files (<strong>comparison</strong> information provided is for the <strong>free plans</strong>):</p>
<h4>MediaFire <a href="http://www.mediafire.com" rel="nofollow">link</a></h4>
<p>Great website. No waiting time. No download limit. Files up to 200MB. No registration required to upload.</p>
<h4>Minus <a href="http://www.minus.com" rel="nofollow">link</a></h4>
<p>Great website. Files up to 2GB. 50GB total storage.</p>
<h4>Wupload <a href="http://www.wupload.com" rel="nofollow">link</a></h4>
<p>20 second waiting time. Files up to 2GB. No file download limit. No storage limit.</p>
<h4>BayFiles <a href="http://www.bayfiles.com" rel="nofollow">link</a></h4>
<p>Files up to 5GB. 5 min waiting time.</p>
<h4>Wupload <a href="http://www.wupload.com" rel="nofollow">link</a></h4>
<p>20 second waiting time. Files up to 2GB. No file download limit. No storage limit.</p>
<h4>JumboFiles <a href="http://www.jumbofiles.com" rel="nofollow">link</a></h4>
<p>No waiting time. Files up to 1GB. 500GB total storage. No captcha. Resumable links. 180-day storage time. (Thanks David)</p>
<h4>FileFactory <a href="http://www.filefactory.com" rel="nofollow">link</a></h4>
<p>Some waiting time. Files up to 2,000MB. 90-day storage time. No registration required to upload.</p>
<h4>SendSpace <a href="http://www.sendspace.com" rel="nofollow">link</a></h4>
<p><strong></strong>Files up to 300MB. 30-day storage time. No registration required to upload.</p>
<h4>FileServe <a href="http://www.fileserve.com" rel="nofollow">link</a></h4>
<p>No download limit. Files up to 1,024Mb. 60-day storage time. Video streaming. (Update: massively deleting copyrighted content)</p>
<h4>iFile.it <a href="http://www.ifile.it" rel="nofollow">link</a></h4>
<p>Files up to 1,000MB. Unlimited uploads. Resumable downloads. 7 to 30-day storage time.</p>
<h4>YouSendIt <a href="http://www.yousendit.com" rel="nofollow">link</a></h4>
<p>Files up to 50MB. 7-day storage time. 2GB total storage.</p>
<h4>HotFile <a href="http://www.hotfile.com" rel="nofollow">link</a></h4>
<p>60 second waiting time. 30 minute wait between downloads. Files up to 400MB.</p>
<h4>RapidShare <a href="http://www.rapidshare.com" rel="nofollow">link</a></h4>
<p><strong></strong>2 minutes waiting time. 15 minute wait between downloads. Files up to 50MB.</p>
<h4>4Shared <a href="http://www.4shared.com" rel="nofollow">link</a></h4>
<p><strong></strong>30 second waiting time. Files up to 2,048MB. 10GB total storage. Video streaming.</p>
<h4>DepositFiles <a href="http://www.depositfiles.com" rel="nofollow">link</a></h4>
<p>60 second waiting time. Files up to 2Gb. 90-day storage time. No registration required (although recommended).</p>
<h4>zShare <a href="http://www.zshare.net" rel="nofollow">link</a></h4>
<p>50 second waiting time. 60-day storage time.</p>
<h4>FileUpYours <a href="http://www.fileupyours.com/" rel="nofollow">link</a></h4>
<p>250MB total storage. Unlimited storage time.</p>
<h4>TransferBigFiles <a href="http://www.transferbigfiles.com/" rel="nofollow">link</a></h4>
<p>Files up to 100MB. 5-day storage time.</p>
<h4>Badongo <a href="http://www.badongo.com/">link</a></h4>
<p>Unlimited storage.</p>
<h4>YourFileLink <a href="http://www.yourfilelink.com/" rel="nofollow">link</a></h4>
<p>Files up to 5GB. 15-day storage time. No registration required.</p>
<h4>2Shared link <a href="http://www.2shared.com/" rel="nofollow">link</a></h4>
<p>No registration required.</p>
<h4>File Dropper <a href="http://www.filedropper.com/" rel="nofollow">link</a></h4>
<p>Files up to 5GB. No registration required.</p>
<h4>Uploading <a href="http://www.uploading.com/" rel="nofollow">link</a></h4>
<p>Files up to 2GB. No registration required. 1GB daily download limit. 4-month storage time. 10GB storage limit.</p>
<h4>SpeedyShare <a href="http://www.speedyshare.com/" rel="nofollow">link</a></h4>
<p>No file upload limit (not tested).</p>
<h4>WeTransfer <a href="http://www.wetransfer.com/" rel="nofollow">link</a></h4>
<p>Files up to 2GB. No registration required. 2-week storage time.</p>
<h4>Uploaded.to <a href="http://www.uploaded.to/" rel="nofollow">link</a></h4>
<p>Files up to 1,000MB. (Update: may not be available in the US)</p>
<h4>WikiUpload <a href="http://www.wikiupload.com/" rel="nofollow">link</a></h4>
<p>Files up to 5GB. Some storage limit.</p>
<h4>Uploadingit <a href="http://www.uploadingit.com/" rel="nofollow">link</a></h4>
<p>Files up to 200MB. 10GB total storage. 30-day storage time. 10GB daily download limit</p>
<h5>FileSonic</h5>
<p>Files up to 1GB. 30-day storage time. (Update: Closed on 22 Jan 2012)</p>
<h4>BitShare</h4>
<h4>Netload</h4>
<h4>Freakshare <a href="http://freakshare.com/" rel="nofollow">link</a></h4>
<p>Files up to 1024MB. 30-day storage time. 1 minute download wait. 2GB storage time.</p>
<h4>Filejungle</h4>
<h4>UploadStation</h4>
<p>That&#8217;s it. I&#8217;ve avoided adding other alternatives that are too limiting or too slow. If you know better services please let everyone know in the comments section below and I will update this post. All the information gathered has been collected from the information that these file storage services provide but I haven&#8217;t had time to test all of them personally. If you find some of the information here is inaccurate or out-of-date please let everyone know in the comments. <strong>Help the Internet by sharing this on Twitter and Facebook!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/2869/best-alternative-to-megaupload/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>GeneRally LuckyShot Tracks Pack</title>
		<link>http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/</link>
		<comments>http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 20:28:43 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[GeneRally]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=2803</guid>
		<description><![CDATA[Long time ago I used to play GeneRally racing game with my friends for hours and hours. We found some maps on the Internet but most of them sucked (too many bells and whistles but zero playability) and we couldn&#8217;t get really fun and challenging ones so I started mapping my own tracks. We where [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://xaviesteve.com/wp-content/uploads/2012/01/generally-tracks-pack.jpg"><img class="alignnone size-full wp-image-2839" title="GeneRally LuckyShot Tracks Pack" src="http://xaviesteve.com/wp-content/uploads/2012/01/generally-tracks-pack.jpg" alt="GeneRally LuckyShot Tracks Pack" width="600" height="300" /></a></p>
<p>Long time ago I used to play <strong>GeneRally</strong> racing game with my friends for hours and hours. We found some maps on the Internet but most of them sucked (too many bells and whistles but zero playability) and we couldn&#8217;t get really <strong>fun and challenging</strong> ones so I started mapping my own tracks. We where so proficient at the game that I even modified the AI paths so that they would race even faster and more aggressively. From more than 300 that I had designed I could get <strong>64 tracks</strong> back from old backups I had in my old computer and I am today releasing them for free for everyone to play, you&#8217;ve got hours of laughs and nerves in there. Here&#8217;s 24 screenshots of some of the tracks (click images to enlarge), there are many more in the GeneRally LuckyShot Tracks Pack, download link below.</p>
<p><a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/andthelast/" rel="attachment wp-att-2804"><img class="alignnone size-thumbnail wp-image-2804" title="AndTheLast" src="http://xaviesteve.com/wp-content/uploads/2012/01/AndTheLast-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/apelaco/" rel="attachment wp-att-2805"><img class="alignnone size-thumbnail wp-image-2805" title="APelaco" src="http://xaviesteve.com/wp-content/uploads/2012/01/APelaco-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/bambumini/" rel="attachment wp-att-2806"><img class="alignnone size-thumbnail wp-image-2806" title="BambuMini" src="http://xaviesteve.com/wp-content/uploads/2012/01/BambuMini-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/battlevalley/" rel="attachment wp-att-2807"><img class="alignnone size-thumbnail wp-image-2807" title="BattleValley" src="http://xaviesteve.com/wp-content/uploads/2012/01/BattleValley-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/blackdouble/" rel="attachment wp-att-2808"><img class="alignnone size-thumbnail wp-image-2808" title="BlackDouble" src="http://xaviesteve.com/wp-content/uploads/2012/01/BlackDouble-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/blackperalt/" rel="attachment wp-att-2809"><img class="alignnone size-thumbnail wp-image-2809" title="BlackPeralt" src="http://xaviesteve.com/wp-content/uploads/2012/01/BlackPeralt-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/donutok/" rel="attachment wp-att-2810"><img class="alignnone size-thumbnail wp-image-2810" title="DonutOk" src="http://xaviesteve.com/wp-content/uploads/2012/01/DonutOk-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/drezzera/" rel="attachment wp-att-2811"><img class="alignnone size-thumbnail wp-image-2811" title="Drezzera" src="http://xaviesteve.com/wp-content/uploads/2012/01/Drezzera-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/dryspirit/" rel="attachment wp-att-2812"><img class="alignnone size-thumbnail wp-image-2812" title="DrySpirit" src="http://xaviesteve.com/wp-content/uploads/2012/01/DrySpirit-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/eddypalm/" rel="attachment wp-att-2813"><img class="alignnone size-thumbnail wp-image-2813" title="EddyPalm" src="http://xaviesteve.com/wp-content/uploads/2012/01/EddyPalm-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/eightrace/" rel="attachment wp-att-2814"><img class="alignnone size-thumbnail wp-image-2814" title="EightRace" src="http://xaviesteve.com/wp-content/uploads/2012/01/EightRace-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/giantcube/" rel="attachment wp-att-2815"><img class="alignnone size-thumbnail wp-image-2815" title="GiantCube" src="http://xaviesteve.com/wp-content/uploads/2012/01/GiantCube-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/gokart/" rel="attachment wp-att-2816"><img class="alignnone size-thumbnail wp-image-2816" title="GoKart" src="http://xaviesteve.com/wp-content/uploads/2012/01/GoKart-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/goklalom/" rel="attachment wp-att-2817"><img class="alignnone size-thumbnail wp-image-2817" title="GoKlalom" src="http://xaviesteve.com/wp-content/uploads/2012/01/GoKlalom-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/mountainsmoothed/" rel="attachment wp-att-2818"><img class="alignnone size-thumbnail wp-image-2818" title="MountainSmoothed" src="http://xaviesteve.com/wp-content/uploads/2012/01/MountainSmoothed-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/rally/" rel="attachment wp-att-2819"><img class="alignnone size-thumbnail wp-image-2819" title="Rally" src="http://xaviesteve.com/wp-content/uploads/2012/01/Rally-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/rapith/" rel="attachment wp-att-2820"><img class="alignnone size-thumbnail wp-image-2820" title="Rapith" src="http://xaviesteve.com/wp-content/uploads/2012/01/Rapith-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/ring/" rel="attachment wp-att-2821"><img class="alignnone size-thumbnail wp-image-2821" title="Ring" src="http://xaviesteve.com/wp-content/uploads/2012/01/Ring-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/thecity01/" rel="attachment wp-att-2822"><img class="alignnone size-thumbnail wp-image-2822" title="TheCity01" src="http://xaviesteve.com/wp-content/uploads/2012/01/TheCity01-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/triangles/" rel="attachment wp-att-2823"><img class="alignnone size-thumbnail wp-image-2823" title="Triangles" src="http://xaviesteve.com/wp-content/uploads/2012/01/Triangles-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/velocityiii/" rel="attachment wp-att-2824"><img class="alignnone size-thumbnail wp-image-2824" title="VelocityIII" src="http://xaviesteve.com/wp-content/uploads/2012/01/VelocityIII-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/volcan/" rel="attachment wp-att-2825"><img class="alignnone size-thumbnail wp-image-2825" title="Volcan" src="http://xaviesteve.com/wp-content/uploads/2012/01/Volcan-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/xeon/" rel="attachment wp-att-2826"><img class="alignnone size-thumbnail wp-image-2826" title="Xeon" src="http://xaviesteve.com/wp-content/uploads/2012/01/Xeon-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/zetanieve/" rel="attachment wp-att-2827"><img class="alignnone size-thumbnail wp-image-2827" title="ZetaNieve" src="http://xaviesteve.com/wp-content/uploads/2012/01/ZetaNieve-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>To download the GeneRally LuckyShot Tracks Pack follow the link below<em>&#8230;</em></p>
<p><a class="button blue strong" href="http://xaviesteve.com/wp-content/uploads/2012/01/GeneRally-LuckyShot-Tracks-Pack.zip">Download GeneRally LuckyShot Tracks Pack</a></p>
<p>If you have a website <strong>always link to this page</strong>, not the download link directly as I will be adding more tracks to the pack as I find them and the link URL will change.</p>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/2803/generally-luckyshot-tracks-pack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monopoly Advanced Tricks and Tips</title>
		<link>http://xaviesteve.com/2735/monopoly-advanced-tricks-and-tips/</link>
		<comments>http://xaviesteve.com/2735/monopoly-advanced-tricks-and-tips/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 01:40:25 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[board games]]></category>
		<category><![CDATA[Mathematics]]></category>
		<category><![CDATA[Monopoly]]></category>
		<category><![CDATA[probability]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=2735</guid>
		<description><![CDATA[After several Monopoly games with my flatmates I wondered about the &#8220;mathematical luck&#8221; that was involved in the game so I created a Monopoly simulator and emulated up to 1,000,000 turns in a 4 players game which shows that the game has a big luck factor for every player although there are very interesting facts [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://xaviesteve.com/2735/monopoly-advanced-tricks-and-tips/monopoly-game-with-friends/" rel="attachment wp-att-2773"><img class="alignnone size-full wp-image-2773" title="Monopoly game with friends" src="http://xaviesteve.com/wp-content/uploads/2011/12/monopoly-game-with-friends.jpg" alt="Monopoly game with friends" width="600" height="368" /></a></p>
<p>After several Monopoly games with my flatmates I wondered about the &#8220;mathematical luck&#8221; that was involved in the game so I created a Monopoly simulator and emulated up to 1,000,000 turns in a 4 players game which shows that the game has a big luck factor for every player although there are very interesting facts that can help you in having a higher chance of winning the game. I am assuming that you already know the rules and have a solid strategy playing the game.</p>
<p>Street names are based in the London (United Kingdom, with Mayfair) board edition although the colours and positions of the lands are the same for all Monopoly versions so you should have no problem reading the report. Here&#8217;s how it looks for your reference:</p>
<p><a href="http://xaviesteve.com/2735/monopoly-advanced-tricks-and-tips/monopolu-uk/" rel="attachment wp-att-2770"><img class="alignnone size-full wp-image-2770" title="Monopoly London Board" src="http://xaviesteve.com/wp-content/uploads/2011/12/monopolu-uk.gif" alt="Monopoly London Board" width="559" height="462" /></a></p>
<h2>General Tips and Facts</h2>
<h4>Trading</h4>
<p>- Trading is a human to human interaction and a good people strategy is highly flexible. Do not criticise anyone and keep quiet during the game, you do not want to appear as an asshole or be hated. Focus on your partner&#8217;s benefits when selling and be positive and polite.</p>
<p>- When trading, consider a mortgaged property to be MortgageValue+(TotalValue/1.5).</p>
<p>- Make low trading offers to players (bad for them), they will usually decline. Then wait until they need the money and tell them again, they will not see it as bad as before.</p>
<p>- Never trade if you benefit a potential opponent the same or more, he is nothing more than your enemy in the game and will eventually try to destroy you with it.</p>
<h4>Money</h4>
<p>- Save money to pay for the highest rent you may need to pay in the next 3 moves.</p>
<p>- Spend money the latest you possibly can to avoid surprises and nasty debts.</p>
<p>- Mortgage (only 10% economical loss) before selling any properties (100% economical loss) or lands (highly unrecoverable).- It is better to spend your money in upgrading unmortgaged lands (building houses and hotels) than unmortgaging other lands.</p>
<h4>Lands</h4>
<p>- It is wise to mortgage at the beginning of the game (for buying more land, houses or paying debts) but keeping at least 20% of them unmortgaged (for houses and emergencies).</p>
<p>- Stations and Utilities are a great asset at the beginning of the game until people start building 3 houses.</p>
<h4>Houses and hotels</h4>
<p>- Get to 3 houses as soon as possible, rent increases substantially from 2 to 3.</p>
<p>- It is better to separate your buildings and higher rents along the board as much as possible instead of focusing on a &#8220;death passage&#8221;.</p>
<h4>Random facts</h4>
<p>- It takes from 6 to 10 rounds for a player to go through the board and get through GO.</p>
<p>- The rents go higher as you go to the end of the board (scroll down for charts).</p>
<h4>Game rules</h4>
<p>- Our brain is limited so the less you need to guess, the more accurate and precise your moves will be.</p>
<p>- Agree to play the official rules every time you can, the more you play to the same exact game, the better your brain is at predicting the best strategy and predicting old mistakes.</p>
<p>- Learn and set all the house rules before playing, this will not only avoid future confusion but help you in decide your strategy better.</p>
<p>- The official rules do not require you to pay rent if the owner doesn&#8217;t claim it.</p>
<p>- The official rules say you can buy and sell buildings before and after each turn, not only yours. Wait until people are close to your lands (see The dice probabilities below) to invest in buildings.</p>
<h2>The dices</h2>
<p>Since we are playing with two dices the probability is not even at all. The following graph shows the results obtained after throwing 2 dices 1,000,000 times:</p>
<p><a href="http://xaviesteve.com/2735/monopoly-advanced-tricks-and-tips/screen-shot-2011-12-22-at-01-48-20/" rel="attachment wp-att-2765"><img class="alignnone size-full wp-image-2765" title="Probability of throwing 2 dices 1,000,000 times" src="http://xaviesteve.com/wp-content/uploads/2011/12/Screen-shot-2011-12-22-at-01.48.20.png" alt="Probability of throwing 2 dices 1,000,000 times" width="443" height="271" /></a></p>
<p>Not a lot can be done with the dices but it is interesting to know that 6, 7 and 8 are the most probable results when throwing two dices, good for estimating future strategies and focusing your brain power in the most probable situations.</p>
<h2>Best places to build</h2>
<p>This chart shows you the chances of players landing in each land/position in the board (4 players played 100,000 rounds each). Turns skipped when in Jail have been calculated (including the chance of getting out too):<br />
<img class="alignleft size-large wp-image-2737" title="Territory in Monopoly" src="http://xaviesteve.com/wp-content/uploads/2011/11/Screen-shot-2011-11-27-at-04.48.31-600x445.png" alt="" width="600" height="445" /><br />
As you can see, lands after Jail are visited more frequently so you should really focus to acquire these lands.</p>
<h2>Buildings profitability</h2>
<p>When buying land and building, this is the profitability of the rent (ignoring utilities and stations).</p>
<h3>Built 0 houses and 1 player paid rent</h3>
<p><img class="alignleft size-full wp-image-2738" title="0 houses, 1 rent" src="http://xaviesteve.com/wp-content/uploads/2011/11/Screen-shot-2011-11-27-at-05.18.10.png" alt="" width="591" height="215" /></p>
<h3>Built 1 hotel and 5 players paid rent</h3>
<p><img class="alignleft size-full wp-image-2739" title="1 hotel, 5 rents" src="http://xaviesteve.com/wp-content/uploads/2011/11/Screen-shot-2011-11-27-at-05.22.09.png" alt="" width="593" height="307" /></p>
<h2>Profitability VS Probability</h2>
<p>These charts compare the profitability of earning rent based on the times players land on them (100 rounds):</p>
<h3>4 players, all lands with 0 houses (1,000 rounds)</h3>
<p><img class="alignleft size-large wp-image-2742" title="" src="http://xaviesteve.com/wp-content/uploads/2011/11/Screen-shot-2011-11-27-at-05.54.00-600x327.png" alt="" width="600" height="327" /></p>
<h3>4 players, all lands with hotels (1,000 rounds)</h3>
<p><img class="alignleft size-large wp-image-2743" title="" src="http://xaviesteve.com/wp-content/uploads/2011/11/Screen-shot-2011-11-27-at-05.56.25-600x327.png" alt="" width="600" height="327" /></p>
<h2>Further observations</h2>
<p>I keep adding interesting charts and tips to this report every now and then so you may want to bookmark it or share it for future reference. Feel free to comment or add your own tips in the comments.</p>
<h2>Script code available to download for free</h2>
<div class="notice">Coming soon&#8230;</div>
<p>The full code for the Monopoly algorithm is available at GitHub as a PHP script, if you know PHP programming feel free to extend the investigation with your own calculations so we can discover the most advanced tricks in this game and post them in the comments or send me an email to add your contribution and credits to this page.</p>
<p><small>Original post image by <a href="http://www.flickr.com/photos/compujeramey/" rel="nofollow">compujeramey</a>.</small></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/2735/monopoly-advanced-tricks-and-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

