<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"> <channel><title>Technology tips &amp; tricks</title> <link>http://www.deadlock.it</link> <description>Tips on programming, windows, linux, mac</description> <lastBuildDate>Wed, 22 Feb 2012 23:17:12 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.1.1</generator> <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/TechnologyTipsAndTricks" /><feedburner:info uri="technologytipsandtricks" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item><title>Node Roundup: Mongorito, Memcacher, Restify, Versionator, FeedSub</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/k_-IOU2mA7A/5829-node-roundup-mongorito-memcacher-restify-versionator-feedsub</link> <comments>http://www.deadlock.it/programming/javascript/5829-node-roundup-mongorito-memcacher-restify-versionator-feedsub#comments</comments> <pubDate>Wed, 22 Feb 2012 23:17:12 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[Javascript]]></category> <guid isPermaLink="false">http://www.deadlock.it/programming/javascript/5829-node-roundup-mongorito-memcacher-restify-versionator-feedsub</guid> <description><![CDATA[Mongorito Mongorito (License: MIT, npm: mongorito) by Vadim Demedes is a new MongoDB ODM with some interesting features: it has built-in caching using Memcacher (another module by the same author), and a small codebase by building on Mongolian. Automatic caching can even be set up, simply by setting a Memcached host using Mongorito.cache. Mongorito has [...]
Related posts:<ol><li><a
href='http://www.deadlock.it/programming/javascript/3945-node-roundup-celeri-strata-node-acl' rel='bookmark' title='Permanent Link: Node Roundup: Celeri, Strata, Node ACL'>Node Roundup: Celeri, Strata, Node ACL</a> <small>You can send your node modules and articles in for...</small></li><li><a
href='http://www.deadlock.it/programming/javascript/2803-node-roundup-sequelize-1-0-node-shell-formaline' rel='bookmark' title='Permanent Link: Node Roundup: Sequelize 1.0, node-shell, Formaline'>Node Roundup: Sequelize 1.0, node-shell, Formaline</a> <small>Sequelize 1.0.0 Sequelize (GitHub: sdepold / sequelize, License, npm: sequelize)...</small></li><li><a
href='http://www.deadlock.it/programming/javascript/2299-node-roundup-browserify-nowjs-vogue' rel='bookmark' title='Permanent Link: Node Roundup: Browserify, NowJS, Vogue'>Node Roundup: Browserify, NowJS, Vogue</a> <small>Browserify Browserify (GitHub: substack / node-browserify) by James Halliday makes...</small></li></ol> Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<h3>Mongorito</h3><p><a
href="https://github.com/vdemedes/mongorito">Mongorito</a> (License: <em>MIT</em>, npm: <em>mongorito</em>) by Vadim Demedes is a new <a
href="http://www.mongodb.org/">MongoDB</a> ODM with some interesting features: it has built-in caching using <a
href="https://github.com/vdemedes/memcacher">Memcacher</a> (another module by the same author), and a small codebase by building on <a
href="https://github.com/marcello3d/node-mongolian">Mongolian</a>. Automatic caching can even be set up, simply by setting a Memcached host using <code>Mongorito.cache</code>.</p><p>Mongorito has a model class, and the author gives examples in both JavaScript and CoffeeScript:</p><div><pre><code><span>var</span> <span>Post</span> <span>=</span> <span>(</span><span>function</span><span>(){</span>
  <span>function</span> <span>Post</span><span>()</span> <span>{</span>
    <span>Post</span><span>.</span><span>__super__</span><span>.</span><span>constructor</span><span>.</span><span>call</span><span>(</span><span>this</span><span>,</span> <span>&#039;posts&#039;</span><span>);</span>
  <span>}</span>
  <span>Post</span><span>.</span><span>prototype</span><span>.</span><span>validateTitle</span> <span>=</span> <span>function</span><span>(</span><span>callback</span><span>)</span> <span>{</span>
    <span>if</span> <span>(</span><span>!</span><span>this</span><span>.</span><span>title</span><span>)</span> <span>{</span>
      <span>callback</span><span>(</span><span>false</span><span>);</span>
    <span>}</span> <span>else</span> <span>{</span>
      <span>callback</span><span>(</span><span>true</span><span>);</span>
    <span>}</span>
  <span>}</span>
<span>})();</span>
<span>Post</span> <span>=</span> <span>Mongorito</span><span>.</span><span>bake</span><span>(</span><span>Post</span><span>);</span>
<span>Post</span><span>.</span><span>find</span><span>(</span><span>function</span><span>(</span><span>err</span><span>,</span> <span>posts</span><span>){</span>
  <span>var</span> <span>length</span> <span>=</span> <span>posts</span><span>.</span><span>length</span><span>;</span>
  <span>for</span> <span>(</span><span>var</span> <span>i</span> <span>=</span> <span>0</span><span>;</span> <span>i</span> <span>&lt;</span> <span>length</span><span>;</span> <span>i</span><span>++</span><span>)</span> <span>{</span>
    <span>// posts[i] is an instance of the Post class</span>
    <span>posts</span><span>[</span><span>i</span><span>].</span><span>remove</span><span>(</span><span>function</span><span>()</span> <span>{</span>
    <span>});</span>
  <span>}</span>
<span>});</span>
</code></pre></div><p>The model definitions offer an alternative to <a
href="http://mongoosejs.com/">Mongoose</a>, and may appeal to those working on CoffeeScript-based projects:</p><div><pre><code><span>class</span> <span>Post</span>
  <span>constructor: </span><span>-&gt;</span>
    <span>super</span> <span>&#039;posts&#039;</span>
<span>Post = </span><span>Mongorito</span><span>.</span><span>bake</span> <span>Post</span>
<span>post = </span><span>new</span> <span>Post</span>
<span>post.title = </span><span>&#039;About Mongorito&#039;</span>
<span>post</span><span>.</span><span>save</span> <span>(err) -&gt;</span>
  <span># saved!</span>
</code></pre></div><p>Despite being a new library, the author says the code is being used in production software, and he&#8217;s written some <a
href="http://visionmedia.github.com/mocha/">Mocha</a> unit tests.</p><h3>Memcacher</h3><p><a
href="https://github.com/vdemedes/memcacher">Memcacher</a> (License: <em>MIT</em>, npm: <em>memcacher</em>) also by Vadim Demedes adds additional functionality to the <a
href="https://github.com/3rd-Eden/node-memcached">Memcached</a> module by Arnout Kazemier, in the form of tags and chainable methods:</p><div><pre><code><span>Client</span>
  <span>.</span><span>set</span><span>(</span><span>&#039;test-key&#039;</span><span>,</span> <span>&#039;value&#039;</span><span>,</span> <span>2592000</span><span>,</span> <span>[</span><span>&#039;some-tag&#039;</span><span>])</span>
  <span>.</span><span>get</span><span>(</span><span>&#039;test-key&#039;</span><span>,</span> <span>function</span><span>(</span><span>err</span><span>,</span> <span>value</span><span>)</span> <span>{</span>
    <span>// This callback intentionally left blank</span>
  <span>});</span>
</code></pre></div><p>It&#8217;s a small but significant addition that should help those working with Memcached.</p><h3>Restify</h3><p><a
href="http://mcavage.github.com/node-restify/">Restify</a> (GitHub: <a
href="https://github.com/mcavage/node-restify">mcavage / node-restify</a>, License: <em>MIT</em>, npm: <em>restify</em>) by Mark Cavage is a new Express-inspired framework for building REST APIs. It includes both client and server support, so it&#8217;ll consume REST services as well as serve them.</p><p>Creating a basic server and setting up middleware looks just like Express:</p><div><pre><code><span>var</span> <span>server</span> <span>=</span> <span>restify</span><span>.</span><span>createServer</span><span>({</span>
  <span>name</span><span>:</span> <span>&#039;myapp&#039;</span><span>,</span>
  <span>version</span><span>:</span> <span>&#039;1.0.0&#039;</span>
<span>});</span>
<span>server</span><span>.</span><span>listen</span><span>(</span><span>8080</span><span>,</span> <span>function</span><span>()</span> <span>{</span>
  <span>console</span><span>.</span><span>log</span><span>(</span><span>&#039;%s listening at %s&#039;</span><span>,</span> <span>server</span><span>.</span><span>name</span><span>,</span> <span>server</span><span>.</span><span>url</span><span>);</span>
<span>});</span>
</code></pre></div><p>It made me wonder if it&#8217;s Connect middleware compatible, because setting up routes looks the same as Express as well:</p><div><pre><code><span>server</span><span>.</span><span>get</span><span>(</span><span>&#039;/echo/:name&#039;</span><span>,</span> <span>function</span><span>(</span><span>req</span><span>,</span> <span>res</span><span>,</span> <span>next</span><span>)</span> <span>{</span>
  <span>res</span><span>.</span><span>send</span><span>(</span><span>req</span><span>.</span><span>params</span><span>);</span>
  <span>return</span> <span>next</span><span>();</span>
<span>});</span>
</code></pre></div><p>There are a healthy amount of unit tests (built with the <a
href="https://github.com/isaacs/node-tap">tap</a> module), detailed documentation, and a <a
href="https://github.com/mcavage/node-restify/blob/master/examples/demo.js">demo app</a>.</p><h3>Versionator</h3><p><a
href="http://blog.clock.co.uk/2012/02/17/versionator-static-content-versioning-in-node-js-using-express/">Versionator</a> (GitHub: <a
href="https://github.com/serby/versionator">serby / versionator</a>, License: <em>New BSD</em>, npm: <em>versionator</em>) by Paul Serby is Connect middleware for managing static asset caching. The basic middleware allows a global application version to be set, and adds an extra path to asset URLs so they&#8217;ll effectively be expired when the app version changes:</p><div><pre><code><span>app</span><span>.</span><span>version</span> <span>=</span> <span>&#039;0.1.0&#039;</span><span>;</span>
<span>var</span> <span>basic</span> <span>=</span> <span>require</span><span>(</span><span>&#039;versionator&#039;</span><span>).</span><span>createBasic</span><span>(</span><span>app</span><span>.</span><span>version</span><span>);</span>
<span>app</span><span>.</span><span>configure</span><span>(</span><span>function</span><span>()</span> <span>{</span>
  <span>app</span><span>.</span><span>use</span><span>(</span><span>basic</span><span>.</span><span>middleware</span><span>(</span><span>&#039;v&#039;</span> <span>+</span> <span>app</span><span>.</span><span>version</span><span>))</span>
    <span>.</span><span>use</span><span>(</span><span>express</span><span>.</span><span>static</span><span>(</span><span>__dirname</span> <span>+</span> <span>&#039;/public&#039;</span><span>,</span> <span>{</span> <span>maxAge</span><span>:</span> <span>2592000000</span> <span>}));</span>
<span>});</span>
</code></pre></div><p>Assuming a client-side script is at <code>/js/app.js</code>, it&#8217;ll now be available from <code>/js/v0.1.0/app.js</code>. There&#8217;s a Jade helper so the original URL can be referenced in templates.</p><p>There&#8217;s also &#8216;mapped&#8217; middleware, which will only change resource locations when the files have changed.</p><h3>FeedSub</h3><p><a
href="https://github.com/fent/node-feedsub">FeedSub</a> (License: <em>MIT</em>, npm: <em>feedsub</em>) by Roly Fentanes is an event-based feed downloader, that works the way a Node developer would expect:</p><div><pre><code><span>var</span> <span>FeedSub</span> <span>=</span> <span>require</span><span>(</span><span>&#039;feedsub&#039;</span><span>);</span>
<span>reader</span> <span>=</span> <span>new</span> <span>FeedSub</span><span>(</span><span>&#039;http://feeds.feedburner.com/dailyjs&#039;</span><span>,</span> <span>{</span>
  <span>interval</span><span>:</span> <span>10</span> <span>// check feed every 10 minutes</span>
<span>});</span>
<span>reader</span><span>.</span><span>on</span><span>(</span><span>&#039;item&#039;</span><span>,</span> <span>function</span><span>(</span><span>item</span><span>)</span> <span>{</span>
  <span>console</span><span>.</span><span>log</span><span>(</span><span>&#039;Got item!&#039;</span><span>);</span>
  <span>console</span><span>.</span><span>dir</span><span>(</span><span>item</span><span>);</span>
<span>});</span>
<span>reader</span><span>.</span><span>start</span><span>();</span>
</code></pre></div><p>It&#8217;ll also do a conditional <code>GET</code> based on the last modified headers:</p><div><pre><code><span>// check headers for conditional get</span>
<span>if</span> <span>(</span><span>res</span><span>.</span><span>headers</span><span>[</span><span>&#039;last-modified&#039;</span><span>])</span> <span>{</span>
  <span>self</span><span>.</span><span>getOpts</span><span>[</span><span>&#039;If-Modified-Since&#039;</span><span>]</span> <span>=</span> <span>res</span><span>.</span><span>headers</span><span>[</span><span>&#039;last-modified&#039;</span><span>];</span>
<span>}</span>
<span>if</span> <span>(</span><span>res</span><span>.</span><span>headers</span><span>.</span><span>etag</span><span>)</span> <span>{</span>
  <span>self</span><span>.</span><span>getOpts</span><span>[</span><span>&#039;If-None-Match&#039;</span><span>]</span> <span>=</span> <span>res</span><span>.</span><span>headers</span><span>.</span><span>etag</span><span>;</span>
<span>}</span>
</code></pre></div><p><img
src="http://feeds.feedburner.com/~r/dailyjs/~4/6Ip9jieOy4M" height="1" width="1" /><br
/> <a
href="http://feedproxy.google.com/~r/dailyjs/~3/6Ip9jieOy4M/node-roundup">Via DailyJS</a></p><p><a
class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.deadlock.it%2Fprogramming%2Fjavascript%2F5829-node-roundup-mongorito-memcacher-restify-versionator-feedsub&amp;title=Node%20Roundup%3A%20Mongorito%2C%20Memcacher%2C%20Restify%2C%20Versionator%2C%20FeedSub"><img
src="http://www.deadlock.it/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Related posts:<ol><li><a
href='http://www.deadlock.it/programming/javascript/3945-node-roundup-celeri-strata-node-acl' rel='bookmark' title='Permanent Link: Node Roundup: Celeri, Strata, Node ACL'>Node Roundup: Celeri, Strata, Node ACL</a> <small>You can send your node modules and articles in for...</small></li><li><a
href='http://www.deadlock.it/programming/javascript/2803-node-roundup-sequelize-1-0-node-shell-formaline' rel='bookmark' title='Permanent Link: Node Roundup: Sequelize 1.0, node-shell, Formaline'>Node Roundup: Sequelize 1.0, node-shell, Formaline</a> <small>Sequelize 1.0.0 Sequelize (GitHub: sdepold / sequelize, License, npm: sequelize)...</small></li><li><a
href='http://www.deadlock.it/programming/javascript/2299-node-roundup-browserify-nowjs-vogue' rel='bookmark' title='Permanent Link: Node Roundup: Browserify, NowJS, Vogue'>Node Roundup: Browserify, NowJS, Vogue</a> <small>Browserify Browserify (GitHub: substack / node-browserify) by James Halliday makes...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/l1ftuhRn6FVLYQeon4iqIqfuSQE/0/da"><img src="http://feedads.g.doubleclick.net/~a/l1ftuhRn6FVLYQeon4iqIqfuSQE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/l1ftuhRn6FVLYQeon4iqIqfuSQE/1/da"><img src="http://feedads.g.doubleclick.net/~a/l1ftuhRn6FVLYQeon4iqIqfuSQE/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/programming/javascript/5829-node-roundup-mongorito-memcacher-restify-versionator-feedsub/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/programming/javascript/5829-node-roundup-mongorito-memcacher-restify-versionator-feedsub</feedburner:origLink></item> <item><title>Gevey Ultra S Can Unlock iPhone 4S Running iOS 5.0.1 / iOS 5 Without Dialing 112</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/NxMLaFs9ZK4/5828-gevey-ultra-s-can-unlock-iphone-4s-running-ios-5-0-1-ios-5-without-dialing-112</link> <comments>http://www.deadlock.it/apple/iphone/5828-gevey-ultra-s-can-unlock-iphone-4s-running-ios-5-0-1-ios-5-without-dialing-112#comments</comments> <pubDate>Wed, 22 Feb 2012 23:17:08 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[iPhone]]></category> <guid isPermaLink="false">http://www.deadlock.it/apple/iphone/5828-gevey-ultra-s-can-unlock-iphone-4s-running-ios-5-0-1-ios-5-without-dialing-112</guid> <description><![CDATA[Back in December 2011, iPhone Dev Team had revealed that they were working on a promising unlocking solution for iPhone 4S. But it has been almost a month since the jailbreak dream team has released Absinthe Jailbreak and Redsn0w CLI tool &#8230; Continue reading &#8594; Via iPhone Hacks Related posts:Dev Team Working On Very Promising iPhone [...]
Related posts:<ol><li><a
href='http://www.deadlock.it/apple/iphone/4739-dev-team-working-on-very-promising-iphone-4s-unlock' rel='bookmark' title='Permanent Link: Dev Team Working On Very Promising iPhone 4S Unlock'>Dev Team Working On Very Promising iPhone 4S Unlock</a> <small>Chronic Dev team broke the bad news earlier today that...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5044-ultrasn0w-1-2-5-to-unlock-iphone-4-and-iphone-3gs-running-ios-5-0-1-with-older-basebands-released' rel='bookmark' title='Permanent Link: Ultrasn0w 1.2.5 To Unlock iPhone 4 And iPhone 3GS Running iOS 5.0.1 With Older Basebands Released'>Ultrasn0w 1.2.5 To Unlock iPhone 4 And iPhone 3GS Running iOS 5.0.1 With Older Basebands Released</a> <small>As promised, iPhone Dev team have released an updated version of Ultrasn0w for iOS...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5464-absinthe-jailbreak-for-iphone-4s-and-ipad-2-updated-includes-support-for-linux' rel='bookmark' title='Permanent Link: Absinthe Jailbreak For iPhone 4S and iPad 2 Updated; Includes Support For Linux'>Absinthe Jailbreak For iPhone 4S and iPad 2 Updated; Includes Support For Linux</a> <small>The jailbreak dream team has just released a new version...</small></li></ol> Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p>Back in December 2011, iPhone Dev Team had revealed that they were working on a promising unlocking solution for iPhone 4S. But it has been almost a month since the jailbreak dream team has released Absinthe Jailbreak and Redsn0w CLI tool &#8230; <a
href="http://www.iphonehacks.com/2012/02/gevey-ultra-s-unlock-iphone-4s-running-ios-5-0-1-ios-5.html">Continue reading <span>&#8594;</span></a></p><p><a
href="http://feedads.g.doubleclick.net/~a/QlbHZEcLeO3HVZE4haskXgbMWwA/0/da"><img
src="http://feedads.g.doubleclick.net/~a/QlbHZEcLeO3HVZE4haskXgbMWwA/0/di" border="0"></img></a><br
/> <a
href="http://feedads.g.doubleclick.net/~a/QlbHZEcLeO3HVZE4haskXgbMWwA/1/da"><img
src="http://feedads.g.doubleclick.net/~a/QlbHZEcLeO3HVZE4haskXgbMWwA/1/di" border="0"></img></a></p><div> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=baF_mD-atGA:6AuLSZObxi4:yIl2AUoC8zA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=yIl2AUoC8zA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=baF_mD-atGA:6AuLSZObxi4:qj6IDK7rITs"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=qj6IDK7rITs" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=baF_mD-atGA:6AuLSZObxi4:gIN9vFwOqvQ"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=baF_mD-atGA:6AuLSZObxi4:gIN9vFwOqvQ" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=baF_mD-atGA:6AuLSZObxi4:D7DqB2pKExk"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=baF_mD-atGA:6AuLSZObxi4:D7DqB2pKExk" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=baF_mD-atGA:6AuLSZObxi4:7Q72WNTAKBA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=7Q72WNTAKBA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=baF_mD-atGA:6AuLSZObxi4:-BTjWOF_DHI"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=baF_mD-atGA:6AuLSZObxi4:-BTjWOF_DHI" border="0"></img></a></div><p><img
src="http://feeds.feedburner.com/~r/iphonehacks/~4/baF_mD-atGA" height="1" width="1" /><br
/> <a
href="http://feeds.iphonehacks.com/~r/iphonehacks/~3/baF_mD-atGA/gevey-ultra-s-unlock-iphone-4s-running-ios-5-0-1-ios-5.html">Via iPhone Hacks</a></p><p><a
class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.deadlock.it%2Fapple%2Fiphone%2F5828-gevey-ultra-s-can-unlock-iphone-4s-running-ios-5-0-1-ios-5-without-dialing-112&amp;title=Gevey%20Ultra%20S%20Can%20Unlock%20iPhone%204S%20Running%20iOS%205.0.1%20%2F%20iOS%205%20Without%20Dialing%20112"><img
src="http://www.deadlock.it/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Related posts:<ol><li><a
href='http://www.deadlock.it/apple/iphone/4739-dev-team-working-on-very-promising-iphone-4s-unlock' rel='bookmark' title='Permanent Link: Dev Team Working On Very Promising iPhone 4S Unlock'>Dev Team Working On Very Promising iPhone 4S Unlock</a> <small>Chronic Dev team broke the bad news earlier today that...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5044-ultrasn0w-1-2-5-to-unlock-iphone-4-and-iphone-3gs-running-ios-5-0-1-with-older-basebands-released' rel='bookmark' title='Permanent Link: Ultrasn0w 1.2.5 To Unlock iPhone 4 And iPhone 3GS Running iOS 5.0.1 With Older Basebands Released'>Ultrasn0w 1.2.5 To Unlock iPhone 4 And iPhone 3GS Running iOS 5.0.1 With Older Basebands Released</a> <small>As promised, iPhone Dev team have released an updated version of Ultrasn0w for iOS...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5464-absinthe-jailbreak-for-iphone-4s-and-ipad-2-updated-includes-support-for-linux' rel='bookmark' title='Permanent Link: Absinthe Jailbreak For iPhone 4S and iPad 2 Updated; Includes Support For Linux'>Absinthe Jailbreak For iPhone 4S and iPad 2 Updated; Includes Support For Linux</a> <small>The jailbreak dream team has just released a new version...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/QPHEhBlOgv0Oh5iMLcRbnzwTvok/0/da"><img src="http://feedads.g.doubleclick.net/~a/QPHEhBlOgv0Oh5iMLcRbnzwTvok/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/QPHEhBlOgv0Oh5iMLcRbnzwTvok/1/da"><img src="http://feedads.g.doubleclick.net/~a/QPHEhBlOgv0Oh5iMLcRbnzwTvok/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/apple/iphone/5828-gevey-ultra-s-can-unlock-iphone-4s-running-ios-5-0-1-ios-5-without-dialing-112/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/apple/iphone/5828-gevey-ultra-s-can-unlock-iphone-4s-running-ios-5-0-1-ios-5-without-dialing-112</feedburner:origLink></item> <item><title>Study Shows Social Messaging Apps Cost Carriers $13.9 Billion in SMS Revenues Last Year</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/McYgMXCPLpg/5827-study-shows-social-messaging-apps-cost-carriers-13-9-billion-in-sms-revenues-last-year</link> <comments>http://www.deadlock.it/apple/iphone/5827-study-shows-social-messaging-apps-cost-carriers-13-9-billion-in-sms-revenues-last-year#comments</comments> <pubDate>Wed, 22 Feb 2012 23:17:05 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[iPhone]]></category> <guid isPermaLink="false">http://www.deadlock.it/apple/iphone/5827-study-shows-social-messaging-apps-cost-carriers-13-9-billion-in-sms-revenues-last-year</guid> <description><![CDATA[A study carried out by Analysis firm Ovum has revealed that messaging apps like WhatsApp, Facebook (Messenger) may have cost carriers $13.9 billion in lost SMS revenues in 2011. Ovum studied data gathered from the popular messaging applications that are available &#8230; Continue reading &#8594; Via iPhone Hacks Related posts:Messaging And VoIP Apps Hitting Carrier Revenues [...]
Related posts:<ol><li><a
href='http://www.deadlock.it/apple/iphone/4658-messaging-and-voip-apps-hitting-carrier-revenues' rel='bookmark' title='Permanent Link: Messaging And VoIP Apps Hitting Carrier Revenues'>Messaging And VoIP Apps Hitting Carrier Revenues</a> <small>A lot has been said about the huge influx of...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5380-study-shows-used-iphone-market-has-positive-impact-on-carriers-and-apple' rel='bookmark' title='Permanent Link: Study Shows Used iPhone Market Has Positive Impact on Carriers And Apple'>Study Shows Used iPhone Market Has Positive Impact on Carriers And Apple</a> <small>A new study by Consumer Intelligence Research Partners (CIRP) has found...</small></li><li><a
href='http://www.deadlock.it/windows/2535-microsoft-earnings-5-23-billion-net-income-on-16-43-billion-revenues' rel='bookmark' title='Permanent Link: Microsoft Earnings: $5.23 Billion Net Income on $16.43 Billion Revenues'>Microsoft Earnings: $5.23 Billion Net Income on $16.43 Billion Revenues</a> <small>Supersite &#8230; Via Paul Thurrott&#8217;s SuperSite for Windows...</small></li></ol> Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p>A study carried out by Analysis firm Ovum has revealed that messaging apps like WhatsApp, Facebook (Messenger) may have cost carriers $13.9 billion in lost SMS revenues in 2011. Ovum studied data gathered from the popular messaging applications that are available &#8230; <a
href="http://www.iphonehacks.com/2012/02/social-messaging-apps-cost-carriers-billions.html">Continue reading <span>&#8594;</span></a></p><p><a
href="http://feedads.g.doubleclick.net/~a/rG_56PBR8shW-5JmNV73DDzXb2Q/0/da"><img
src="http://feedads.g.doubleclick.net/~a/rG_56PBR8shW-5JmNV73DDzXb2Q/0/di" border="0"></img></a><br
/> <a
href="http://feedads.g.doubleclick.net/~a/rG_56PBR8shW-5JmNV73DDzXb2Q/1/da"><img
src="http://feedads.g.doubleclick.net/~a/rG_56PBR8shW-5JmNV73DDzXb2Q/1/di" border="0"></img></a></p><div> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=KP_lVa59wiU:zxsN4Y1ZpJ4:yIl2AUoC8zA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=yIl2AUoC8zA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=KP_lVa59wiU:zxsN4Y1ZpJ4:qj6IDK7rITs"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=qj6IDK7rITs" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=KP_lVa59wiU:zxsN4Y1ZpJ4:gIN9vFwOqvQ"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=KP_lVa59wiU:zxsN4Y1ZpJ4:gIN9vFwOqvQ" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=KP_lVa59wiU:zxsN4Y1ZpJ4:D7DqB2pKExk"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=KP_lVa59wiU:zxsN4Y1ZpJ4:D7DqB2pKExk" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=KP_lVa59wiU:zxsN4Y1ZpJ4:7Q72WNTAKBA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=7Q72WNTAKBA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=KP_lVa59wiU:zxsN4Y1ZpJ4:-BTjWOF_DHI"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=KP_lVa59wiU:zxsN4Y1ZpJ4:-BTjWOF_DHI" border="0"></img></a></div><p><img
src="http://feeds.feedburner.com/~r/iphonehacks/~4/KP_lVa59wiU" height="1" width="1" /><br
/> <a
href="http://feeds.iphonehacks.com/~r/iphonehacks/~3/KP_lVa59wiU/social-messaging-apps-cost-carriers-billions.html">Via iPhone Hacks</a></p><p><a
class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.deadlock.it%2Fapple%2Fiphone%2F5827-study-shows-social-messaging-apps-cost-carriers-13-9-billion-in-sms-revenues-last-year&amp;title=Study%20Shows%20Social%20Messaging%20Apps%20Cost%20Carriers%20%2413.9%20Billion%20in%20SMS%20Revenues%20Last%20Year"><img
src="http://www.deadlock.it/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Related posts:<ol><li><a
href='http://www.deadlock.it/apple/iphone/4658-messaging-and-voip-apps-hitting-carrier-revenues' rel='bookmark' title='Permanent Link: Messaging And VoIP Apps Hitting Carrier Revenues'>Messaging And VoIP Apps Hitting Carrier Revenues</a> <small>A lot has been said about the huge influx of...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5380-study-shows-used-iphone-market-has-positive-impact-on-carriers-and-apple' rel='bookmark' title='Permanent Link: Study Shows Used iPhone Market Has Positive Impact on Carriers And Apple'>Study Shows Used iPhone Market Has Positive Impact on Carriers And Apple</a> <small>A new study by Consumer Intelligence Research Partners (CIRP) has found...</small></li><li><a
href='http://www.deadlock.it/windows/2535-microsoft-earnings-5-23-billion-net-income-on-16-43-billion-revenues' rel='bookmark' title='Permanent Link: Microsoft Earnings: $5.23 Billion Net Income on $16.43 Billion Revenues'>Microsoft Earnings: $5.23 Billion Net Income on $16.43 Billion Revenues</a> <small>Supersite &#8230; Via Paul Thurrott&#8217;s SuperSite for Windows...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/BwOc4TcK6hnvU8C4IWYJOrzOIhM/0/da"><img src="http://feedads.g.doubleclick.net/~a/BwOc4TcK6hnvU8C4IWYJOrzOIhM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/BwOc4TcK6hnvU8C4IWYJOrzOIhM/1/da"><img src="http://feedads.g.doubleclick.net/~a/BwOc4TcK6hnvU8C4IWYJOrzOIhM/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/apple/iphone/5827-study-shows-social-messaging-apps-cost-carriers-13-9-billion-in-sms-revenues-last-year/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/apple/iphone/5827-study-shows-social-messaging-apps-cost-carriers-13-9-billion-in-sms-revenues-last-year</feedburner:origLink></item> <item><title>Apple And Proview Fight Over iPad Trademark Dispute in Shanghai Court</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/7yfrhq0NPXk/5826-apple-and-proview-fight-over-ipad-trademark-dispute-in-shanghai-court</link> <comments>http://www.deadlock.it/apple/iphone/5826-apple-and-proview-fight-over-ipad-trademark-dispute-in-shanghai-court#comments</comments> <pubDate>Wed, 22 Feb 2012 17:17:21 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[iPhone]]></category> <guid isPermaLink="false">http://www.deadlock.it/apple/iphone/5826-apple-and-proview-fight-over-ipad-trademark-dispute-in-shanghai-court</guid> <description><![CDATA[As reported yesterday, Apple and Proview had a court hearing today in Shanghai &#8211; one of Apple&#8217;s biggest markets in China over the iPad trademark dispute. Reuters reports that the judge did not issue a decision but there was apparently &#8230; Continue reading &#8594; Via iPhone Hacks Related posts:Proview Prepared to Negotiate With Apple Over [...]
Related posts:<ol><li><a
href='http://www.deadlock.it/apple/iphone/5806-proview-prepared-to-negotiate-with-apple-over-ipad-trademark-dispute-in-china' rel='bookmark' title='Permanent Link: Proview Prepared to Negotiate With Apple Over iPad Trademark Dispute in China'>Proview Prepared to Negotiate With Apple Over iPad Trademark Dispute in China</a> <small>Times of India (TOI) reports that Proview, who has been courting...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5795-chinese-court-tells-distributors-to-stop-selling-ipads-apple-threatens-to-sue-proview-for-defamation' rel='bookmark' title='Permanent Link: Chinese Court Tells Distributors to Stop Selling iPads; Apple Threatens to Sue Proview For Defamation'>Chinese Court Tells Distributors to Stop Selling iPads; Apple Threatens to Sue Proview For Defamation</a> <small>The &#8220;iPad&#8221; trademark saga in China between Apple and Proview continues. Associated...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5723-proview-asks-chinese-customs-to-block-ipad-imports-and-exports-over-trademark-issues' rel='bookmark' title='Permanent Link: Proview Asks Chinese Customs to Block iPad Imports And Exports Over Trademark Issues'>Proview Asks Chinese Customs to Block iPad Imports And Exports Over Trademark Issues</a> <small>Yesterday, we reported that government authorities in the city of  Shijiazhuang...</small></li></ol> Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p>As reported yesterday, Apple and Proview had a court hearing today in Shanghai &#8211; one of Apple&#8217;s biggest markets in China over the iPad trademark dispute. Reuters reports that the judge did not issue a decision but there was apparently &#8230; <a
href="http://www.iphonehacks.com/2012/02/apple-proview-ipad-trademark-dispute-shanghai-court.html">Continue reading <span>&#8594;</span></a></p><p><a
href="http://feedads.g.doubleclick.net/~a/FzvOozwPWC9ntNlneaTuEpi8ar4/0/da"><img
src="http://feedads.g.doubleclick.net/~a/FzvOozwPWC9ntNlneaTuEpi8ar4/0/di" border="0"></img></a><br
/> <a
href="http://feedads.g.doubleclick.net/~a/FzvOozwPWC9ntNlneaTuEpi8ar4/1/da"><img
src="http://feedads.g.doubleclick.net/~a/FzvOozwPWC9ntNlneaTuEpi8ar4/1/di" border="0"></img></a></p><div> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=tDu4gdf6DgY:WrHvMJuYFpA:yIl2AUoC8zA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=yIl2AUoC8zA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=tDu4gdf6DgY:WrHvMJuYFpA:qj6IDK7rITs"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=qj6IDK7rITs" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=tDu4gdf6DgY:WrHvMJuYFpA:gIN9vFwOqvQ"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=tDu4gdf6DgY:WrHvMJuYFpA:gIN9vFwOqvQ" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=tDu4gdf6DgY:WrHvMJuYFpA:D7DqB2pKExk"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=tDu4gdf6DgY:WrHvMJuYFpA:D7DqB2pKExk" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=tDu4gdf6DgY:WrHvMJuYFpA:7Q72WNTAKBA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=7Q72WNTAKBA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=tDu4gdf6DgY:WrHvMJuYFpA:-BTjWOF_DHI"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=tDu4gdf6DgY:WrHvMJuYFpA:-BTjWOF_DHI" border="0"></img></a></div><p><img
src="http://feeds.feedburner.com/~r/iphonehacks/~4/tDu4gdf6DgY" height="1" width="1" /><br
/> <a
href="http://feeds.iphonehacks.com/~r/iphonehacks/~3/tDu4gdf6DgY/apple-proview-ipad-trademark-dispute-shanghai-court.html">Via iPhone Hacks</a></p><p><a
class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.deadlock.it%2Fapple%2Fiphone%2F5826-apple-and-proview-fight-over-ipad-trademark-dispute-in-shanghai-court&amp;title=Apple%20And%20Proview%20Fight%20Over%20iPad%20Trademark%20Dispute%20in%20Shanghai%20Court"><img
src="http://www.deadlock.it/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Related posts:<ol><li><a
href='http://www.deadlock.it/apple/iphone/5806-proview-prepared-to-negotiate-with-apple-over-ipad-trademark-dispute-in-china' rel='bookmark' title='Permanent Link: Proview Prepared to Negotiate With Apple Over iPad Trademark Dispute in China'>Proview Prepared to Negotiate With Apple Over iPad Trademark Dispute in China</a> <small>Times of India (TOI) reports that Proview, who has been courting...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5795-chinese-court-tells-distributors-to-stop-selling-ipads-apple-threatens-to-sue-proview-for-defamation' rel='bookmark' title='Permanent Link: Chinese Court Tells Distributors to Stop Selling iPads; Apple Threatens to Sue Proview For Defamation'>Chinese Court Tells Distributors to Stop Selling iPads; Apple Threatens to Sue Proview For Defamation</a> <small>The &#8220;iPad&#8221; trademark saga in China between Apple and Proview continues. Associated...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5723-proview-asks-chinese-customs-to-block-ipad-imports-and-exports-over-trademark-issues' rel='bookmark' title='Permanent Link: Proview Asks Chinese Customs to Block iPad Imports And Exports Over Trademark Issues'>Proview Asks Chinese Customs to Block iPad Imports And Exports Over Trademark Issues</a> <small>Yesterday, we reported that government authorities in the city of  Shijiazhuang...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/bG2MIT5d_en6wfHcHZoDJguaLZk/0/da"><img src="http://feedads.g.doubleclick.net/~a/bG2MIT5d_en6wfHcHZoDJguaLZk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/bG2MIT5d_en6wfHcHZoDJguaLZk/1/da"><img src="http://feedads.g.doubleclick.net/~a/bG2MIT5d_en6wfHcHZoDJguaLZk/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/apple/iphone/5826-apple-and-proview-fight-over-ipad-trademark-dispute-in-shanghai-court/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/apple/iphone/5826-apple-and-proview-fight-over-ipad-trademark-dispute-in-shanghai-court</feedburner:origLink></item> <item><title>Seas0nPass 0.8.2: Jailbreak For Apple TV 2G Updated to Make it Easier to Install Older Firmware</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/ojm4g7waYLU/5825-seas0npass-0-8-2-jailbreak-for-apple-tv-2g-updated-to-make-it-easier-to-install-older-firmware</link> <comments>http://www.deadlock.it/apple/iphone/5825-seas0npass-0-8-2-jailbreak-for-apple-tv-2g-updated-to-make-it-easier-to-install-older-firmware#comments</comments> <pubDate>Wed, 22 Feb 2012 17:17:18 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[iPhone]]></category> <guid isPermaLink="false">http://www.deadlock.it/apple/iphone/5825-seas0npass-0-8-2-jailbreak-for-apple-tv-2g-updated-to-make-it-easier-to-install-older-firmware</guid> <description><![CDATA[FireCore has released a new version of Seas0nPass &#8211; their jailbreaking tool for the second generation Apple TV. The new version of Seas0nPass makes it easy to install older Apple TV firmware using a process called stitching, which makes use &#8230; Continue reading &#8594; Via iPhone Hacks Related posts:Seas0nPass Updated To Support Tethered Jailbreak For [...]
Related posts:<ol><li><a
href='http://www.deadlock.it/apple/iphone/4390-seas0npass-updated-to-support-tethered-jailbreak-for-apple-tv-software-update-4-4-2-ios-5' rel='bookmark' title='Permanent Link: Seas0nPass Updated To Support Tethered Jailbreak For Apple TV Software Update 4.4.2 (iOS 5)'>Seas0nPass Updated To Support Tethered Jailbreak For Apple TV Software Update 4.4.2 (iOS 5)</a> <small>FireCore has released an updated version of their jailbreaking tool...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5145-seas0npass-untethered-jailbreak-for-apple-tv-4-4-4-released' rel='bookmark' title='Permanent Link: Seas0nPass: Untethered Jailbreak For Apple TV 4.4.4 Released'>Seas0nPass: Untethered Jailbreak For Apple TV 4.4.4 Released</a> <small>FireCore has released an updated version of their jailbreaking tool...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/3581-seas0npass-updated-to-support-untethered-jailbreak-for-apple-tv-4-3' rel='bookmark' title='Permanent Link: Seas0nPass Updated To Support Untethered Jailbreak For Apple TV 4.3'>Seas0nPass Updated To Support Untethered Jailbreak For Apple TV 4.3</a> <small>FireCore has released an updated version of their jailbreaking tool...</small></li></ol> Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p>FireCore has released a new version of Seas0nPass &#8211; their jailbreaking tool for the second generation Apple TV. The new version of Seas0nPass makes it easy to install older Apple TV firmware using a process called stitching, which makes use &#8230; <a
href="http://www.iphonehacks.com/2012/02/seas0npass-0-8-2-jailbreak-apple-tv-2g-updated.html">Continue reading <span>&#8594;</span></a></p><p><a
href="http://feedads.g.doubleclick.net/~a/o78dH3kr0EJGlrqPOgMFfc-daGY/0/da"><img
src="http://feedads.g.doubleclick.net/~a/o78dH3kr0EJGlrqPOgMFfc-daGY/0/di" border="0"></img></a><br
/> <a
href="http://feedads.g.doubleclick.net/~a/o78dH3kr0EJGlrqPOgMFfc-daGY/1/da"><img
src="http://feedads.g.doubleclick.net/~a/o78dH3kr0EJGlrqPOgMFfc-daGY/1/di" border="0"></img></a></p><div> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=1XeGXniYHP0:Pc0qxhuYgcQ:yIl2AUoC8zA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=yIl2AUoC8zA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=1XeGXniYHP0:Pc0qxhuYgcQ:qj6IDK7rITs"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=qj6IDK7rITs" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=1XeGXniYHP0:Pc0qxhuYgcQ:gIN9vFwOqvQ"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=1XeGXniYHP0:Pc0qxhuYgcQ:gIN9vFwOqvQ" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=1XeGXniYHP0:Pc0qxhuYgcQ:D7DqB2pKExk"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=1XeGXniYHP0:Pc0qxhuYgcQ:D7DqB2pKExk" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=1XeGXniYHP0:Pc0qxhuYgcQ:7Q72WNTAKBA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=7Q72WNTAKBA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=1XeGXniYHP0:Pc0qxhuYgcQ:-BTjWOF_DHI"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=1XeGXniYHP0:Pc0qxhuYgcQ:-BTjWOF_DHI" border="0"></img></a></div><p><img
src="http://feeds.feedburner.com/~r/iphonehacks/~4/1XeGXniYHP0" height="1" width="1" /><br
/> <a
href="http://feeds.iphonehacks.com/~r/iphonehacks/~3/1XeGXniYHP0/seas0npass-0-8-2-jailbreak-apple-tv-2g-updated.html">Via iPhone Hacks</a></p><p><a
class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.deadlock.it%2Fapple%2Fiphone%2F5825-seas0npass-0-8-2-jailbreak-for-apple-tv-2g-updated-to-make-it-easier-to-install-older-firmware&amp;title=Seas0nPass%200.8.2%3A%20Jailbreak%20For%20Apple%20TV%202G%20Updated%20to%20Make%20it%20Easier%20to%20Install%20Older%20Firmware"><img
src="http://www.deadlock.it/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Related posts:<ol><li><a
href='http://www.deadlock.it/apple/iphone/4390-seas0npass-updated-to-support-tethered-jailbreak-for-apple-tv-software-update-4-4-2-ios-5' rel='bookmark' title='Permanent Link: Seas0nPass Updated To Support Tethered Jailbreak For Apple TV Software Update 4.4.2 (iOS 5)'>Seas0nPass Updated To Support Tethered Jailbreak For Apple TV Software Update 4.4.2 (iOS 5)</a> <small>FireCore has released an updated version of their jailbreaking tool...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5145-seas0npass-untethered-jailbreak-for-apple-tv-4-4-4-released' rel='bookmark' title='Permanent Link: Seas0nPass: Untethered Jailbreak For Apple TV 4.4.4 Released'>Seas0nPass: Untethered Jailbreak For Apple TV 4.4.4 Released</a> <small>FireCore has released an updated version of their jailbreaking tool...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/3581-seas0npass-updated-to-support-untethered-jailbreak-for-apple-tv-4-3' rel='bookmark' title='Permanent Link: Seas0nPass Updated To Support Untethered Jailbreak For Apple TV 4.3'>Seas0nPass Updated To Support Untethered Jailbreak For Apple TV 4.3</a> <small>FireCore has released an updated version of their jailbreaking tool...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/YqXa8thx6pj62ZGZtZhtV48-k1A/0/da"><img src="http://feedads.g.doubleclick.net/~a/YqXa8thx6pj62ZGZtZhtV48-k1A/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/YqXa8thx6pj62ZGZtZhtV48-k1A/1/da"><img src="http://feedads.g.doubleclick.net/~a/YqXa8thx6pj62ZGZtZhtV48-k1A/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/apple/iphone/5825-seas0npass-0-8-2-jailbreak-for-apple-tv-2g-updated-to-make-it-easier-to-install-older-firmware/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/apple/iphone/5825-seas0npass-0-8-2-jailbreak-for-apple-tv-2g-updated-to-make-it-easier-to-install-older-firmware</feedburner:origLink></item> <item><title>Video: ABC’s Nightline Takes a Look Inside Apple Supplier Foxconn’s Factories in China</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/iWte2p2vSNA/5824-video-abc%e2%80%99s-nightline-takes-a-look-inside-apple-supplier-foxconn%e2%80%99s-factories-in-china</link> <comments>http://www.deadlock.it/apple/iphone/5824-video-abc%e2%80%99s-nightline-takes-a-look-inside-apple-supplier-foxconn%e2%80%99s-factories-in-china#comments</comments> <pubDate>Wed, 22 Feb 2012 17:17:16 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[iPhone]]></category> <guid isPermaLink="false">http://www.deadlock.it/apple/iphone/5824-video-abc%e2%80%99s-nightline-takes-a-look-inside-apple-supplier-foxconn%e2%80%99s-factories-in-china</guid> <description><![CDATA[Apple has received a lot of criticism lately for the living condition of workers in their supplier factories that make iPhones and iPads along with other Apple products. So Foxconn &#8211; Apple&#8217;s largest manufacturing partner in China, for the first &#8230; Continue reading &#8594; Via iPhone Hacks Related posts:Firm Inspecting Apple Supplier Facilities in China [...]
Related posts:<ol><li><a
href='http://www.deadlock.it/windows/5711-firm-inspecting-apple-supplier-facilities-in-china' rel='bookmark' title='Permanent Link: Firm Inspecting Apple Supplier Facilities in China'>Firm Inspecting Apple Supplier Facilities in China</a> <small>By Paul ThurrottApple announced Monday that an independent team of...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/3782-report-claims-foxconn-already-producing-150000-iphone-5-units-per-day' rel='bookmark' title='Permanent Link: Report Claims Foxconn Already Producing 150,000 iPhone 5 Units Per Day'>Report Claims Foxconn Already Producing 150,000 iPhone 5 Units Per Day</a> <small>While the rumors and speculations about Apple&#8217;s eagerly awaited fifth...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5290-report-claims-pegatron-and-foxconn-have-started-assembling-ipad-3s-for-early-march-launch' rel='bookmark' title='Permanent Link: Report Claims Pegatron And Foxconn Have Started Assembling iPad 3s For Early March Launch'>Report Claims Pegatron And Foxconn Have Started Assembling iPad 3s For Early March Launch</a> <small>Japanese blog &#8211; Macotakara reports that according to their Chinese...</small></li></ol> Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p>Apple has received a lot of criticism lately for the living condition of workers in their supplier factories that make iPhones and iPads along with other Apple products. So Foxconn &#8211; Apple&#8217;s largest manufacturing partner in China, for the first &#8230; <a
href="http://www.iphonehacks.com/2012/02/abc-nightline-look-inside-apple-supplier-foxconn-factories-china.html">Continue reading <span>&#8594;</span></a></p><p><a
href="http://feedads.g.doubleclick.net/~a/j-Vxo3oBdIJEVW0lx0-K7Ers244/0/da"><img
src="http://feedads.g.doubleclick.net/~a/j-Vxo3oBdIJEVW0lx0-K7Ers244/0/di" border="0"></img></a><br
/> <a
href="http://feedads.g.doubleclick.net/~a/j-Vxo3oBdIJEVW0lx0-K7Ers244/1/da"><img
src="http://feedads.g.doubleclick.net/~a/j-Vxo3oBdIJEVW0lx0-K7Ers244/1/di" border="0"></img></a></p><div> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=sO8jkpyzyMs:rBcuK0icdo0:yIl2AUoC8zA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=yIl2AUoC8zA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=sO8jkpyzyMs:rBcuK0icdo0:qj6IDK7rITs"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=qj6IDK7rITs" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=sO8jkpyzyMs:rBcuK0icdo0:gIN9vFwOqvQ"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=sO8jkpyzyMs:rBcuK0icdo0:gIN9vFwOqvQ" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=sO8jkpyzyMs:rBcuK0icdo0:D7DqB2pKExk"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=sO8jkpyzyMs:rBcuK0icdo0:D7DqB2pKExk" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=sO8jkpyzyMs:rBcuK0icdo0:7Q72WNTAKBA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=7Q72WNTAKBA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=sO8jkpyzyMs:rBcuK0icdo0:-BTjWOF_DHI"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=sO8jkpyzyMs:rBcuK0icdo0:-BTjWOF_DHI" border="0"></img></a></div><p><img
src="http://feeds.feedburner.com/~r/iphonehacks/~4/sO8jkpyzyMs" height="1" width="1" /><br
/> <a
href="http://feeds.iphonehacks.com/~r/iphonehacks/~3/sO8jkpyzyMs/abc-nightline-look-inside-apple-supplier-foxconn-factories-china.html">Via iPhone Hacks</a></p><p><a
class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.deadlock.it%2Fapple%2Fiphone%2F5824-video-abc%25e2%2580%2599s-nightline-takes-a-look-inside-apple-supplier-foxconn%25e2%2580%2599s-factories-in-china&amp;title=Video%3A%20ABC%E2%80%99s%20Nightline%20Takes%20a%20Look%20Inside%20Apple%20Supplier%20Foxconn%E2%80%99s%20Factories%20in%20China"><img
src="http://www.deadlock.it/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Related posts:<ol><li><a
href='http://www.deadlock.it/windows/5711-firm-inspecting-apple-supplier-facilities-in-china' rel='bookmark' title='Permanent Link: Firm Inspecting Apple Supplier Facilities in China'>Firm Inspecting Apple Supplier Facilities in China</a> <small>By Paul ThurrottApple announced Monday that an independent team of...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/3782-report-claims-foxconn-already-producing-150000-iphone-5-units-per-day' rel='bookmark' title='Permanent Link: Report Claims Foxconn Already Producing 150,000 iPhone 5 Units Per Day'>Report Claims Foxconn Already Producing 150,000 iPhone 5 Units Per Day</a> <small>While the rumors and speculations about Apple&#8217;s eagerly awaited fifth...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5290-report-claims-pegatron-and-foxconn-have-started-assembling-ipad-3s-for-early-march-launch' rel='bookmark' title='Permanent Link: Report Claims Pegatron And Foxconn Have Started Assembling iPad 3s For Early March Launch'>Report Claims Pegatron And Foxconn Have Started Assembling iPad 3s For Early March Launch</a> <small>Japanese blog &#8211; Macotakara reports that according to their Chinese...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/Prd0PY9_mQ2cNkKzPTaeJTLCnso/0/da"><img src="http://feedads.g.doubleclick.net/~a/Prd0PY9_mQ2cNkKzPTaeJTLCnso/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Prd0PY9_mQ2cNkKzPTaeJTLCnso/1/da"><img src="http://feedads.g.doubleclick.net/~a/Prd0PY9_mQ2cNkKzPTaeJTLCnso/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/apple/iphone/5824-video-abc%e2%80%99s-nightline-takes-a-look-inside-apple-supplier-foxconn%e2%80%99s-factories-in-china/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/apple/iphone/5824-video-abc%e2%80%99s-nightline-takes-a-look-inside-apple-supplier-foxconn%e2%80%99s-factories-in-china</feedburner:origLink></item> <item><title>iUnlock: Jailbreak Tweak Brings Unlock Animations And Sound Effects to Your iPhone</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/jPa115uSZEQ/5823-iunlock-jailbreak-tweak-brings-unlock-animations-and-sound-effects-to-your-iphone</link> <comments>http://www.deadlock.it/apple/iphone/5823-iunlock-jailbreak-tweak-brings-unlock-animations-and-sound-effects-to-your-iphone#comments</comments> <pubDate>Wed, 22 Feb 2012 17:17:13 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[iPhone]]></category> <guid isPermaLink="false">http://www.deadlock.it/apple/iphone/5823-iunlock-jailbreak-tweak-brings-unlock-animations-and-sound-effects-to-your-iphone</guid> <description><![CDATA[iUnlock is a new jailbreak tweak developed by Ma Jun that brings cool unlock animations and sound effects to your iPhone, iPad and iPod touch. iUnlock is quite similar to the UnlockFX jailbreak tweak developed by Filippo Bigarella, but it also allows &#8230; Continue reading &#8594; Via iPhone Hacks Related posts:UnlockFX: New Jailbreak Tweak Brings Cool Unlock [...]
Related posts:<ol><li><a
href='http://www.deadlock.it/apple/iphone/5204-unlockfx-new-jailbreak-tweak-brings-cool-unlock-animations-to-your-iphone' rel='bookmark' title='Permanent Link: UnlockFX: New Jailbreak Tweak Brings Cool Unlock Animations to Your iPhone'>UnlockFX: New Jailbreak Tweak Brings Cool Unlock Animations to Your iPhone</a> <small>UnlockFX - the jailbreak tweak that was to bring a number...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5051-unlockfx-upcoming-jailbreak-tweak-will-bring-cool-unlock-animations-to-your-iphone' rel='bookmark' title='Permanent Link: UnlockFX: Upcoming Jailbreak Tweak Will Bring Cool Unlock Animations to Your iPhone'>UnlockFX: Upcoming Jailbreak Tweak Will Bring Cool Unlock Animations to Your iPhone</a> <small>Jeff Benjamin of iDownloadBlog has got a sneak peak of...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5753-weroll-jailbreak-tweak-brings-animations-to-ios-notification-center' rel='bookmark' title='Permanent Link: WeRoll: Jailbreak Tweak Brings Animations to iOS Notification Center'>WeRoll: Jailbreak Tweak Brings Animations to iOS Notification Center</a> <small>Barrel is one of the cool jailbreak tweaks. It adds...</small></li></ol> Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p>iUnlock is a new jailbreak tweak developed by Ma Jun that brings cool unlock animations and sound effects to your iPhone, iPad and iPod touch. iUnlock is quite similar to the UnlockFX jailbreak tweak developed by Filippo Bigarella, but it also allows &#8230; <a
href="http://www.iphonehacks.com/2012/02/iunlock-jailbreak-tweak-brings-unlock-animations-sound-effects.html">Continue reading <span>&#8594;</span></a></p><p><a
href="http://feedads.g.doubleclick.net/~a/P96LPTnB2dJEPOTspRmmPjWA-wA/0/da"><img
src="http://feedads.g.doubleclick.net/~a/P96LPTnB2dJEPOTspRmmPjWA-wA/0/di" border="0"></img></a><br
/> <a
href="http://feedads.g.doubleclick.net/~a/P96LPTnB2dJEPOTspRmmPjWA-wA/1/da"><img
src="http://feedads.g.doubleclick.net/~a/P96LPTnB2dJEPOTspRmmPjWA-wA/1/di" border="0"></img></a></p><div> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=_nWWFQGUNnQ:T-rwZHwxP3A:yIl2AUoC8zA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=yIl2AUoC8zA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=_nWWFQGUNnQ:T-rwZHwxP3A:qj6IDK7rITs"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=qj6IDK7rITs" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=_nWWFQGUNnQ:T-rwZHwxP3A:gIN9vFwOqvQ"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=_nWWFQGUNnQ:T-rwZHwxP3A:gIN9vFwOqvQ" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=_nWWFQGUNnQ:T-rwZHwxP3A:D7DqB2pKExk"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=_nWWFQGUNnQ:T-rwZHwxP3A:D7DqB2pKExk" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=_nWWFQGUNnQ:T-rwZHwxP3A:7Q72WNTAKBA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=7Q72WNTAKBA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=_nWWFQGUNnQ:T-rwZHwxP3A:-BTjWOF_DHI"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=_nWWFQGUNnQ:T-rwZHwxP3A:-BTjWOF_DHI" border="0"></img></a></div><p><img
src="http://feeds.feedburner.com/~r/iphonehacks/~4/_nWWFQGUNnQ" height="1" width="1" /><br
/> <a
href="http://feeds.iphonehacks.com/~r/iphonehacks/~3/_nWWFQGUNnQ/iunlock-jailbreak-tweak-brings-unlock-animations-sound-effects.html">Via iPhone Hacks</a></p><p><a
class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.deadlock.it%2Fapple%2Fiphone%2F5823-iunlock-jailbreak-tweak-brings-unlock-animations-and-sound-effects-to-your-iphone&amp;title=iUnlock%3A%20Jailbreak%20Tweak%20Brings%20Unlock%20Animations%20And%20Sound%20Effects%20to%20Your%20iPhone"><img
src="http://www.deadlock.it/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Related posts:<ol><li><a
href='http://www.deadlock.it/apple/iphone/5204-unlockfx-new-jailbreak-tweak-brings-cool-unlock-animations-to-your-iphone' rel='bookmark' title='Permanent Link: UnlockFX: New Jailbreak Tweak Brings Cool Unlock Animations to Your iPhone'>UnlockFX: New Jailbreak Tweak Brings Cool Unlock Animations to Your iPhone</a> <small>UnlockFX - the jailbreak tweak that was to bring a number...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5051-unlockfx-upcoming-jailbreak-tweak-will-bring-cool-unlock-animations-to-your-iphone' rel='bookmark' title='Permanent Link: UnlockFX: Upcoming Jailbreak Tweak Will Bring Cool Unlock Animations to Your iPhone'>UnlockFX: Upcoming Jailbreak Tweak Will Bring Cool Unlock Animations to Your iPhone</a> <small>Jeff Benjamin of iDownloadBlog has got a sneak peak of...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5753-weroll-jailbreak-tweak-brings-animations-to-ios-notification-center' rel='bookmark' title='Permanent Link: WeRoll: Jailbreak Tweak Brings Animations to iOS Notification Center'>WeRoll: Jailbreak Tweak Brings Animations to iOS Notification Center</a> <small>Barrel is one of the cool jailbreak tweaks. It adds...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/adRUknB2LPIH0u_au3fXKugfKEg/0/da"><img src="http://feedads.g.doubleclick.net/~a/adRUknB2LPIH0u_au3fXKugfKEg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/adRUknB2LPIH0u_au3fXKugfKEg/1/da"><img src="http://feedads.g.doubleclick.net/~a/adRUknB2LPIH0u_au3fXKugfKEg/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/apple/iphone/5823-iunlock-jailbreak-tweak-brings-unlock-animations-and-sound-effects-to-your-iphone/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/apple/iphone/5823-iunlock-jailbreak-tweak-brings-unlock-animations-and-sound-effects-to-your-iphone</feedburner:origLink></item> <item><title>10.7: A warning about Finder’s ‘Replace’ feature</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/2PVtVfkhcZU/5822-10-7-a-warning-about-finders-replace-feature</link> <comments>http://www.deadlock.it/apple/macosx/5822-10-7-a-warning-about-finders-replace-feature#comments</comments> <pubDate>Wed, 22 Feb 2012 17:17:07 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[Mac OS X]]></category> <guid isPermaLink="false">http://www.deadlock.it/apple/macosx/5822-10-7-a-warning-about-finders-replace-feature</guid> <description><![CDATA[If you have a folder that contains a file with the same name, and drag the file into the same location as the folder, the Finder may try to delete both items. To reproduce this: Create a folder on your Desktop named &#8216;test.&#8217; Create a file in that folder also named &#8216;test.&#8217; Move the file [...]
Related posts:<ol><li><a
href='http://www.deadlock.it/apple/macosx/1989-make-a-more-obvious-low-battery-warning' rel='bookmark' title='Permanent Link: Make a more obvious low battery warning'>Make a more obvious low battery warning</a> <small>I once owned a ThinkPad T60 series and when the...</small></li><li><a
href='http://www.deadlock.it/apple/macosx/4507-if-spotlight-does-not-find-a-file-or-a-files-contents' rel='bookmark' title='Permanent Link: If Spotlight does not find a file or a file&#8217;s contents'>If Spotlight does not find a file or a file&#8217;s contents</a> <small>Sometimes Spotlight does not find a file or a file&#8217;s...</small></li><li><a
href='http://www.deadlock.it/apple/macosx/3529-10-7-open-terminal-to-selected-folder' rel='bookmark' title='Permanent Link: 10.7: Open Terminal to selected folder'>10.7: Open Terminal to selected folder</a> <small>You can enable a Service in the Keyboard Shortcuts System...</small></li></ol> Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p>If you have a folder that contains a file with the same name, and drag the file into the same location as the folder, the Finder may try to delete both items.</p><p>To reproduce this:</p><ul><li>Create a folder on your Desktop named &#8216;test.&#8217;</li><li>Create a file in that folder also named &#8216;test.&#8217;</li><li>Move the file from the folder onto your Desktop.</li><li>Click &#8216;Replace.&#8217;</li></ul><p>Result: Both the folder and the file are deleted.</p><p>Do the same sequence, except choose &#8216;Keep Both Files.&#8217; Same result.</p><p>[<b>crarko adds:</b> Okay, this one half worked when I tried it in 10.7.3. With &#8216;Replace,&#8217; both file and folder were indeed deleted. I also tried it with other items remaining inside the folder, and in that case <b>everything</b> inside the folder was also deleted. A potential disaster.</p><p>In the &#8216;Keep Both Files&#8217; case, the folder was untouched and the file was renamed to &#8216;test copy&#8217; when I moved it and &#8216;test 2&#8242; when I copied it.</p><p>In any ev &#8230;</p><p> <a
href="http://www.pheedcontent.com/hostedMorselClick.php?hfmm=v3:5a40db2c4b409d0be9920984f1472adc:u2MSebXEzf4dg%2BTDgGYA6QFSMgJCFXE%2FB4fWmsu92AsB8RVG4JP45FDfHuWrGOm%2BhMWqkZGuQOtd3g%3D%3D"><img
border="0" alt="Add to digg" src="http://images.pheedo.com/images/mm/digg.gif" /></a><br
/> <a
href="http://www.pheedcontent.com/hostedMorselClick.php?hfmm=v3:79409044657345edb6214c11e01297bf:%2FXzsbm76v9ooozSRo%2Bej0pLCHbPDhZ%2Bf6d0hHjwIw3JU9M7rdh6e9cLKHzwDzC9ciIAWDHhnEr0FxA%3D%3D"><img
border="0" alt="Add to Reddit" src="http://images.pheedo.com/images/mm/reddit.png" /></a><br
/> <a
href="http://www.pheedcontent.com/hostedMorselClick.php?hfmm=v3:7230218dfe0fb2eedcc175071c143244:8FVR%2ByVUA7n%2Fc0hpxolP4C4km9%2F2El%2BlF42oy0z%2BAx66oGKn8V6RFQV%2B%2BkoKjSr3sBFDonHY9WOrB90%3D"><img
border="0" alt="Add to Slashdot" src="http://images.pheedo.com/images/mm/slashdot.png" /></a><br
/> <a
href="http://www.pheedcontent.com/hostedMorselClick.php?hfmm=v3:402b5b5c2f6578442cb289139f200327:PfQwpUEaPwccgf94lTJuUxHOzGv7QvSbUQVrS5pR%2FPGIfD5M633FxPsKGLgWG%2Bca%2BPiXwVRzKwvLlw%3D%3D"><img
border="0" alt="Email this Article" src="http://images.pheedo.com/images/mm/emailthis.png" /></a><br
/> <a
href="http://www.pheedcontent.com/hostedMorselClick.php?hfmm=v3:9edfa7e406cbe6b21b92120f3a7a2315:GfwUFMjTh2LZp4%2BswKmOoUjvYRooEOzt1AEQJQMmif7Sny3jPY6nwvJNPI%2FWTkSk2TduhTTmd0O2BdQ%3D"><img
border="0" alt="Add to StumbleUpon" src="http://images.pheedo.com/images/mm/stumbleit.gif" /></a><br
/> <br
/> <a
href="http://ads.pheedo.com/click.phdo?s=a3eb635c07949ed5f56909b402e5f1e8&amp;p=1"><img
alt="" style="border: 0" border="0" src="http://ads.pheedo.com/img.phdo?s=a3eb635c07949ed5f56909b402e5f1e8&amp;p=1" /></a><br
/> <img
alt="" height="0" width="0" border="0" src="http://tags.bluekai.com/site/5148" /><img
alt="" height="0" width="0" border="0" src="http://insight.adsrvr.org/track/evnt/?ct=0:tar7qjh&amp;adv=wouzn4v&amp;fmt=3" /><br
/> <a
href="http://feeds.macosxhints.com/click.phdo?i=a3eb635c07949ed5f56909b402e5f1e8">Via MacOSXHints.com</a></p><p><a
class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.deadlock.it%2Fapple%2Fmacosx%2F5822-10-7-a-warning-about-finders-replace-feature&amp;title=10.7%3A%20A%20warning%20about%20Finder%26%238217%3Bs%20%26%238216%3BReplace%26%238217%3B%20feature"><img
src="http://www.deadlock.it/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Related posts:<ol><li><a
href='http://www.deadlock.it/apple/macosx/1989-make-a-more-obvious-low-battery-warning' rel='bookmark' title='Permanent Link: Make a more obvious low battery warning'>Make a more obvious low battery warning</a> <small>I once owned a ThinkPad T60 series and when the...</small></li><li><a
href='http://www.deadlock.it/apple/macosx/4507-if-spotlight-does-not-find-a-file-or-a-files-contents' rel='bookmark' title='Permanent Link: If Spotlight does not find a file or a file&#8217;s contents'>If Spotlight does not find a file or a file&#8217;s contents</a> <small>Sometimes Spotlight does not find a file or a file&#8217;s...</small></li><li><a
href='http://www.deadlock.it/apple/macosx/3529-10-7-open-terminal-to-selected-folder' rel='bookmark' title='Permanent Link: 10.7: Open Terminal to selected folder'>10.7: Open Terminal to selected folder</a> <small>You can enable a Service in the Keyboard Shortcuts System...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/1sP4ZDP-FNQR3Bl90ytRZqJrpPQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/1sP4ZDP-FNQR3Bl90ytRZqJrpPQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/1sP4ZDP-FNQR3Bl90ytRZqJrpPQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/1sP4ZDP-FNQR3Bl90ytRZqJrpPQ/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/apple/macosx/5822-10-7-a-warning-about-finders-replace-feature/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/apple/macosx/5822-10-7-a-warning-about-finders-replace-feature</feedburner:origLink></item> <item><title>Two editing keyboard shortcuts</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/Z3nJ1UxQtYo/5821-two-editing-keyboard-shortcuts</link> <comments>http://www.deadlock.it/apple/macosx/5821-two-editing-keyboard-shortcuts#comments</comments> <pubDate>Wed, 22 Feb 2012 17:17:03 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[Mac OS X]]></category> <guid isPermaLink="false">http://www.deadlock.it/apple/macosx/5821-two-editing-keyboard-shortcuts</guid> <description><![CDATA[Back to basics &#8212; use keyboard shortcuts to open and close the fonts window and the color picker window in text editing applications. Here are two quick and easy shortcuts to keep in mind for use in most text editing applications. Don&#8217;t bother with these in Word, they don&#8217;t apply. Try them in TextEdit instead. [...]
Related posts:<ol><li><a
href='http://www.deadlock.it/apple/macosx/3643-10-7-zoom-the-magnifier-tool-in-preview-with-keyboard-shortcuts' rel='bookmark' title='Permanent Link: 10.7: Zoom the magnifier tool in Preview with keyboard shortcuts'>10.7: Zoom the magnifier tool in Preview with keyboard shortcuts</a> <small>Lion introduces a new tool in Preview. Press ` (the...</small></li><li><a
href='http://www.deadlock.it/apple/macosx/3301-10-7-keyboard-shortcut-to-documents-folder-in-opensave-dialogs' rel='bookmark' title='Permanent Link: 10.7: Keyboard shortcut to Documents folder in Open/Save dialogs'>10.7: Keyboard shortcut to Documents folder in Open/Save dialogs</a> <small>Mac OS X has long had the Go menu in...</small></li><li><a
href='http://www.deadlock.it/apple/macosx/5016-ios-5-use-keyboard-shortcuts-for-frequently-used-words-in-other-languages' rel='bookmark' title='Permanent Link: iOS 5: Use keyboard shortcuts for frequently used words in other languages'>iOS 5: Use keyboard shortcuts for frequently used words in other languages</a> <small>Sometimes, you use words in other languages so often that...</small></li></ol> Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p>Back to basics &#8212; use keyboard shortcuts to open and close the fonts window and the color picker window in text editing applications.</p><p>Here are two quick and easy shortcuts to keep in mind for use in most text editing applications. Don&#8217;t bother with these in Word, they don&#8217;t apply. Try them in TextEdit instead.</p><p>The first you probably already know. It lets you open the font selection window. It&#8217;s Command+T.</p><p>The second you may not know, but it usually works in applications where the first one works. It&#8217;s Command+Shift+C and it opens the Mac Color Picker window. Two quick tips about this window:</p><p>1) If you click the magnifying glass icon, you can choose any color available on your Mac&#8217;s screen, and</p><p>2) you can drag a color from any point inside the rectangle near the top of the window into one of the squares at the bottom to store it there for future reference. Try dragging the bottom right corner of the window (and/or the right edge, if you&#8217; &#8230;</p><p> <a
href="http://www.pheedcontent.com/hostedMorselClick.php?hfmm=v3:baae97ae2b96140463eb6c7cd1a10fb0:H%2BaHLVM4X%2B3MK3DHG1aDe9ce9PXMOdSuL0s6bauhJF6vyLdZySGPyaiPA%2BimT5%2Bayw1SCDQlRZ%2FrNg%3D%3D"><img
border="0" alt="Add to digg" src="http://images.pheedo.com/images/mm/digg.gif" /></a><br
/> <a
href="http://www.pheedcontent.com/hostedMorselClick.php?hfmm=v3:42476caaf6a87c59c8d0f31e04e8d6e8:AVShKkNR%2FAQe6j5jHr2TL3g3Y9VVXPl4VHUNC5JdQIkTlBKkAo7P6i%2Bv7xq3FeDaATsb0kt4J541bg%3D%3D"><img
border="0" alt="Add to Reddit" src="http://images.pheedo.com/images/mm/reddit.png" /></a><br
/> <a
href="http://www.pheedcontent.com/hostedMorselClick.php?hfmm=v3:15d70b66344184498536b8aff85dc003:7s%2FXxJdIEI17aCAEOp9irE%2BqaUd2aTm9VOUCmz1CA28avFV6A281%2BJ%2FsFV%2FpeYgfU4b1VWS2OUr2QXM%3D"><img
border="0" alt="Add to Slashdot" src="http://images.pheedo.com/images/mm/slashdot.png" /></a><br
/> <a
href="http://www.pheedcontent.com/hostedMorselClick.php?hfmm=v3:3e94db177dde0f8254f036d32f4beec9:I7xFSbo2K3z1sBZJ9OitWuIl0QcU3s%2Fz3Ls46kHYR9rrFghN6kUaDQQ%2BBa56VYkI3vF42%2FoPCSTwvg%3D%3D"><img
border="0" alt="Email this Article" src="http://images.pheedo.com/images/mm/emailthis.png" /></a><br
/> <a
href="http://www.pheedcontent.com/hostedMorselClick.php?hfmm=v3:39992331f3dd055cbf83a4ac990f2be6:8rUiBNpec%2BX8sI1dj3jxCCtPWRsXd63PeHEPwx9H7W7Dw1tMvfMtyLMZX1xdZe6zI6k4BBwI8Edy37Q%3D"><img
border="0" alt="Add to StumbleUpon" src="http://images.pheedo.com/images/mm/stumbleit.gif" /></a><br
/> <br
/> <a
href="http://ads.pheedo.com/click.phdo?s=c8b20f98e9bab572d7b4057b8fefb414&amp;p=1"><img
alt="" style="border: 0" border="0" src="http://ads.pheedo.com/img.phdo?s=c8b20f98e9bab572d7b4057b8fefb414&amp;p=1" /></a><br
/> <img
alt="" height="0" width="0" border="0" src="http://tags.bluekai.com/site/5148" /><img
alt="" height="0" width="0" border="0" src="http://insight.adsrvr.org/track/evnt/?ct=0:tar7qjh&amp;adv=wouzn4v&amp;fmt=3" /><br
/> <a
href="http://feeds.macosxhints.com/click.phdo?i=c8b20f98e9bab572d7b4057b8fefb414">Via MacOSXHints.com</a></p><p><a
class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.deadlock.it%2Fapple%2Fmacosx%2F5821-two-editing-keyboard-shortcuts&amp;title=Two%20editing%20keyboard%20shortcuts"><img
src="http://www.deadlock.it/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Related posts:<ol><li><a
href='http://www.deadlock.it/apple/macosx/3643-10-7-zoom-the-magnifier-tool-in-preview-with-keyboard-shortcuts' rel='bookmark' title='Permanent Link: 10.7: Zoom the magnifier tool in Preview with keyboard shortcuts'>10.7: Zoom the magnifier tool in Preview with keyboard shortcuts</a> <small>Lion introduces a new tool in Preview. Press ` (the...</small></li><li><a
href='http://www.deadlock.it/apple/macosx/3301-10-7-keyboard-shortcut-to-documents-folder-in-opensave-dialogs' rel='bookmark' title='Permanent Link: 10.7: Keyboard shortcut to Documents folder in Open/Save dialogs'>10.7: Keyboard shortcut to Documents folder in Open/Save dialogs</a> <small>Mac OS X has long had the Go menu in...</small></li><li><a
href='http://www.deadlock.it/apple/macosx/5016-ios-5-use-keyboard-shortcuts-for-frequently-used-words-in-other-languages' rel='bookmark' title='Permanent Link: iOS 5: Use keyboard shortcuts for frequently used words in other languages'>iOS 5: Use keyboard shortcuts for frequently used words in other languages</a> <small>Sometimes, you use words in other languages so often that...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/De94pNWHgbVErK5afUGzA3hsBBA/0/da"><img src="http://feedads.g.doubleclick.net/~a/De94pNWHgbVErK5afUGzA3hsBBA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/De94pNWHgbVErK5afUGzA3hsBBA/1/da"><img src="http://feedads.g.doubleclick.net/~a/De94pNWHgbVErK5afUGzA3hsBBA/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/apple/macosx/5821-two-editing-keyboard-shortcuts/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/apple/macosx/5821-two-editing-keyboard-shortcuts</feedburner:origLink></item> <item><title>How to Quickly Access Last Saved Mail Draft on Your iPhone, iPad and iPod Touch</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/O2QNtIfXZ94/5820-how-to-quickly-access-last-saved-mail-draft-on-your-iphone-ipad-and-ipod-touch</link> <comments>http://www.deadlock.it/apple/iphone/5820-how-to-quickly-access-last-saved-mail-draft-on-your-iphone-ipad-and-ipod-touch#comments</comments> <pubDate>Wed, 22 Feb 2012 11:17:13 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[iPhone]]></category> <guid isPermaLink="false">http://www.deadlock.it/apple/iphone/5820-how-to-quickly-access-last-saved-mail-draft-on-your-iphone-ipad-and-ipod-touch</guid> <description><![CDATA[Here&#8217;s a neat tip to quickly access the last saved mail draft on your iPhone, iPad and iPod Touch. It was quite a cumbersome process to access the last saved mail draft until we came across this tip. You had &#8230; Continue reading &#8594; Via iPhone Hacks Related posts:Skype WiFi Provides Affordable Wi-Fi Access On [...]
Related posts:<ol><li><a
href='http://www.deadlock.it/apple/iphone/3545-skype-wifi-provides-affordable-wi-fi-access-on-iphone-ipad-ipod-touch-while-travelling-abroad' rel='bookmark' title='Permanent Link: Skype WiFi Provides Affordable Wi-Fi Access On iPhone, iPad &amp; iPod Touch While Travelling Abroad'>Skype WiFi Provides Affordable Wi-Fi Access On iPhone, iPad &amp; iPod Touch While Travelling Abroad</a> <small>Skype has just released a new app called Skype WiFi...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5340-tip-how-to-delete-gmail-messages-on-your-iphone-ipad-or-ipod-touch' rel='bookmark' title='Permanent Link: Tip: How to Delete Gmail Messages on Your iPhone, iPad or iPod Touch'>Tip: How to Delete Gmail Messages on Your iPhone, iPad or iPod Touch</a> <small>One of the annoying things if you use the Mail...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/2015-troubleshooting-tips-to-jailbreak-iphone-ipad-and-ipod-touch-on-ios-4-2-1-using-greenpois0n' rel='bookmark' title='Permanent Link: Troubleshooting Tips To Jailbreak iPhone, iPad And iPod Touch On iOS 4.2.1 Using Greenpois0n'>Troubleshooting Tips To Jailbreak iPhone, iPad And iPod Touch On iOS 4.2.1 Using Greenpois0n</a> <small>Chronic Dev Team had released greenpois0n to jailbreak iOS 4.2.1...</small></li></ol> Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p>Here&#8217;s a neat tip to quickly access the last saved mail draft on your iPhone, iPad and iPod Touch. It was quite a cumbersome process to access the last saved mail draft until we came across this tip. You had &#8230; <a
href="http://www.iphonehacks.com/2012/02/quickly-access-last-saved-mail-draft-iphone-ipad-ipod-touch.html">Continue reading <span>&#8594;</span></a></p><p><a
href="http://feedads.g.doubleclick.net/~a/1w0ZwMNFhy6ihii2u32u5-OygRk/0/da"><img
src="http://feedads.g.doubleclick.net/~a/1w0ZwMNFhy6ihii2u32u5-OygRk/0/di" border="0"></img></a><br
/> <a
href="http://feedads.g.doubleclick.net/~a/1w0ZwMNFhy6ihii2u32u5-OygRk/1/da"><img
src="http://feedads.g.doubleclick.net/~a/1w0ZwMNFhy6ihii2u32u5-OygRk/1/di" border="0"></img></a></p><div> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=DsXDuh0sgjg:hpIdl-ec4U0:yIl2AUoC8zA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=yIl2AUoC8zA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=DsXDuh0sgjg:hpIdl-ec4U0:qj6IDK7rITs"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=qj6IDK7rITs" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=DsXDuh0sgjg:hpIdl-ec4U0:gIN9vFwOqvQ"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=DsXDuh0sgjg:hpIdl-ec4U0:gIN9vFwOqvQ" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=DsXDuh0sgjg:hpIdl-ec4U0:D7DqB2pKExk"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=DsXDuh0sgjg:hpIdl-ec4U0:D7DqB2pKExk" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=DsXDuh0sgjg:hpIdl-ec4U0:7Q72WNTAKBA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=7Q72WNTAKBA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=DsXDuh0sgjg:hpIdl-ec4U0:-BTjWOF_DHI"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=DsXDuh0sgjg:hpIdl-ec4U0:-BTjWOF_DHI" border="0"></img></a></div><p><img
src="http://feeds.feedburner.com/~r/iphonehacks/~4/DsXDuh0sgjg" height="1" width="1" /><br
/> <a
href="http://feeds.iphonehacks.com/~r/iphonehacks/~3/DsXDuh0sgjg/quickly-access-last-saved-mail-draft-iphone-ipad-ipod-touch.html">Via iPhone Hacks</a></p><p><a
class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.deadlock.it%2Fapple%2Fiphone%2F5820-how-to-quickly-access-last-saved-mail-draft-on-your-iphone-ipad-and-ipod-touch&amp;title=How%20to%20Quickly%20Access%20Last%20Saved%20Mail%20Draft%20on%20Your%20iPhone%2C%20iPad%20and%20iPod%20Touch"><img
src="http://www.deadlock.it/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Related posts:<ol><li><a
href='http://www.deadlock.it/apple/iphone/3545-skype-wifi-provides-affordable-wi-fi-access-on-iphone-ipad-ipod-touch-while-travelling-abroad' rel='bookmark' title='Permanent Link: Skype WiFi Provides Affordable Wi-Fi Access On iPhone, iPad &amp; iPod Touch While Travelling Abroad'>Skype WiFi Provides Affordable Wi-Fi Access On iPhone, iPad &amp; iPod Touch While Travelling Abroad</a> <small>Skype has just released a new app called Skype WiFi...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/5340-tip-how-to-delete-gmail-messages-on-your-iphone-ipad-or-ipod-touch' rel='bookmark' title='Permanent Link: Tip: How to Delete Gmail Messages on Your iPhone, iPad or iPod Touch'>Tip: How to Delete Gmail Messages on Your iPhone, iPad or iPod Touch</a> <small>One of the annoying things if you use the Mail...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/2015-troubleshooting-tips-to-jailbreak-iphone-ipad-and-ipod-touch-on-ios-4-2-1-using-greenpois0n' rel='bookmark' title='Permanent Link: Troubleshooting Tips To Jailbreak iPhone, iPad And iPod Touch On iOS 4.2.1 Using Greenpois0n'>Troubleshooting Tips To Jailbreak iPhone, iPad And iPod Touch On iOS 4.2.1 Using Greenpois0n</a> <small>Chronic Dev Team had released greenpois0n to jailbreak iOS 4.2.1...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/clRnbmAtv0EvHqD6ZuQhf765Q9k/0/da"><img src="http://feedads.g.doubleclick.net/~a/clRnbmAtv0EvHqD6ZuQhf765Q9k/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/clRnbmAtv0EvHqD6ZuQhf765Q9k/1/da"><img src="http://feedads.g.doubleclick.net/~a/clRnbmAtv0EvHqD6ZuQhf765Q9k/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/apple/iphone/5820-how-to-quickly-access-last-saved-mail-draft-on-your-iphone-ipad-and-ipod-touch/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/apple/iphone/5820-how-to-quickly-access-last-saved-mail-draft-on-your-iphone-ipad-and-ipod-touch</feedburner:origLink></item> </channel> </rss><!-- Dynamic page generated in 1.143 seconds. --><!-- Cached page generated by WP-Super-Cache on 2012-02-22 23:17:22 --><!-- Compression = gzip -->

