<?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>Cute Machine &#187; iphone</title>
	<atom:link href="http://www.cutemachine.com/tag/iphone/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cutemachine.com</link>
	<description>Learn • Create • Profit</description>
	<lastBuildDate>Tue, 22 Nov 2011 20:05:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Corona SDK Meets Vim</title>
		<link>http://www.cutemachine.com/corona-sdk-tutorial/corona-sdk-meets-vim/</link>
		<comments>http://www.cutemachine.com/corona-sdk-tutorial/corona-sdk-meets-vim/#comments</comments>
		<pubDate>Sat, 27 Aug 2011 20:20:48 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Corona SDK]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[corona sdk]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[simulator]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://www.cutemachine.com/?p=880</guid>
		<description><![CDATA[Using Vim for Corona SDK development is really a good option. Here are the tips you need to use Vim together with Corona. Syntax Coloring When you use a recent version of Vim (&#62; 7.x) it should support syntax highlighting for Lua 5.1out of the box. You can download a Vim syntax file for Lua, [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">U</span>sing Vim for Corona SDK development is really a good option. Here are the tips you need to use Vim together with Corona.</p>
<h2 id="syntaxcoloring">Syntax Coloring</h2>
<p>When you use a recent version of Vim (&gt; 7.x) it should support syntax highlighting for Lua 5.1out of the box. You can download a <a href="ftp://ftp.vim.org/pub/vim/runtime/syntax/lua.vim" title="Vim Syntax File for Lua">Vim syntax file for Lua</a>, if you use an earlier version. </p>
<h2 id="luareferencemanual">Lua Reference Manual</h2>
<p>You can access the reference manual for Lua 5.0 and 5.1 from within Vim. Download and install the <a href="http://www.vim.org/scripts/script.php?script_id=1291" title="Lua Reference Manual for Vim">Lua reference manual for Vim</a> first.</p>
<p>Installation is easy:</p>
<ol>
<li>Download and unzip the package.</li>
<li>Copy lua51refvim.txt to <code>~/.vim/doc/</code></li>
<li>Copy luarefvim.vim to <code>~/.vim/plugin/</code></li>
<li>Copy help.vim to <code>~/.vim/after/syntax/</code></li>
</ol>
<p>Now when you have a Lua file open in Vim, you can access the Lua reference by moving the cursor on a keyword and entering the keyboard sequence <code>\lr</code>. Or <code>\lc</code> to get the table of contents.</p>
<p>Please note that you need to enter the key sequence quite quickly in one flow. If you stop after the first key for a second, Vim will not recognize it as a key sequence!</p>
<h2 id="startingthesimulatorfromwithinvim">Starting the Simulator From within Vim</h2>
<p>If you want to start the Corona SDK simulator from within Vim you need to add the following lines to your <code>.vimrc</code> file.</p>
<pre><code>&quot; Start the Corna Simulator with F3 for iPhone skin. Shift-F3 for iPad skin.
map &lt;F3&gt; :!/Applications/CoronaSDK/simulator -project %:p -skin iPhone&lt;CR&gt;
map &lt;S-F3&gt; :!/Applications/CoronaSDK/simulator -project %:p -skin iPad&lt;CR&gt;
</code></pre>
<p>Now you can start the iPhone simulator with the F3 key and the iPad simulator with Shift-F3.</p>
<h2 id="sessionsupport">Session Support</h2>
<p>If you need to work on different Corona projects you will be glad to have session support.</p>
<p>Create a folder where you want to store your session files. My folder is named <code>.vimSessions</code> and is in my home directory.</p>
<p>Add the following lines to your <code>.vimrc</code> file:</p>
<pre><code>  &quot; Session support. Save Session As and Session Open.
  nmap SSA :wa&lt;CR&gt;:mksession! ~/.vimSessions/
  nmap SO :wa&lt;CR&gt;:so ~/.vimSessions/
</code></pre>
<p>Now, when you want to save your session, just enter <code>SSA</code> and enter a session name. To return to a previously saved session just enter <code>SO</code> and enter the session name. You can use file name completion here by using the <code>tab</code> key.</p>
<h2 id="vimversions">Vim Versions</h2>
<p>I use both the vim command line version, which you can access from within a terminal session, and the Mac application version <a href="http://code.google.com/p/macvim/" title="MacVim Project Site">MacVim</a>.</p>
<p>I&#8217;m curious about your Vim tips and tricks for working with Corona. Please let me know them.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fcorona-sdk-tutorial%2Fcorona-sdk-meets-vim%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fcorona-sdk-tutorial%2Fcorona-sdk-meets-vim%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fcorona-sdk-tutorial%2Fcorona-sdk-meets-vim%2F&amp;linkname=Corona%20SDK%20Meets%20Vim" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fcorona-sdk-tutorial%2Fcorona-sdk-meets-vim%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fcorona-sdk-tutorial%2Fcorona-sdk-meets-vim%2F&amp;count=none&amp;text=Corona%20SDK%20Meets%20Vim" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fcorona-sdk-tutorial%2Fcorona-sdk-meets-vim%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fcorona-sdk-tutorial%2Fcorona-sdk-meets-vim%2F&amp;count=none&amp;text=Corona%20SDK%20Meets%20Vim" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_instapaper" href="http://www.addtoany.com/add_to/instapaper?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fcorona-sdk-tutorial%2Fcorona-sdk-meets-vim%2F&amp;linkname=Corona%20SDK%20Meets%20Vim" title="Instapaper" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/instapaper.png" width="16" height="16" alt="Instapaper"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fcorona-sdk-tutorial%2Fcorona-sdk-meets-vim%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fcorona-sdk-tutorial%2Fcorona-sdk-meets-vim%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><a class="a2a_button_stumbleupon" href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fcorona-sdk-tutorial%2Fcorona-sdk-meets-vim%2F&amp;linkname=Corona%20SDK%20Meets%20Vim" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a><a class="a2a_button_google_reader" href="http://www.addtoany.com/add_to/google_reader?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fcorona-sdk-tutorial%2Fcorona-sdk-meets-vim%2F&amp;linkname=Corona%20SDK%20Meets%20Vim" title="Google Reader" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/reader.png" width="16" height="16" alt="Google Reader"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.cutemachine.com%2Fcorona-sdk-tutorial%2Fcorona-sdk-meets-vim%2F&amp;title=Corona%20SDK%20Meets%20Vim" id="wpa2a_2">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.cutemachine.com/corona-sdk-tutorial/corona-sdk-meets-vim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Name Squatting on iTunesConnect with Style</title>
		<link>http://www.cutemachine.com/resources/name-squatting-on-itunesconnect-with-style/</link>
		<comments>http://www.cutemachine.com/resources/name-squatting-on-itunesconnect-with-style/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 21:18:29 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Product Creation]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[app store]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[itunesconnect]]></category>
		<category><![CDATA[opacity]]></category>
		<category><![CDATA[resource]]></category>

		<guid isPermaLink="false">http://www.cutemachine.com/?p=763</guid>
		<description><![CDATA[When you are close to finishing your iOS project, it is a good idea to reserve the name for your app on the App Store. You do this by creating a new entry for your app in iTunesConnect. Don&#8217;t squat the app name too early though, because Apple expects you to upload your binary at [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">W</span>hen you are close to finishing your iOS project, it is a good idea to reserve the name for your app on the <strong>App Store</strong>. You do this by creating a new entry for <strong>your app in iTunesConnect</strong>.</p>
<p class="alert">Don&#8217;t squat the app name too early though, because Apple expects you to upload your binary at least three months after you created the application in iTunesConnect.
</p>
<p>iTunes requires you to also provide an icon when you create a new entry in iTunesConnect. What is given below is a <strong>placeholder icon</strong> I use when squatting my app&#8217;s name in iTunesConnect.</p>
<p>Feel free to use this icon in your projects, be they private or commercial. Do whatever you want with it. As long as you are happy, I too will feel the same.</p>
<p>You can also download the <a href="http://www.cutemachine.com/wp-content/uploads/2011/07/iTunesNameSquatting.opacity" title="Download Opacity Project File">Opacity Project</a> file and adopt it to your needs. <a href="http://likethought.com/opacity/" title="Opacity Graphics Editor For OS X">Opacity</a> is a nifty graphics editor at a low price. It has some really nice features, you won&#8217;t be able to find in other graphics programs. For example, Opacity can generate Objective-C code which you can use in your iOS projects. Cool. </p>
<p>If you like these resources please subscribe to my <a href="http://www.cutemachine.com/feed" title="CuteMachine RSS Feed">RSS feed</a>, follow me on <a href="http://twitter.com/CuteMachine" title="CuteMachine On Twitter">Twitter</a>, read my <a href="http://cutemachine.com/+" title="Google+ Stream">Google+</a> stream, or send me a postcard.</p>
<p><img id="itunesnamesquatting" src="http://www.cutemachine.com/wp-content/uploads/2011/07/iTunesNameSquatting57.png" alt="iTunesNameSquatting" title="iTunesNameSquatting 54x54" /></p>
<p><img id="itunesnamesquatting" src="http://www.cutemachine.com/wp-content/uploads/2011/07/iTunesNameSquatting114.png" alt="iTunesNameSquatting" title="iTunesNameSquatting 114x114" /></p>
<p><img id="itunesnamesquatting" src="http://www.cutemachine.com/wp-content/uploads/2011/07/iTunesNameSquatting512.png" alt="iTunesNameSquatting" title="iTunesNameSquatting 512x512" /></p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fname-squatting-on-itunesconnect-with-style%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fname-squatting-on-itunesconnect-with-style%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fname-squatting-on-itunesconnect-with-style%2F&amp;linkname=Name%20Squatting%20on%20iTunesConnect%20with%20Style" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fname-squatting-on-itunesconnect-with-style%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fname-squatting-on-itunesconnect-with-style%2F&amp;count=none&amp;text=Name%20Squatting%20on%20iTunesConnect%20with%20Style" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fname-squatting-on-itunesconnect-with-style%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fname-squatting-on-itunesconnect-with-style%2F&amp;count=none&amp;text=Name%20Squatting%20on%20iTunesConnect%20with%20Style" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_instapaper" href="http://www.addtoany.com/add_to/instapaper?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fname-squatting-on-itunesconnect-with-style%2F&amp;linkname=Name%20Squatting%20on%20iTunesConnect%20with%20Style" title="Instapaper" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/instapaper.png" width="16" height="16" alt="Instapaper"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fname-squatting-on-itunesconnect-with-style%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fname-squatting-on-itunesconnect-with-style%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><a class="a2a_button_stumbleupon" href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fname-squatting-on-itunesconnect-with-style%2F&amp;linkname=Name%20Squatting%20on%20iTunesConnect%20with%20Style" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a><a class="a2a_button_google_reader" href="http://www.addtoany.com/add_to/google_reader?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fname-squatting-on-itunesconnect-with-style%2F&amp;linkname=Name%20Squatting%20on%20iTunesConnect%20with%20Style" title="Google Reader" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/reader.png" width="16" height="16" alt="Google Reader"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fname-squatting-on-itunesconnect-with-style%2F&amp;title=Name%20Squatting%20on%20iTunesConnect%20with%20Style" id="wpa2a_4">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.cutemachine.com/resources/name-squatting-on-itunesconnect-with-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Divert Calls on the iPhone with GSM Codes</title>
		<link>http://www.cutemachine.com/iphone-productivity-quick-tip/how-to-divert-calls-on-the-iphone-with-gsm-codes/</link>
		<comments>http://www.cutemachine.com/iphone-productivity-quick-tip/how-to-divert-calls-on-the-iphone-with-gsm-codes/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 16:33:03 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[iPhone Productivity Quick Tip]]></category>
		<category><![CDATA[babyfon]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[divert calls forward]]></category>
		<category><![CDATA[gsm]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[trick]]></category>

		<guid isPermaLink="false">http://www.cutemachine.com/?p=324</guid>
		<description><![CDATA[Have you ever tried to forward incoming calls on your iPhone to another phone? Some weeks ago, when I was trying out the BabyFon application, I had to do divert all incoming calls. If you search through the iPhone&#8217;s phone application to find a button which lets you divert calls, you will have no luck. [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img class="alignleft frame size-medium wp-image-507" title="gsmcodekeypad" src="http://www.cutemachine.com/wp-content/uploads/2009/01/gsmcodekeypad-208x300.png" alt="gsmcodekeypad" width="180" height="258" /><span class="drop_cap">H</span>ave you ever tried to forward incoming calls on your iPhone to another phone? Some weeks ago, when I was trying out the <a title="Use your iPhone as a baby phone" href="http://www.cutemachine.com/app-store-reviews/your-iphone-is-a-babyfon/">BabyFon application</a>, I had to do divert all incoming calls. If you search through the iPhone&#8217;s phone application to find a button which lets you divert calls, you will have no luck. Instead, you have to go to the settings application: <code>Settings &gt; Phone &gt; Call Forwarding</code>. In the menu you can enter a phone number where you want to have your calls forwarded to. In the same menu you can switch call forwarding on or off. There is also another way to forward calls. This is the solution I prefer as it comes in more handy when you need to use call forwarding on a day to day basis: you can use GSM codes and make convenient short cuts in your contacts database.</p>
<p>Do you wonder what GSM codes are? GSM is the abbreviation for <a title="GSM" href="http://en.wikipedia.org/wiki/Global_System_for_Mobile_Communications">Global System for Mobile Communications</a>. This standard defines various codes with which you can control phones which implement this standard. For example, you can configure call forwarding and other similar options too. In this article we will look at call forwarding only. You can control lots of <a title="GSM codes list" href="http://web.telia.com/~u47904776/gsmkode.htm" class="broken_link">other features</a> with GSM codes, which I will discuss in a later post.</p>
<p>These are the GSM codes of interest, if you need to divert calls on your phone:</p>
<ol>
<li>**21*<em>a phone number</em>#  &#8211; to register <em>a phone number</em> and activate the diversion of all calls to this number.</li>
<li>*21# &#8212; to activate divert all calls function (supposed you already have registered a phone number in the past).</li>
<li>#21# &#8212; to deactivate divert all calls.</li>
</ol>
<p>You can enter these codes through the Phone&#8217;s keypad. Just open the phone application and tap on the <em>Keypad</em> tab. Enter <em>**21*a phone number#</em> to register a phone number to which you want to forward incoming calls. When you register a phone number, that will also activate call diversion. With the code #21# you can deactivate call diversion.</p>
<p>If you are like me you have every chance of forgetting to deactivate the forwarding function. Therefore, it might be a good idea to set an alarm in the clock application to remind you of turning off call diversion.</p>
<p>The next time you need to divert incoming calls, it is enough to enter the code *21#, as the number is already registered. If you need to divert to a different number you certainly can register a new number.</p>
<p>As I am not good in remembering GSM codes I have installed shortcuts in the address book. This is how you can do it:<br />
<img class="alignright frame size-medium wp-image-503" title="contactcalldivert" src="http://www.cutemachine.com/wp-content/uploads/2009/01/contactcalldivert-208x300.png" alt="contactcalldivert" width="208" height="300" /></p>
<ul>
<li>Open the contact to whom you want to divert the call to.</li>
<li>Tap on the <em>Edit</em> button and select <em>Add new Phone</em>.</li>
<li>Enter the GSM code together with the number you want to forward calls to (e.g. <em>**21*08150815#</em>).</li>
<li>Press on the label beneath the phone field to add a custom field (Press <em>Edit</em> on the Label view, then select <em>Add Custom Label</em>).</li>
<li>Do the same steps once more to add a phone number which will deactivate the <em>divert all calls</em> function.</li>
</ul>
<p>This is how you can use GSM codes to forward calls to another phone. Look through the list I have linked to for further useful GSM codes. For example, there are GSM codes with which you can hide your caller id when making phone calls. Check the Quick Tip category in the coming days. I will write another short post about the caller id soon.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-divert-calls-on-the-iphone-with-gsm-codes%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-divert-calls-on-the-iphone-with-gsm-codes%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-divert-calls-on-the-iphone-with-gsm-codes%2F&amp;linkname=How%20to%20Divert%20Calls%20on%20the%20iPhone%20with%20GSM%20Codes" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-divert-calls-on-the-iphone-with-gsm-codes%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-divert-calls-on-the-iphone-with-gsm-codes%2F&amp;count=none&amp;text=How%20to%20Divert%20Calls%20on%20the%20iPhone%20with%20GSM%20Codes" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-divert-calls-on-the-iphone-with-gsm-codes%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-divert-calls-on-the-iphone-with-gsm-codes%2F&amp;count=none&amp;text=How%20to%20Divert%20Calls%20on%20the%20iPhone%20with%20GSM%20Codes" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_instapaper" href="http://www.addtoany.com/add_to/instapaper?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-divert-calls-on-the-iphone-with-gsm-codes%2F&amp;linkname=How%20to%20Divert%20Calls%20on%20the%20iPhone%20with%20GSM%20Codes" title="Instapaper" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/instapaper.png" width="16" height="16" alt="Instapaper"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-divert-calls-on-the-iphone-with-gsm-codes%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-divert-calls-on-the-iphone-with-gsm-codes%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><a class="a2a_button_stumbleupon" href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-divert-calls-on-the-iphone-with-gsm-codes%2F&amp;linkname=How%20to%20Divert%20Calls%20on%20the%20iPhone%20with%20GSM%20Codes" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a><a class="a2a_button_google_reader" href="http://www.addtoany.com/add_to/google_reader?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-divert-calls-on-the-iphone-with-gsm-codes%2F&amp;linkname=How%20to%20Divert%20Calls%20on%20the%20iPhone%20with%20GSM%20Codes" title="Google Reader" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/reader.png" width="16" height="16" alt="Google Reader"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-divert-calls-on-the-iphone-with-gsm-codes%2F&amp;title=How%20to%20Divert%20Calls%20on%20the%20iPhone%20with%20GSM%20Codes" id="wpa2a_6">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.cutemachine.com/iphone-productivity-quick-tip/how-to-divert-calls-on-the-iphone-with-gsm-codes/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>What Everybody ought to Know about iPhone Backups</title>
		<link>http://www.cutemachine.com/iphone-productivity-quick-tip/what-everybody-ought-to-know-about-iphone-backups/</link>
		<comments>http://www.cutemachine.com/iphone-productivity-quick-tip/what-everybody-ought-to-know-about-iphone-backups/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 21:52:33 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[iPhone Productivity Quick Tip]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[extractor]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[ipod touch]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[synchronization]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://www.cutemachine.com/?p=276</guid>
		<description><![CDATA[Do you have a backup strategy for your iPhone? You know you will need a backup someday in the future. Just syncing your iPhone or iPod touch with iTunes is not enough. Syncing your data between the iPhone and your computer is not the same as making backups. Synchronizations and backups deal with different data. [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">D</span>o you have a backup strategy for your iPhone? You know you will need a backup someday in the future. Just syncing your iPhone or iPod touch with iTunes is not enough. Syncing your data between the iPhone and your computer is not the same as making backups. Synchronizations and backups deal with different data. Here is a quick rundown of what data gets synchronized and what data gets backed up.</p>
<h3>Syncing will safeguard the following data:</h3>
<ul>
<li>Music</li>
<li>Videos</li>
<li>Photos</li>
<li>Contacts</li>
<li>Calendar</li>
<li>Bookmarks</li>
<li>Settings (mail account settings, device settings, etc.)</li>
</ul>
<h3>Backups, on the Other Hand, will safeguard the following data:</h3>
<ul>
<li>Text messages</li>
<li>Notes from the notes application</li>
<li>Locations from the maps application</li>
<li>Call history</li>
<li>Contact favorites</li>
<li>Cookies</li>
<li>Settings (sound, widget, network)</li>
<li>Photos (Yes, they get backed up <strong>and</strong> synced)</li>
<li>And most importantly it will store the data of third party apps!</li>
</ul>
<p>You see, there is a big difference as regards which data gets transferred between your mobile device and your stationary computer. You should always do both backups and synchronizations.</p>
<p>When you want to protect your data from being lost, there are only a few important things you need adhere to:</p>
<ol>
<li>Learn how to backup your iPhone or iPod touch</li>
<li>Learn how to restore your valuable data</li>
<li>Backup your data regularly</li>
</ol>
<h3>How to backup your iPhone or iPod touch</h3>
<p>Backing up your data is easy. Just connect your iPhone to your desktop computer. Depending on your settings, the synchronization will start automatically or you need to start the synchronization<img src="http://www.cutemachine.com/wp-content/uploads/2009/01/brokeniphonesmall.png" alt="Bust iPhone" title="Bust iPhone" class="alignleft frame size-full wp-image-481" />manually by pressing the sync button on the <em>Summary</em> tab in iTunes. If you are using a laptop computer, remember to connect your laptop to the power supply as backups may take several minutes to complete with the iPhone software version 2.2. If you are using an older software version it can take considerably longer. You should configure iTunes to sync automatically when you connect your device. iTunes will backup your device only when you connect it to your computer regardless of how often you press the sync button in iTunes. If you want to enforce a new backup you must disconnect and reconnect your device. This will trigger a new backup.</p>
<p class="alert">Never disconnect your iPhone or iPod touch while it is backing up your device. If you do, you will have a corrupt backup.</p>
<p>You can see the created backups in <code>iTunes &gt; Preferences &gt; Devices &gt; Device backups</code>. This is where you can delete older backups. The backup files have a file extension of <code>.mdbackup</code>. You can find these files in your home directory by following <code>Library &gt; Application Support &gt; MobileSync &gt; Backup</code>. In Backup you will find different sub folders. For each of your devices there will be one. Beneath this directory you will see the actual backup files which have been created by iTunes. You can analyse these files by using the iPhone backup extractor as described below.</p>
<h3>How to restore your data</h3>
<p>In order to restore a backup you created earlier just connect your iPhone or iPod touch to your computer and press the restore button on the <em>Summary</em> tab in iTunes.</p>
<p>Though I have never tried it myself, it should also be possible to restore your iPhone backups to a different device. Naturally all data gets overwritten when you restore a backup. Therefore be extremely careful. </p>
<h3>The backup extractor</h3>
<p>There is a <a title="Backup Extractor" href="http://supercrazyawesome.com/">supercrazyawesome</a> tool available with which you can have a peek into the backup files iTunes creates. The backup extractor has just two buttons. The <em>Read Backups</em> button will look for backup files on your computer and lists all backup files it finds. When you select one backup file from the list in the main window and press the second button labeled <em>Extract</em> the extractor will ask for a directory where you want to save the extracted data.</p>
<p>In the listing of your backup files you will see one backup which is especially interesting. It is labeled <em>Other Files</em>. If you extract this one you will come across lots of familiar data. For example you will see a sqlite3 data base file, which contains your address book data. As far as I know it is not possible to alter any data and play it back onto your device. The author of the iPhone backup extractor is considering adding this functionality in the future. The backup extractor tool is donation ware. So, if you use it on a regular basis please support the author by making a donation.</p>
<h3>Do backups regularly</h3>
<p>With the new iPhone Software version 2.2, backups get created fairly quickly. Therefore, I advise you to configure iTunes to sync your device automatically each time you connect it to your computer.</p>
<p>This should be everything you need to know about securing your iPhone against data loss. Go ahead, start your backup now.</p>
<p>Should you still feel a desire for more information on making backups, please head over to the official Apple site and check out what Apple has to say <a title="iPhone Backups" href="http://support.apple.com/kb/HT1766">about iPhone backups</a>.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhat-everybody-ought-to-know-about-iphone-backups%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhat-everybody-ought-to-know-about-iphone-backups%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhat-everybody-ought-to-know-about-iphone-backups%2F&amp;linkname=What%20Everybody%20ought%20to%20Know%20about%20iPhone%20Backups" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhat-everybody-ought-to-know-about-iphone-backups%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhat-everybody-ought-to-know-about-iphone-backups%2F&amp;count=none&amp;text=What%20Everybody%20ought%20to%20Know%20about%20iPhone%20Backups" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhat-everybody-ought-to-know-about-iphone-backups%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhat-everybody-ought-to-know-about-iphone-backups%2F&amp;count=none&amp;text=What%20Everybody%20ought%20to%20Know%20about%20iPhone%20Backups" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_instapaper" href="http://www.addtoany.com/add_to/instapaper?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhat-everybody-ought-to-know-about-iphone-backups%2F&amp;linkname=What%20Everybody%20ought%20to%20Know%20about%20iPhone%20Backups" title="Instapaper" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/instapaper.png" width="16" height="16" alt="Instapaper"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhat-everybody-ought-to-know-about-iphone-backups%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhat-everybody-ought-to-know-about-iphone-backups%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><a class="a2a_button_stumbleupon" href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhat-everybody-ought-to-know-about-iphone-backups%2F&amp;linkname=What%20Everybody%20ought%20to%20Know%20about%20iPhone%20Backups" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a><a class="a2a_button_google_reader" href="http://www.addtoany.com/add_to/google_reader?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhat-everybody-ought-to-know-about-iphone-backups%2F&amp;linkname=What%20Everybody%20ought%20to%20Know%20about%20iPhone%20Backups" title="Google Reader" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/reader.png" width="16" height="16" alt="Google Reader"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhat-everybody-ought-to-know-about-iphone-backups%2F&amp;title=What%20Everybody%20ought%20to%20Know%20about%20iPhone%20Backups" id="wpa2a_8">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.cutemachine.com/iphone-productivity-quick-tip/what-everybody-ought-to-know-about-iphone-backups/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Access your Favorite Websites easily on the iPhone</title>
		<link>http://www.cutemachine.com/iphone-productivity-quick-tip/access-your-favorite-websites-easily-on-the-iphone/</link>
		<comments>http://www.cutemachine.com/iphone-productivity-quick-tip/access-your-favorite-websites-easily-on-the-iphone/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 11:11:03 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[iPhone Productivity Quick Tip]]></category>
		<category><![CDATA[bookmark]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobile safari]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[shortcut]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[trick]]></category>

		<guid isPermaLink="false">http://www.cutemachine.com/?p=312</guid>
		<description><![CDATA[The other day I was chatting with a friend who recently bought an iPhone. When I was looking at his iPhone I noticed some icons which I had never seen before. It turned out that these icons were bookmarks to his favorite websites. A nice little feature mobile Safari offers is the facility to drop [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img class="alignleft size-full wp-image-343" title="safari" src="http://www.cutemachine.com/wp-content/uploads/2009/01/safari.png" alt="safari" width="59" height="61" /><span class="drop_cap">T</span>he other day I was chatting with a friend who recently bought an iPhone. When I was looking at his iPhone I noticed some icons which I had never seen before. It turned out that these icons were bookmarks to his favorite websites. A nice little feature mobile Safari offers is the facility to drop bookmarks on your Home screen.</p>
<ol>
<li>Open the site you want to have a shortcut for in mobile Safari.</li>
<li>Resize and move the page to the section you want to start off the next time you open the shortcut. Mobile Safari will remember the exact position.</li>
<li>Press the + sign in the bottom toolbar and select <em>Add To Home Screen</em>. The iPhone will make a screenshot of the page, which will be used as an icon on the Home screen.</li>
</ol>
<p>Go ahead, now you have a convenient shortcut on your Home screen.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Faccess-your-favorite-websites-easily-on-the-iphone%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Faccess-your-favorite-websites-easily-on-the-iphone%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Faccess-your-favorite-websites-easily-on-the-iphone%2F&amp;linkname=Access%20your%20Favorite%20Websites%20easily%20on%20the%20iPhone" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Faccess-your-favorite-websites-easily-on-the-iphone%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Faccess-your-favorite-websites-easily-on-the-iphone%2F&amp;count=none&amp;text=Access%20your%20Favorite%20Websites%20easily%20on%20the%20iPhone" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Faccess-your-favorite-websites-easily-on-the-iphone%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Faccess-your-favorite-websites-easily-on-the-iphone%2F&amp;count=none&amp;text=Access%20your%20Favorite%20Websites%20easily%20on%20the%20iPhone" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_instapaper" href="http://www.addtoany.com/add_to/instapaper?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Faccess-your-favorite-websites-easily-on-the-iphone%2F&amp;linkname=Access%20your%20Favorite%20Websites%20easily%20on%20the%20iPhone" title="Instapaper" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/instapaper.png" width="16" height="16" alt="Instapaper"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Faccess-your-favorite-websites-easily-on-the-iphone%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Faccess-your-favorite-websites-easily-on-the-iphone%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><a class="a2a_button_stumbleupon" href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Faccess-your-favorite-websites-easily-on-the-iphone%2F&amp;linkname=Access%20your%20Favorite%20Websites%20easily%20on%20the%20iPhone" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a><a class="a2a_button_google_reader" href="http://www.addtoany.com/add_to/google_reader?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Faccess-your-favorite-websites-easily-on-the-iphone%2F&amp;linkname=Access%20your%20Favorite%20Websites%20easily%20on%20the%20iPhone" title="Google Reader" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/reader.png" width="16" height="16" alt="Google Reader"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Faccess-your-favorite-websites-easily-on-the-iphone%2F&amp;title=Access%20your%20Favorite%20Websites%20easily%20on%20the%20iPhone" id="wpa2a_10">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.cutemachine.com/iphone-productivity-quick-tip/access-your-favorite-websites-easily-on-the-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resources for the Beginning iPhone Developer</title>
		<link>http://www.cutemachine.com/resources/resources-for-the-beginning-iphone-developer/</link>
		<comments>http://www.cutemachine.com/resources/resources-for-the-beginning-iphone-developer/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 20:43:44 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[sdk]]></category>
		<category><![CDATA[source code]]></category>

		<guid isPermaLink="false">http://www.cutemachine.com/?p=336</guid>
		<description><![CDATA[All resources you need to write your first iPhone App. iPhone Developer Certificate iPhone SDK Application Development by Jonathan Zdziarski List of resources on the web 31 iPhone apps with source  TwitterFon is a GPLv2 licensed Twitter client for the iPhone. You can download the full source code from the subversion repository: svn co http://naan.net/svn/trunk/TwitterFon Subscribe via [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>All resources you need to write your first iPhone App.</p>
<ul>
<li><a title="iPhone Dev Central" href="http://developer.apple.com/iphone/index.action">iPhone Developer Certificate</a></li>
<li><a title="iPhone SDK Application Development" href="http://oreilly.com/catalog/9780596156183/index.html">iPhone SDK Application Development</a> by Jonathan Zdziarski</li>
<li><a title="Resource list" href="http://iphonetoolbox.com/news/hand-picked-iphone-application-development-resources/">List of resources</a> on the web</li>
<li><a title="appsamuck" href="http://www.appsamuck.com/">31 iPhone apps with source</a> </li>
<li><a href="http://twitterfon.net/">TwitterFon</a> is a <a href="http://www.gnu.org/licenses/gpl-2.0.html" target="_blank"><span class="caps">GPL</span>v2</a> licensed Twitter client for the iPhone. You can download the full source code from the subversion repository:<br />
<code>svn co http://naan.net/svn/trunk/TwitterFon</code></li>
<li>Subscribe via iTunes to the <a title="iTunes Link To Mobile Orchard" href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=294369513">Mobile Orchard iPhone Development Podcast</a></li>
<li><a title="Touchcode" href="http://code.google.com/p/touchcode/">Repository</a> of iPhone and iPod touch source code</li>
<li><a title="Cocoa Http Server" href="http://code.google.com/p/cocoahttpserver/">Cocoa Http Server</a> on Google Code</li>
<li>Another <a title="Alex's link list" href="http://freeborn.wordpress.com/2008/03/10/iphone-developmenet-where-to-start/">link list for iPhone developers</a></li>
<li><a title="Cocoa Devcentral" href="http://cocoadevcentral.com/">Cocoa</a></li>
</ul>
<p>Please, post your iPhone developer resources in the comments.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fresources-for-the-beginning-iphone-developer%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fresources-for-the-beginning-iphone-developer%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fresources-for-the-beginning-iphone-developer%2F&amp;linkname=Resources%20for%20the%20Beginning%20iPhone%20Developer" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fresources-for-the-beginning-iphone-developer%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fresources-for-the-beginning-iphone-developer%2F&amp;count=none&amp;text=Resources%20for%20the%20Beginning%20iPhone%20Developer" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fresources-for-the-beginning-iphone-developer%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fresources-for-the-beginning-iphone-developer%2F&amp;count=none&amp;text=Resources%20for%20the%20Beginning%20iPhone%20Developer" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_instapaper" href="http://www.addtoany.com/add_to/instapaper?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fresources-for-the-beginning-iphone-developer%2F&amp;linkname=Resources%20for%20the%20Beginning%20iPhone%20Developer" title="Instapaper" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/instapaper.png" width="16" height="16" alt="Instapaper"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fresources-for-the-beginning-iphone-developer%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fresources-for-the-beginning-iphone-developer%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><a class="a2a_button_stumbleupon" href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fresources-for-the-beginning-iphone-developer%2F&amp;linkname=Resources%20for%20the%20Beginning%20iPhone%20Developer" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a><a class="a2a_button_google_reader" href="http://www.addtoany.com/add_to/google_reader?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fresources-for-the-beginning-iphone-developer%2F&amp;linkname=Resources%20for%20the%20Beginning%20iPhone%20Developer" title="Google Reader" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/reader.png" width="16" height="16" alt="Google Reader"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fresources-for-the-beginning-iphone-developer%2F&amp;title=Resources%20for%20the%20Beginning%20iPhone%20Developer" id="wpa2a_12">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.cutemachine.com/resources/resources-for-the-beginning-iphone-developer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Turn Any MP3 into an iPhone Ringtone</title>
		<link>http://www.cutemachine.com/resources/turn-any-mp3-into-an-iphone-ringtone/</link>
		<comments>http://www.cutemachine.com/resources/turn-any-mp3-into-an-iphone-ringtone/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 13:39:43 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[external]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[ringtone]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.cutemachine.com/?p=328</guid>
		<description><![CDATA[Article on PCWorld by Ric Broida.]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.pcworld.com/article/156234/turn_any_mp3_into_an_iphone_ringtone.html">Article on PCWorld by Ric Broida</a>.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fturn-any-mp3-into-an-iphone-ringtone%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fturn-any-mp3-into-an-iphone-ringtone%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fturn-any-mp3-into-an-iphone-ringtone%2F&amp;linkname=Turn%20Any%20MP3%20into%20an%20iPhone%20Ringtone" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fturn-any-mp3-into-an-iphone-ringtone%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fturn-any-mp3-into-an-iphone-ringtone%2F&amp;count=none&amp;text=Turn%20Any%20MP3%20into%20an%20iPhone%20Ringtone" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fturn-any-mp3-into-an-iphone-ringtone%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fturn-any-mp3-into-an-iphone-ringtone%2F&amp;count=none&amp;text=Turn%20Any%20MP3%20into%20an%20iPhone%20Ringtone" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_instapaper" href="http://www.addtoany.com/add_to/instapaper?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fturn-any-mp3-into-an-iphone-ringtone%2F&amp;linkname=Turn%20Any%20MP3%20into%20an%20iPhone%20Ringtone" title="Instapaper" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/instapaper.png" width="16" height="16" alt="Instapaper"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fturn-any-mp3-into-an-iphone-ringtone%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fturn-any-mp3-into-an-iphone-ringtone%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><a class="a2a_button_stumbleupon" href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fturn-any-mp3-into-an-iphone-ringtone%2F&amp;linkname=Turn%20Any%20MP3%20into%20an%20iPhone%20Ringtone" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a><a class="a2a_button_google_reader" href="http://www.addtoany.com/add_to/google_reader?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fturn-any-mp3-into-an-iphone-ringtone%2F&amp;linkname=Turn%20Any%20MP3%20into%20an%20iPhone%20Ringtone" title="Google Reader" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/reader.png" width="16" height="16" alt="Google Reader"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.cutemachine.com%2Fresources%2Fturn-any-mp3-into-an-iphone-ringtone%2F&amp;title=Turn%20Any%20MP3%20into%20an%20iPhone%20Ringtone" id="wpa2a_14">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.cutemachine.com/resources/turn-any-mp3-into-an-iphone-ringtone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Secure your iPhone in 9 Easy to Follow Steps</title>
		<link>http://www.cutemachine.com/iphone-productivity-quick-tip/how-to-secure-your-iphone-in-9-easy-to-follow-steps/</link>
		<comments>http://www.cutemachine.com/iphone-productivity-quick-tip/how-to-secure-your-iphone-in-9-easy-to-follow-steps/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 18:59:39 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[iPhone Productivity Quick Tip]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[ipod touch]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[trick]]></category>

		<guid isPermaLink="false">http://www.cutemachine.com/?p=215</guid>
		<description><![CDATA[The iPhone is not only a phone, but also a computer. And some people use it like a computer. But, strangely enough, when it comes to security, they are not taking the necessary steps to secure their data like they would on a normal desktop computer or laptop. They store contact information, documents, passwords and [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.cutemachine.com/wp-content/uploads/2008/12/enter_passcode.png"><img src="http://www.cutemachine.com/wp-content/uploads/2008/12/enter_passcode-208x300.png" alt="enter_passcode" title="enter_passcode" width="130" class="alignleft frame wp-image-280" /></a><span class="drop_cap">T</span>he iPhone is not only a phone, but also a computer. And some people use it like a computer. But, strangely enough, when it comes to security, they are not taking the necessary steps to secure their data like they would on a normal desktop computer or laptop. They store contact information, documents, passwords and other confidential data. And yet they leave it all unprotected. Follow these security tips to make it harder for any villain to get hold of your valuable data.</p>
<p> </p>
<ol>
<li>Protect your iPhone against unwanted access. Activate the Pin Pad under <em>Settings &gt; General &gt; Passcode Lock</em>. Also set the <em>Auto-Lock</em> to at least 5 minutes. This will lock the iPhone automatically after 5 minutes. You can also configure your iPhone in a way that will erase all data after 10 failed passcode attempts. I am not using this feature, because I am afraid that my 2 year old daughter will try to guess the code and will not achieve it under 10 attempts.</li>
<li>Ensure that you reveal your location only to those services you trust. Therefore deactivate location services by default. You can do this in <em>Settings &gt; General &gt; Location Services</em>. Yes, I am paranoid.</li>
<li>Configure your iPhone to ask for permission before connecting to wireless networks. Set <em>Settings &gt; Wi-Fi &gt; Ask to Join Networks</em> to <em>on</em>.</li>
<li>Whenever possible, use an SSL connection when you surf with mobile Safari. You can see that a connection is secure when mobile Safari is displaying a little lock in the address bar.</li>
<li>Whenever possible, use an SSL connection to retrieve your mail. <em>Settings &gt; Mail, Contacts, Calendars &gt; Your Account &gt; Advanced &gt; Use SSL</em> is the right place to do it.</li>
<li>Under <em>Settings &gt; Safari</em> you can control various security settings for mobile Safari. You can deactivate JavaScript, block pop-ups and reject or delete cookies.</li>
<li>Use a secure data store application to store confidential documents. There are several offers in the App Store.</li>
<li>Use a secure password store application to store passwords. There are several programs which will do the job. Look for applications which do use encryption.</li>
<li>Do backup your iPhone regularly through iTunes. Apple has written a short article on their support pages about <a title="backup" href="http://support.apple.com/kb/HT1766">backing up your data and applications</a>.</li>
</ol>
<p>This list is not complete. For example, you can configure a virtual private network to use with your iPhone. The headline says <em>easy to follow steps;</em> therefore, I will leave the VPN to another post. You can also set restrictions on various iPhone applications. I do not consider these to be essential, but encourage you to play around with these (<em>Settings &gt; General &gt; Restrictions</em>). Certainly there are even more tips and tricks regarding iPhone security. Let us know your best tips and tricks.</p>
<p>I hope you are already determined to take security seriously. If not, <a title="stolen iPhone on eBay" href="http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&amp;item=270318409449" class="broken_link">read this funny story</a>. Funny, because the story came to a good end. Imagine this happening to you. A nightmare!</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-secure-your-iphone-in-9-easy-to-follow-steps%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-secure-your-iphone-in-9-easy-to-follow-steps%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-secure-your-iphone-in-9-easy-to-follow-steps%2F&amp;linkname=How%20to%20Secure%20your%20iPhone%20in%209%20Easy%20to%20Follow%20Steps" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-secure-your-iphone-in-9-easy-to-follow-steps%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-secure-your-iphone-in-9-easy-to-follow-steps%2F&amp;count=none&amp;text=How%20to%20Secure%20your%20iPhone%20in%209%20Easy%20to%20Follow%20Steps" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-secure-your-iphone-in-9-easy-to-follow-steps%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-secure-your-iphone-in-9-easy-to-follow-steps%2F&amp;count=none&amp;text=How%20to%20Secure%20your%20iPhone%20in%209%20Easy%20to%20Follow%20Steps" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_instapaper" href="http://www.addtoany.com/add_to/instapaper?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-secure-your-iphone-in-9-easy-to-follow-steps%2F&amp;linkname=How%20to%20Secure%20your%20iPhone%20in%209%20Easy%20to%20Follow%20Steps" title="Instapaper" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/instapaper.png" width="16" height="16" alt="Instapaper"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-secure-your-iphone-in-9-easy-to-follow-steps%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-secure-your-iphone-in-9-easy-to-follow-steps%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><a class="a2a_button_stumbleupon" href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-secure-your-iphone-in-9-easy-to-follow-steps%2F&amp;linkname=How%20to%20Secure%20your%20iPhone%20in%209%20Easy%20to%20Follow%20Steps" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a><a class="a2a_button_google_reader" href="http://www.addtoany.com/add_to/google_reader?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-secure-your-iphone-in-9-easy-to-follow-steps%2F&amp;linkname=How%20to%20Secure%20your%20iPhone%20in%209%20Easy%20to%20Follow%20Steps" title="Google Reader" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/reader.png" width="16" height="16" alt="Google Reader"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fhow-to-secure-your-iphone-in-9-easy-to-follow-steps%2F&amp;title=How%20to%20Secure%20your%20iPhone%20in%209%20Easy%20to%20Follow%20Steps" id="wpa2a_16">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.cutemachine.com/iphone-productivity-quick-tip/how-to-secure-your-iphone-in-9-easy-to-follow-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why has the iPhone so many Buttons?</title>
		<link>http://www.cutemachine.com/iphone-productivity-quick-tip/why-has-the-iphone-so-many-buttons/</link>
		<comments>http://www.cutemachine.com/iphone-productivity-quick-tip/why-has-the-iphone-so-many-buttons/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 21:11:00 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[iPhone Productivity Quick Tip]]></category>
		<category><![CDATA[2.2]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[ipod touch]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[reboot]]></category>

		<guid isPermaLink="false">http://www.cutemachine.com/?p=221</guid>
		<description><![CDATA[Here is a quick list of the features controlled by the four buttons of your iPhone. These are the physical controls available. Sleep/Wake button, on the top right of your iPhone Volume button, on the left side Mute switch, on the left side of the iPhone, just above the volume control Home button, on the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">H</span>ere is a quick list of the features controlled by the four buttons of your iPhone. These are the physical controls available.</p>
<ul>
<li>Sleep/Wake button, on the top right of your iPhone</li>
<li>Volume button, on the left side</li>
<li>Mute switch, on the left side of the iPhone, just above the volume control</li>
<li>Home button, on the front of your iPhone, just beneath the touch screen</li>
</ul>
<p>The Sleep/Wake button lets you lock/unlock the iPhone respectively. Locking does not mean powering off though. It just turns off the touch screen. Any open application will continue to run. To power off the iPhone you need to press and hold the Sleep/Wake button for a few seconds, then drag the slider to the right side. To turn your iPhone on again just press the Sleep/Wake button for about two seconds.</p>
<p>The volume button controls the volume of the playback audio or the ring tone volume, depending on the context the button is used in.</p>
<p>The mute button mutes the external speaker. When the switch is down you can see a red dot on the switch indicating that the phone is muted. Before the introduction of the Software update 2.2 muting did not work properly. For example it was not possible to mute the sounds which came from the Koi Pond application or other third party apps. But it seems to be fixed in 2.2.</p>
<p>The Home button has several functions:</p>
<p><img class="alignright frame size-medium wp-image-231" title="homebutton" src="http://www.cutemachine.com/wp-content/uploads/2008/12/homebutton-208x300.png" alt="homebutton" width="208" height="300" /></p>
<ul>
<li>Pressing and holding the Home button while you are on one of the Home screens lets you rearrange your application icons. The icons will start to wiggle. You then can rearrange the icons. You can also delete applications by pressing the x control on the top left corner of an icon. Press the Home button once more when you have finished rearranging and deleting.</li>
<li>Pressing the Home button briefly while you are on one of the Home screens will bring you back to the first Home screen.</li>
<li>Pressing and holding the Home button and the Sleep/Wake button will reboot your iPhone. When you hold the buttons for a few seconds a slider will appear on the screen. Drag it to the right to reboot your device.</li>
<li>Pressing the Home button while an application is open will end that application.</li>
<li>Pressing the Home button for about six seconds while an application is open will force quit the application. This is useful when an application is not responding anymore.</li>
<li>Pressing the Home button twice quickly will bring you back to your first Home screen, open your favorite contacts list or, start the iPod application. You can choose which of these features you want to activate in Settings &gt; General &gt; Home button.</li>
<li>Pressing the Home button twice while the iPhone is locked will launch the iPod widget, with which you can control the audio playback volume, start/stop the playback or, change the track.</li>
</ul>
<p>Apple provides a user guide optimized for mobile Safari. There is a link in the bookmarks folder of mobile Safari, which points to  <a href="http://help.apple.com/iphone/">help.apple.com/iphone</a>.</p>
<p>That&#8217;s all folks. Have I missed a button feature? Let me know in the comments.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhy-has-the-iphone-so-many-buttons%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhy-has-the-iphone-so-many-buttons%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhy-has-the-iphone-so-many-buttons%2F&amp;linkname=Why%20has%20the%20iPhone%20so%20many%20Buttons%3F" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhy-has-the-iphone-so-many-buttons%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhy-has-the-iphone-so-many-buttons%2F&amp;count=none&amp;text=Why%20has%20the%20iPhone%20so%20many%20Buttons%3F" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhy-has-the-iphone-so-many-buttons%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhy-has-the-iphone-so-many-buttons%2F&amp;count=none&amp;text=Why%20has%20the%20iPhone%20so%20many%20Buttons%3F" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_instapaper" href="http://www.addtoany.com/add_to/instapaper?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhy-has-the-iphone-so-many-buttons%2F&amp;linkname=Why%20has%20the%20iPhone%20so%20many%20Buttons%3F" title="Instapaper" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/instapaper.png" width="16" height="16" alt="Instapaper"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhy-has-the-iphone-so-many-buttons%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhy-has-the-iphone-so-many-buttons%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><a class="a2a_button_stumbleupon" href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhy-has-the-iphone-so-many-buttons%2F&amp;linkname=Why%20has%20the%20iPhone%20so%20many%20Buttons%3F" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a><a class="a2a_button_google_reader" href="http://www.addtoany.com/add_to/google_reader?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhy-has-the-iphone-so-many-buttons%2F&amp;linkname=Why%20has%20the%20iPhone%20so%20many%20Buttons%3F" title="Google Reader" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/reader.png" width="16" height="16" alt="Google Reader"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.cutemachine.com%2Fiphone-productivity-quick-tip%2Fwhy-has-the-iphone-so-many-buttons%2F&amp;title=Why%20has%20the%20iPhone%20so%20many%20Buttons%3F" id="wpa2a_18">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.cutemachine.com/iphone-productivity-quick-tip/why-has-the-iphone-so-many-buttons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Things Done with TouchTodo</title>
		<link>http://www.cutemachine.com/app-store-reviews/getting-things-done-with-touchtodo/</link>
		<comments>http://www.cutemachine.com/app-store-reviews/getting-things-done-with-touchtodo/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 23:19:07 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[App Store Reviews]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[app store]]></category>
		<category><![CDATA[goalkeep]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[ipod touch]]></category>
		<category><![CDATA[touchtodo]]></category>

		<guid isPermaLink="false">http://www.cutemachine.com/?p=182</guid>
		<description><![CDATA[Yes, yet another todo application for the iPhone. Why bother? Honestly, I didn&#8217;t. I stumbled upon it in AppSniper and, since it was free, I downloaded it. What a stroke of luck! I&#8217;m using it for nearly two weeks now and I am more than pleased by the design and usability of this little productivity [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img src="http://www.cutemachine.com/wp-content/uploads/2008/12/touchtodo2.png" alt="" title="touchtodo2" width="67" height="65" class="alignleft size-full wp-image-210" /></p>
<p><scan class="drop_cap">Y</scan>es, yet another todo application for the iPhone. Why bother? Honestly, I didn&#8217;t.  I stumbled upon it in AppSniper and, since it was free, I downloaded it. What a stroke of luck! I&#8217;m using it for nearly two weeks now and I am more than pleased by the design and usability of this little productivity helper. It has all the features I want from a decent todo application.</p>
<p><a href="http://www.cutemachine.com/wp-content/uploads/2008/12/touchtodo.png"><img class="alignright frame size-medium wp-image-207" title="touchtodo" src="http://www.cutemachine.com/wp-content/uploads/2008/12/touchtodo-208x300.png" alt="" width="208" height="300" /></a></p>
<ul>
<li>Detached todos</li>
<li>Priorities for todos</li>
<li>Search through the complete todo and project list</li>
<li>Sorting of todo lists and projects. Can be activated by tilting the iPhone</li>
<li>Quickly enter new todos by copying other entries</li>
<li>Projects with separate todo lists, notes and contacts</li>
<li>Automatic archiving of completed todos</li>
<li>Different views on projects and todo lists with filtering for completed entries</li>
<li>Sync with Google Calendar</li>
<li>Nice built-in help</li>
</ul>
<p>Personally, I do not need the syncing capabilities with Google Calendar, and I haven&#8217;t tried it. But it should be pretty straight forward. Just enter your credentials in the iPhone&#8217;s settings and tap the big sync button. Syncing seems to be an important feature for most iPhone users, therefore I added it to the list above. Most of you will be aware of the possibility of <a title="sync google calendar" href="http://www.macosxhints.com/article.php?story=20080821131653223">syncing your Google Calendar with desktop applications</a> like Microsoft Outlook.</p>
<p>What is much more important to me than syncing is the start-up time and the possibility of quickly entering new todos. Also the search capabilities are important to get a quick status of my various projects. All these work perfectly in TouchTodo.</p>
<p>The possibility of organising your todos in projects is also a big plus of TouchTodo. I try to organize all of my todos in projects, since the most important thing for me is to bring my projects forward. I am not a big fan of the Getting Things Done method (GTD) as proposed by David Allen. For those of you following David Allen&#8217;s approach the <em>Things application</em> might be better suited, though I haven&#8217;t tried it yet.</p>
<p>TouchTodo is also a great complement to <a title="GoalKeep" href="http://www.cutemachine.com/app-store-reviews/form-new-habits-with-goalkeep/">GoalKeep</a>.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fapp-store-reviews%2Fgetting-things-done-with-touchtodo%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.cutemachine.com%2Fapp-store-reviews%2Fgetting-things-done-with-touchtodo%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fapp-store-reviews%2Fgetting-things-done-with-touchtodo%2F&amp;linkname=Getting%20Things%20Done%20with%20TouchTodo" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fapp-store-reviews%2Fgetting-things-done-with-touchtodo%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fapp-store-reviews%2Fgetting-things-done-with-touchtodo%2F&amp;count=none&amp;text=Getting%20Things%20Done%20with%20TouchTodo" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.cutemachine.com%2Fapp-store-reviews%2Fgetting-things-done-with-touchtodo%2F&amp;counturl=http%3A%2F%2Fwww.cutemachine.com%2Fapp-store-reviews%2Fgetting-things-done-with-touchtodo%2F&amp;count=none&amp;text=Getting%20Things%20Done%20with%20TouchTodo" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_instapaper" href="http://www.addtoany.com/add_to/instapaper?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fapp-store-reviews%2Fgetting-things-done-with-touchtodo%2F&amp;linkname=Getting%20Things%20Done%20with%20TouchTodo" title="Instapaper" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/instapaper.png" width="16" height="16" alt="Instapaper"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fapp-store-reviews%2Fgetting-things-done-with-touchtodo%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cutemachine.com%2Fapp-store-reviews%2Fgetting-things-done-with-touchtodo%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><a class="a2a_button_stumbleupon" href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fapp-store-reviews%2Fgetting-things-done-with-touchtodo%2F&amp;linkname=Getting%20Things%20Done%20with%20TouchTodo" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a><a class="a2a_button_google_reader" href="http://www.addtoany.com/add_to/google_reader?linkurl=http%3A%2F%2Fwww.cutemachine.com%2Fapp-store-reviews%2Fgetting-things-done-with-touchtodo%2F&amp;linkname=Getting%20Things%20Done%20with%20TouchTodo" title="Google Reader" rel="nofollow" target="_blank"><img src="http://www.cutemachine.com/wp-content/plugins/add-to-any/icons/reader.png" width="16" height="16" alt="Google Reader"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.cutemachine.com%2Fapp-store-reviews%2Fgetting-things-done-with-touchtodo%2F&amp;title=Getting%20Things%20Done%20with%20TouchTodo" id="wpa2a_20">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.cutemachine.com/app-store-reviews/getting-things-done-with-touchtodo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

