<?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>DyeWeb.com &#187; Macintosh &amp; OSX</title>
	<atom:link href="http://dyeweb.com/thoughts/category/macintosh-osx/feed/" rel="self" type="application/rss+xml" />
	<link>http://dyeweb.com</link>
	<description>The blog &#38; portfolio of Scott Dye</description>
	<lastBuildDate>Thu, 26 Aug 2010 14:14:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>The new iPod Thimble!</title>
		<link>http://dyeweb.com/thoughts/54/the-new-ipod-thimble/</link>
		<comments>http://dyeweb.com/thoughts/54/the-new-ipod-thimble/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 19:13:15 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Macintosh & OSX]]></category>

		<guid isPermaLink="false">http://dyeweb.com/?p=54</guid>
		<description><![CDATA[Apple introduced their latest incarnation of the iPod Shuffle this week...and get ready for it...it's even smaller than the previous one. Wow, how much smaller can it get? The new shuffle now features the ability to talk to you as well, which is a clever/necessary/gimmicky (take your pick) way to offset the fact it has pretty [...]]]></description>
			<content:encoded><![CDATA[<p><div id="attachment_55" class="wp-caption alignright" style="width: 160px"><img class="size-full wp-image-55 " style="border: 0px initial initial;" title="ipod shuffle" src="http://dyeweb.com/wp-content/uploads/2009/03/ipodshuffle.jpg" alt="The new iPod shuffle by Apple." width="150" height="175" /><p class="wp-caption-text">The new iPod shuffle by Apple.</p></div>Apple introduced their <a href="http://www.apple.com/ipodshuffle/">latest incarnation of the iPod Shuffle</a> this week...and get ready for it...it's even smaller than the previous one. Wow, how much smaller can it get?</p>
<p>The new shuffle now features the ability to talk to you as well, which is a clever/necessary/gimmicky (take your pick) way to offset the fact it has pretty much no interface. I’d be interested to see how well this works, or if it’s just annoying. The new shuffle now comes in silver or black aluminum.</p>
<p>From what it appears, you must use the earbuds that come with it, because the controls are on the earbud cord itself. I’m not sure what I think of this. Lots of people have a very personal relationship with their earbuds, and I think it’s key to allow people to use earbuds of their own choosing. I’ve got to give credit to Apple, though – when they do something so bold as to force you to use their own earbuds exclusively, they at least give you a compelling reason why you should. It doesn't hurt that forcing the use of the iconic white earbuds is a marketing coup for Apple as well.</p>
<p>There is an ironic thing about the direction Apple is going with some of their UI, though...they are eliminating buttons, but adding all sorts of clicking schemes to offset the lack of buttons. Short click, long click, double click, click and keep holding...is that really better than just having a couple more buttons? It’s funny to me, because the reason Jobs &amp; Company always said they wanted the one button mouse is because two buttons confused the user...they never knew when to use which button. Well, at least in that case they could see the options...if you don’t read the manual (and who does), I’m sure lots of people will not even realize what various types of clicks this new controller has, because they will assume it has only one button, when in reality, it has multiple buttons, depending on how you click it.</p>
<p>I thought this new iPod thimble was pretty cool, and then, when I told my wife “Hey, Apple announced a new iPod Shuffle like the one you have, except this one is even smaller.” She responded immediately with a simple “Why?”</p>
<p>I still haven’t come up with an answer to her...</p>
]]></content:encoded>
			<wfw:commentRss>http://dyeweb.com/thoughts/54/the-new-ipod-thimble/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get the current username using Applescript</title>
		<link>http://dyeweb.com/thoughts/37/get-the-current-username-using-applescript/</link>
		<comments>http://dyeweb.com/thoughts/37/get-the-current-username-using-applescript/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 14:59:49 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Applescript]]></category>
		<category><![CDATA[Macintosh & OSX]]></category>

		<guid isPermaLink="false">http://dyeweb.com/thoughts/37/get-the-current-username-using-applescript/</guid>
		<description><![CDATA[For various reasons while creating Applescripts, I've had a need for the script to know which computer it was on, since I am writing scripts for several co-workers to use. The easiest way to do so for me was to use each computer's username (the shortname OS X uses for the home directory). It's a [...]]]></description>
			<content:encoded><![CDATA[<p>For various reasons while creating Applescripts, I've had a need for the script to know which computer it was on, since I am writing scripts for several co-workers to use. The easiest way to do so for me was to use each computer's username (the shortname OS X uses for the home directory). It's a pretty easy thing to extract from the home path:</p>
<p>[code lang="applescript"]<br />
set userHome to (text of word -1 of (path to home folder as text))</p>
<p>display dialog userHome<br />
[/code]</p>
<p>This has worked well for me to be able to purge the script's property settings whenever the script gets passed on to someone else (otherwise it seems to keep the property assignments on the new computer as well. Also, it's set up just in case I ever need to fork code for a particular user if their computer setup happens to have something that just won't work with the way the rest of the other computers are set up (hopefully that will <strong>not</strong> be necessary, but you just never know).</p>
<p>edit:<br />
Well as usual, there's an easier way:</p>
<p>[code lang="applescript"]<br />
set userHome to (short user name of (system info))</p>
<p>display dialog userHome<br />
[/code]</p>
]]></content:encoded>
			<wfw:commentRss>http://dyeweb.com/thoughts/37/get-the-current-username-using-applescript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iTunes 7 and the Audiobooks Tab</title>
		<link>http://dyeweb.com/thoughts/29/itunes-7-and-the-audiobooks-tab/</link>
		<comments>http://dyeweb.com/thoughts/29/itunes-7-and-the-audiobooks-tab/#comments</comments>
		<pubDate>Thu, 21 Sep 2006 13:48:07 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Macintosh & OSX]]></category>

		<guid isPermaLink="false">http://dyeweb.com/?p=29</guid>
		<description><![CDATA[Overall, I really like the new changes in iTunes 7. The new Cover Flow view is really great - being a visual person this appeals greatly to me. I even re-discovered several songs that I had forgotten I had just by flipping through the album art - it feels much more akin to the traditional [...]]]></description>
			<content:encoded><![CDATA[<p><img src='/wp-content/20060921itunes.jpg' alt='iTunes' align='right' />Overall, I really like the new changes in <a href="http://www.apple.com/itunes/overview/">iTunes 7</a>. The new <a href=" http://www.apple.com/itunes/jukebox/coverflow.html">Cover Flow</a> view is really great - being a visual person this appeals greatly to me. I even re-discovered several songs that I had forgotten I had just by flipping through the album art - it feels much more akin to the traditional way of looking through your CD/Album collection.</p>
<p>However, one thing I am very unhappy about is slow but steady slide toward "the new Apple way" - and making iTunes more of a proprietary experience, instead of an open experience with the iTunes store as an added value. This is especially apparent in how iTunes 7 handles Audio books.  <span id="more-29"></span></p>
<p>Apple has done a good thing by separating out Music, Audio Books, Movies, TV Shows, and Podcasts into their own separate areas. However, Apple alone has decided what goes in each of the new "categories". They make up their own rules, instead of allowing us to decide which files show up where. For instance, by default, my large collection of audio books are now split up between the Audiobooks tab and the music tab. I have a lot of older audio books that are still .mp3 files - Apple decides that only files with an extension of .M4B (a bookmarkable AAC format, the same they use for their own store) should count as audio books. </p>
<p><a href="http://www.dougscripts.com/itunes/scripts/ss.php?sp=makebookmarkable">Doug's Applescripts</a> has a handy script that will take the files that aren't showing up in the audiobooks tab, covert them to .M4B files and remove and re-add them to your iTunes library, which will then show up in the proper tab.</p>
<p>However, I would much prefer a way to choose where my Audio Books show up (that is the point of the Genre tag, after all), than by forcing me to convert all of my files to a different format.</p>
]]></content:encoded>
			<wfw:commentRss>http://dyeweb.com/thoughts/29/itunes-7-and-the-audiobooks-tab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One more OS9 user bites the dust (almost)</title>
		<link>http://dyeweb.com/thoughts/17/upgraded-to-osx/</link>
		<comments>http://dyeweb.com/thoughts/17/upgraded-to-osx/#comments</comments>
		<pubDate>Sun, 23 Oct 2005 03:48:53 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Macintosh & OSX]]></category>

		<guid isPermaLink="false">http://dyeweb.com/?p=17</guid>
		<description><![CDATA[After lots and lots of nudging, begging, and (mostly) waiting on my part...my father has finally taken the leap into OS X. Thank goodness! He decided to buy a 12" Powerbook after using mine a few times. He has various Macs he uses for his business - 2 G4 towers, 2 Wallstreet Powerbooks, and a [...]]]></description>
			<content:encoded><![CDATA[<p>After lots and lots of nudging, begging, and (mostly) waiting on my part...<a href="http://www.burtondye.com">my father</a> has finally taken the leap into OS X. Thank goodness!<br />
<span id="more-17"></span> </p>
<p>He decided to buy a 12" Powerbook after using mine a few times. He has various Macs he uses for his business - 2 G4 towers, 2 Wallstreet Powerbooks, and a Bondi blue iMac. He's resisted upgrading for understandable reasons:</p>
<ul>
<li>he knows OS 9 (and has few problems with it, at least in his perception)</li>
<li>he uses two large format inkjet printers with various papers, and has all the needed settings figured out (which took a while to get straight)</li>
<li>the Point-of-purchase software he uses to manage the business stopped development at OS 9. The software does everything he needs, and he is not interested in spending the time and effort to migrate to a new system</li>
</ul>
<p>The funny part is that now that he has made the upgrade, he has ended up with a newer version than me! Tiger came with his new computer, and I'm still using Panther. </p>
<p>He's starting to get it. It's neat to see. On the phone today he asked me if Dashboard was new to Tiger. I told him it was and he replied "it's pretty neat." I knew it would be perfect for him to check stock prices whenever my grandfather called to ask how his stocks were doing. He's already using it for that, after only three days. </p>
<p>Pretty cool.</p>
]]></content:encoded>
			<wfw:commentRss>http://dyeweb.com/thoughts/17/upgraded-to-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

