<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ashley Ross • 27.am</title>
	<atom:link href="http://27.am/feed" rel="self" type="application/rss+xml" />
	<link>http://27.am</link>
	<description></description>
	<lastBuildDate>Thu, 20 Oct 2011 11:36:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The Legend of FinkyPieheimer@zoobatz.com</title>
		<link>http://27.am/posts/the-legend-of-finkypieheimerzoobatz-com</link>
		<comments>http://27.am/posts/the-legend-of-finkypieheimerzoobatz-com#comments</comments>
		<pubDate>Thu, 29 Sep 2011 12:56:02 +0000</pubDate>
		<dc:creator>Ashley Ross</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://27.am/?p=190</guid>
		<description><![CDATA[Occasionally, you want a quick disposable email address for registering on suspicious websites, or in my case, for testing your own website&#8217;s registration system. While there are several options, I use Mailinator because you don&#8217;t need to set up anything &#8230; <a href="http://27.am/posts/the-legend-of-finkypieheimerzoobatz-com">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Occasionally, you want a quick disposable email address for registering on suspicious websites, or in my case, for testing your own website&#8217;s registration system. While there are several options, I use <a href="http://mailinator.com/">Mailinator</a> because you don&#8217;t need to set up anything first. You just enter whatever you want, followed by <i>@mailinator.com</i> as your email address, and it just works.</p>
<p>This is what I was doing last week when I noticed that all the email sent by my website&#8217;s registration system was apparently from <i>FinkyPieheimer@zoobatz.com</i>. That&#8217;s definitely not what I set, and I confirmed that a valid from address was being used. The only recent change was that a friendly display name was now being included, instead of just the email address by itself. So what gives?</p>
<p>Upon examining the raw email (When viewing an email in Mailinator, click the <i>Text View</i> button), I noticed a linebreak in the <i>From</i> header.</p>
<pre>
...
MIME-Version: 1.0
From: "Quux Baz"
 &lt;noreply@foo.bar&gt;
To: test@mailinator.com
...
</pre>
<p>While that&#8217;s unusual, other email programs and systems handle it just fine. Mailinator, however, doesn&#8217;t like it one bit. It seems to regard it as invalid, and as such, replaces the field with <i>FinkyPieheimer@zoobatz.com</i> as a sort of placeholder.</p>
<p>So what can you do about it? If you&#8217;re just registering on a website, don&#8217;t worry about it. If you&#8217;re working on your own website, see if you can change how the <i>From</i> email address is set.</p>
<p>In my case, I was using .NET&#8217;s SmtpClient, MailMessage and MailAddress classes. I found a <a href="http://stackoverflow.com/questions/5137321/net-or-mssmtp-adding-a-line-break-in-the-from-header"</a>StackOverflow question</a> about the strange carriage return &amp; line feed, which only appears when you set the <i>DisplayName</i> property of a MailAddress instance. This only happens under .NET 4.0, and you can see the hardcoded &#8220;\r\n &#8221; are the end of the <a href="http://typedescriptor.net/name/members/086C4827B03BC13039391486C79CB0C0-System.Net.Mail.MailAddress.Encode%28Int32%29">MailAddress.Encode(Int32) method</a>. To resolve this, either convert the project to .NET 3.5, remove the display name, or, if you have an intermediate delivery system, add a processing step to fix this after it leaves the .NET SmtpClient.</p>
]]></content:encoded>
			<wfw:commentRss>http://27.am/posts/the-legend-of-finkypieheimerzoobatz-com/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Getting to the (Reparse) Point: Notes</title>
		<link>http://27.am/posts/getting-to-the-reparse-point-notes</link>
		<comments>http://27.am/posts/getting-to-the-reparse-point-notes#comments</comments>
		<pubDate>Thu, 18 Aug 2011 09:08:30 +0000</pubDate>
		<dc:creator>Ashley Ross</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://27.am/?p=147</guid>
		<description><![CDATA[These are the links, notes and resources for my presentation Getting to the (Reparse) Point, which I&#8217;ll be giving at Microsoft Devs4Devs on Saturday, 20 August 2011 at 09:30. Code Manta, my open source .NET library with functionality for managing &#8230; <a href="http://27.am/posts/getting-to-the-reparse-point-notes">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>These are the links, notes and resources for my presentation <i>Getting to the (Reparse) Point</i>, which I&#8217;ll be giving at Microsoft Devs4Devs on Saturday, 20 August 2011 at 09:30.</p>
<h4>Code</h4>
<ul>
<li><a href="http://27.am/projects/manta">Manta, my open source .NET library with functionality for managing hardlinks, reparse points, junctions and symbolic links</a></li>
</ul>
<h4>Applications</h4>
<ul>
<li><a href="http://schinagl.priv.at/nt/hardlinkshellext/hardlinkshellext.html"><b>Recommended:</b> Link Shell Extension &#8211; Explorer extension to manage hardlinks, symbolic links, junctions and mount points (2000+)</a></li>
<li><a href="http://technet.microsoft.com/en-us/library/cc753059.aspx">fsutil &#8211; View and delete reparse points (XP+)</a></li>
<li><a href="http://technet.microsoft.com/en-us/library/cc753194.aspx">mklink &#8211; Create hardlinks, symbolic links and junctions (Vista+)</a></li>
<li><a href="http://technet.microsoft.com/en-us/sysinternals/bb896768">junction- Create and delete junctions (2000+)</a></li>
<li><a href="http://support.microsoft.com/kb/205524">linkd, mountvol &amp; delrp &#8211; Junction, mount point and reparse point management (2000+)</a></li>
</ul>
<h4>Documentation</h4>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/aa365006.aspx">Hard Links and Junctions</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/aa365503.aspx">Reparse Points</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/aa365680.aspx">Symbolic Links</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://27.am/posts/getting-to-the-reparse-point-notes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Announcing Manta</title>
		<link>http://27.am/posts/announcing-manta</link>
		<comments>http://27.am/posts/announcing-manta#comments</comments>
		<pubDate>Thu, 18 Aug 2011 09:05:13 +0000</pubDate>
		<dc:creator>Ashley Ross</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Manta]]></category>

		<guid isPermaLink="false">http://27.am/?p=166</guid>
		<description><![CDATA[It&#8217;s taken much too long, but I&#8217;ve finally created an online project for Manta, which until recently didn&#8217;t even have an official name. Manta is an open source .NET library that currently features a variety of I/O- and web-related classes &#8230; <a href="http://27.am/posts/announcing-manta">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s taken much too long, but I&#8217;ve finally created an online project for Manta, which until recently didn&#8217;t even have an official name. Manta is an open source .NET library that currently features a variety of I/O- and web-related classes that simplify and ease solving hard problems.</p>
<p>On the I/O side, Manta offers support for managing hardlinks, reparse points, junctions, symbolic links. It also comes with unit tests and documented methods and classes.</p>
<p>On the web side, Manta enables easy manipulation of URLs, RSS feeds and phpBB posts. It too features unit tests and documentation.</p>
<p>You can <a href="http://27.am/projects/manta">find out more about Manta</a> or <a href="http://mantalib.codeplex.com">download it from CodePlex</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://27.am/posts/announcing-manta/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Buying a Dremel in South Africa</title>
		<link>http://27.am/posts/buying-a-dremel-in-south-africa</link>
		<comments>http://27.am/posts/buying-a-dremel-in-south-africa#comments</comments>
		<pubDate>Mon, 30 Aug 2010 19:01:22 +0000</pubDate>
		<dc:creator>Ashley Ross</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[dremel]]></category>

		<guid isPermaLink="false">http://27.am/?p=71</guid>
		<description><![CDATA[I&#8217;d been wanting to get myself a Dremel rotary tool for ages, but only started looking into it recently. Immediately, I was overwhelmed by the variety of options thrown at me &#8211; do I get the tool by itself and &#8230; <a href="http://27.am/posts/buying-a-dremel-in-south-africa">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d been wanting to get myself a Dremel rotary tool for ages, but only started looking into it recently. Immediately, I was overwhelmed by the variety of options thrown at me &#8211; do I get the tool by itself and then buy the accessories separately, or do I go for one of the kits? Which option is the cheapest?</p>
<p>Firstly, kit codes appear to be in the format of <i>&lt;Tool series&gt;-&lt;Number of attachments&gt;/&lt;Number of accessories&gt;</i>. As far as I can tell, there are four kits available in South Africa, although I could only find information on Dremel&#8217;s website about the 300-1/55, the 4000-1/45 and the 4000-4/65; the fourth kit, which I saw in Builder&#8217;s Warehouse, is a 300-2/40 and contains a Dremel 300 bundled with various accessories and a mini-workbench.</p>
<p>To help myself decide what to go for, I went through Dremel&#8217;s website and put together a spreadsheet detailing the accessories each kit contains. You can view the <a href="https://spreadsheets.google.com/pub?key=0Ar6d_4IFd5andF9JX0dXLVJ3d1FyZ1pKVWNrWEE4TGc&#038;authkey=CKrLwpYE&#038;hl=en&#038;single=true&#038;gid=0&#038;output=html&#038;widget=true">spreadsheet online</a>. Note that the total accessories count is less than the number the kit code indicates; this is probably due to inaccuracies on Dremel&#8217;s website, as the kit I got included the correct number of accessories.
<p>Hopefully, this spreadsheet will help your decision. In the end, I went for the 300-1/55; the value it gives at its price-point bested the Dremel 4000 kits easily.</p>
]]></content:encoded>
			<wfw:commentRss>http://27.am/posts/buying-a-dremel-in-south-africa/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Your iPhone &amp; its dock: Disabling the mute feature</title>
		<link>http://27.am/posts/your-iphone-its-dock-disabling-the-mute-feature</link>
		<comments>http://27.am/posts/your-iphone-its-dock-disabling-the-mute-feature#comments</comments>
		<pubDate>Thu, 24 Dec 2009 16:32:38 +0000</pubDate>
		<dc:creator>Ashley Ross</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://27.am/?p=59</guid>
		<description><![CDATA[I recently purchased a dock for my iPhone from a guy on Ebay. It&#8217;s not an official Apple product, because $5 is a far better price than the $29 Apple wants for a piece of plastic. All-in-all, its a great &#8230; <a href="http://27.am/posts/your-iphone-its-dock-disabling-the-mute-feature">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://27.am/files/2009/12/dock1.jpg" alt="iPhone dock with Line Out port" title="iPhone dock" width="500" height="415" class="alignnone size-full wp-image-57" /></p>
<p>I recently purchased a dock for my iPhone from <a href="http://myworld.ebay.com/forsmarter">a guy on Ebay</a>. It&#8217;s not an official Apple product, because $5 is a far better price than the $29 Apple wants for a piece of plastic. All-in-all, its a great little product, and it would be perfect but for one thing; every time I plug my iPhone 3G into it, it mutes the sound.</p>
<p>Of course, given that this dock has a Line Out jack on the back, it makes sense that it would disable my iPhone&#8217;s built-in speakers. After all, why would you want your iPhone&#8217;s tinny sound tarnishing whatever you plug in the back? However, seeing as I&#8217;m using it as a bed-side stand, there will never be a speaker system to tarnish. Here&#8217;s how to prevent it from muting your iPhone.</p>
<p>Step 1: Open it up. You&#8217;ll need a small phillips screwdriver, about 2.5mm in diameter. Just stab it through the rubber layer on the bottom and unscrew.</p>
<p><img src="http://27.am/files/2009/12/dock2.jpg" alt="Location of the screws on the bottom of the iPhone dock" title="iPhone dock screws location" width="500" height="319" class="alignnone size-full wp-image-58" /></p>
<p>Step 2: Using a soldering iron, remove the tiny resistor (Pictured to the right) from the marked location on the PCB.</p>
<p><img src="http://27.am/files/2009/12/dock3.jpg" alt="Location of the resistor to remove on the iPhone dock PCB" title="iPhone dock PCB" width="500" height="277" class="alignnone size-full wp-image-56" /></p>
<p>Step 3: Reassemble and enjoy. :)</p>
]]></content:encoded>
			<wfw:commentRss>http://27.am/posts/your-iphone-its-dock-disabling-the-mute-feature/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Restoring iPhone USB access under iTunes 9</title>
		<link>http://27.am/posts/restoring-iphone-usb-access-under-itunes-9</link>
		<comments>http://27.am/posts/restoring-iphone-usb-access-under-itunes-9#comments</comments>
		<pubDate>Thu, 24 Dec 2009 15:03:40 +0000</pubDate>
		<dc:creator>Ashley Ross</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[itunes]]></category>

		<guid isPermaLink="false">http://27.am/?p=52</guid>
		<description><![CDATA[Like many jailbreak iPhone users, I prefer to SSH to my iPhone 3G via the USB cable instead of over my wifi network. Since upgrading to iPhone OS 3.1.2 and iTunes 9.0.2 (Specifically 9.0.2.25), however, I&#8217;ve discovered that the tool &#8230; <a href="http://27.am/posts/restoring-iphone-usb-access-under-itunes-9">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Like many jailbreak iPhone users, I prefer to SSH to my iPhone 3G via the USB cable instead of over my wifi network. Since upgrading to iPhone OS 3.1.2 and iTunes 9.0.2 (Specifically 9.0.2.25), however, I&#8217;ve discovered that the tool I used, iphone_tunnel.exe, no longer works. Instead, every time I try to connect with Putty or WinSCP, the error message iphone_tunnel gives me is:</p>
<blockquote><p>new connection !<br />
AMDeviceNotificationSubscribe = 0<br />
iPhone attached !<br />
AMDeviceConnect = 0<br />
AMDeviceIsPaired = 1<br />
AMDeviceValidatePairing = 0<br />
AMDeviceStartSession = 0<br />
MobileDevice: _send_message: Could not encode message as XML<br />
AMDeviceStartService = 0<br />
AFCConnectionOpen = 0</p></blockquote>
<p>My initial search results lead me to downgrade the &#8220;Apple Mobile Device Support&#8221; component to the version used in iTunes 8.2.1.6, but this did not work. After a lot more searching, I discovered a slightly different tool, itunnel, which I originally discounted as just another name for iphone_tunnel. It is actually a modified version of iphone_tunnel, presumably for iTunes 9 compatibility. It works fine on my iPhone 3G, and I imagine the same would go for the iPhone 3GS.</p>
<p>You can download it from <a href="http://www.mediafire.com/?2q1fzowoy12">MediaFire (623.55 KiB)</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://27.am/posts/restoring-iphone-usb-access-under-itunes-9/feed</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>The legal risks of buying a US iTunes voucher/gift card</title>
		<link>http://27.am/posts/the-legal-risks-of-buying-a-us-itunes-vouchergift-card</link>
		<comments>http://27.am/posts/the-legal-risks-of-buying-a-us-itunes-vouchergift-card#comments</comments>
		<pubDate>Fri, 02 Oct 2009 17:17:19 +0000</pubDate>
		<dc:creator>Ashley Ross</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[itunes]]></category>

		<guid isPermaLink="false">http://27.am/?p=46</guid>
		<description><![CDATA[My experience with safely buying a US iTunes voucher was entirely positive, but being scammed isn&#8217;t the only way things can go wrong for a South African iTunes user. I recently came across a post discussing the legality of using &#8230; <a href="http://27.am/posts/the-legal-risks-of-buying-a-us-itunes-vouchergift-card">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My experience with <a href="http://27.am/posts/40/buying-itunes-vouchersgift-cards-online">safely buying</a> a US iTunes voucher was entirely positive, but being scammed isn&#8217;t the only way things can go wrong for a South African iTunes user.</p>
<p>I recently came across a post discussing the <a href="http://webtechlaw.com/legalities-us-itunes-store-vouchers-south-africa">legality of using US iTunes gift cards</a> in South Africa. In short, redeeming the voucher as a South African is a breach of contract, as you are breaking Apple&#8217;s terms and conditions on voucher redemption. The article goes on to cover why Apple includes these terms, and why breaking them may also lead you to break content copyrights.</p>
<p>So what does this mean for us? Effectively, Apple are entitled to terminate offending iTunes accounts on the basis that their terms of service were breached, which may well result in the account owners losing access to any purchased content.</p>
<p>Thus far, Apple have not enforced this, and I&#8217;m hoping they never do. Currently, it&#8217;s in their financial interest to turn a blind eye in favour of increased iTunes voucher sales, but if the content providers push hard enough, Apple&#8217;s stance may change and then we all lose out.</p>
]]></content:encoded>
			<wfw:commentRss>http://27.am/posts/the-legal-risks-of-buying-a-us-itunes-vouchergift-card/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Buying iTunes vouchers/gift cards online</title>
		<link>http://27.am/posts/buying-itunes-vouchersgift-cards-online</link>
		<comments>http://27.am/posts/buying-itunes-vouchersgift-cards-online#comments</comments>
		<pubDate>Tue, 08 Sep 2009 08:59:05 +0000</pubDate>
		<dc:creator>Ashley Ross</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[itunes]]></category>

		<guid isPermaLink="false">http://27.am/?p=40</guid>
		<description><![CDATA[Using an iPhone and iTunes as a South African user sucks. Every iPhone user I know has registered a US iTunes account to get access to apps that are inexplicably* unavailable in South Africa. The only downside is that, without &#8230; <a href="http://27.am/posts/buying-itunes-vouchersgift-cards-online">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Using an iPhone and iTunes as a South African user sucks. Every iPhone user I know has registered a US iTunes account to get access to apps that are inexplicably* unavailable in South Africa. The only downside is that, without a US credit card, the only way to buy apps on the AppStore is by using iTunes vouchers/gift cards. Naturally, getting the vouchers in the first place can be a <a href="http://reviews.ebay.com/How-To-Buy-Itunes-Vouchers-Cards-or-Codes-Safely_W0QQugidZ10000000007586969">risky endeavour</a>.</p>
<p>I decided to take a chance on <a href="http://www.buyfrompowerseller.com/">http://www.buyfrompowerseller.com/</a>, given their <a href="http://feedback.ebay.com/ws/eBayISAPI.dll?ViewFeedback2&#038;userid=buyfrompowerseller&#038;ftab=FeedbackAsSeller">positive eBay feedback profile</a>. The order went in at 18:35 GMT, and 76 minutes later, I had my voucher code; iTunes happily accepted it and my first purchase was entirely without incident. So far I&#8217;m entirely happy, although I&#8217;ll update this post if anything develops.</p>
<p>* <a href="http://criticalthoughtgames.com/node/27">Apparently</a> South African law requires all &#8220;games&#8221; to be reviewed by the Film &#038; Publications Board. Thus, even if an app is set for global distribution in iTunes, it won&#8217;t appear in the South African flavour.</p>
<p><i><b>P.S. 2011/07/19:</b> I recently noticed that buyfrompowerseller.com is currently linking to this review on their affiliate page. For the record, I am not an affiliate of theirs, and I have not received anything from them except the iTunes voucher, which I purchased at full price. &mdash; Ashley</i></p>
]]></content:encoded>
			<wfw:commentRss>http://27.am/posts/buying-itunes-vouchersgift-cards-online/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>redsn0w 0.8 Checksums</title>
		<link>http://27.am/posts/redsn0w-0-8-checksums</link>
		<comments>http://27.am/posts/redsn0w-0-8-checksums#comments</comments>
		<pubDate>Wed, 15 Jul 2009 13:18:46 +0000</pubDate>
		<dc:creator>Ashley Ross</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://27.am/?p=35</guid>
		<description><![CDATA[As it doesn&#8217;t appear to be online elsewhere, here are the checksums for redsn0w 0.8 for Windows: Filename CRC32 MD5 SHA1 redsn0w-win_0.8.zip 45849b42 6b9480bde795f20c62592645ecddec1c b7c3f3e1ec1f9b62fde9030265f2e3623e2576bd &#8985; redsn0w.exe 01324e34 aeb7ac29b1954c992f33335da1e59189 1499f5fad69a2212126096379582204298abf911]]></description>
			<content:encoded><![CDATA[<p>As it doesn&#8217;t appear to be online elsewhere, here are the checksums for redsn0w 0.8 for Windows:</p>
<table>
<thead>
<tr>
<td>Filename</td>
<td>CRC32</td>
<td>MD5</td>
<td>SHA1</td>
</tr>
</thead>
<tbody>
<tr>
<td>redsn0w-win_0.8.zip</td>
<td>45849b42</td>
<td>6b9480bde795f20c62592645ecddec1c</td>
<td>b7c3f3e1ec1f9b62fde9030265f2e3623e2576bd</td>
</tr>
<tr>
<td>&#8985; redsn0w.exe</td>
<td>01324e34</td>
<td>aeb7ac29b1954c992f33335da1e59189</td>
<td>1499f5fad69a2212126096379582204298abf911</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://27.am/posts/redsn0w-0-8-checksums/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Migrating iTunes apps between installs</title>
		<link>http://27.am/posts/migrating-itunes-apps-between-installs</link>
		<comments>http://27.am/posts/migrating-itunes-apps-between-installs#comments</comments>
		<pubDate>Mon, 06 Jul 2009 18:07:01 +0000</pubDate>
		<dc:creator>Ashley Ross</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[itunes]]></category>

		<guid isPermaLink="false">http://27.am/?p=28</guid>
		<description><![CDATA[Ahh, a new PC, a new install of iTunes, and all the apps I downloaded for my iPhone are nowhere to be seen. iTunes doesn&#8217;t offer me a way to redownload all the apps I installed, and what&#8217;s more, when &#8230; <a href="http://27.am/posts/migrating-itunes-apps-between-installs">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ahh, a new PC, a new install of iTunes, and all the apps I downloaded for my iPhone are nowhere to be seen. iTunes doesn&#8217;t offer me a way to redownload all the apps I installed, and what&#8217;s more, when I try to sync my iPhone with the new copy of iTunes, I get the following message:</p>
<blockquote><p>Are you sure you want to sync applications? All existing applications and their data on the iPhone will be replaced with applications from this iTunes library.</p></blockquote>
<p>I&#8217;m not especially inclined to manually redownload all those apps, but nor am I keen on the idea of losing them all. Fortunately, I had not yet nuked the old PC and a quick search revealed that iTunes stores your downloaded apps under <b>My Documents\My Music\iTunes\Mobile Applications</b>. I simply copied all the <b>.IPA</b> files from my old PC over to the new one and then, in iTunes, clicked on <b>File &gt; Add Folder to Library&#8230;</b>, selected the folder, and breathed a sigh of relief as the apps reappeared in the Applications library.</p>
<p>Of course, all this could be avoided if Apple provided a way to back up one&#8217;s Applications library. iTunes does provide a &#8220;Backup&#8221; feature that involves burning your library to CD/DVD, but that isn&#8217;t <i>quite</i> what I had in mind.</p>
]]></content:encoded>
			<wfw:commentRss>http://27.am/posts/migrating-itunes-apps-between-installs/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

