<?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; Apple</title>
	<atom:link href="http://xaviesteve.com/category/computers/apple-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>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>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>Cheapest iPhone/iPod stand ever</title>
		<link>http://xaviesteve.com/2591/cheapest-iphone-ipod-stand-ever/</link>
		<comments>http://xaviesteve.com/2591/cheapest-iphone-ipod-stand-ever/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 17:18:42 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[diy]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[stand]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=2591</guid>
		<description><![CDATA[So you don&#8217;t want to waste any money in iPhone stands nor care about looks. You are looking for a stand where you can have your iPhone in portrait mode to read, listen to music and use most apps and also in landscape mode to watch movies too. You are lucky because thanks to one [...]]]></description>
			<content:encoded><![CDATA[<p><img title="iPhone cheapest stand to watch movies" src="http://xaviesteve.com/wp-content/uploads/2011/10/iphone-cheapest-stand-watch-movies.jpg" alt="iPhone cheapest stand to watch movies" width="600" height="308" /></p>
<p>So you don&#8217;t want to waste any money in <strong>iPhone stands</strong> nor care about looks. You are looking for a stand where you can have your iPhone in portrait mode to read, listen to music and use most apps and also in landscape mode to watch movies too. You are lucky because thanks to one of the best inventions in the world&#8230; Yes! you got it right, the toilet paper roll! With just a single roll we can create a highly customized iPhone stand without too much effort or complex professional tools. It will just take you 60 seconds to create (without counting step 1). Keep reading for step-by-step instructions.</p>
<p><img title="Cheapest iPhone stand front view" src="http://xaviesteve.com/wp-content/uploads/2011/10/iphone-cheapest-stand-front-view.jpg" alt="Cheapest iPhone stand front view" width="600" height="450" /></p>
<h2>Instructions</h2>
<p>1. First of all, finish a toilet paper roll as you would normally do (no image will be provided for this step).</p>
<p>2. Now get the roll and some scissors and cut it along the dashed line like in the following image:</p>
<p><img class="alignleft size-full wp-image-2600" title="iPhone cheapest stand how to DYI instructions" src="http://xaviesteve.com/wp-content/uploads/2011/10/iphone-cheapest-stand-how-to-instructions1.jpg" alt="iPhone cheapest stand how to DYI instructions" width="600" height="450" /></p>
<p>3. You are done!</p>
<p>If you would like your <strong>cheapest iPhone stand</strong> to also be able to charge the iPhone&#8230; What?! Srsly? Yea! the cheapest iPhone stand can also charge your iPhone while it&#8217;s on it. Just cut an extra whole in the back like in the following image and put your cable in:</p>
<p><img title="iPhone cheapest stand back charging" src="http://xaviesteve.com/wp-content/uploads/2011/10/iphone-cheapest-stand-back-charging.jpg" alt="iPhone cheapest stand back charging" width="600" height="450" /></p>
<p>So that&#8217;s how you get a <strong>free iPhone stand</strong>. In fact, this stand will work for any phone so Androids are also welcome. Furthermore, I guess you could use a kitchen paper roll to create the <strong>cheapest iPad stand</strong> too.</p>
<p><img class="alignleft size-full wp-image-2606" title="Fuck-yeah-meme" src="http://xaviesteve.com/wp-content/uploads/2011/10/Fuck-yeah-meme.jpg" alt="" width="273" height="235" /></p>
<p>Did you like this DIY tutorial? Share and tweet it to your friends and Apple fans!</p>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/2591/cheapest-iphone-ipod-stand-ever/feed/</wfw:commentRss>
		<slash:comments>2</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>Improve your WiFi signal in 10 easy steps</title>
		<link>http://xaviesteve.com/2247/improve-wifi-signal/</link>
		<comments>http://xaviesteve.com/2247/improve-wifi-signal/#comments</comments>
		<pubDate>Tue, 31 May 2011 07:56:37 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[connection]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wifi]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=2247</guid>
		<description><![CDATA[There are so many reasons why a WiFi Internet connection doesn&#8217;t work as expected that it is usually very difficult to fix it and it can be very frustrating. By following these 10 steps you will fix your wireless Internet connection at home with your laptop pr desktop computer. Some of them are obvious things [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-2252" src="http://xaviesteve.com/wp-content/uploads/2011/05/improve-wifi-signal.jpg" alt="" width="600" height="279" /></p>
<p>There are so many reasons why a WiFi Internet connection doesn&#8217;t work as expected that it is usually very difficult to fix it and it can be very frustrating. By following these 10 steps you will fix your wireless Internet connection at home with your laptop pr desktop computer. Some of them are obvious things to check and some of them are pretty effective tricks you may have not heard about, read them all and check the list from top to bottom.</p>
<h3>1. Reset the router</h3>
<p>Reset your router. Then  <strong>full hard reset </strong>your router.</p>
<h3>2. Change the channel</h3>
<p>Choose a network <strong>channel</strong> that is free or at least not too busy. Use <a href="http://www.apple.com/downloads/macosx/networking_security/wifiscanner.html" target="_blank">WiFi Scanner</a> (free, OSX) or <a href="http://www.netstumbler.com/downloads/" target="_blank">NetStumbler</a> (free, Windows) to see which ones are used near your home or around you.</p>
<h2>3. Change the interface</h2>
<p>Change your router&#8217;s Interface Type to <strong>802.11n</strong>. This ensures you have the fastest rate and signal plus avoids many external interferences. Before doing so check that all your devices are compatible (if they are less than 3 years old they&#8217;re good to go). While you are in the router&#8217;s configuration, set it up as agressive, increasing the signal strength and focus on performance rather than savings. If your router can&#8217;t support 802.11n then buy a better router, they are not expensive and it will definitely make the difference.</p>
<h2>4. Clear the path</h2>
<p>Clear the <strong>path</strong> between your computer and the router. Avoiding as many objects as possible. Look carefully for metals, wall corners and mirrors. Remember that moving the router up or down (i.e. from a table to the floor) may be easier than moving a heavy drawer.</p>
<h3>5. Change the password</h3>
<p>Change the <strong>password</strong> of your WiFi network every 3 months and make it <strong>stronger</strong> (password and encryption) to avoid anyone from getting in and sucking your broadband.</p>
<h2>6. Avoid interferences</h2>
<p>A microwave may be causing <strong>interferences</strong> so try moving things around the room. It can also be your neighbour&#8217;s electrical devices so keep moving stuff until it works.</p>
<h3>7. Check the bandwidth usage</h3>
<p>If you are in a shared flat, check that your flatmates don&#8217;t have any P2P programs, online games, video streaming or VoIP software like Skype. If they are using them, ask them to <strong>limit</strong> it to something proportional so everyone has the same share. If it can&#8217;t be limited, ask them to do one thing at a time.</p>
<h3>8. Look for viruses</h3>
<p>Make sure all the computers and devices connected to the network are <strong>100% virus free</strong>. If any device has a virus it may be constantly sending tons of data to the Internet and collapsing your network, even some mobile phones can be stressing it.</p>
<h2>9. Check the cables</h2>
<p>Check that the broadband <strong>cable</strong> from the router to the plug is straight and away from pipes or other electrical wires. If you can&#8217;t avoid these then try not to twist the cable and place it as straight as possible.</p>
<h3>10. Improve your equipment</h3>
<p>Consider one of these small <strong>investments</strong>: getting a better Internet connection, buying a better router or even buying a better antenna for it. Also check out a <a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.co.uk%2Fs%3Fie%3DUTF8%26redirect%3Dtrue%26ref_%3Dsr_nr_i_0%26keywords%3Dpowerline%2520ethernet%26qid%3D1306940173%26rh%3Dk%253Apowerline%2520ethernet%252Ci%253Acomputers%23&amp;tag=xavest-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=19450" target="_blank">powerline ethernet adapter</a> which is a cheap system that uses the electric network as an Ethernet cable and works very well. You can get them for £20-$£60, if you want to play online multiplayer games make sure you get at least 200Mbps.</p>
<p>Before doing anything make sure that you know what you are doing. If you don&#8217;t know what something means then search on the Internet for it and learn. If none of the above work then call your Internet provider and explain all the steps you have made so far.</p>
<p><small>Photo by Jerome</small></p>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/2247/improve-wifi-signal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Los 13 mejores trucos para dominar el iPhone</title>
		<link>http://xaviesteve.com/1613/los-13-mejores-trucos-para-dominar-el-iphone/</link>
		<comments>http://xaviesteve.com/1613/los-13-mejores-trucos-para-dominar-el-iphone/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 00:22:48 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Español]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[app store]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[multitask]]></category>
		<category><![CDATA[optimize]]></category>
		<category><![CDATA[touch screen]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=1613</guid>
		<description><![CDATA[El iPhone ya empieza a ser bastante popular y para muchos la pantalla táctil es un concepto nuevo al que no estamos acostumbrados. A continuación tenéis una colección de los mejores trucos que he aprendido en el año y pico que llevo con el iPhone y que os ayudarán a controlar el teléfono en su [...]]]></description>
			<content:encoded><![CDATA[<p>El iPhone ya empieza a ser bastante popular y para muchos la pantalla táctil es un concepto nuevo al que no estamos acostumbrados. A continuación tenéis una colección de los mejores trucos que he aprendido en el año y pico que llevo con el iPhone y que os ayudarán a controlar el teléfono en su máxima potencia que al fin y al cabo os facilitará la vida, ahorrará tiempo y evitará frustraciones:</p>
<h3>1. Mostrar las aplicaciones activas en segundo plano</h3>
<p><img class="fleft size-thumbnail wp-image-1641" title="iphone-apps-segundo-plano" src="http://xaviesteve.com/wp-content/uploads/2011/01/iphone-apps-segundo-plano-150x150.png" alt="" width="150" height="150" />Algunas aplicaciones pueden funcionar en segundo plano, es decir, mientras estás en una aplicación, otra sigue activa aunque no la veas. Esto es realmente útil para aplicaciones como Skype. Lo abres una vez y se mantiene online permitiéndote trabajar con otras aplicaciones y a la vez aparecer online en Skype y que tus contactos te puedan llamar.</p>
<p>Para ver la lista de aplicaciones haz <strong>doble click en el boton cuadrado</strong> (<img class="aligncenter size-full wp-image-1646" title="iphone-square-button" src="http://xaviesteve.com/wp-content/uploads/2011/01/iphone-square-button.png" alt="" width="22" height="24" />). Aparecerán debajo, puedes moverte a derecha e izquierda para ver más y si mantienes pulsada un icono durante un rato aparecerá una <strong>crucecita roja</strong> con la que podrás <strong>cerrar la aplicación definitivamente</strong>.</p>
<h3>2. Escribir vocales con acentos, letra eÑe y más</h3>
<p><img class="fleft size-thumbnail wp-image-1628" title="iphone-acentos-y-letra-ene" src="http://xaviesteve.com/wp-content/uploads/2011/01/iphone-acentos-y-letra-ene-150x150.png" alt="" width="150" height="150" />Manteniendo el dedo presionado sobre una tecla del teclado nos mostrará <strong>acentos, eñes y otros caracteres especiales</strong>.</p>
<h3>3. Tecla Bloquear Mayúsculas en el teclado del iPhone</h3>
<p><img class="fleft size-thumbnail wp-image-1631" title="iphone-bloq-mayus" src="http://xaviesteve.com/wp-content/uploads/2011/01/iphone-bloq-mayus-150x150.png" alt="" width="150" height="150" />Hacer doble-click en la tecla Mayúsculas (la flecha hacia arriba) y se volverá azul y podremos <strong>escribir en mayúsculas todo el rato</strong>.</p>
<h3>4. Quitar lo de &#8220;Enviado desde mi iPhone&#8221;</h3>
<p>Cada vez que envías un email en la firma pone &#8220;<em>Enviado desde mi iPhone</em>&#8221; que es pesado para los destinatarios además de impersonal y cutre. Para cambiar la firma por tu nombre ves a <strong>Ajustes</strong> &gt; <strong>Correo, contactos, cal&#8230;</strong> y baja hasta <strong>Firma</strong>.</p>
<h3>5. Controlar los botones de los auriculares</h3>
<p><img class="fright size-thumbnail wp-image-1656" title="iphone-auriculares-con-micro-y-botones" src="http://xaviesteve.com/wp-content/uploads/2011/01/iphone-auriculares-con-micro-y-botones-150x150.png" alt="" width="150" height="150" /></p>
<ul>
<li>Click arriba = Subir volumen</li>
<li>Click abajo = Bajar volumen</li>
<li>1 click en el medio = Pausa</li>
<li>2 clicks en el medio = Pista siguiente</li>
<li>2 clicks y aguanta el último = Rebobinar hacia delante</li>
<li>3 clicks en el medio = Pista anterior</li>
<li>Mantener apretado en el medio hasta oír sonido = Te dice el nombre de la canción y el artista</li>
<li>Mantener apretado en el medio un rato más = Control de voz</li>
</ul>
<h3>6. Mostrar el porcentaje en números de la batería restante</h3>
<p><strong>Ajustes</strong> &gt; <strong>General</strong> &gt; <strong>Uso</strong> y activar <em>Carga de la batería</em>.</p>
<h3>7. Bloquear la orientación</h3>
<p><img class="fleft size-thumbnail wp-image-1632" title="iphone-bloquear-orientacion" src="http://xaviesteve.com/wp-content/uploads/2011/01/iphone-bloquear-orientacion-150x150.png" alt="" width="150" height="150" />Cuando giras el iPhone está muy bien porque <strong>la pantalla gira y se adapta a la gravedad</strong>. Pero hay veces que no quieres que se gire, por ejemplo cuando estás estirado en el sofá. Para bloquear la orientación haced doble click sobre el botón cuadrado (<img class="aligncenter size-full wp-image-1646" title="iphone-square-button" src="http://xaviesteve.com/wp-content/uploads/2011/01/iphone-square-button.png" alt="" width="22" height="24" />) para que aparezcan las tareas en segundo plano y <strong>arrastrad con el dedo hacia la izquierda</strong> para que aparezca el <strong>botón gris a la izquierda de la imagen</strong>.</p>
<h3>8. Hacer un screenshot de la pantalla del iPhone</h3>
<p>Para hacer una captura de pantalla (guardar en una imagen lo que se muestra en ese momento por pantalla), apretar el <strong>botón de arriba</strong> (<img class="aligncenter size-full wp-image-1648" title="iphone-switch-off-button" src="http://xaviesteve.com/wp-content/uploads/2011/01/iphone-switch-off-button.png" alt="" width="18" height="38" />), <strong>mantener y apretar el botón cuadrado</strong> (<img class="aligncenter size-full wp-image-1646" title="iphone-square-button" src="http://xaviesteve.com/wp-content/uploads/2011/01/iphone-square-button.png" alt="" width="22" height="24" />).</p>
<h3>9. Copiar/pegar texto y guardar imágenes</h3>
<p><img class="fleft size-thumbnail wp-image-1635" title="iphone-copiar-texto" src="http://xaviesteve.com/wp-content/uploads/2011/01/iphone-copiar-texto-150x150.png" alt="" width="150" height="150" /><strong>Mantener el dedo apretando unos segundos en la pantalla sin soltarlo hasta que aparezca el botón Copiar.<br />
</strong></p>
<p>Si estás encima de un <strong>texto o número de teléfono aparecerá un botón de Copiar</strong>. Así podremos copiar un número de teléfono por ejemplo.</p>
<p>Si estamos en un texto o mensaje podremos <strong>arrastrar las bolitas azules</strong> y seleccionar exactamente los caracteres que queremos.</p>
<p>Si estamos navegando por Internet y mantenemos el dedo encima de una imagen nos aparecerá un menú para poder <strong>guardar la imagen en nuestro teléfono</strong>.</p>
<p>Mientras escribimos, si mantenemos el dedo se puede <strong>mover el cursor a un lugar preciso</strong> para corregir la ortografía o cambiar palabras.</p>
<h3>10. Instalar aplicaciones en el iPhone (desde el principio)</h3>
<h4>Registrarse con Apple</h4>
<p>Para poder instalar aplicaciones necesitarás tener una cuenta de iTunes App Store. Ves a la web de Apple y registra una cuenta allí (también puedes hacerlo a través del iPhone pero es más lento ya que el formulario de registro es muy largo). Regístrate y sigue todos los pasos&#8230; (<a title="Instrucciones para crear una cuenta sin tarjeta" href="http://support.apple.com/kb/HT2534?viewlocale=es_ES&amp;locale=es_ES" target="_blank">regístrate por la App Store</a> en vez de por iTunes si no quieres introducir una tarjeta de crédito)</p>
<h4>Instalando aplicaciones</h4>
<p><img class="fright size-thumbnail wp-image-1629" title="iphone-app-store-icono" src="http://xaviesteve.com/wp-content/uploads/2011/01/iphone-app-store-icono1-150x150.png" alt="" width="150" height="150" />Ahora que ya tienes cuenta, abre el iconito <strong>App Store</strong> (de color azul con una A en blanco) y empieza a descargar aplicaciones. Cuidado con las aplicaciones de pago, en dos clicks se compran y no hay vuelta atrás. Algunas aplicaciones que son obligatorias tener:</p>
<h5>Aplicaciones gratuitas fundamentales</h5>
<ul>
<li><strong>Facebook</strong></li>
<li><strong>Twitter</strong></li>
<li><strong>Skype</strong>: <em>llamadas y videollamadas gratis</em> a PCs y otros móviles</li>
<li><strong>Remote</strong>: <em>controla el iTunes</em> de tu ordenador con el iPhone</li>
<li><strong>Viber</strong>: <em>llamadas de alta calidad gratuitas</em> entre iPhones</li>
<li><strong>Light</strong>: <em>linterna</em> gratuita</li>
<li><strong>TV3 a la carta</strong>: para ver el canal TV3 y 324 en directo desde tu iPhone</li>
<li><strong>VLC</strong>: para <em>copiar vídeos, pelis y series</em> a tu iPhone</li>
<li><strong>SpanishDict</strong>: <em>traductor</em> Español-Inglés</li>
<li><strong>Wikihood</strong>: te muestra todos los <em>puntos de interés turístico que tienes cerca</em></li>
<li><strong>20minutos.es</strong>: noticias</li>
<li><strong>LFP</strong>: información en directo sobre la Liga</li>
</ul>
<h5>Aplicaciones de pago fundamentales</h5>
<ul>
<li><strong>WhatsApp</strong>: envia <em>mensajes gratis</em> a otros iPhones, BlackBerries y Androids</li>
</ul>
<h3>11. Configurar el correo electrónico (email) en el iPhone</h3>
<p><img class="fleft size-thumbnail wp-image-1633" title="iphone-configurar-email" src="http://xaviesteve.com/wp-content/uploads/2011/01/iphone-configurar-email-150x150.png" alt="" width="150" height="150" />Si tienes GMail puedes sincronizar tu correo, calendarios y contactos <a href="http://www.iphone.com.es/2010/02/24/configurar-una-cuenta-de-gmail-por-exchange-en-el-iphone/">siguiendo estos pasos</a>. Si tienes <a href="http://www.techtear.com/2010/08/31/como-configurar-una-cuenta-hotmail-en-iphone/">Hotmail sigue estos pasos</a>.</p>
<h3>12. Poner música en el iPhone</h3>
<p><img class="fleft size-thumbnail wp-image-1639" title="iphone-musica" src="http://xaviesteve.com/wp-content/uploads/2011/01/iphone-musica-150x150.png" alt="" width="150" height="150" /><a href="http://es.kioskea.net/faq/4952-pasar-musica-del-pc-al-iphone">Aqui lo explican paso a paso</a></p>
<h3>13. Reconocimiento de voz</h3>
<p><img class="fright size-thumbnail wp-image-1634" title="iphone-control-por-voz" src="http://xaviesteve.com/wp-content/uploads/2011/01/iphone-control-por-voz-150x150.png" alt="" width="150" height="150" />Apretar el botón cuadrado (<img class="alignleft size-full wp-image-1646" title="iphone-square-button" src="http://xaviesteve.com/wp-content/uploads/2011/01/iphone-square-button.png" alt="" width="22" height="24" />) durante 3 segundos hasta oír el sonidito. Existen muchas órdenes que puedes decir:</p>
<ul>
<li><em>Llamada</em> Carlos</li>
<li><em>Llamada </em>Pepe<em> trabajo</em></li>
<li><em>Qué hora es</em></li>
<li><em>Pista siguiente</em></li>
<li>etc&#8230;</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/1613/los-13-mejores-trucos-para-dominar-el-iphone/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>iPhone App creates stunning Stereographic images in seconds</title>
		<link>http://xaviesteve.com/1596/iphone-app-creates-stunning-stereographic-images-in-seconds/</link>
		<comments>http://xaviesteve.com/1596/iphone-app-creates-stunning-stereographic-images-in-seconds/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 21:44:05 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Fireworks]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[ipod touch]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[stereographic]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=1596</guid>
		<description><![CDATA[This is my first stereographic photo, and it has been done with the iPhone. The app is 360 Panorama, get it here. The image was created in 20.2 seconds and quickly rubber stamping the margins with Adobe Fireworks. I wasn&#8217;t even willing to create it, just playing around and I&#8217;m pretty sure if you spend [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-large wp-image-1597" title="brighton-pier-stereographic" src="http://xaviesteve.com/wp-content/uploads/2011/01/brighton-pier-stereographic-600x600.jpg" alt="" width="600" height="600" />This is my first stereographic photo, and it has been done with the iPhone. The app is 360 Panorama, <a rel="nofollow" href="http://itunes.apple.com/us/app/360-panorama/id377342622?mt=8">get it here</a>.</p>
<p>The image was created in 20.2 seconds and quickly rubber stamping the margins with Adobe Fireworks. I wasn&#8217;t even willing to create it, just playing around and I&#8217;m pretty sure if you spend a bit more dedication you can accomplish really neat stereographic projections. Here&#8217;s a video on someone using it:<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600" height="310" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/wL1Lj6_dd4U?fs=1&amp;hl=en_GB" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="600" height="310" src="http://www.youtube.com/v/wL1Lj6_dd4U?fs=1&amp;hl=en_GB" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><small>Photo is from the Brighton Pier, United Kingdom <br />(by Xavi Esteve, Creative Commons Attributive Share Alike).</small></p>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/1596/iphone-app-creates-stunning-stereographic-images-in-seconds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MasMovil iPhone &#8211; Archivo para configurar 3G (APN) en 3 pasos</title>
		<link>http://xaviesteve.com/1450/masmovil-iphone-archivo-para-configurar-3g-apn-en-3-pasos/</link>
		<comments>http://xaviesteve.com/1450/masmovil-iphone-archivo-para-configurar-3g-apn-en-3-pasos/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 13:05:02 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[Español]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[3g]]></category>
		<category><![CDATA[apn]]></category>
		<category><![CDATA[masmovil]]></category>
		<category><![CDATA[spain]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/?p=1450</guid>
		<description><![CDATA[Configurar el iPhone para que el Internet 3G funcione con MasMovil es muy fácil. Solo necesitas descargarte el archivo de configuración (incluye todos los parámetros necesarios: APN, usernames, etc.) y tener WiFi con el iPhone. Estos son los pasos que tienes que hacer: Visita esta página desde tu iPhone (conectado por WiFi) y ejecútalo directamente [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1465" title="MasMovil iPhone 4" src="http://xaviesteve.com/wp-content/uploads/2010/12/masmovil-iphone-4.jpg" alt="" width="600" height="379" /></p>
<p>Configurar el <strong>iPhone</strong> para que el <strong>Internet 3G</strong> funcione con <strong>MasMovil</strong> es muy fácil. Solo necesitas <strong>descargarte el archivo de configuración</strong> (incluye todos los parámetros necesarios: <strong>APN</strong>, usernames, etc.) y <strong>tener WiFi con el iPhone</strong>. Estos son los pasos que tienes que hacer:<br />
<img class="fleft" style="margin: 10px 40px 10px 0;" title="masmovil-iphone-configurar-internet-3g-pasos" src="http://xaviesteve.com/wp-content/uploads/2010/12/masmovil-iphone-configurar-internet-3g-pasos.gif" alt="" width="213" height="320" /></p>
<ol>
<li><strong>Visita esta página desde tu iPhone</strong> (conectado por WiFi) y ejecútalo directamente (salta al paso 5) o sigue los pasos 2 a 4.</li>
<li><strong>Descarga el archivo</strong> con los parámetros de configuración a tu ordenador: <a title="MasMovil SocialMas (Internet gratis los 30MB primeros)" class="button blue" href="http://xaviesteve.com/wp-content/uploads/2012/01/MasMovil-socialmas.mobileconfig" target="_blank">MasMovil-<strong>socialmas</strong>.mobileconfig</a> (prueba este primero, te regalan los primeros 30MB, gracias Jose!) o el normal <a href="http://xaviesteve.com/wp-content/uploads/2010/11/MasMovil.mobileconfig">MasMovil.mobileconfig</a> <small>(2,1KB)</small></li>
<li>Desde tu ordenador, <strong>envía el archivo como adjunto</strong> a la dirección de correo de tu iPhone</li>
<li><strong>Conectate por WiFi</strong> con el iPhone, abre el email <strong>y ejecuta el archivo adjunto</strong></li>
<li><strong>Sigue los pasos</strong> (imagen de la izquierda)</li>
</ol>
<h3>Borrar configuración MasMovil</h3>
<p>Si utilizas mas de una compañía de móvil o necesitas borrar la configuración de MasMovil puedes eliminar los parámetros de MasMovil siguiendo estos pasos:<br />
<img class="fleft" style="margin: 10px 40px 10px 0;" title="masmovil-iphone-configurar-internet-3g-pasos" src="http://xaviesteve.com/wp-content/uploads/2010/12/masmovil-iphone-desinstalar-internet-3g-pasos.gif" alt="" width="213" height="320" /></p>
<ol>
<li>Ve a <strong>Configuración</strong> &gt; <strong>General</strong> &gt; <strong>Perfil MasMovil</strong></li>
<li>Haz click en <strong>Desinstalar</strong></li>
<li>Sigue los pasos</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/1450/masmovil-iphone-archivo-para-configurar-3g-apn-en-3-pasos/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>Desactivar multitarea en iOS4, sin necesidad de jailbreak</title>
		<link>http://xaviesteve.com/1217/desactivar-multitarea-en-ios4-sin-necesidad-de-jailbreak/</link>
		<comments>http://xaviesteve.com/1217/desactivar-multitarea-en-ios4-sin-necesidad-de-jailbreak/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 14:01:43 +0000</pubDate>
		<dc:creator>Xavi</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Español]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[3g]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[ios4]]></category>
		<category><![CDATA[ipod touch]]></category>
		<category><![CDATA[jailbreak]]></category>
		<category><![CDATA[multitasking]]></category>

		<guid isPermaLink="false">http://xaviesteve.com/desactivar-multitarea-en-ios4-sin-necesidad-de-jailbreak/</guid>
		<description><![CDATA[Read this post in English No te gusta el multitasking que ha implementado Apple en su nueva versión del sistema operativo del iPhone? Es tu iPhone 3G muy lento con multitarea? Desactiva la multitarea siguiendo estos simples pasos sin necesidad de hacer jailbreak otra vez&#8230; Mediante SSH navega al siguiente directorio &#8220;/System/Library/CoreServices/SpringBoard.app&#8221; y busca el [...]]]></description>
			<content:encoded><![CDATA[<p><a class="button blue small" href="http://xaviesteve.com/disable-multitasking-in-ios4-no-jailbreaking-needed/">Read this post in English</a></p>
<p><img class="fleft" style="margin: 0 10px 10px 0;" src="http://xaviesteve.com/wp-content/uploads/2010/06/IMG_0008.png" alt="" width="320" height="480" /><br />
No te gusta el multitasking que ha implementado Apple en su nueva versión del sistema operativo del iPhone? Es tu <strong>iPhone 3G muy lento con multitarea</strong>? <strong>Desactiva la multitarea</strong> siguiendo estos simples pasos sin necesidad de hacer jailbreak otra vez&#8230;</p>
<p>Mediante <strong>SSH</strong> navega al siguiente directorio &#8220;<code>/System/Library/CoreServices/SpringBoard.app</code>&#8221; y busca el archivo &#8220;<code>N82AP.plist</code>&#8220;. Ábrelo con el bloc de notas, busca la palabra &#8220;<code>multitasking</code>&#8221; y cambia el valor de <code>&lt;multitasking&gt;</code> de <code>&lt;true/&gt;</code> a <code>&lt;false/&gt;</code>. Reinicia el iPhone y ya está!</p>
<p>Gracias a <strong>Pony-Ony</strong> por el truco!</p>
<h2>Desactivar multitasking en un iPhone sin jailbreak (actualización)</h2>
<p><a href="http://xaviesteve.com/disable-multitasking-in-ios4-no-jailbreaking-needed/#comment-2025" target="_blank">Stephan</a> sugiere que también se puede desactivar la multitarea en un iPhone sin jailbreak instalando <a rel="nofollow" href="http://www.ghisler.com/download.htm" target="_blank">Total Commander</a> (30 días de prueba gratis, Windows sólo). Descarga el <a rel="nofollow" href="http://code.google.com/p/t-pot/" target="_blank">plugin T-PoT</a> y navega a través de tu dispositivo Apple hasta encontrar el archivo “<code>N82AP.plist</code>” que seguramente estará en “<code>private/var/mobile/n82ap</code>“. Abre el archivo y cambia el valor de multitasking de <code>&lt;true/&gt;</code> a <code>&lt;false/&gt;</code>. Guarda el archivo y reinicia tu iPhone.</p>
]]></content:encoded>
			<wfw:commentRss>http://xaviesteve.com/1217/desactivar-multitarea-en-ios4-sin-necesidad-de-jailbreak/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

