<?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>Rusty Razor Blade &#187; apple</title>
	<atom:link href="http://www.rustyrazorblade.com/category/apple/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rustyrazorblade.com</link>
	<description>Tech Thoughts, Mostly on LAMP - by Jon Haddad</description>
	<lastBuildDate>Wed, 21 Jul 2010 20:42:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MacBook Air Conclusion</title>
		<link>http://www.rustyrazorblade.com/2010/04/macbook-air-conclusion/</link>
		<comments>http://www.rustyrazorblade.com/2010/04/macbook-air-conclusion/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 21:25:10 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[apple]]></category>

		<guid isPermaLink="false">http://www.rustyrazorblade.com/?p=1070</guid>
		<description><![CDATA[
I made a post back in December regarding my MacBook Air and a battery life issue.  
About 2 weeks ago, I brought the Air back to the Apple store again, despite being completely shot down the first time.  I had a 12:30 appointment, got there right at 12:30, but no one talked to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.rustyrazorblade.com/wp-content/uploads/2010/04/358B0C2A-FB2E-462B-BE28-05D8D4D47AC9.jpg" alt="358B0C2A-FB2E-462B-BE28-05D8D4D47AC9.jpg" border="0" width="107" height="129" align="right" /></p>
<p>I made a <a href="/2009/12/macbook-air-battery-drain-while-sleeping/">post back in December</a> regarding my MacBook Air and a battery life issue.  </p>
<p>About 2 weeks ago, I brought the Air back to the Apple store again, despite being completely shot down the first time.  I had a 12:30 appointment, got there right at 12:30, but no one talked to me for a few minutes, so by the time I got someone&#8217;s attention, I was informed since I was late, they cancelled my appointment. </p>
<p>At this point, one of the non-genius people saw how frustrated I was and came over to talk to me. I explained the situation, and she told me I could do a drop-off thing where I leave it with them. I got a call the next day, they can&#8217;t figure out what&#8217;s wrong with my Air and I&#8217;m getting a new laptop.  Amazing that it took so long to get to this point &#8211; considering I haven&#8217;t been able to use the computer regularly for the entire year. I tried to get them to let me upgrade to a MB Pro, but no dice.</p>
<p>I got the call today that my new Air was ready for pickup.  I showed up at the store, and asked the guy again about swapping the Air for a Pro (paying the difference, of course).  Apparently now it&#8217;s not a problem.</p>
<p>Conclusion: the battery drain was because the computer was completely hosed.  New computer seems awesome.  I am happy again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rustyrazorblade.com/2010/04/macbook-air-conclusion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux/OSX: find out what network ports are in use</title>
		<link>http://www.rustyrazorblade.com/2010/01/linuxosx-find-out-what-network-ports-are-in-use/</link>
		<comments>http://www.rustyrazorblade.com/2010/01/linuxosx-find-out-what-network-ports-are-in-use/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 19:21:07 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.rustyrazorblade.com/?p=951</guid>
		<description><![CDATA[To get a quick idea of what ports you have open on your local box, you can use nmap.

~ jhaddad$ nmap localhost
Starting Nmap 5.00 ( http://nmap.org ) at 2010-01-05 11:06 PST
Interesting ports on localhost (127.0.0.1):
Not shown: 499 closed ports, 492 filtered ports
PORT      STATE SERVICE
80/tcp    open  http
88/tcp [...]]]></description>
			<content:encoded><![CDATA[<p>To get a quick idea of what ports you have open on your local box, you can use nmap.</p>
<blockquote><p>
~ jhaddad$ nmap localhost<br />
Starting Nmap 5.00 ( http://nmap.org ) at 2010-01-05 11:06 PST<br />
Interesting ports on localhost (127.0.0.1):<br />
Not shown: 499 closed ports, 492 filtered ports<br />
PORT      STATE SERVICE<br />
80/tcp    open  http<br />
88/tcp    open  kerberos-sec<br />
548/tcp   open  afp<br />
631/tcp   open  ipp<br />
3306/tcp  open  mysql<br />
3325/tcp  open  unknown<br />
5900/tcp  open  vnc<br />
9000/tcp  open  cslistener<br />
10000/tcp open  snet-sensor-mgmt
</p></blockquote>
<p>For more detailed information, try netstat:</p>
<blockquote><p>netstat -an</p></blockquote>
<p>You&#8217;ll get a breakdown of every socket open on your machine &#8211; useful for figuring out who&#8217;s connected and from where.</p>
<p>The OSX version of netstat lacks a few options &#8211; such as the useful &#8216;-p&#8217; option to display the process id (PID) &#8211; which can be useful combined with kill to get rid of unwanted connections &#8211; for instance,an SSH tunnel accidentally left open.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rustyrazorblade.com/2010/01/linuxosx-find-out-what-network-ports-are-in-use/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MacBook Air Battery Drain While Sleeping</title>
		<link>http://www.rustyrazorblade.com/2009/12/macbook-air-battery-drain-while-sleeping/</link>
		<comments>http://www.rustyrazorblade.com/2009/12/macbook-air-battery-drain-while-sleeping/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 19:54:53 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.rustyrazorblade.com/?p=948</guid>
		<description><![CDATA[I bought a MacBook Air in June this year, refurbished.  I didn&#8217;t really use it a lot for day to day work, and when I didn&#8217;t use it I was charging it.  It was very convenient &#8211; it weighs practically nothing and has almost no impact on me while traveling.  When I [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.rustyrazorblade.com/wp-content/uploads/2009/12/CCF3038A-5A01-412B-B13C-7F24B836F6DC.jpg" alt="CCF3038A-5A01-412B-B13C-7F24B836F6DC.jpg" border="0" width="127" height="95" align="right" />I bought a MacBook Air in June this year, refurbished.  I didn&#8217;t really use it a lot for day to day work, and when I didn&#8217;t use it I was charging it.  It was very convenient &#8211; it weighs practically nothing and has almost no impact on me while traveling.  When I cut back on using it, I noticed a few things.</p>
<ol>
<li>When I&#8217;d leave it unplugged for a few days, the battery would be dead.  After a bit of testing I noticed I was losing roughly 25% of my battery life overnight if it wasn&#8217;t unplugged.
</li>
<li>It started creaking when I&#8217;d open it.  I was genuinely concerned it would just fall apart when I was trying to open it.</li>
</ol>
<p>Obviously both of these things suck, so after a bit I brought it to the Apple store.  They pretty much replaced everything in it &#8211; battery, logic board, screen bezel, hinges, and gave it back to me.  So problem #2 was solved, but for some reason I kept seeing the battery issue.</p>
<p>I brought it back Monday of this week.  The guy there (Ryan) explained to me that since I wasn&#8217;t up to date w/ my software, the tech guys would basically just give it back and refuse to work on it.  He suggested resetting the PRAM and calibrating the battery.  He also didn&#8217;t seem to think that losing 25% battery overnight was weird, even though I&#8217;ve owned 2 MacBook Pros and 2 iBooks that never had this issue &#8211; I could leave my MacBook Pro unplugged for days and it would only lose a few %.  </p>
<p>I did these things, but it didn&#8217;t make a difference.  It was only after a ton of looking around that someone suggested turning off bluetooth.</p>
<p>After turning off bluetooth, I let the laptop sit overnight in sleep.  I checked it the next morning, and it was only down 4% from the night before.  Huge improvement.  I think I could have accomplished the same thing if I turned off the &#8220;Allow Bluetooth devices to wake this computer&#8221; setting, but since I&#8217;m not using it, I&#8217;d rather just disable it.</p>
<p>Anyway, if anyone knows anything else about this issue, I&#8217;m interested to find out more.  I like the Air as a &#8220;sit on the couch and browse the web&#8221; laptop, hate it for doing any sort of IDE development.  Also not great for playing Scrabble on Facebook &#8211; it can&#8217;t hold the entire board on the screen.  Lame.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rustyrazorblade.com/2009/12/macbook-air-battery-drain-while-sleeping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mono Install Bug (Found when using Eclipse)</title>
		<link>http://www.rustyrazorblade.com/2009/05/mono-install-bug-found-when-using-eclipse/</link>
		<comments>http://www.rustyrazorblade.com/2009/05/mono-install-bug-found-when-using-eclipse/#comments</comments>
		<pubDate>Fri, 08 May 2009 19:52:56 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[mono]]></category>

		<guid isPermaLink="false">http://www.rustyrazorblade.com/?p=744</guid>
		<description><![CDATA[I got this error after installing the Mono framework on MacOS X 10.5.6 and trying to set up a new project with eclipse.
NAnt 0.86 (Build 0.86.2898.0; beta1; 12/08/2007)
Copyright (C) 2001-2007 Gerry Shaw
http://nant.sourceforge.net
For more information regarding the cause of the build failure, run the build again in debug mode.
Try &#8216;nant -help&#8217; for more information
BUILD FAILED
Failed to [...]]]></description>
			<content:encoded><![CDATA[<p>I got this error after installing the Mono framework on MacOS X 10.5.6 and trying to set up a new project with eclipse.</p>
<blockquote><p>NAnt 0.86 (Build 0.86.2898.0; beta1; 12/08/2007)<br />
Copyright (C) 2001-2007 Gerry Shaw<br />
http://nant.sourceforge.net</p>
<p>For more information regarding the cause of the build failure, run the build again in debug mode.</p>
<p>Try &#8216;nant -help&#8217; for more information</p>
<p>BUILD FAILED</p>
<p>Failed to initialize the &#8216;Mono 3.5 Profile&#8217; (mono-3.5) target framework.</p>
<p>    Function call failed.<br />
Expression: ${not pkg-config::exists(&#8217;mono&#8217;)}<br />
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^</p>
<p>        &#8216;pkg-config&#8217; failed to start.</p>
<p>            ApplicationName=&#8217;pkg-config&#8217;, CommandLine=&#8217;&#8211;exists mono&#8217;, CurrentDirectory=&#8217;/Library/Frameworks/Mono.framework/Versions/2.4/share/NAnt/bin/&#8217;
</p></blockquote>
<p>A few google searches suggested that this might be because pkg-config wasn&#8217;t installed &#8211; but it&#8217;s included in the Mono distribution.  I finally realized the symlink wasn&#8217;t being created in by the Mono installer.  Running the below command fixed everything.</p>
<blockquote><p>sudo ln -s /Library/Frameworks/Mono.framework/Commands/pkg-config /usr/bin/pkg-config</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.rustyrazorblade.com/2009/05/mono-install-bug-found-when-using-eclipse/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Geek Links</title>
		<link>http://www.rustyrazorblade.com/2009/04/geek-links/</link>
		<comments>http://www.rustyrazorblade.com/2009/04/geek-links/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 22:25:11 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.rustyrazorblade.com/?p=652</guid>
		<description><![CDATA[
PHP Quick Profiler

This looks like a pretty cool tool to get a good idea of what&#8217;s going on in your PHP script without having to install tools like XDebug and Webgrind / KCacheGrind.
Apple files patent for browser specific volume
I&#8217;m not sure how this is anything new, tons of applications have their own volume setting.  [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://particletree.com/features/php-quick-profiler/">PHP Quick Profiler</a>
</li>
<p>This looks like a pretty cool tool to get a good idea of what&#8217;s going on in your PHP script without having to install tools like XDebug and <a href="http://code.google.com/p/webgrind/">Webgrind </a>/ <a href="http://kcachegrind.sourceforge.net/html/Home.html">KCacheGrind</a>.</p>
<li><a href="http://www.theregister.co.uk/2009/04/23/browser_silencer/">Apple files patent for browser specific volume</a></li>
<p>I&#8217;m not sure how this is anything new, tons of applications have their own volume setting.  Quicktime, VLC, Windows Media Player.  </p>
<li><a href="http://www.theregister.co.uk/2009/04/23/myspace_ceo_steps_down/">Chris DeWolfe bails as MySpace CEO</a></li>
<p>Doesn&#8217;t seem like such a bad idea to get out now.  It&#8217;s essentially just a giant ad for Fox TV shows and movies.  </p>
<li><a href="http://joeldowns.com/2009/04/23/tivo-add-an-app-store-now/">Tivo App Store</a></li>
<p>Joel Downs believes Tivo should open an app store.  I suppose if they are going to continue with their business model, it would make sense, since it probably won&#8217;t be long till the Xbox has Tivo functionality.  It might already, but I wouldn&#8217;t know.</p>
<li><a href="http://www.techcrunch.com/2009/04/23/apples-app-store-1-billion-served/">App store hits 1 billion downloads</a></li>
<p>Speaking of an App store, Apple seems to be doing OK.  The sad thing is I still haven&#8217;t thought of an interesting app to write.
</ul>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rustyrazorblade.com/2009/04/geek-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Mac Mini Now Supports Dual Monitors</title>
		<link>http://www.rustyrazorblade.com/2009/04/the-mac-mini-now-supports-dual-monitors/</link>
		<comments>http://www.rustyrazorblade.com/2009/04/the-mac-mini-now-supports-dual-monitors/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 22:21:13 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[apple]]></category>

		<guid isPermaLink="false">http://www.rustyrazorblade.com/?p=545</guid>
		<description><![CDATA[The Mac Mini is now capable of running dual monitors.  This, to me, is huge.  It&#8217;s a machine that comes in a decent price that developers are used to, while allowing us to keep our dignity and use our own monitors.  
A few months ago, I bought a triplehead2go, and I ran [...]]]></description>
			<content:encoded><![CDATA[<p>The Mac Mini is now capable of running dual monitors.  This, to me, is huge.  It&#8217;s a machine that comes in a decent price that developers are used to, while allowing us to keep our dignity and use our own monitors.  </p>
<p>A few months ago, I bought a <a href="http://www.matrox.com/graphics/en/products/gxm/th2go/">triplehead2go</a>, and I ran 3 20 inch monitors.  Then I got greedy, and decided to step it up to 2 26&#8243; screens (the LG W2600 to be exact).  Unfortunately, the triplehead2go doesn&#8217;t support 2 monitors running at 1920&#215;1200, and my <a href="http://support.apple.com/kb/HT3232">MacBook pro</a> certainly didn&#8217;t have dual video cards.  The latest round of Mac Minis support dual monitors just fine.</p>
<p><a href="http://www.apple.com/macmini/specs.html">Mac Mini Specs:</a></p>
<blockquote><p>AirPort Extreme (802.11n)5<br />
Bluetooth 2.1 + EDR (Enhanced Data Rate)<br />
Gigabit Ethernet port<br />
One FireWire 800 port (up to 800 Mbps)<br />
Five USB 2.0 ports (up to 480 Mbps)<br />
<strong>Mini DisplayPort video out<br />
Mini-DVI video out</strong><br />
Combined optical digital<br />
audio input/audio line in<br />
Combined optical digital<br />
audio output/headphone out</p></blockquote>
<blockquote><p>Extended desktop and video mirroring: Simultaneously supports up to 1920 by 1200 pixels on a DVI or VGA display; up to 2560 by 1600 pixels on a dual-link DVI display using Mini DisplayPort to Dual-Link DVI Adapter (sold separately)</p></blockquote>
<p><img src="http://www.rustyrazorblade.com/wp-content/uploads/2009/04/gallery-big-03.jpg" alt="Back of mac mini" title="mac mini back" width="490" height="299" class="size-full wp-image-549" /></p>
<p>If you were waiting on this like I was, well, buy one&#8230; like I did.  And before you ask, yes, I did hook up an external 7200 RPM drive.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rustyrazorblade.com/2009/04/the-mac-mini-now-supports-dual-monitors/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>I Like the Genius feature of iTunes</title>
		<link>http://www.rustyrazorblade.com/2008/11/i-like-the-genius-feature-of-itunes/</link>
		<comments>http://www.rustyrazorblade.com/2008/11/i-like-the-genius-feature-of-itunes/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 23:36:40 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[itunes]]></category>

		<guid isPermaLink="false">http://www.rustyrazorblade.com/?p=294</guid>
		<description><![CDATA[There&#8217;s a lot of people who don&#8217;t seem to like the genius feature of iTunes.  In fact, quite a few seem to hate it.
The complaints vary.  I&#8217;m still confused by this complaint by my friend David.  He wants iTunes to recognize band names after he&#8217;s changed them.  If a band has [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a lot of people who <a href="http://www.tuaw.com/2008/09/09/my-itunes-genius-is-a-moron/">don&#8217;t</a> <a href="http://arstechnica.com/news.ars/post/20080912-new-itunes-genius-not-so-smart-some-of-the-time.html">seem</a> to <a href="http://www.davidgagne.net/2008/09/09/not-quite-genius/">like</a> the genius feature of iTunes.  In fact, quite a few seem to hate it.</p>
<p>The complaints vary.  I&#8217;m still confused by this complaint <a href="http://www.davidgagne.net/2008/09/09/not-quite-genius/">by my friend David</a>.  He wants iTunes to recognize band names after he&#8217;s changed them.  If a band has a name, why should iTunes still recognize the band name after you&#8217;ve changed it?  </p>
<p>Of course, there&#8217;s always things that can be improved.  Here&#8217;s a few ideas that I&#8217;d like to see, in no particular order.</p>
<ul>
<li>Do not include songs that I&#8217;ve rated less than 3.  </li>
<p>There&#8217;s a reason why a song in my library has a 2.  Lets just assume I know that I don&#8217;t particularly like a song that I&#8217;ve given a 1 or 2.  Or, make it an option.  If it already is, then I&#8217;m a jackass and I can&#8217;t find it.  Leave a comment letting me know where it is, if this is the case, and I&#8217;ll gladly choose it.  Or, it could be solved by the next feature&#8230;..</p>
<li>Let me pick which playlists genius selects from</li>
<p>Say I&#8217;ve got a playlist of &#8220;songs I never heard&#8221;, which might be 8 thousand songs.  I&#8217;d like genius to pick songs similar to &#8220;Cyanide&#8221; off the Death Magnetic Metallica Album, but only ones I&#8217;ve never heard before.  Why?  To do it&#8217;s job and find my music I&#8217;ve got stashed away and have no clue what it is.</p>
<li>Let me add songs to the playlists that I opt to save.</li>
<p>The current version of the genius playlists do not allow me to add songs that I feel are appropriate.  That&#8217;s kind of a bummer, because if I click refresh, and then realize a great song was left off, I&#8217;m stuck.  The only solution right now is to select all and create a new playlist from selection (shift apple n).  Not terribly inconvenient, and I don&#8217;t even know how&#8217;d you deal with the UI mess of hitting refresh again and losing your customizations.  Lose them completely probably.</p>
<li>Not genius specific, but I&#8217;d like to see more flexible smart playlists.</li>
<p>I just want an SQL like syntax for building playlists with nested AND OR support.  I&#8217;m pretty sure I&#8217;ll NEVER get this.  However, it seems like it wouldn&#8217;t be too bad to write if there&#8217;s a decent lexer/parser out there for objective C.  I haven&#8217;t explored that.</p>
<p>I&#8217;m aware I can <a href="http://www.davidgagne.net/2007/06/14/creating-smarter-playlists/">create playlists based on other playlists</a>.  Unfortunately I&#8217;ve got about a dozen playlists laying around that I don&#8217;t even listen to.  I know, put them in a folder.  Yes, I&#8217;m nitpicking.
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.rustyrazorblade.com/2008/11/i-like-the-genius-feature-of-itunes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple: &#8220;It&#8217;s Showtime&#8221;</title>
		<link>http://www.rustyrazorblade.com/2006/09/its-showtime/</link>
		<comments>http://www.rustyrazorblade.com/2006/09/its-showtime/#comments</comments>
		<pubDate>Tue, 12 Sep 2006 18:29:02 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[apple]]></category>

		<guid isPermaLink="false">http://www.rustyrazorblade.com/index.php/2006/09/12/its-showtime/</guid>
		<description><![CDATA[Might as well list the latest Apple stuff they&#8217;re announcing today.
Games: Interesting. I&#8217;ve always been a pacman fan. They will be starting with the following: Bejeweled, Cubis 2, Mahjong, Mini golf, pac man, tetris, texas holdem, vortex, and zuma. Glad they&#8217;re compatible with my 5th gen iPod.
iTunes 7: According to iLounge, iTunes will give you [...]]]></description>
			<content:encoded><![CDATA[<p>Might as well list the latest Apple stuff they&#8217;re announcing today.</p>
<p><strong>Games:</strong> Interesting. I&#8217;ve always been a pacman fan. They will be starting with the following: Bejeweled, Cubis 2, Mahjong, Mini golf, pac man, tetris, texas holdem, vortex, and zuma. Glad they&#8217;re compatible with my 5th gen iPod.</p>
<p><strong>iTunes 7:</strong> According to iLounge, iTunes will give you cover art for free if you are missing cover art.  That&#8217;s pretty sweet, since most of my music was ripped off of CDs.  3 different views of iTunes, list view, album view (with art and tracks), then &#8220;cover flow view&#8221; lets you rapidly find what you want by album cover.</p>
<p>From iLounge: you can now sync between multiple computers using an iPod, as long as both are authorized on the same account</p>
<p>- Good.  About damn time.</p>
<p>Bringing video quality up to 640&#215;480 &#8211; pretty awesome news there.  Might be time to start buying the TV shows that I don&#8217;t feel like paying a cable bill for.  It would be even cooler if my iPod was 80 gigs&#8230;</p>
<p>The big news, of course, is movies.  According to iLounge, most titles will be $9.99, with new releases and preorders at $12.99, and after the first week up to $14.99.  Nice to know they&#8217;ll be a fair amount cheaper than in the store.  I&#8217;ll probably bring my laptop into work to download off our T1 line.</p>
<p><strong>New iPods:</strong> 80 gig is pretty sweet &#8211; it would have been nice to have this a few months ago before I bought my 60 gig, but oh well.  I dont&#8217; really care much about the nano packaging though.</p>
<p><strong>Search:</strong> Nice to see.  I hate scrolling through looking for music when I have 15K songs.</p>
<p><strong>Mac TV Unit (set top box)</strong>: Psyched to finally see this coming out.  Specs: 1/2 size of Mac Mini, built-in power supply, USB, Ethernet, 802.11 &#8220;wireless component video&#8221;, optical audio and HDMI ports, plus old RCA stereo audio ports. Works with Apple Remote.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rustyrazorblade.com/2006/09/its-showtime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
