<?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>Tewha &#187; itunes</title>
	<atom:link href="http://tewha.net/tag/itunes/feed/" rel="self" type="application/rss+xml" />
	<link>http://tewha.net</link>
	<description>Writings and links on iPhone and iPad programming</description>
	<lastBuildDate>Sat, 04 Feb 2012 06:19:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Safari 5 extensions</title>
		<link>http://tewha.net/2010/06/safari-5-extensions/</link>
		<comments>http://tewha.net/2010/06/safari-5-extensions/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 06:07:32 +0000</pubDate>
		<dc:creator>Steven Fisher</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[extensions]]></category>
		<category><![CDATA[google reader]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[tynt]]></category>

		<guid isPermaLink="false">http://tewha.net/?p=1115</guid>
		<description><![CDATA[Safari 5 introduces extensions in a simple way. I&#8217;ve already found more useful extensions than I found for Firefox: Tynt-Blocker: Stops copy-paste tracking shenanigans. Autocomplete: Stops banks, etc from disabling autocomplete. No More iTunes: Prevents iTunes from being launched automatically when &#8230; <a href="http://tewha.net/2010/06/safari-5-extensions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Safari 5 introduces extensions in a simple way. I&#8217;ve already found more useful extensions than I found for Firefox:</p>

<ul>
<li>
<a href="http://github.com/bdougherty/tynt-blocker">Tynt-Blocker</a>: Stops copy-paste tracking shenanigans.</li>
    <li>
<a href="http://lapcatsoftware.com/blog/2010/06/10/safari-extension-autocomplete/">Autocomplete</a>: Stops banks, etc from disabling autocomplete.</li>
    <li>
<a href="http://einserver.de/nomoreitunes/">No More iTunes</a>: Prevents iTunes from being launched automatically when you visit an iTunes preview page.</li>
    <li>
<a href="http://rafeed.me/safari-extensions/#GReader-Checker">GReader Checker</a>: Add a button to the toolbar for Google Reader. Shows the number of unread articles.</li>
</ul>

<p>If you haven&#8217;t yet, here&#8217;s <a href="http://safariextensions.tumblr.com/post/680219521/post-how-to-enable-extensions-06-09-10">how to enable extensions</a>. I found most of these through <a href="http://safariextensions.tumblr.com/">Safari Extensions</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://tewha.net/2010/06/safari-5-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iTunes zoom behavior</title>
		<link>http://tewha.net/2009/09/itunes-zoom-behavior/</link>
		<comments>http://tewha.net/2009/09/itunes-zoom-behavior/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 17:46:26 +0000</pubDate>
		<dc:creator>Steven Fisher</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[User interface]]></category>

		<guid isPermaLink="false">http://tewha.net/?p=1067</guid>
		<description><![CDATA[iTunes prior to 9.0 used a click on the zoom widget to convert to the mini player, leaving people like me who actually like to zoom a window option-clicking it. iTunes 9.0 finally fixed this. A click on the zoom &#8230; <a href="http://tewha.net/2009/09/itunes-zoom-behavior/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>iTunes prior to 9.0 used a click on the zoom widget to convert to the mini player, leaving people like me who actually like to zoom a window option-clicking it.</p>

<p>iTunes 9.0 finally fixed this. A click on the zoom widget actually zoomed the window!</p>

<p>iTunes 9.0.1 changed it back to the old behavior. Many people were happy, I imagine. But people who wanted to zoom iTunes windows (or, I imagine, valued standard behavior) were left sad.</p>

<p>It turns out you can get the click-to-zoom behavior back:</p>

<p><code>defaults write com.apple.iTunes zoom-to-window -bool true</code></p>

<p>Tip of the hat to <a href="http://twitter.com/zadr%20">zadr</a> on Twitter for <a href="http://twitter.com/zadr/status/4300874028">this tweet</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://tewha.net/2009/09/itunes-zoom-behavior/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Minimized iTunes player</title>
		<link>http://tewha.net/2009/09/minimized-itunes-player/</link>
		<comments>http://tewha.net/2009/09/minimized-itunes-player/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 18:26:26 +0000</pubDate>
		<dc:creator>Steven Fisher</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[itunes]]></category>

		<guid isPermaLink="false">http://tewha.net/?p=1064</guid>
		<description><![CDATA[Paste this into AppleScript Editor: ? tell application "iTunes" repeat with b in browser windows set the minimized of b to true end repeat end tell 1 2 3 4 5 tell application "iTunes" repeat with b in browser windows &#8230; <a href="http://tewha.net/2009/09/minimized-itunes-player/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Paste this into AppleScript Editor:</p>

<div class="highlight-wrapper applescript">
<div class="tools">
<div class="wrap">
<a href="#" class="about">?</a><div class="clear"></div>
</div>
<div class="clear"></div>
</div>
<pre class="raw"><code lang="applescript">
tell application "iTunes"
    repeat with b in browser windows
        set the minimized of b to true
    end repeat
end tell
</code></pre>
<div class="highlighted"><table class="highlighttable"><tr>
<td class="linenos"><div class="linenodiv"><pre class="nl">1
2
3
4
5</pre></div></td>
<td class="code">
<div class="highlight"><pre><span class="k">tell</span> <span class="nb">application</span> <span class="s2">"iTunes"</span>
    <span class="k">repeat</span> <span class="nv">with</span> <span class="nv">b</span> <span class="k">in</span> <span class="nb">browser</span> <span class="nb">windows</span>
        <span class="k">set</span> <span class="nb">the</span> <span class="nv">minimized</span> <span class="k">of</span> <span class="nv">b</span> <span class="k">to</span> <span class="no">true</span>
    <span class="k">end</span> <span class="k">repeat</span>
<span class="k">end</span> <span class="k">tell</span>
</pre></div>
</td>
</tr></table></div>
</div>

<p>Save it in ~/Library/Scripts. And while you&#8217;re in AppleScript Editor, turn on <strong>Show Script menu in menu bar</strong> and <strong>Show Computer scripts</strong>. Now you have a command to show iTunes&#8217;s mini player at any time.</p>

<p>If you&#8217;ve got a good way to launch AppleScripts, you can install it there, too.</p>

<p><strong>Update:</strong> Apple has changed this back in iTunes 9.0.1. See <a href="http://tewha.net/2009/09/itunes-zoom-behavior/">iTunes zoom behavior</a> if you liked the iTunes 9.0 way.</p>
]]></content:encoded>
			<wfw:commentRss>http://tewha.net/2009/09/minimized-itunes-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Palm doesn&#8217;t need iTunes to sync music to the Pre</title>
		<link>http://tewha.net/2009/07/palm-doesnt-need-itunes-to-sync-music-to-the-pre-2/</link>
		<comments>http://tewha.net/2009/07/palm-doesnt-need-itunes-to-sync-music-to-the-pre-2/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 02:12:13 +0000</pubDate>
		<dc:creator>Steven Fisher</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[palm]]></category>
		<category><![CDATA[Palm Pre]]></category>

		<guid isPermaLink="false">http://tewha.net/?p=931</guid>
		<description><![CDATA[Palm&#8217;s USB trick to get iTunes to load the Pre was a clever, if unethical ((Yes, I mean unethical. Of course it&#8217;s unethical to promote a feature you have no control over that could disappear in instant. And especially when &#8230; <a href="http://tewha.net/2009/07/palm-doesnt-need-itunes-to-sync-music-to-the-pre-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Palm&#8217;s USB trick to get iTunes to load the Pre was a clever, if unethical ((Yes, I mean unethical. Of course it&#8217;s unethical to promote a feature you have no control over that could disappear in instant. And especially when it probably will.)), hack.</p>

<p>Today, iTunes 8.2.1 broke that. But despite the ridiculous accusations of lock in, Palm doesn&#8217;t need the Pre to sync music to the iTunes.</p>

<p>iTunes saves its entire music index as an XML file in <code>iTunes Music Library.xml</code>. It&#8217;s XML. Palm can open it, read it, and get whatever they want.</p>

<p>New music is unencumbered by DRM. There&#8217;s an exception, music bought before DRM was removed, but Palm wasn&#8217;t able to play that before.</p>

<p>And, of course, the USB bus is available to any Mac or Windows application programmer.</p>

<p>So, then, nothing stops Palm from shipping a Pre Music Sync program. All it would have to do:</p>

<ul>
<li>Read the XML file.</li>

    <li>Grab the music using standard file I/O.</li>

    <li>Send the music to the Pre over USB.</li>

</ul>

<p>If Palm is less dumb than a sack of hammers, they expected Apple might fix how they validate the iPhone to exclude the Pre&#8217;s tricks.</p>

<p>If Palm is less dumb than a sack of hammers, they would already have a Pre Music Sync program almost ready for deployment. ((But Palm being Palm, you should probably expect a Pre Music Sync program some time in October or November.))</p>

<p>In fact, this should have been their solution all along. Why wasn&#8217;t it? Well, assuming Palm isn&#8217;t a bunch of idiots ((And, again, this is Palm.)), Palm probably didn&#8217;t have their music sync program ready. Ship the hack or slip the date? And somewhere along the line, some marketing type probably decided that impersonating an iPod was a good idea. They wanted a bullet point that it worked without installing software. Well, now Palm is going to have to write software and get users to install it.</p>

<p>They just did an entire OS. I think they can handle Pre Music Sync. And if they can&#8217;t, I&#8217;m sure Markspace can handle it with <a href="http://www.markspace.com/">The Missing Sync</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://tewha.net/2009/07/palm-doesnt-need-itunes-to-sync-music-to-the-pre-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are you sure?</title>
		<link>http://tewha.net/2008/12/are-you-sure/</link>
		<comments>http://tewha.net/2008/12/are-you-sure/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 22:12:50 +0000</pubDate>
		<dc:creator>Steven Fisher</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[iTunes Store]]></category>
		<category><![CDATA[nagging]]></category>
		<category><![CDATA[stupid design]]></category>

		<guid isPermaLink="false">http://tewha.net/?p=676</guid>
		<description><![CDATA[My biggest pet peeve in iTunes is undoubtably how it asks you &#8220;Are you sure?&#8221; before doing anything, and always in an unhelpful way. As an example, I mentioned to my wife a Christmas album I used to love. I &#8230; <a href="http://tewha.net/2008/12/are-you-sure/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My biggest pet peeve in iTunes is undoubtably how it asks you &#8220;Are you sure?&#8221; before doing anything, and always in an unhelpful way.</p>

<p>As an example, I mentioned to my wife a Christmas album I used to love. I spotted it in the iTunes Store and clicked Buy Album ((After discussing it with my wife, of course.)). iTunes &#8220;helpfully&#8221; asked me:</p>

<p><a href="/wp-content/uploads/2008/12/areyousure.png"><img class="alignnone size-full wp-image-677" title="areyousure" src="http://tewha.net/wp-content/uploads/2008/12/areyousure.png" alt="" width="500" height="245"></a></p>

<p>This is a completely useless confirmation screen. If — and we&#8217;re talking hypothetical here — I considered $7.99 a big purchase and needed a confirmation screen for it, wouldn&#8217;t I want to know the price, too? Wouldn&#8217;t this dialog make more sense as:</p>

<p><strong>Are you sure you want to spend $7.99 on an 80s Christmas album?</strong></p>

<p>Really, you&#8217;re being a bit impulsive here. That&#8217;s cool, we&#8217;ll take your money, but we want to make sure you&#8217;ve checked with your wife first.</p>

<p>(Okay, not actually those words. But something involving the price.)</p>

<p>But instead, I&#8217;ll shake my head at the idiocy, of click &#8220;Don&#8217;t ask me about buying albums again,&#8221; and never see the warning again. What was the point, then?</p>
]]></content:encoded>
			<wfw:commentRss>http://tewha.net/2008/12/are-you-sure/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Could the MSN Music shut down have been calculated?</title>
		<link>http://tewha.net/2008/05/could-the-msn-music-shut-down-have-been-calculated/</link>
		<comments>http://tewha.net/2008/05/could-the-msn-music-shut-down-have-been-calculated/#comments</comments>
		<pubDate>Sat, 31 May 2008 02:26:35 +0000</pubDate>
		<dc:creator>Steven Fisher</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[black helicopters]]></category>
		<category><![CDATA[conspiracy theory]]></category>
		<category><![CDATA[drm]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[msnmusic]]></category>

		<guid isPermaLink="false">http://tewha.net/?p=515</guid>
		<description><![CDATA[Macworld &#124; A year after iTunes Plus, Apple faces stepped-up competition &#8211; Page 2 Music services shutting down may let DRM finally shows its teeth. [...] Microsoft is one company that’s recently had to deal with just this sort of &#8230; <a href="http://tewha.net/2008/05/could-the-msn-music-shut-down-have-been-calculated/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.macworld.com/article/133667-2/2008/05/stateofdrm.html">Macworld | A year after iTunes Plus, Apple faces stepped-up competition &#8211; Page 2</a></p>

<blockquote>Music services shutting down may let DRM finally shows its teeth.

[...]

Microsoft is one company that’s recently had to deal with just this sort of problem. The company’s MSN Music venture stopped selling music in 2006, but only recently announced its intention to shut down the servers that let users continue to play purchased music at the end of this summer. Past that point, those users will only be able to play their music as long as they keep using the same computer and operating system. But if they upgrade either hardware or software, they’re out of luck.</blockquote>

<p>Wait, wait. Back up just a bit. Is it possible that Microsoft shutting down MSN Music wasn&#8217;t just stupid, but calculated? There&#8217;s no question that MSN Music&#8217;s shut down has raised the profile of DRM a bit. At this point, could the labels themselves want people soured from DRM so they&#8217;re soured from the iTunes store?</p>

<p>Just a crazy conspiracy theory, right?</p>
]]></content:encoded>
			<wfw:commentRss>http://tewha.net/2008/05/could-the-msn-music-shut-down-have-been-calculated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: tewha.net @ 2012-02-08 02:28:11 -->
