<?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>Fri, 18 May 2012 19:17:23 +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>Page, testr.js, screenfull.js</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/wcJwt8sov2k/6869-page-testr-js-screenfull-js</link> <comments>http://www.deadlock.it/programming/javascript/6869-page-testr-js-screenfull-js#comments</comments> <pubDate>Fri, 18 May 2012 19:17:23 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[Javascript]]></category> <guid isPermaLink="false">http://www.deadlock.it/programming/javascript/6869-page-testr-js-screenfull-js</guid> <description><![CDATA[Page If I had to place a bet on the most activity by one person on GitHub, I&#8217;d bet on TJ Holowaychuk. His latest project is Page.js (GitHub: visionmedia / page.js, npm: page), which is a client-side router. The routing syntax works like Express, so variables are denoted by :name, and the * route can [...]
Related posts:<ol><li><a
href='http://www.deadlock.it/programming/javascript/6668-jquery-roundup-jquery-ui-1-8-20-jq-quickvalidate-fullscreen-plugin' rel='bookmark' title='Permanent Link: jQuery Roundup: jQuery UI 1.8.20, jq-quickvalidate, Fullscreen Plugin'>jQuery Roundup: jQuery UI 1.8.20, jq-quickvalidate, Fullscreen Plugin</a> <small>Note: You can send your plugins and articles in for...</small></li><li><a
href='http://www.deadlock.it/programming/javascript/5238-feathergl-tunnelgl-gitview' rel='bookmark' title='Permanent Link: FeatherGL, TunnelGL, Gitview'>FeatherGL, TunnelGL, Gitview</a> <small>FeatherGL FeatherGL (GitHub: bnason / FeatherGL, License: MIT) by Brandon...</small></li><li><a
href='http://www.deadlock.it/apple/macosx/3352-10-7-shrink-page-width-in-full-screen-safari' rel='bookmark' title='Permanent Link: 10.7: Shrink page width in full-screen Safari'>10.7: Shrink page width in full-screen Safari</a> <small>Full-screen Safari is nice, but some pages don&#8217;t do well...</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>Page</h3><p>If I had to place a bet on the most activity by one person on GitHub, I&#8217;d bet on TJ Holowaychuk. His latest project is <a
href="http://visionmedia.github.com/page.js/">Page.js</a> (GitHub: <a
href="https://github.com/visionmedia/page.js">visionmedia / page.js</a>, npm: <a
href="http://search.npmjs.org/#/page">page</a>), which is a client-side router. The routing syntax works like Express, so variables are denoted by <code>:name</code>, and the <code>*</code> route can be used to catch 404s. In this case, 404 is open to interpretation.</p><div><pre><code><span>page</span><span>(</span><span>&#039;/&#039;</span><span>,</span> <span>index</span><span>)</span>
<span>page</span><span>(</span><span>&#039;/user/:user&#039;</span><span>,</span> <span>show</span><span>)</span>
<span>page</span><span>(</span><span>&#039;/user/:user/edit&#039;</span><span>,</span> <span>edit</span><span>)</span>
<span>page</span><span>(</span><span>&#039;/user/:user/album&#039;</span><span>,</span> <span>album</span><span>)</span>
<span>page</span><span>(</span><span>&#039;/user/:user/album/sort&#039;</span><span>,</span> <span>sort</span><span>)</span>
<span>page</span><span>(</span><span>&#039;\*&#039;</span><span>,</span> <span>notfound</span><span>)</span>
<span>page</span><span>()</span>
</code></pre></div><p>It&#8217;s actually a very lightweight project, based around <code>pushState</code>, but it includes detailed comments and Mocha tests.</p><h3>testr.js</h3><p><a
href="https://github.com/mattfysh/testr.js">testr.js</a> (License: <em>MIT</em>) by Matt Fysh is for unit testing <a
href="http://requirejs.org/">RequireJS</a> modules. Use it with your favourite test framework to test both stubbed and script-loaded dependencies:</p><div><pre><code><span>testr</span><span>(</span><span>&#039;path/to/module&#039;</span><span>,</span> <span>stubs</span><span>);</span>
<span>testr</span><span>(</span><span>&#039;path/to/module&#039;</span><span>,</span> <span>useExternal</span><span>);</span>
<span>testr</span><span>(</span><span>&#039;path/to/module&#039;</span><span>,</span> <span>stubs</span><span>,</span> <span>useExternal</span><span>);</span>
</code></pre></div><p>The author has written some projects that use testr.js &#8211; <a
href="https://github.com/mattfysh/asq">asq</a> and <a
href="https://github.com/mattfysh/after">after</a> both use it with Jasmine.</p><h3>screenfull.js</h3><p><a
href="http://sindresorhus.com/screenfull.js/">screenfull.js</a> (GitHub: <a
href="https://github.com/sindresorhus/screenfull.js">sindresorhus / screenfull.js</a>, License: <em>MIT</em>) by Sindre Sorhus is another wrapper around the Fullscreen API. The semantics are similar to the specification, but a lot simpler &#8211; the README has a comparison with &#8220;vanilla&#8221; JavaScript which is several lines of code. Using screenfull.js, only <code>screenfull.request()</code> is required to trigger fullscreen mode.</p><p>The library can do other things as well: a single element can be fullscreened, or events can be used to detect a change to fullscreen mode.</p><p><img
src="http://feeds.feedburner.com/~r/dailyjs/~4/PVnlwyw0v88" height="1" width="1" /><br
/> <a
href="http://feedproxy.google.com/~r/dailyjs/~3/PVnlwyw0v88/page-testr-screenfull">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%2F6869-page-testr-js-screenfull-js&amp;title=Page%2C%20testr.js%2C%20screenfull.js"><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/6668-jquery-roundup-jquery-ui-1-8-20-jq-quickvalidate-fullscreen-plugin' rel='bookmark' title='Permanent Link: jQuery Roundup: jQuery UI 1.8.20, jq-quickvalidate, Fullscreen Plugin'>jQuery Roundup: jQuery UI 1.8.20, jq-quickvalidate, Fullscreen Plugin</a> <small>Note: You can send your plugins and articles in for...</small></li><li><a
href='http://www.deadlock.it/programming/javascript/5238-feathergl-tunnelgl-gitview' rel='bookmark' title='Permanent Link: FeatherGL, TunnelGL, Gitview'>FeatherGL, TunnelGL, Gitview</a> <small>FeatherGL FeatherGL (GitHub: bnason / FeatherGL, License: MIT) by Brandon...</small></li><li><a
href='http://www.deadlock.it/apple/macosx/3352-10-7-shrink-page-width-in-full-screen-safari' rel='bookmark' title='Permanent Link: 10.7: Shrink page width in full-screen Safari'>10.7: Shrink page width in full-screen Safari</a> <small>Full-screen Safari is nice, but some pages don&#8217;t do well...</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/eMGiOi8mZPyE-ym5vkzx3eqC8Cs/0/da"><img src="http://feedads.g.doubleclick.net/~a/eMGiOi8mZPyE-ym5vkzx3eqC8Cs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/eMGiOi8mZPyE-ym5vkzx3eqC8Cs/1/da"><img src="http://feedads.g.doubleclick.net/~a/eMGiOi8mZPyE-ym5vkzx3eqC8Cs/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/programming/javascript/6869-page-testr-js-screenfull-js/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/programming/javascript/6869-page-testr-js-screenfull-js</feedburner:origLink></item> <item><title>Apple Patent Looks to Improve Performance of Speakerphones For iPhone And iPad</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/IpY9cXiUbz0/6868-apple-patent-looks-to-improve-performance-of-speakerphones-for-iphone-and-ipad</link> <comments>http://www.deadlock.it/apple/iphone/6868-apple-patent-looks-to-improve-performance-of-speakerphones-for-iphone-and-ipad#comments</comments> <pubDate>Fri, 18 May 2012 19:17:19 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[iPhone]]></category> <guid isPermaLink="false">http://www.deadlock.it/apple/iphone/6868-apple-patent-looks-to-improve-performance-of-speakerphones-for-iphone-and-ipad</guid> <description><![CDATA[According to a patent published yesterday by the U.S. Patent &#38; Trademark Office, Apple is looking to improve the performance of the speakerphones for iOS devices. The patent reveals that Apple may change the position of the speakerphones (which are currently at the bottom, next to the dock connector) to improve its performance, even when [...]
No related posts.
Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p><div><img
src="http://www.iphonehacks.com/wp-content/themes/iph/timthumb.php?src=http://www.iphonehacks.com/wp-content/uploads/2012/05/ios-speakerphones-1-e1337358176942.jpg&amp;h=129&amp;w=194&amp;zc=1&amp;q=100" alt="Apple Patent Looks to Improve Performance of Speakerphones For iPhone And iPad" /></div><p>According to a patent published yesterday by the U.S. Patent &amp; Trademark Office, Apple is looking to improve the performance of the speakerphones for iOS devices.<br
/> The patent reveals that Apple may change the position of the speakerphones (which are currently at the bottom, next to the dock connector) to improve its performance, even when the iPhone or iPad is docked. <a
href="http://www.iphonehacks.com/2012/05/apple-patent-improve-performance-of-speakerphones-for-iphone-ipad.html#more-32549"> </a><br
/> <a
href="http://www.iphonehacks.com/2012/05/apple-patent-improve-performance-of-speakerphones-for-iphone-ipad.html">Continue reading <span>&#8594;</span></a></p><div></div><p><a
href="http://feedads.g.doubleclick.net/~a/85jQVT0603f3HM-pJRrndAAiOl0/0/da"><img
src="http://feedads.g.doubleclick.net/~a/85jQVT0603f3HM-pJRrndAAiOl0/0/di" border="0"></img></a><br
/> <a
href="http://feedads.g.doubleclick.net/~a/85jQVT0603f3HM-pJRrndAAiOl0/1/da"><img
src="http://feedads.g.doubleclick.net/~a/85jQVT0603f3HM-pJRrndAAiOl0/1/di" border="0"></img></a></p><div> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=kGFd5mTVCgM:z8oEusskSpc:yIl2AUoC8zA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=yIl2AUoC8zA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=kGFd5mTVCgM:z8oEusskSpc:qj6IDK7rITs"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=qj6IDK7rITs" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=kGFd5mTVCgM:z8oEusskSpc:gIN9vFwOqvQ"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=kGFd5mTVCgM:z8oEusskSpc:gIN9vFwOqvQ" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=kGFd5mTVCgM:z8oEusskSpc:D7DqB2pKExk"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=kGFd5mTVCgM:z8oEusskSpc:D7DqB2pKExk" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=kGFd5mTVCgM:z8oEusskSpc:7Q72WNTAKBA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=7Q72WNTAKBA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=kGFd5mTVCgM:z8oEusskSpc:-BTjWOF_DHI"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=kGFd5mTVCgM:z8oEusskSpc:-BTjWOF_DHI" border="0"></img></a></div><p><img
src="http://feeds.feedburner.com/~r/iphonehacks/~4/kGFd5mTVCgM" height="1" width="1" /><br
/> <a
href="http://feeds.iphonehacks.com/~r/iphonehacks/~3/kGFd5mTVCgM/apple-patent-improve-performance-of-speakerphones-for-iphone-ipad.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%2F6868-apple-patent-looks-to-improve-performance-of-speakerphones-for-iphone-and-ipad&amp;title=Apple%20Patent%20Looks%20to%20Improve%20Performance%20of%20Speakerphones%20For%20iPhone%20And%20iPad"><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>No related posts.</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/BXB4JVlyA8TD5vLAgMQzKu6gSLk/0/da"><img src="http://feedads.g.doubleclick.net/~a/BXB4JVlyA8TD5vLAgMQzKu6gSLk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/BXB4JVlyA8TD5vLAgMQzKu6gSLk/1/da"><img src="http://feedads.g.doubleclick.net/~a/BXB4JVlyA8TD5vLAgMQzKu6gSLk/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/apple/iphone/6868-apple-patent-looks-to-improve-performance-of-speakerphones-for-iphone-and-ipad/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/apple/iphone/6868-apple-patent-looks-to-improve-performance-of-speakerphones-for-iphone-and-ipad</feedburner:origLink></item> <item><title>pod2g: iOS 5.1.1 Untethered Jailbreak Will Also Work on iPhone 3GS And iPod Touch 3G</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/_lkWd_xcgz0/6867-pod2g-ios-5-1-1-untethered-jailbreak-will-also-work-on-iphone-3gs-and-ipod-touch-3g</link> <comments>http://www.deadlock.it/apple/iphone/6867-pod2g-ios-5-1-1-untethered-jailbreak-will-also-work-on-iphone-3gs-and-ipod-touch-3g#comments</comments> <pubDate>Fri, 18 May 2012 19:17:17 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[iPhone]]></category> <guid isPermaLink="false">http://www.deadlock.it/apple/iphone/6867-pod2g-ios-5-1-1-untethered-jailbreak-will-also-work-on-iphone-3gs-and-ipod-touch-3g</guid> <description><![CDATA[Some good news for iPhone 3GS and iPod touch 3G users. Few days back, pod2g had said that his untethered jailbreak did not work with iPod touch 3G on iOS 5.1.1 and hence also may not work with iPhone 3GS. But he has just tweeted that they&#8217;ve figured out a way to jailbreak iPhone 3GS [...]
No related posts.
Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p><div><img
src="http://www.iphonehacks.com/wp-content/themes/iph/timthumb.php?src=http://www.iphonehacks.com/wp-content/uploads/2012/01/Greenpois0n-Absinthe.jpg&amp;h=129&amp;w=194&amp;zc=1&amp;q=100" alt="pod2g: iOS 5.1.1 Untethered Jailbreak Will Also Work on iPhone 3GS And iPod Touch 3G" /></div><p>Some good news for iPhone 3GS and iPod touch 3G users. Few days back, pod2g had said that his <a
href="http://www.iphonehacks.com/pod2g">untethered jailbreak did not work with iPod touch 3G on iOS 5.1.1</a> and hence also may not work with iPhone 3GS.<br
/> But he has just tweeted that they&#8217;ve figured out a way to jailbreak iPhone 3GS and iPod touch 3G as well. <a
href="http://www.iphonehacks.com/2012/05/pod2g-ios-5-1-1-untethered-jailbreak-works-on-iphone-3gs-ipod-touch-3g.html#more-32541"> </a><br
/> <a
href="http://www.iphonehacks.com/2012/05/pod2g-ios-5-1-1-untethered-jailbreak-works-on-iphone-3gs-ipod-touch-3g.html">Continue reading <span>&#8594;</span></a></p><div></div><p><a
href="http://feedads.g.doubleclick.net/~a/gKSRD02f0MNTXIGOdAQSaZSMGJI/0/da"><img
src="http://feedads.g.doubleclick.net/~a/gKSRD02f0MNTXIGOdAQSaZSMGJI/0/di" border="0"></img></a><br
/> <a
href="http://feedads.g.doubleclick.net/~a/gKSRD02f0MNTXIGOdAQSaZSMGJI/1/da"><img
src="http://feedads.g.doubleclick.net/~a/gKSRD02f0MNTXIGOdAQSaZSMGJI/1/di" border="0"></img></a></p><div> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=EFm7HjDZHYs:U7uGxbEc3Tw:yIl2AUoC8zA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=yIl2AUoC8zA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=EFm7HjDZHYs:U7uGxbEc3Tw:qj6IDK7rITs"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=qj6IDK7rITs" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=EFm7HjDZHYs:U7uGxbEc3Tw:gIN9vFwOqvQ"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=EFm7HjDZHYs:U7uGxbEc3Tw:gIN9vFwOqvQ" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=EFm7HjDZHYs:U7uGxbEc3Tw:D7DqB2pKExk"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=EFm7HjDZHYs:U7uGxbEc3Tw:D7DqB2pKExk" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=EFm7HjDZHYs:U7uGxbEc3Tw:7Q72WNTAKBA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=7Q72WNTAKBA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=EFm7HjDZHYs:U7uGxbEc3Tw:-BTjWOF_DHI"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=EFm7HjDZHYs:U7uGxbEc3Tw:-BTjWOF_DHI" border="0"></img></a></div><p><img
src="http://feeds.feedburner.com/~r/iphonehacks/~4/EFm7HjDZHYs" height="1" width="1" /><br
/> <a
href="http://feeds.iphonehacks.com/~r/iphonehacks/~3/EFm7HjDZHYs/pod2g-ios-5-1-1-untethered-jailbreak-works-on-iphone-3gs-ipod-touch-3g.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%2F6867-pod2g-ios-5-1-1-untethered-jailbreak-will-also-work-on-iphone-3gs-and-ipod-touch-3g&amp;title=pod2g%3A%20iOS%205.1.1%20Untethered%20Jailbreak%20Will%20Also%20Work%20on%20iPhone%203GS%20And%20iPod%20Touch%203G"><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>No related posts.</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/TdEvoNWzoj86iKNWFIf0tpLvLno/0/da"><img src="http://feedads.g.doubleclick.net/~a/TdEvoNWzoj86iKNWFIf0tpLvLno/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/TdEvoNWzoj86iKNWFIf0tpLvLno/1/da"><img src="http://feedads.g.doubleclick.net/~a/TdEvoNWzoj86iKNWFIf0tpLvLno/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/apple/iphone/6867-pod2g-ios-5-1-1-untethered-jailbreak-will-also-work-on-iphone-3gs-and-ipod-touch-3g/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/apple/iphone/6867-pod2g-ios-5-1-1-untethered-jailbreak-will-also-work-on-iphone-3gs-and-ipod-touch-3g</feedburner:origLink></item> <item><title>Here’s How Some Popular Apps Will Look Like on iPhone With Taller 4-Inch Display</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/ZEKDpyqei8U/6866-here%e2%80%99s-how-some-popular-apps-will-look-like-on-iphone-with-taller-4-inch-display</link> <comments>http://www.deadlock.it/apple/iphone/6866-here%e2%80%99s-how-some-popular-apps-will-look-like-on-iphone-with-taller-4-inch-display#comments</comments> <pubDate>Fri, 18 May 2012 19:17:13 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[iPhone]]></category> <guid isPermaLink="false">http://www.deadlock.it/apple/iphone/6866-here%e2%80%99s-how-some-popular-apps-will-look-like-on-iphone-with-taller-4-inch-display</guid> <description><![CDATA[It is widely speculated that Apple&#8217;s next generation iPhone will come with a larger 4-inch screen. However, it is not clear if the 4-inch screen will be bigger in both height and width or it will come with a taller screen, to reduce the effort required by developers to update their apps for the new [...]
Related posts:<ol><li><a
href='http://www.deadlock.it/apple/iphone/6689-rumor-next-generation-iphone-will-be-thinner-come-with-taller-4-inch-display-and-smaller-dock-connector' rel='bookmark' title='Permanent Link: Rumor: Next Generation iPhone Will be Thinner, Come With Taller 4-Inch Display And Smaller Dock Connector'>Rumor: Next Generation iPhone Will be Thinner, Come With Taller 4-Inch Display And Smaller Dock Connector</a> <small>Back in April, The Verge forum member &#8211; modilwar showed us how Apple&#8217;s...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/6437-mockup-of-next-iphone-with-a-taller-4-inch-display' rel='bookmark' title='Permanent Link: Mockup of Next iPhone With a Taller 4-Inch Display'>Mockup of Next iPhone With a Taller 4-Inch Display</a> <small>As reported earlier, The Verge forum member &#8211; modilwar showed us...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/6435-apple%e2%80%99s-next-iphone-could-feature-a-taller-4-inch-display' rel='bookmark' title='Permanent Link: Apple’s Next iPhone Could Feature a Taller 4-inch Display'>Apple’s Next iPhone Could Feature a Taller 4-inch Display</a> <small>There has been several rumors that have indicated that Apple&#8217;s...</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><div><img
src="http://www.iphonehacks.com/wp-content/themes/iph/timthumb.php?src=http://www.iphonehacks.com/wp-content/uploads/2012/05/taller-iphone-1.jpg&amp;h=129&amp;w=194&amp;zc=1&amp;q=100" alt="Here’s How Some Popular Apps Will Look Like on iPhone With Taller 4-Inch Display" /></div><p>It is widely speculated that <a
href="http://www.iphonehacks.com/2012/05/steve-jobs-redesigned-next-generation-iphone-larger-screen.html">Apple&#8217;s next generation iPhone will come with a larger 4-inch screen</a>.<br
/> However, it is not clear if the 4-inch screen will be bigger in both height and width or it will come with a taller screen, to reduce the effort required by developers to update their apps for the new screen resolution. <a
href="http://www.iphonehacks.com/2012/05/how-popular-apps-will-look-like-on-taller-4-inch-iphone-display.html#more-32527"> </a><br
/> <a
href="http://www.iphonehacks.com/2012/05/how-popular-apps-will-look-like-on-taller-4-inch-iphone-display.html">Continue reading <span>&#8594;</span></a></p><div></div><p><a
href="http://feedads.g.doubleclick.net/~a/ZmtZBAGhHg6mhCNvMMkLsiibD3s/0/da"><img
src="http://feedads.g.doubleclick.net/~a/ZmtZBAGhHg6mhCNvMMkLsiibD3s/0/di" border="0"></img></a><br
/> <a
href="http://feedads.g.doubleclick.net/~a/ZmtZBAGhHg6mhCNvMMkLsiibD3s/1/da"><img
src="http://feedads.g.doubleclick.net/~a/ZmtZBAGhHg6mhCNvMMkLsiibD3s/1/di" border="0"></img></a></p><div> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=wiSF1n8HCrw:0qXhgEyNz5c:yIl2AUoC8zA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=yIl2AUoC8zA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=wiSF1n8HCrw:0qXhgEyNz5c:qj6IDK7rITs"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=qj6IDK7rITs" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=wiSF1n8HCrw:0qXhgEyNz5c:gIN9vFwOqvQ"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=wiSF1n8HCrw:0qXhgEyNz5c:gIN9vFwOqvQ" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=wiSF1n8HCrw:0qXhgEyNz5c:D7DqB2pKExk"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=wiSF1n8HCrw:0qXhgEyNz5c:D7DqB2pKExk" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=wiSF1n8HCrw:0qXhgEyNz5c:7Q72WNTAKBA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=7Q72WNTAKBA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=wiSF1n8HCrw:0qXhgEyNz5c:-BTjWOF_DHI"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=wiSF1n8HCrw:0qXhgEyNz5c:-BTjWOF_DHI" border="0"></img></a></div><p><img
src="http://feeds.feedburner.com/~r/iphonehacks/~4/wiSF1n8HCrw" height="1" width="1" /><br
/> <a
href="http://feeds.iphonehacks.com/~r/iphonehacks/~3/wiSF1n8HCrw/how-popular-apps-will-look-like-on-taller-4-inch-iphone-display.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%2F6866-here%25e2%2580%2599s-how-some-popular-apps-will-look-like-on-iphone-with-taller-4-inch-display&amp;title=Here%E2%80%99s%20How%20Some%20Popular%20Apps%20Will%20Look%20Like%20on%20iPhone%20With%20Taller%204-Inch%20Display"><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/6689-rumor-next-generation-iphone-will-be-thinner-come-with-taller-4-inch-display-and-smaller-dock-connector' rel='bookmark' title='Permanent Link: Rumor: Next Generation iPhone Will be Thinner, Come With Taller 4-Inch Display And Smaller Dock Connector'>Rumor: Next Generation iPhone Will be Thinner, Come With Taller 4-Inch Display And Smaller Dock Connector</a> <small>Back in April, The Verge forum member &#8211; modilwar showed us how Apple&#8217;s...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/6437-mockup-of-next-iphone-with-a-taller-4-inch-display' rel='bookmark' title='Permanent Link: Mockup of Next iPhone With a Taller 4-Inch Display'>Mockup of Next iPhone With a Taller 4-Inch Display</a> <small>As reported earlier, The Verge forum member &#8211; modilwar showed us...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/6435-apple%e2%80%99s-next-iphone-could-feature-a-taller-4-inch-display' rel='bookmark' title='Permanent Link: Apple’s Next iPhone Could Feature a Taller 4-inch Display'>Apple’s Next iPhone Could Feature a Taller 4-inch Display</a> <small>There has been several rumors that have indicated that Apple&#8217;s...</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/knmMlIVnXfhrp2jX-ycuCBBBybM/0/da"><img src="http://feedads.g.doubleclick.net/~a/knmMlIVnXfhrp2jX-ycuCBBBybM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/knmMlIVnXfhrp2jX-ycuCBBBybM/1/da"><img src="http://feedads.g.doubleclick.net/~a/knmMlIVnXfhrp2jX-ycuCBBBybM/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/apple/iphone/6866-here%e2%80%99s-how-some-popular-apps-will-look-like-on-iphone-with-taller-4-inch-display/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/apple/iphone/6866-here%e2%80%99s-how-some-popular-apps-will-look-like-on-iphone-with-taller-4-inch-display</feedburner:origLink></item> <item><title>Battle of the Betas: Windows 8 vs. OS X Mountain Lion</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/BvY_8okYPgk/6865-battle-of-the-betas-windows-8-vs-os-x-mountain-lion</link> <comments>http://www.deadlock.it/windows/6865-battle-of-the-betas-windows-8-vs-os-x-mountain-lion#comments</comments> <pubDate>Fri, 18 May 2012 19:17:10 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[Windows]]></category> <guid isPermaLink="false">http://www.deadlock.it/windows/6865-battle-of-the-betas-windows-8-vs-os-x-mountain-lion</guid> <description><![CDATA[By Paul ThurrottBoth Microsoft and Apple are racing to infuse their desktop operating systems with technologies and usage patterns from their respective mobile platforms. And while each is taking a different approach from a high level, the similarities are also somewhat surprising. Via Paul Thurrott&#8217;s SuperSite for Windows No related posts. Related posts brought to [...]
No related posts.
Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p><img
src="http://www.winsupersite.com/content/content/143127/s.win8vml_336.jpg;pva56247d7fefc16b9" border="0" hspace="10" vspace="10" align="left" /><br
/>By Paul Thurrott<br
/>Both Microsoft and Apple are racing to infuse their desktop operating systems with technologies and usage patterns from their respective mobile platforms. And while each is taking a different approach from a high level, the similarities are also somewhat surprising.<br
/> <a
href="http://www.winsupersite.com/article/windows8/battle-betas-windows-8-os-mountain-lion-143127">Via Paul Thurrott&#8217;s SuperSite for Windows</a></p><p><a
class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.deadlock.it%2Fwindows%2F6865-battle-of-the-betas-windows-8-vs-os-x-mountain-lion&amp;title=Battle%20of%20the%20Betas%3A%20Windows%208%20vs.%20OS%20X%20Mountain%20Lion"><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>No related posts.</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/Esi6axYXartk1Ok5z_OPj4zsHkA/0/da"><img src="http://feedads.g.doubleclick.net/~a/Esi6axYXartk1Ok5z_OPj4zsHkA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Esi6axYXartk1Ok5z_OPj4zsHkA/1/da"><img src="http://feedads.g.doubleclick.net/~a/Esi6axYXartk1Ok5z_OPj4zsHkA/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/windows/6865-battle-of-the-betas-windows-8-vs-os-x-mountain-lion/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/windows/6865-battle-of-the-betas-windows-8-vs-os-x-mountain-lion</feedburner:origLink></item> <item><title>WinInfo Short Takes, May 18, 2012</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/KSn1LdAyRX0/6864-wininfo-short-takes-may-18-2012</link> <comments>http://www.deadlock.it/windows/6864-wininfo-short-takes-may-18-2012#comments</comments> <pubDate>Fri, 18 May 2012 19:17:09 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[Windows]]></category> <guid isPermaLink="false">http://www.deadlock.it/windows/6864-wininfo-short-takes-may-18-2012</guid> <description><![CDATA[By Paul ThurrottAn often irreverent look at this week&#8217;s other news, including Windows Phone market share surges thanks to Lumia 900, AT&#38;T has big expectations for Windows Phone thanks to Windows 8, fears that Nokia is burning through cash too quickly, buy a new PC and get a free Xbox 360, Windows 8 won’t stop [...]
No related posts.
Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p><img
src="http://www.winsupersite.com/content/authors/879.jpg;pv739b2ec5eb8ea3ab" border="0" hspace="10" vspace="10" align="left" /><br
/>By Paul Thurrott<br
/>An often irreverent look at this week&#8217;s other news, including Windows Phone market share surges thanks to Lumia 900, AT&amp;T has big expectations for Windows Phone thanks to Windows 8, fears that Nokia is burning through cash too quickly, buy a new PC and get a free Xbox 360, Windows 8 won’t stop PC makers from bundling crapware, Twitter joins Do Not Track, HP reportedly cutting 30,000 jobs next week, and Verizon Wireless effectively kills grandfathered unlimited data.<br
/> <a
href="http://www.winsupersite.com/article/paul-thurrotts-wininfo/wininfo-short-takes-18-2012-143124">Via Paul Thurrott&#8217;s SuperSite for Windows</a></p><p><a
class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.deadlock.it%2Fwindows%2F6864-wininfo-short-takes-may-18-2012&amp;title=WinInfo%20Short%20Takes%2C%20May%2018%2C%202012"><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>No related posts.</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/YGfkiNQapPRkkqVsAE_AbtSVL4U/0/da"><img src="http://feedads.g.doubleclick.net/~a/YGfkiNQapPRkkqVsAE_AbtSVL4U/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/YGfkiNQapPRkkqVsAE_AbtSVL4U/1/da"><img src="http://feedads.g.doubleclick.net/~a/YGfkiNQapPRkkqVsAE_AbtSVL4U/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/windows/6864-wininfo-short-takes-may-18-2012/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/windows/6864-wininfo-short-takes-may-18-2012</feedburner:origLink></item> <item><title>What The Tech117: Nazi Alien TV Shows</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/Gt0UewadKsk/6863-what-the-tech117-nazi-alien-tv-shows</link> <comments>http://www.deadlock.it/windows/6863-what-the-tech117-nazi-alien-tv-shows#comments</comments> <pubDate>Fri, 18 May 2012 19:17:06 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[Windows]]></category> <guid isPermaLink="false">http://www.deadlock.it/windows/6863-what-the-tech117-nazi-alien-tv-shows</guid> <description><![CDATA[By Paul ThurrottThis week on What The Tech: It seems a refresh is on it’s way for the Macbook Pro. Andrew Zarian and Paul Thurrott discuss the rumored models. Andrew and Paul also talk about ultrabooks. Microsoft will reportedly offer new computer buyers the opportunity to upgrade to Windows 8 when it’s released for $15. [...]
Related posts:<ol><li><a
href='http://www.deadlock.it/windows/6755-what-the-tech-116-the-10-year-game' rel='bookmark' title='Permanent Link: What The Tech 116: The 10 Year Game'>What The Tech 116: The 10 Year Game</a> <small>By Paul ThurrottThis week on What The Tech: Andrew Zarian...</small></li><li><a
href='http://www.deadlock.it/windows/4948-what-the-tech-97-best-of-2011' rel='bookmark' title='Permanent Link: What The Tech 97: Best of 2011'>What The Tech 97: Best of 2011</a> <small>By Paul ThurrottThis week on What The Tech: Andrew and...</small></li><li><a
href='http://www.deadlock.it/windows/4537-what-the-tech-92-just-like-rim' rel='bookmark' title='Permanent Link: What The Tech 92: Just Like RIM'>What The Tech 92: Just Like RIM</a> <small>By Paul ThurrottThis week on What The Tech: Andrew and...</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><img
src="http://www.winsupersite.com/content/content/143123/s.wtt_336.jpg;pv3d63bbf5962e873a" border="0" hspace="10" vspace="10" align="left" /><br
/>By Paul Thurrott<br
/>This week on What The Tech: It seems a refresh is on it’s way for the Macbook Pro. Andrew Zarian and Paul Thurrott discuss the rumored models. Andrew and Paul also talk about ultrabooks. Microsoft will reportedly offer new computer buyers the opportunity to upgrade to Windows 8 when it’s released for $15. Also our Audible picks of the week, and we play the 10 year game with the desktop computer, and digital camera.<br
/> <a
href="http://www.winsupersite.com/article/podcast-2/tech117-nazi-alien-tv-shows-143123">Via Paul Thurrott&#8217;s SuperSite for Windows</a></p><p><a
class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.deadlock.it%2Fwindows%2F6863-what-the-tech117-nazi-alien-tv-shows&amp;title=What%20The%20Tech117%3A%20Nazi%20Alien%20TV%20Shows"><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/6755-what-the-tech-116-the-10-year-game' rel='bookmark' title='Permanent Link: What The Tech 116: The 10 Year Game'>What The Tech 116: The 10 Year Game</a> <small>By Paul ThurrottThis week on What The Tech: Andrew Zarian...</small></li><li><a
href='http://www.deadlock.it/windows/4948-what-the-tech-97-best-of-2011' rel='bookmark' title='Permanent Link: What The Tech 97: Best of 2011'>What The Tech 97: Best of 2011</a> <small>By Paul ThurrottThis week on What The Tech: Andrew and...</small></li><li><a
href='http://www.deadlock.it/windows/4537-what-the-tech-92-just-like-rim' rel='bookmark' title='Permanent Link: What The Tech 92: Just Like RIM'>What The Tech 92: Just Like RIM</a> <small>By Paul ThurrottThis week on What The Tech: Andrew and...</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/Z94phBovuzr0mez-FOi71GhK8O8/0/da"><img src="http://feedads.g.doubleclick.net/~a/Z94phBovuzr0mez-FOi71GhK8O8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Z94phBovuzr0mez-FOi71GhK8O8/1/da"><img src="http://feedads.g.doubleclick.net/~a/Z94phBovuzr0mez-FOi71GhK8O8/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/windows/6863-what-the-tech117-nazi-alien-tv-shows/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/windows/6863-what-the-tech117-nazi-alien-tv-shows</feedburner:origLink></item> <item><title>How to hide all .plist.lockfile files</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/OnDUWf8pYvM/6862-how-to-hide-all-plist-lockfile-files</link> <comments>http://www.deadlock.it/apple/macosx/6862-how-to-hide-all-plist-lockfile-files#comments</comments> <pubDate>Fri, 18 May 2012 19:17:02 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[Mac OS X]]></category> <guid isPermaLink="false">http://www.deadlock.it/apple/macosx/6862-how-to-hide-all-plist-lockfile-files</guid> <description><![CDATA[Apple has introduced an additional type of preference file in Lion, those whose names end in &#8220;.plist.lockfile&#8221;. Here is a good explanation of the function of those files: Lockfiles and other plist file subtypes in OS X Lion Since plist.lockfiles do not contain any useful information for the user and almost double the content of [...]
Related posts:<ol><li><a
href='http://www.deadlock.it/apple/macosx/3251-10-7-un-hide-the-user-library-folder' rel='bookmark' title='Permanent Link: 10.7: Un-hide the User Library folder'>10.7: Un-hide the User Library folder</a> <small>By default, the ~/Library folder is hidden in Lion. This...</small></li><li><a
href='http://www.deadlock.it/apple/macosx/2990-remove-an-akamai-plist-error-from-the-console' rel='bookmark' title='Permanent Link: Remove an Akamai plist error from  the Console'>Remove an Akamai plist error from  the Console</a> <small>If your network slows down or the performance of your...</small></li><li><a
href='http://www.deadlock.it/apple/macosx/2839-bulk-convert-text-files-to-pdf' rel='bookmark' title='Permanent Link: Bulk convert text files to PDF'>Bulk convert text files to PDF</a> <small>Here is a quick AppleScript droplet to bulk convert text...</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 introduced an additional type of preference file in Lion, those whose names end in &#8220;.plist.lockfile&#8221;.  Here is a good explanation of the function of those files:<br
/> <a
href="http://reviews.cnet.com/8301-13727_7-20093292-263/lockfiles-and-other-plist-file-subtypes-in-os-x-lion/">Lockfiles and other plist file subtypes in OS X Lion</a></p><p>Since plist.lockfiles do not contain any useful information for the user and almost double the content of and clutter the Preferences folders in /Library and ~/Library, I&#8217;ve been looking for a way to hide those files.  With help from Yvan Koenig of MacScripter<br
/> <a
href="http://macscripter.net/viewtopic.php?pid=151046#p151046">in this topic</a> (I&#8217;m flex20 in that forum), I wrote an AppleScript &#8220;Hide Unhide plist.lockfile.scpt,&#8221; which provides a quick and easy way of hiding or unhiding all those pesky files.</p><p>You will need an admin password to run the script because some of the &#8220;.plist.lockfile&#8221; files can only be changed by admi &#8230;</p><p> <a
href="http://www.pheedcontent.com/hostedMorselClick.php?hfmm=v3:7ded6b69d067d097d48c212fde7cb19e:merXtJMcRh0NRtklaYJJqVEojKRbztXAb2v4cufaySBaSo1kLseBZhSWqTMPaWK3GO89lrT1KEuyLw%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:98c505e8992e1f528c0ff86802911681:i0%2BuJkG0iB7D7dGnEpol6YWd7dNNKG3HPfH%2Bpf6ST3yspqyYOcvVCfEoiVTVkXJVouiLsbKSQqawIw%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:315b85a572cc72a5d32f8ccff5c7a2c8:xkcAXyJzBQYyOYGBopav5Vel9NxF6FYY68HvODxEtq8fiju6xokSJSB1J5fwHCg0uwkTMBNhuFr4jp8%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:2055f29a7680301fcbd7aaa958862435:kQE9krxVblEwRKJqyw6H%2BA172TCn8Epkd5nGAy6YcgHjlererDu2%2FmaJ%2FFs%2FM7qY9LCnN7gE4Q3HTg%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:bb4e040cc695e89cddf3e1e951a56c35:GpR5ahwdk8zNeQr3jJ1%2FIGBpEoLAVK5V396Z%2Bb3sV3gSE1wU%2FUDA0P%2ByO0NQALBoloj7v6kJ0Dqulgw%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=a786fef36fc82d64bc3bee21e2ff7040&amp;p=1"><img
alt="" style="border: 0" border="0" src="http://ads.pheedo.com/img.phdo?s=a786fef36fc82d64bc3bee21e2ff7040&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=a786fef36fc82d64bc3bee21e2ff7040">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%2F6862-how-to-hide-all-plist-lockfile-files&amp;title=How%20to%20hide%20all%20.plist.lockfile%20files"><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/3251-10-7-un-hide-the-user-library-folder' rel='bookmark' title='Permanent Link: 10.7: Un-hide the User Library folder'>10.7: Un-hide the User Library folder</a> <small>By default, the ~/Library folder is hidden in Lion. This...</small></li><li><a
href='http://www.deadlock.it/apple/macosx/2990-remove-an-akamai-plist-error-from-the-console' rel='bookmark' title='Permanent Link: Remove an Akamai plist error from  the Console'>Remove an Akamai plist error from  the Console</a> <small>If your network slows down or the performance of your...</small></li><li><a
href='http://www.deadlock.it/apple/macosx/2839-bulk-convert-text-files-to-pdf' rel='bookmark' title='Permanent Link: Bulk convert text files to PDF'>Bulk convert text files to PDF</a> <small>Here is a quick AppleScript droplet to bulk convert text...</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/G2z-M_ciSyx7dC_GQaFNEf1Lugw/0/da"><img src="http://feedads.g.doubleclick.net/~a/G2z-M_ciSyx7dC_GQaFNEf1Lugw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/G2z-M_ciSyx7dC_GQaFNEf1Lugw/1/da"><img src="http://feedads.g.doubleclick.net/~a/G2z-M_ciSyx7dC_GQaFNEf1Lugw/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/apple/macosx/6862-how-to-hide-all-plist-lockfile-files/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/apple/macosx/6862-how-to-hide-all-plist-lockfile-files</feedburner:origLink></item> <item><title>Steve Jobs Worked Closely On Redesigned Next Generation iPhone With Larger Screen</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/DsPby9pTV4M/6861-steve-jobs-worked-closely-on-redesigned-next-generation-iphone-with-larger-screen</link> <comments>http://www.deadlock.it/apple/iphone/6861-steve-jobs-worked-closely-on-redesigned-next-generation-iphone-with-larger-screen#comments</comments> <pubDate>Fri, 18 May 2012 10:17:07 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[iPhone]]></category> <guid isPermaLink="false">http://www.deadlock.it/apple/iphone/6861-steve-jobs-worked-closely-on-redesigned-next-generation-iphone-with-larger-screen</guid> <description><![CDATA[It looks like the embargo has been lifted. Bloomberg is the third publication after Wall Street Journal and Reuters to confirm that Apple&#8217;s next generation iPhone will feature a larger screen. Bloomberg also reports that according to their source, Steve Jobs had worked closely on the redesigned next generation iPhone with a larger screen. Continue [...]
Related posts:<ol><li><a
href='http://www.deadlock.it/apple/iphone/3704-apple%e2%80%99s-photo-stream-feature-confirms-redesigned-iphone-5-with-larger-screen-rectangular-home-button-updated' rel='bookmark' title='Permanent Link: Apple’s Photo Stream Feature Confirms Redesigned iPhone 5 With Larger Screen, Rectangular Home Button? [Updated]'>Apple’s Photo Stream Feature Confirms Redesigned iPhone 5 With Larger Screen, Rectangular Home Button? [Updated]</a> <small>9 to 5 Mac has discovered an icon in the...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/4650-apple-to-launch-redesigned-iphone-with-4-inch-screen-aluminium-casing-in-summer-of-2012-and-slightly-thicker-redesigned-ipad-3' rel='bookmark' title='Permanent Link: Apple To Launch Redesigned iPhone With 4-Inch Screen, Aluminium Casing In Summer Of 2012 And Slightly Thicker Redesigned iPad 3?'>Apple To Launch Redesigned iPhone With 4-Inch Screen, Aluminium Casing In Summer Of 2012 And Slightly Thicker Redesigned iPad 3?</a> <small>iLounge reports that according to their most reliable source, iPad...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/3311-purported-iphone-5-case-designs-hint-at-larger-4-inch-edge-to-edge-screen-curvedsloped-back-capacitive-home-button' rel='bookmark' title='Permanent Link: Purported iPhone 5 Case Designs Hint At Larger 4-Inch Edge-To-Edge Screen, Curved/Sloped Back, Capacitive Home Button'>Purported iPhone 5 Case Designs Hint At Larger 4-Inch Edge-To-Edge Screen, Curved/Sloped Back, Capacitive Home Button</a> <small>Folks at MobileFun.co.uk have published photos of two case designs,...</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><div><img
src="http://www.iphonehacks.com/wp-content/themes/iph/timthumb.php?src=http://www.iphonehacks.com/wp-content/uploads/2012/04/iphone5.jpg&amp;h=129&amp;w=194&amp;zc=1&amp;q=100" alt="Steve Jobs Worked Closely On Redesigned Next Generation iPhone With Larger Screen" /></div><p>It looks like the embargo has been lifted. Bloomberg is the third publication after <a
href="http://www.iphonehacks.com/2012/05/4-inch-screens-for-next-generation-iphone-ordered.html">Wall Street Journal</a> and Reuters to confirm that <a
href="http://www.iphonehacks.com/2012/05/4-inch-screens-for-next-generation-iphone-ordered.html">Apple&#8217;s next generation iPhone will feature a larger screen</a>.<br
/> Bloomberg also reports that according to their source, Steve Jobs had worked closely on the redesigned next generation iPhone with a larger screen. <a
href="http://www.iphonehacks.com/2012/05/steve-jobs-redesigned-next-generation-iphone-larger-screen.html#more-32522"> </a><br
/> <a
href="http://www.iphonehacks.com/2012/05/steve-jobs-redesigned-next-generation-iphone-larger-screen.html">Continue reading <span>&#8594;</span></a></p><div></div><p><a
href="http://feedads.g.doubleclick.net/~a/1LlsDM6w4p1aBsm6trphwjZXs60/0/da"><img
src="http://feedads.g.doubleclick.net/~a/1LlsDM6w4p1aBsm6trphwjZXs60/0/di" border="0"></img></a><br
/> <a
href="http://feedads.g.doubleclick.net/~a/1LlsDM6w4p1aBsm6trphwjZXs60/1/da"><img
src="http://feedads.g.doubleclick.net/~a/1LlsDM6w4p1aBsm6trphwjZXs60/1/di" border="0"></img></a></p><div> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=ylhGHhinVnU:fdcBTFPTQho:yIl2AUoC8zA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=yIl2AUoC8zA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=ylhGHhinVnU:fdcBTFPTQho:qj6IDK7rITs"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=qj6IDK7rITs" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=ylhGHhinVnU:fdcBTFPTQho:gIN9vFwOqvQ"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=ylhGHhinVnU:fdcBTFPTQho:gIN9vFwOqvQ" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=ylhGHhinVnU:fdcBTFPTQho:D7DqB2pKExk"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=ylhGHhinVnU:fdcBTFPTQho:D7DqB2pKExk" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=ylhGHhinVnU:fdcBTFPTQho:7Q72WNTAKBA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=7Q72WNTAKBA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=ylhGHhinVnU:fdcBTFPTQho:-BTjWOF_DHI"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=ylhGHhinVnU:fdcBTFPTQho:-BTjWOF_DHI" border="0"></img></a></div><p><img
src="http://feeds.feedburner.com/~r/iphonehacks/~4/ylhGHhinVnU" height="1" width="1" /><br
/> <a
href="http://feeds.iphonehacks.com/~r/iphonehacks/~3/ylhGHhinVnU/steve-jobs-redesigned-next-generation-iphone-larger-screen.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%2F6861-steve-jobs-worked-closely-on-redesigned-next-generation-iphone-with-larger-screen&amp;title=Steve%20Jobs%20Worked%20Closely%20On%20Redesigned%20Next%20Generation%20iPhone%20With%20Larger%20Screen"><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/3704-apple%e2%80%99s-photo-stream-feature-confirms-redesigned-iphone-5-with-larger-screen-rectangular-home-button-updated' rel='bookmark' title='Permanent Link: Apple’s Photo Stream Feature Confirms Redesigned iPhone 5 With Larger Screen, Rectangular Home Button? [Updated]'>Apple’s Photo Stream Feature Confirms Redesigned iPhone 5 With Larger Screen, Rectangular Home Button? [Updated]</a> <small>9 to 5 Mac has discovered an icon in the...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/4650-apple-to-launch-redesigned-iphone-with-4-inch-screen-aluminium-casing-in-summer-of-2012-and-slightly-thicker-redesigned-ipad-3' rel='bookmark' title='Permanent Link: Apple To Launch Redesigned iPhone With 4-Inch Screen, Aluminium Casing In Summer Of 2012 And Slightly Thicker Redesigned iPad 3?'>Apple To Launch Redesigned iPhone With 4-Inch Screen, Aluminium Casing In Summer Of 2012 And Slightly Thicker Redesigned iPad 3?</a> <small>iLounge reports that according to their most reliable source, iPad...</small></li><li><a
href='http://www.deadlock.it/apple/iphone/3311-purported-iphone-5-case-designs-hint-at-larger-4-inch-edge-to-edge-screen-curvedsloped-back-capacitive-home-button' rel='bookmark' title='Permanent Link: Purported iPhone 5 Case Designs Hint At Larger 4-Inch Edge-To-Edge Screen, Curved/Sloped Back, Capacitive Home Button'>Purported iPhone 5 Case Designs Hint At Larger 4-Inch Edge-To-Edge Screen, Curved/Sloped Back, Capacitive Home Button</a> <small>Folks at MobileFun.co.uk have published photos of two case designs,...</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/gz4DLBwwTGAyLr-FbPu5jEGMivU/0/da"><img src="http://feedads.g.doubleclick.net/~a/gz4DLBwwTGAyLr-FbPu5jEGMivU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/gz4DLBwwTGAyLr-FbPu5jEGMivU/1/da"><img src="http://feedads.g.doubleclick.net/~a/gz4DLBwwTGAyLr-FbPu5jEGMivU/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/apple/iphone/6861-steve-jobs-worked-closely-on-redesigned-next-generation-iphone-with-larger-screen/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/apple/iphone/6861-steve-jobs-worked-closely-on-redesigned-next-generation-iphone-with-larger-screen</feedburner:origLink></item> <item><title>Verizon Clarifies Stance on Grandfathered Unlimited Data Plans</title><link>http://feedproxy.google.com/~r/TechnologyTipsAndTricks/~3/Tc1cA420cKA/6860-verizon-clarifies-stance-on-grandfathered-unlimited-data-plans</link> <comments>http://www.deadlock.it/apple/iphone/6860-verizon-clarifies-stance-on-grandfathered-unlimited-data-plans#comments</comments> <pubDate>Fri, 18 May 2012 10:17:04 +0000</pubDate> <dc:creator>Deadlock.it</dc:creator> <category><![CDATA[iPhone]]></category> <guid isPermaLink="false">http://www.deadlock.it/apple/iphone/6860-verizon-clarifies-stance-on-grandfathered-unlimited-data-plans</guid> <description><![CDATA[Yesterday, we reported that Verizon is planning to end grandfathered unlimited data plans when customers switch to 4G LTE smartphones. Verizon issued a clarification to the New York Times today regarding the changes noting that the loss of the grandfathered unlimited data plans will be limited to customers upgrading to subsidized handsets. Continue reading &#8594; Via iPhone Hacks Related posts:Verizon to [...]
Related posts:<ol><li><a
href='http://www.deadlock.it/apple/iphone/6847-verizon-to-end-grandfathered-unlimited-data-plans-when-customers-move-to-4g-lte-smartphones' rel='bookmark' title='Permanent Link: Verizon to End Grandfathered Unlimited Data Plans When Customers Move to 4G LTE Smartphones'>Verizon to End Grandfathered Unlimited Data Plans When Customers Move to 4G LTE Smartphones</a> <small>When Verizon started offering Apple&#8217;s iPhone on its network in...</small></li><li><a
href='http://www.deadlock.it/windows/3121-its-official-verizon-wireless-drops-unlimited-data-plans' rel='bookmark' title='Permanent Link: It&#8217;s Official: Verizon Wireless Drops Unlimited Data Plans'>It&#8217;s Official: Verizon Wireless Drops Unlimited Data Plans</a> <small>By Thurrott, PaulStarting tomorrow, July 7, new Verizon Wireless customers...</small></li><li><a
href='http://www.deadlock.it/windows/3002-unlimited-no-more-verizon-joins-att-in-tiered-mobile-data-plans' rel='bookmark' title='Permanent Link: Unlimited No More: Verizon Joins AT&amp;T in Tiered Mobile Data Plans'>Unlimited No More: Verizon Joins AT&amp;T in Tiered Mobile Data Plans</a> <small>Windows IT Pro The nation&#8217;s largest wireless carrier has finally...</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><div><img
src="http://www.iphonehacks.com/wp-content/themes/iph/timthumb.php?src=http://cdn.iphonehacks.com/images/2011/02/verizon-iphone.jpg&amp;h=129&amp;w=194&amp;zc=1&amp;q=100" alt="Verizon Clarifies Stance on Grandfathered Unlimited Data Plans" /></div><p>Yesterday, we <a
href="http://www.iphonehacks.com/2012/05/verizon-to-end-grandfathered-unlimited-data-plans-when-customers-move-to-4g-lte.html">reported</a> that Verizon is planning to end grandfathered unlimited data plans when customers switch to 4G LTE smartphones.<br
/> Verizon issued a clarification to the New York Times today regarding the changes noting that the loss of the grandfathered unlimited data plans will be limited to customers upgrading to subsidized handsets.<br
/> <a
href="http://www.iphonehacks.com/2012/05/verizon-clarifies-stance-on-grandfathered-unlimited-data-plans.html#more-32516"> </a><br
/> <a
href="http://www.iphonehacks.com/2012/05/verizon-clarifies-stance-on-grandfathered-unlimited-data-plans.html">Continue reading <span>&#8594;</span></a></p><div></div><p><a
href="http://feedads.g.doubleclick.net/~a/F1xTotrkWtBa0wk5roZJpUKUhbY/0/da"><img
src="http://feedads.g.doubleclick.net/~a/F1xTotrkWtBa0wk5roZJpUKUhbY/0/di" border="0"></img></a><br
/> <a
href="http://feedads.g.doubleclick.net/~a/F1xTotrkWtBa0wk5roZJpUKUhbY/1/da"><img
src="http://feedads.g.doubleclick.net/~a/F1xTotrkWtBa0wk5roZJpUKUhbY/1/di" border="0"></img></a></p><div> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=h9yhCvWNkpY:Pz4A4Cm14tI:yIl2AUoC8zA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=yIl2AUoC8zA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=h9yhCvWNkpY:Pz4A4Cm14tI:qj6IDK7rITs"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=qj6IDK7rITs" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=h9yhCvWNkpY:Pz4A4Cm14tI:gIN9vFwOqvQ"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=h9yhCvWNkpY:Pz4A4Cm14tI:gIN9vFwOqvQ" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=h9yhCvWNkpY:Pz4A4Cm14tI:D7DqB2pKExk"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=h9yhCvWNkpY:Pz4A4Cm14tI:D7DqB2pKExk" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=h9yhCvWNkpY:Pz4A4Cm14tI:7Q72WNTAKBA"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?d=7Q72WNTAKBA" border="0"></img></a> <a
href="http://feeds.iphonehacks.com/~ff/iphonehacks?a=h9yhCvWNkpY:Pz4A4Cm14tI:-BTjWOF_DHI"><img
src="http://feeds.feedburner.com/~ff/iphonehacks?i=h9yhCvWNkpY:Pz4A4Cm14tI:-BTjWOF_DHI" border="0"></img></a></div><p><img
src="http://feeds.feedburner.com/~r/iphonehacks/~4/h9yhCvWNkpY" height="1" width="1" /><br
/> <a
href="http://feeds.iphonehacks.com/~r/iphonehacks/~3/h9yhCvWNkpY/verizon-clarifies-stance-on-grandfathered-unlimited-data-plans.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%2F6860-verizon-clarifies-stance-on-grandfathered-unlimited-data-plans&amp;title=Verizon%20Clarifies%20Stance%20on%20Grandfathered%20Unlimited%20Data%20Plans"><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/6847-verizon-to-end-grandfathered-unlimited-data-plans-when-customers-move-to-4g-lte-smartphones' rel='bookmark' title='Permanent Link: Verizon to End Grandfathered Unlimited Data Plans When Customers Move to 4G LTE Smartphones'>Verizon to End Grandfathered Unlimited Data Plans When Customers Move to 4G LTE Smartphones</a> <small>When Verizon started offering Apple&#8217;s iPhone on its network in...</small></li><li><a
href='http://www.deadlock.it/windows/3121-its-official-verizon-wireless-drops-unlimited-data-plans' rel='bookmark' title='Permanent Link: It&#8217;s Official: Verizon Wireless Drops Unlimited Data Plans'>It&#8217;s Official: Verizon Wireless Drops Unlimited Data Plans</a> <small>By Thurrott, PaulStarting tomorrow, July 7, new Verizon Wireless customers...</small></li><li><a
href='http://www.deadlock.it/windows/3002-unlimited-no-more-verizon-joins-att-in-tiered-mobile-data-plans' rel='bookmark' title='Permanent Link: Unlimited No More: Verizon Joins AT&amp;T in Tiered Mobile Data Plans'>Unlimited No More: Verizon Joins AT&amp;T in Tiered Mobile Data Plans</a> <small>Windows IT Pro The nation&#8217;s largest wireless carrier has finally...</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/ZoZt29c_crRJaJ2rUWezz-sffDA/0/da"><img src="http://feedads.g.doubleclick.net/~a/ZoZt29c_crRJaJ2rUWezz-sffDA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ZoZt29c_crRJaJ2rUWezz-sffDA/1/da"><img src="http://feedads.g.doubleclick.net/~a/ZoZt29c_crRJaJ2rUWezz-sffDA/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded> <wfw:commentRss>http://www.deadlock.it/apple/iphone/6860-verizon-clarifies-stance-on-grandfathered-unlimited-data-plans/feed</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://www.deadlock.it/apple/iphone/6860-verizon-clarifies-stance-on-grandfathered-unlimited-data-plans</feedburner:origLink></item> </channel> </rss><!-- Dynamic page generated in 0.815 seconds. --><!-- Cached page generated by WP-Super-Cache on 2012-05-18 20:36:25 --><!-- Compression = gzip -->

