<?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>Lazycoder &#187; Apple</title>
	<atom:link href="http://www.lazycoder.com/weblog/category/apple/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lazycoder.com/weblog</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 23:26:45 +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>Quick jQuery hack to fix position:fixed toolbars in iPhone/iPad/iPod Touch</title>
		<link>http://www.lazycoder.com/weblog/2010/05/27/quick-jquery-hack-to-fix-positionfixed-toolbars-in-iphoneipadipod-touch/</link>
		<comments>http://www.lazycoder.com/weblog/2010/05/27/quick-jquery-hack-to-fix-positionfixed-toolbars-in-iphoneipadipod-touch/#comments</comments>
		<pubDate>Thu, 27 May 2010 18:29:43 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.lazycoder.com/weblog/?p=1357</guid>
		<description><![CDATA[This is just a quick fix if your postion:fixed elements end up in weird places when your site is viewed on the iPhone, iPad, or iPod Touch. Say you have a div with an id of "#footer" that you want to stay at the bottom of the page. If you set it's position to "fixed" [...]]]></description>
			<content:encoded><![CDATA[<p>This is just a quick fix if your postion:fixed elements end up in weird places when your site is viewed on the iPhone, iPad, or iPod Touch.</p>
<p> Say you have a div with an id of "#footer" that you want to stay at the bottom of the page. If you set it's position to "fixed" and set the bottom to "0px". When viewed on an iPad, iPhone or iPod Touch, the footer <a href="http://blog.mspace.fm/2009/10/01/iphone-mobile-safari-css-position-fixed/">may end up in the middle of your content</a> if you have a long page. </p>
<div class="igBar"><span id="lcode-2"><a href="#" onclick="javascript:showCodeTxt('code-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-2">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9933; font-style:italic;">//stick the footer at the bottom of the page if we're on an iPad/iPhone due to viewport/page bugs in mobile webkit </span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">if<span style="color:#006600; font-weight:bold;">&#40;</span>navigator.<span style="">platform</span> == <span style="color:#CC0000;">'iPad'</span> || navigator.<span style="">platform</span> == <span style="color:#CC0000;">'iPhone'</span> || navigator.<span style="">platform</span> == <span style="color:#CC0000;">'iPod'</span><span style="color:#006600; font-weight:bold;">&#41;</span> </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#123;</span> </div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp;$<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC0000;">"#footer"</span><span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="">css</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC0000;">"position"</span>, <span style="color:#CC0000;">"static"</span><span style="color:#006600; font-weight:bold;">&#41;</span>; </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lazycoder.com/weblog/2010/05/27/quick-jquery-hack-to-fix-positionfixed-toolbars-in-iphoneipadipod-touch/feed/</wfw:commentRss>
		<slash:comments>46</slash:comments>
		</item>
		<item>
		<title>A theory about the  iPhone app store</title>
		<link>http://www.lazycoder.com/weblog/2009/10/28/a-theory-about-the-iphone-app-store/</link>
		<comments>http://www.lazycoder.com/weblog/2009/10/28/a-theory-about-the-iphone-app-store/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 17:35:00 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[AppStore]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.lazycoder.com/weblog/2009/10/28/a-theory-about-the-iphone-app-store/</guid>
		<description><![CDATA[My theory is that in 2 years there will be so many applications in the iPhone app store that it will be impossible to achieve success. That only the early developers will find any measure of success. &#160; I say this because it seems to be the way the Apple software ecosystem works. There are [...]]]></description>
			<content:encoded><![CDATA[<p>My theory is that in 2 years there will be so many applications in the iPhone app store that it will be impossible to achieve success. That only the early developers will find any measure of success. </p>
<p>&#160;</p>
<p>I say this because it seems to be the way the Apple software ecosystem works. There are a few applications, written by developers who have been working on the Apple platform for a great number of years, that are constantly recommended and very successful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lazycoder.com/weblog/2009/10/28/a-theory-about-the-iphone-app-store/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Monotouch Has an Uphill battle ahead</title>
		<link>http://www.lazycoder.com/weblog/2009/10/05/monotouch-is-d-o-a/</link>
		<comments>http://www.lazycoder.com/weblog/2009/10/05/monotouch-is-d-o-a/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 17:53:00 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mono]]></category>
		<category><![CDATA[MonoTouch]]></category>

		<guid isPermaLink="false">http://www.lazycoder.com/weblog/2009/10/05/monotouch-is-d-o-a/</guid>
		<description><![CDATA[I love me some Mono and love the Mono team, but Novell really screwed the pooch with the release of MonoTouch. It had such promise, write iPhone apps using C# instead of Objective-C. But it has some problems. It requires XCode.&#160; - I’m not sure if they can get around this one. It seems like [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.lazycoder.com/weblog/2009/02/23/declaration-of-awesomeness-for-the-mono-compiler/" target="_blank">I love me some Mono and love the Mono team</a>, but Novell really screwed the pooch with the release of MonoTouch. It had such promise, write iPhone apps using C# instead of Objective-C. But it has some problems.</p>
<ol>
<li>I<del datetime="2009-10-05T20:55:06+00:00">t requires XCode.&#160; - I’m not sure if they can get around this one. It seems like they should be able to. All XCode does is call GCC and compile the code. My guess is that it has to do with the licensing of the iPhone SDK and/or the iPhone libraries that you can’t distribute. If you could bundle the iPhone headers, it seems to me that you could compile an iPhone app on any platform that supports GCC.</del> DOH! As Miguel reminds me in the comments, it doesn't use XCode but the iPhone simulator is only available on Intel Macs. (1)</li>
<li><a href="http://monotouch.net/Store" target="_blank">It costs 400 frickin’ dollars</a>. – So now, not only do you have to buy a Mac, pay Apple $99 per year to get in the App store (which is no guarantee) but if you want to use MonoTouch you have to pay $399 U.S. </li>
</ol>
<p>So what you have to ask your self is: Is learning Objective-C something that I really can’t/won’t do to become an iPhone developer?</p>
<p>There are a lot of benefits to developing for the iPhone using MonoTouch. Access to most of the .NET library. LINQ is available, WCF. Miguel DeIcaza has a good explanation for why Monotouch costs $400, which he'll talk about in an upcoming episode of <a href="http:\\herdingcode.com">Herding Code</a>. But I think that the price is going to really slow MonoTouch adoption.</p>
<p>(1) That's what I get for writing a blog post ahead of time and not reviewing it before it's scheduled to post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lazycoder.com/weblog/2009/10/05/monotouch-is-d-o-a/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Apple software update on Windows</title>
		<link>http://www.lazycoder.com/weblog/2008/03/20/apple-software-update-on-windows/</link>
		<comments>http://www.lazycoder.com/weblog/2008/03/20/apple-software-update-on-windows/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 16:11:07 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://www.lazycoder.com/weblog/index.php/archives/2008/03/20/apple-software-update-on-windows/</guid>
		<description><![CDATA[Joe Wilcox has a piece here where he talks about how Windows iTunes owners are being prompted to install Safari 3.1 by Apple Software Update even though they haven't installed any version of Safari on their Windows PC before. I've had Safari 3 for Windows installed for quite a while at work as a test [...]]]></description>
			<content:encoded><![CDATA[<p>Joe Wilcox has a piece here where he talks about how <a href="http://www.microsoft-watch.com/content/operating_systems/apples_windows_invasion.html">Windows iTunes owners are being prompted to install Safari 3.1 by Apple Software Update even though they haven't installed any version of Safari on their Windows PC before.</a></p>
<p>I've had Safari 3 for Windows installed for quite a while at work as a test platform. Occasionally, until I <a href="http://www.technipages.com/disable-apple-software-update-screen-windows.html">told Apple Software Update to shut up</a>, it would prompt me to install iTunes + QuickTime since I didn't have it installed. So it's not that Apple is pushing Safari specifically through Apple Software Update, it's pushing Apple Software period. Which seems to be the same thing as Windows Update. I don't see it as particularly aggressive. The Google Pack updater will suggest other items that you haven't installed yet. It just seems to be the way smart software updaters work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lazycoder.com/weblog/2008/03/20/apple-software-update-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wil Shipley on Hype</title>
		<link>http://www.lazycoder.com/weblog/2008/02/12/wil-shipley-on-hype/</link>
		<comments>http://www.lazycoder.com/weblog/2008/02/12/wil-shipley-on-hype/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 17:49:15 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.lazycoder.com/weblog/index.php/archives/2008/02/12/wil-shipley-on-hype/</guid>
		<description><![CDATA["Hype is foreplay for geeks."]]></description>
			<content:encoded><![CDATA[<p>"Hype is foreplay for geeks."</p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="437" height="370" id="viddler_rentzsch_4"><param name="movie" value="http://www.viddler.com/player/b564166e/" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><embed src="http://www.viddler.com/player/b564166e/" width="437" height="370" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" name="viddler_rentzsch_4" ></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lazycoder.com/weblog/2008/02/12/wil-shipley-on-hype/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iTunes movie rentals? Gimme a break</title>
		<link>http://www.lazycoder.com/weblog/2008/01/16/itunes-movie-rentals-gimme-a-break/</link>
		<comments>http://www.lazycoder.com/weblog/2008/01/16/itunes-movie-rentals-gimme-a-break/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 19:11:41 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.lazycoder.com/weblog/index.php/archives/2008/01/16/itunes-movie-rentals-gimme-a-break/</guid>
		<description><![CDATA[This big news in the announcement for me wasn't the rental part, it was the "Fox is including iPod compatible versions of the content on the DVD you just bought.". It's an acknowledgment, at least in my mind, that the studio recognizes that people don't want to pay twice for their content. Sure I can [...]]]></description>
			<content:encoded><![CDATA[<p>This big news in the announcement for me wasn't the rental part, it was the "Fox is including iPod compatible versions of the content on the <acronym title='Digital Video Disc'><span class='caps'>DVD</span></acronym> you just bought.". It's an acknowledgment, at least in my mind, that the studio recognizes that people don't want to pay twice for their content. Sure I can buy "Heroes" on <acronym title='Digital Video Disc'><span class='caps'>DVD</span></acronym> and then try to rip it, if I can find the right decrypting software and want to take 4-30+ hours encoding it. Or I can buy the <acronym title='Digital Video Disc'><span class='caps'>DVD</span></acronym>, then buy the season off of iTunes/Amazon/whatever so they work on my iPod with minimal effort on my part. But doesn't a simple "Add to library from <acronym title='Digital Video Disc'><span class='caps'>DVD</span></acronym>" option save a lot of time? I hope that more studios follow suit and also include other formats (at least .wmv).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lazycoder.com/weblog/2008/01/16/itunes-movie-rentals-gimme-a-break/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New artist branded iPod ideas</title>
		<link>http://www.lazycoder.com/weblog/2007/07/13/new-artist-branded-ipod-ideas/</link>
		<comments>http://www.lazycoder.com/weblog/2007/07/13/new-artist-branded-ipod-ideas/#comments</comments>
		<pubDate>Fri, 13 Jul 2007 23:23:02 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.lazycoder.com/weblog/index.php/archives/2007/07/13/new-artist-branded-ipod-ideas/</guid>
		<description><![CDATA[Burningbird &#187; We all Live in an iPod: "" Shelley Powers asked us for some other artist branded iPods. I came up with a few. A Dolly Parton iPod with HUGE headphones and a rhinestone click wheel? A Van Halen model except the hard drive and head phones won't work with the iPod and come [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://burningbird.net/stuff/we-all-live-in-an-ipod/#comment-30451">Burningbird &raquo; We all Live in an iPod</a>: ""</p>
<p>Shelley Powers asked us for some other artist branded iPods. I came up with a few.</p>
<p>A Dolly Parton iPod with HUGE headphones and a rhinestone click wheel?</p>
<p>A Van Halen model except the hard drive and head phones won't work with the iPod and come separately.</p>
<p>A Cat Stevens model - works beautifully for 3 years, then quits. Finds religion.</p>
<p>non-musical<br />
A Transformer iPod - Transforms into a Zune. Obviously a Decepticon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lazycoder.com/weblog/2007/07/13/new-artist-branded-ipod-ideas/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>It&#8217;s a Safari world after all</title>
		<link>http://www.lazycoder.com/weblog/2007/06/12/its-a-safari-world-after-all/</link>
		<comments>http://www.lazycoder.com/weblog/2007/06/12/its-a-safari-world-after-all/#comments</comments>
		<pubDate>Tue, 12 Jun 2007 23:31:14 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[MacOS]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.lazycoder.com/weblog/index.php/archives/2007/06/12/its-a-safari-world-after-all/</guid>
		<description><![CDATA[Safari running on Windows was announced during the WWDC 2007 keynote and is available for download right now. I'm writing this post using it under Windows XP/SP 2. Let's count up where Safari/WebKit is in use as of today. Adobe AIR uses WebKit as their HTML/Javascript engine. Safari runs under both OS X 10.4.9 Tiger [...]]]></description>
			<content:encoded><![CDATA[<p>Safari running on Windows was announced during the WWDC 2007 keynote and is available for download right now. I'm writing this post using it under Windows XP/SP 2.</p>
<p><a href="http://www.flickr.com/photos/skoon/541342173/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1289/541342173_76ae6bbf14_m.jpg" width="240" height="218" alt="safari3fontrendering" /></a></p>
<p>Let's count up where Safari/WebKit is in use as of today.</p>
<p>Adobe AIR uses WebKit as their <acronym title='HyperText Markup Language'><span class='caps'>HTML</span></acronym>/Javascript engine.</p>
<p>Safari runs under both OS X 10.4.9 Tiger and 10.5 Leopard and Windows XP/Vista.</p>
<p>Safari runs on the iPhone.</p>
<p>My gut tells me that Safari on Windows combined with AIR using WebKit AND third-party development on the iPhone being done against Safari is going to be much, much more significant than we realize right now.</p>
<p>Depending on the adoption of the iPhone and AIR, the browser war could turn into <acronym title='Internet Explorer'><span class='caps'>IE</span></acronym> vs. Safari instead of <acronym title='Internet Explorer'><span class='caps'>IE</span></acronym> vs. FireFox like everyone expected.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lazycoder.com/weblog/2007/06/12/its-a-safari-world-after-all/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ZFS in Leopard</title>
		<link>http://www.lazycoder.com/weblog/2007/06/06/zfs-in-leopard/</link>
		<comments>http://www.lazycoder.com/weblog/2007/06/06/zfs-in-leopard/#comments</comments>
		<pubDate>Wed, 06 Jun 2007 20:43:09 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[MacOS]]></category>

		<guid isPermaLink="false">http://www.lazycoder.com/weblog/index.php/archives/2007/06/06/zfs-in-leopard/</guid>
		<description><![CDATA[Putting ZFS in Leopard is pretty cool. It looks like a nice filesystem. So, can I access it under Windows? Without resorting to sharing it as a network share? It's 2007, I'm really looking for a filesystem I can format my external USB hard drives with, that doesn't suck, that I can access from either [...]]]></description>
			<content:encoded><![CDATA[<p>Putting <a href="http://www.macrumors.com/2007/06/06/zfs-to-become-default-file-system-in-leopard/">ZFS in Leopard</a> is pretty cool. It looks like a nice filesystem.</p>
<p>So, can I access it under Windows? Without resorting to sharing it as a network share?</p>
<p>It's 2007, I'm really looking for a filesystem I can format my external <acronym title='Universal Serial Bus'><span class='caps'>USB</span></acronym> hard drives with, <a href="http://www.hanselman.com/blog/TheDuhFilesTheFileIsTooLargeForTheDestinationFileSystem.aspx">that doesn't suck</a>, that I can access from either my Windows or Apple computers. Fat32 is what? 10 years old now? When was Win95 OSR2 released? It's time for a new system. Hopefully someone will release ZFS drivers for Windows.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lazycoder.com/weblog/2007/06/06/zfs-in-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Silverlight 1.1 for OS X is Intel only</title>
		<link>http://www.lazycoder.com/weblog/2007/05/01/silverlight-11-for-os-x-is-intel-only/</link>
		<comments>http://www.lazycoder.com/weblog/2007/05/01/silverlight-11-for-os-x-is-intel-only/#comments</comments>
		<pubDate>Wed, 02 May 2007 01:25:38 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[MacOS]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.lazycoder.com/weblog/index.php/archives/2007/05/01/silverlight-11-for-os-x-is-intel-only/</guid>
		<description><![CDATA[As best as I can determine, Silverlight 1.1 for OS X is Intel only. I've installed both the 1.0 beta and the 1.1 version of Silverlight on my G4 iBook. The 1.0 version works fine, but the 1.1 version crashes both Firefox and Safari. I think it's intentional and I think my confusion is due [...]]]></description>
			<content:encoded><![CDATA[<p>As best as I can determine, Silverlight 1.1 for OS X is Intel only. I've installed both the 1.0 beta and the 1.1 version of Silverlight on my G4 iBook. The 1.0 version works fine, but the 1.1 version crashes both Firefox and Safari. I think it's intentional and I think my confusion is due to the confusing state of the Silverlight sites.</p>
<p>There are two different Silverlight sites. <a href="http://www.microsoft.com/silverlight/">microsoft.com/silverlight</a> and the community site at <a href="http://silverlight.net/">silverlight.net</a>.</p>
<p>You can't get to the system requirements for Silverlight through the <a href="http://www.microsoft.com/silverlight/install.aspx">community site</a> (in fact, there is a link called "system requirements" on that page, but nothing seems to be clickable for me right now). If you click on "getting Started" at the community site and click on the links to download the specific version for your platform, the system requirements only state "OS X 10.4+". You can only get to them by going to the main <a href="http://www.microsoft.com/silverlight/downloads.aspx">microsoft.com/silverlight downloads page</a>. There I found the system requirements</p>
<p><a href="http://www.microsoft.com/silverlight/system-requirements-mac.aspx">for 1.0</a></p>
<p>System Requirements: Macintosh Computer with Power PC Processor</p>
<p>    * Supported operating systems: Apple Mac OS X<br />
    * Supported browsers: Firefox 1.5.0.8, Firefox 2.0.x, and Apple Safari 2.0.4<br />
    * Minimum recommended hardware: Power PC G3 500-megahertz (MHz) or faster processor</p>
<p>System Requirements: Macintosh Computer with Intel Processor</p>
<p>    * Supported operating systems: Apple Mac OS X<br />
    * Supported browsers: Firefox 1.5.0.8, Firefox 2.0.x, and Apple Safari 2.0.4<br />
    * Minimum recommended hardware: Intel Core Duo 1.83-gigahertz (GHz) or faster processor<br />
      128 megabytes (<acronym title='Megabyte'><span class='caps'>MB</span></acronym>) of RAM</p>
<p><a href="http://www.microsoft.com/silverlight/system-requirements-mac-dev.aspx">for 1.1</a></p>
<p>System Requirements: Macintosh Computer with Intel Processor</p>
<p>    * Supported operating systems: Apple Mac OS X<br />
    * Supported browsers: Firefox 1.5.0.8, Firefox 2.0.x, and Apple Safari 2.0.4<br />
    * Minimum recommended hardware: Intel Core Duo 1.83-gigahertz (GHz) or faster processor<br />
      128 megabytes (<acronym title='Megabyte'><span class='caps'>MB</span></acronym>) of RAM</p>
<p>It's a not so subtle difference. It's something to keep in mind if you are a PowerPC owner and want to play with Silverlight. You're stuck with version 1.0. No Dynamic CLR for you! It'd be nice if a MS employee would post a notice about future PPC support for Silverlight?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lazycoder.com/weblog/2007/05/01/silverlight-11-for-os-x-is-intel-only/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

