<?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>waffle &#187; Work</title>
	<atom:link href="http://waffle.coretech.net.au/category/work/feed/" rel="self" type="application/rss+xml" />
	<link>http://waffle.coretech.net.au</link>
	<description>a small crisp batter cake</description>
	<lastBuildDate>Sun, 21 Mar 2010 13:51:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Under Attack. Again.</title>
		<link>http://waffle.coretech.net.au/2010/01/under-attack-again/</link>
		<comments>http://waffle.coretech.net.au/2010/01/under-attack-again/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 10:27:36 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://waffle.coretech.net.au/?p=108</guid>
		<description><![CDATA[A week ago we were experiencing ssh attacks that were preventing login and slowing our server dramatically. Most likely the attack was from compromised machines running software bots looking for weak passwords.
This is not normally an issue for us as none of the FTP users have shell access (they can not login via SSH or [...]]]></description>
			<content:encoded><![CDATA[<p>A week ago we were experiencing ssh attacks that were preventing login and slowing our server dramatically. Most likely the attack was from compromised machines running software bots looking for weak passwords.<br />
This is not normally an issue for us as none of the FTP users have shell access (they can not login via SSH or terminal) and the root user account can not SSH in either. In fact there is only one account that has ssh login permission. Yet the machine was running dog slow and no users could login via FTP and we couldn&#8217;t login via ssh at all. Most worrying for a while.<br />
I logged in via remote desktop and a quick check of the logs showed constant reports of failed login attempts &#8211; ah ha. </p>
<p>The problem was that when the ssh daemon was confronted with an incorrect password, it was checking against the password database multiple times, which was overwhelming the password services. A better explanation from [1] is &#8220;every time the attacking machine tried another key/password, it would spawn a new sshd process, which had to communicate with the password services (com.apple.SecurityServer) in order to validate the password. Eventually what ended up happening is that there were so many requests to the password services that they basically ended up just hanging, and anything that required a password: ssh, ftp, etc, just stopped working.&#8221; </p>
<p>Firstly I changed the default /etc/sshd_config file, un-commenting this line and changing yes to no:<br />
ChallengeResponseAuthentication no<br />
<a href="http://www.slicksurface.com/blog/2008-06/ssh-attack-and-password-problems-on-os-x">This edit does not stop attackers from trying but it does protect the password services from the attack.</a> </p>
<p>Next I installed the most excellent <a href="http://projects.seas.columbia.edu/sshdfilter/sshdfilter_mac.zip">sshdfilter</a> [2] &#8211; a perl daemon that actively monitors ssh logins and detects signs of intrusion attempts and then blocks the attacking IP addresses. Blocked addresses are saved in between reboots and the he startup script is here:<br />
/Library/LaunchDaemons/net.jonbell.sshdfilter.plist<br />
(this runs /etc/sshdfilterLoad.sh which runs /etc/firewallrules) </p>
<p>To receive email notifications for each block, edit the /etc/sshdfilterrc file (the mail= and mail policy sections &#8211; there are comments in the policy).<br />
&#8220;The default setting is to block most failed logins after 5 attempts, some common invalid logins after 0 attempts, incorrect root logins after 2 attempts, and logins to non-existent accounts after 3 attempts. Counters are reset upon a valid login. These thresholds can be modified in the sshdfilterrc file if desired. It is not currently setup to expire the blocks (even if you set it here in the configuration file, they will remain in the persisting file).&#8221; </p>
<p>[1] http://www.slicksurface.com/blog/2008-06/ssh-attack-and-password-problems-on-os-x </p>
<p>[2] Mac OS X sshdfilter Installer: </p>
<p>http://projects.seas.columbia.edu/sshdfilter/sshdfilter_mac.zip</p>
<p>sshdfilter Project Home: </p>
<p>http://www.csc.liv.ac.uk/~greg/sshdfilter/</p>
]]></content:encoded>
			<wfw:commentRss>http://waffle.coretech.net.au/2010/01/under-attack-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MitM Plaintext Injection Vulnerability in TLS (openssl)</title>
		<link>http://waffle.coretech.net.au/2009/12/mitm-plaintext-injection-vulnerability-in-tls-openssl/</link>
		<comments>http://waffle.coretech.net.au/2009/12/mitm-plaintext-injection-vulnerability-in-tls-openssl/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 12:26:14 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://waffle.coretech.net.au/?p=69</guid>
		<description><![CDATA[I&#8217;m researching this months plaintext injection vulnerability in TLS (openssl). It&#8217;s real and affects all existing releases of the SSL and TLS protocol family. Good sysadmins will be installing as a matter of urgency (as of 12th Dec, Netcraft reported that 24 of the top 100 sites had updated).
In the spirit of the internet, 90% [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m researching this months plaintext injection vulnerability in TLS (openssl). It&#8217;s real and affects all existing releases of the SSL and TLS protocol family. Good sysadmins will be installing as a matter of urgency (as of 12th Dec, Netcraft reported that 24 of the top 100 sites had updated).<br />
In the spirit of the internet, 90% of the words below are not mine.</p>
<p><a class="alignleft" href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-3555" target="_self">Vulnerability Database National Vulnerability Database (NVD) National(CVE-2009-3555)</a><br />
&#8220;The TLS protocol, and the SSL protocol 3.0 as used in&#8230; mod_ssl in the Apache HTTP Server 2.2.14 and earlier, OpenSSL before 0.9.8l&#8230; does not properly associate renegotiation handshakes with an existing connection, which allows man-in-the-middle attackers to insert data into HTTPS sessions..&#8221;</p>
<p><a class="alignleft" href="http://www.cupfighter.net/index.php/2009/11/tls-renegotiation-attack/" target="_self">TLS renegotiation attack. More bad news for SSL | Cupfighter.net</a><br />
While the attack only works for the first request sent over a TLS session (subsequent renegotiation requests are sent in the encryption context and can thus not be inserted) M[an in the middle] could force the session to reset after x seconds of inactivity by sending a reset packet to both Client and Server, thus forcing a new TCP and TLS session to be re-established and thus gaining a new window of opportunity.<br />
In response to this attack OpenSSL (Nov 8th) released OpenSSL 0.9.8l which does fix the vulnerability, but disables renegotiation completely. This change to OpenSSL may break certain applications so it should be carefully tested before it is implemented. [Server-side HTTPS will generally not be broken.]<br />
This attack will first appear in highly targeted scenarios. Since the attack is a man in the middle attack the attacker will have to have control over all the traffic between client and server and vice versa in order to fully exploit the attack. With this attack TLS does not fully protect the integrity of the communication between client and server.</p>
<p>The root of the problem is servers that perform (allow) TLS renegotiations and make flawed assumptions about what a successful TLS renegotiation means for the data previously received.</p>
<p><a class="alignleft" href="http://www.phonefactor.com/sslgap/ssl-tls-authentication-patches" target="_blank">PhoneFactors Status of Patches</a></p>
<p style="text-align: left;"><a class="alignleft" href="http://www.educatedguesswork.org/2009/11/understanding_the_tls_renegoti.html" target="_self">Understanding the TLS Renegotiation Attack &#8211; Educated Guesswork</a><br />
<a class="alignleft" href="http://marc.info/?l=apache-httpd-announce&amp;m=125755783724966&amp;w=2" target="_self">&#8216;CVE-2009-3555 &#8211; apache/mod_ssl vulnerability and mitigation&#8217; &#8211; MARC</a><br />
<a class="alignleft" href="http://www.links.org/?p=780" target="_self">Links » Another Protocol Bites The Dust</a><br />
<a class="alignleft" href="http://extendedsubset.com/?p=8" target="_self">Extended Subset » Blog Archive » Authentication Gap in TLS Renegotiation</a><br />
<a class="alignleft" href="http://www.securegoose.org/2009/11/tls-renegotiation-vulnerability-cve.html" target="_self">The Secure Goose: TLS renegotiation vulnerability (CVE-2009-3555)</a><br />
<a class="alignleft" href="http://www.cupfighter.net/index.php/2009/11/confidence-tls-renegotiation/" target="_self"><span class="alignleft">Confidence 2009.02 – Cupfighter renegotiation vulnerability slides</span></a><br />
<strong>TLS Test here:</strong></br><br />
<a class="alignleft" href="http://netsekure.org/2009/11/tls-renegotiation-test/" target="_self"><span class="alignleft">Renegotiation Test | netsekure rn</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://waffle.coretech.net.au/2009/12/mitm-plaintext-injection-vulnerability-in-tls-openssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GFC? Quel surprise!</title>
		<link>http://waffle.coretech.net.au/2009/11/gfc-quel-surprise/</link>
		<comments>http://waffle.coretech.net.au/2009/11/gfc-quel-surprise/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 08:33:19 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://waffle.coretech.net.au/?p=64</guid>
		<description><![CDATA[This quote from Newsweek magazine, Nov 9 2009 issue, page 37, by Sharon Begley:
In a poll, he says [Al Gore], 80 percent of CEOs and CFOs said they would not spend money to make their factories more efficient and save money in the long run if it hurt their next-quarter bottom line. &#8220;That,&#8221; says Gore, [...]]]></description>
			<content:encoded><![CDATA[<p>This quote from Newsweek magazine, Nov 9 2009 issue, page 37, by Sharon Begley:</p>
<blockquote><p>In a poll, he says [Al Gore], 80 percent of CEOs and CFOs said they would not spend money to make their factories more efficient and save money in the long run if it hurt their next-quarter bottom line. &#8220;That,&#8221; says Gore, &#8220;is functionally insane.&#8221;</p></blockquote>
<p>I couldn&#8217;t agree more. Such short-term thinking from such highly paid people.<br />
That sound you can hear is my mind boggling.</p>
]]></content:encoded>
			<wfw:commentRss>http://waffle.coretech.net.au/2009/11/gfc-quel-surprise/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>we didn&#8217;t budget for this&#8230;</title>
		<link>http://waffle.coretech.net.au/2009/05/we-didnt-budget-for-this/</link>
		<comments>http://waffle.coretech.net.au/2009/05/we-didnt-budget-for-this/#comments</comments>
		<pubDate>Fri, 29 May 2009 03:51:01 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://waffle.coretech.net.au/?p=63</guid>
		<description><![CDATA[The Vendor Client relationship &#8211; in real world situations
]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.youtube.com/watch?v=R2a8TRSgzZY' >The Vendor Client relationship &#8211; in real world situations</a></p>
]]></content:encoded>
			<wfw:commentRss>http://waffle.coretech.net.au/2009/05/we-didnt-budget-for-this/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rent Adobe Creative Suite Design Premium</title>
		<link>http://waffle.coretech.net.au/2008/05/rent-adobe-creative-suite-design-premium/</link>
		<comments>http://waffle.coretech.net.au/2008/05/rent-adobe-creative-suite-design-premium/#comments</comments>
		<pubDate>Mon, 12 May 2008 16:56:04 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://waffle.coretech.net.au/?p=61</guid>
		<description><![CDATA[In an interesting move (well, interesting if you sell software) Adobe have announced that you can now rent CS 3 Design Premium:
Creative Suite 3 Design Premium Subscription Edition
Adobe Creative Suite 3 Design Premium Subscription Edition is available to customers in Australia. The box price of AU$129 includes your first month of subscription service. Subscription pricing [...]]]></description>
			<content:encoded><![CDATA[<p>In an interesting move (well, interesting if you sell software) Adobe have announced that you can now rent CS 3 Design Premium:<br />
<strong>Creative Suite 3 Design Premium Subscription Edition</strong><br />
Adobe Creative Suite 3 Design Premium Subscription Edition is available to customers in Australia. The box price of AU$129 includes your first month of subscription service. Subscription pricing is AU$129 per month for a 12-month contract, and AU$199 a month on an ad hoc basis.</p>
<p>You get full CS3 versions of InDesign, Photoshop Extended, Illustrator, Flash Professional, Dreamweaver and Acrobat 8 Professional. All future updates are included as long as you are still subscribed. <a href="http://www.coretech.net.au/about">Coretech</a> is taking preorders if you&#8217;re interested. </p>
<p>Be warned that the 12 month subscription can not be cancelled and automatically renews unless you turn off the &#8220;auto-renew-subscription&#8221; option.<br />
At this stage this is the only product that you can get via subscription. I&#8217;m sure there&#8217;ll be more.</p>
]]></content:encoded>
			<wfw:commentRss>http://waffle.coretech.net.au/2008/05/rent-adobe-creative-suite-design-premium/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>3G iPhones for Australia</title>
		<link>http://waffle.coretech.net.au/2008/05/3g-iphones-for-australia/</link>
		<comments>http://waffle.coretech.net.au/2008/05/3g-iphones-for-australia/#comments</comments>
		<pubDate>Mon, 12 May 2008 16:39:38 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://waffle.coretech.net.au/?p=60</guid>
		<description><![CDATA[Good news from the rumour mill.
It&#8217;s old news that Vodafone will be selling iPhones in Australia (and lots of other countries) and now it appears that Optus will be as well.
With the US and UK running down stock and end-of-lining the first generation iPhones, it looks like we&#8217;ll be getting the second generation 3G iPhones! [...]]]></description>
			<content:encoded><![CDATA[<p>Good news from the rumour mill.<br />
It&#8217;s old news that Vodafone will be selling iPhones in Australia (and lots of other countries) and now it <a href="http://www.engadget.com/2008/05/12/singtel-ropes-iphone-distro-in-singapore-india-australia-and/">appears that Optus</a> will be as well.<br />
With the US and UK running down stock and end-of-lining the first generation iPhones, it looks like we&#8217;ll be getting the second generation 3G iPhones! Yay.<br />
<a href="http://www.gizmodo.com.au/2008/05/optus_gets_iphone_in_australia_too_looks_like_exclusivity_is_dead.html">Seems</a> that none of these deals are &#8220;exclusive&#8221; so expect every telco and it&#8217;s dog to be selling these in the next few months. There is a vicious rumour that <strong>even Apple Resellers</strong> like <a href="http://www.coretech.net.au">Coretech</a> will be able to sell them. We&#8217;ll have to hold our breath until June 9th for the low-down.</p>
]]></content:encoded>
			<wfw:commentRss>http://waffle.coretech.net.au/2008/05/3g-iphones-for-australia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keep the Battery In&#8230;</title>
		<link>http://waffle.coretech.net.au/2008/05/keep-the-battery-in/</link>
		<comments>http://waffle.coretech.net.au/2008/05/keep-the-battery-in/#comments</comments>
		<pubDate>Mon, 12 May 2008 16:34:42 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://waffle.coretech.net.au/?p=59</guid>
		<description><![CDATA[Some clients like to remove their MacBook or MacBook Pro battery when they are using their power adapter for a long time. The theory is that this will conserve their battery life.
Apple don&#8217;t like this idea:
If the battery is removed from a MacBook or MacBook Pro, the computer will automatically reduce the processor speed. This [...]]]></description>
			<content:encoded><![CDATA[<p>Some clients like to remove their MacBook or MacBook Pro battery when they are using their power adapter for a long time. The theory is that this will conserve their battery life.<br />
Apple <a href="http://docs.info.apple.com/article.html?artnum=305336">don&#8217;t like this idea</a>:</p>
<blockquote><p>If the battery is removed from a MacBook or MacBook Pro, the computer will automatically reduce the processor speed. This prevents the computer from shutting down if it demands more power than the A/C adaptor alone can provide.</p></blockquote>
<p>Of course, if you bump the power adapter and unplug your laptop, you will lose all unsaved work. Not to mention that if dirt and dust collects on the battery connectors you may have problems later.</p>
<p>There&#8217;s an Apple article <a href="http://docs.info.apple.com/article.html?artnum=86284">here</a> explaining how to calibrate your battery &#8211; this should be done every couple of months.</p>
<p>Sounds kinda annoying to me, so I&#8217;m going to buy a second battery and one of Newertech&#8217;s <a href="http://www.newertech.com/products/charger_cond.php">battery charger and reconditioner</a> units &#8211; gotta keep the MacBook Pro on 24/7&#8230;.</p>
<p>I&#8217;ll let you know how I go.</p>
]]></content:encoded>
			<wfw:commentRss>http://waffle.coretech.net.au/2008/05/keep-the-battery-in/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Verify Your OS X Preference Files</title>
		<link>http://waffle.coretech.net.au/2008/05/verify-your-os-x-preference-files/</link>
		<comments>http://waffle.coretech.net.au/2008/05/verify-your-os-x-preference-files/#comments</comments>
		<pubDate>Mon, 12 May 2008 15:55:35 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://waffle.coretech.net.au/?p=58</guid>
		<description><![CDATA[If an application is playing up, it may be due to a corrupted preference file.
You can use the built-in command &#8216;plutil&#8217; to verify any preference file &#8211; for example:
$ plutil -lint ~/Library/Preferences/com.apple.iChat.plist
/Users/waffleblog/Library/Preferences/com.apple.iChat.plist: OK
Please note that this utility will only check the syntax of the file, not the deeper meaning as understood by the owning application.
To [...]]]></description>
			<content:encoded><![CDATA[<p>If an application is playing up, it may be due to a corrupted preference file.<br />
You can use the built-in command &#8216;plutil&#8217; to verify any preference file &#8211; for example:</p>
<p><strong>$ plutil -lint ~/Library/Preferences/com.apple.iChat.plist</strong><br />
/Users/waffleblog/Library/Preferences/com.apple.iChat.plist: OK</p>
<p>Please note that this utility will only check the syntax of the file, not the deeper meaning as understood by the owning application.</p>
<p>To check all preferences in your Library folder:</p>
<p><strong>$ find ~/Library/Preferences  -name &#8220;*.plist&#8221; -print0 | xargs -n1 -0 plutil -lint</strong></p>
<p>(This uses -print0 and -0 to cope with spaces in filenames.)</p>
]]></content:encoded>
			<wfw:commentRss>http://waffle.coretech.net.au/2008/05/verify-your-os-x-preference-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speed Up Apple Mail</title>
		<link>http://waffle.coretech.net.au/2008/05/speed-up-apple-mail/</link>
		<comments>http://waffle.coretech.net.au/2008/05/speed-up-apple-mail/#comments</comments>
		<pubDate>Mon, 12 May 2008 15:22:44 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://waffle.coretech.net.au/?p=57</guid>
		<description><![CDATA[I recently moved my 10+ years of Eudora email to Apple Mail.
The import worked well but I noticed that Apple Mail was really slow.
Thanks to Tim Gaden of Hawk Wings, it is now running much faster.
Essentially the following simple steps optimise the SQLite database (the &#8220;envelope index&#8221;) that Apple Mail uses to store indexes and [...]]]></description>
			<content:encoded><![CDATA[<p>I recently moved my 10+ years of Eudora email to Apple Mail.<br />
The import worked well but I noticed that Apple Mail was really slow.<br />
Thanks to <a href="http://danwarne.com/is-apple-mail-running-slow-speed-it-up/">Tim Gaden</a> of Hawk Wings, it is now running much faster.<br />
Essentially the following simple steps optimise the SQLite database (the &#8220;envelope index&#8221;) that Apple Mail uses to store indexes and subject lines of emails. </p>
<p>Here are the steps:<br />
1. Quit Mail. Please BACKUP if you haven&#8217;t already.<br />
2. Open Terminal (in Applications/Utilities).<br />
3. Check your current &#8216;envelope archive&#8217; size by entering this in the terminal:<br />
<strong>ls -lah ~/Library/Mail/Envelope\ Index </strong><br />
4. Then enter the following:<br />
<strong>sqlite3 ~/Library/Mail/Envelope\ Index vacuum; </strong></p>
<p>On my 2.75GB worth of email (not including attachments) this command took about 4 minutes on my MacBook Pro &#8211; don&#8217;t worry if it takes longer. </p>
<p>Then check your envelope size by running the first command again. My Envelope Index went from 155MB to 134MB and the performance improvement was surprisingly good.  </p>
]]></content:encoded>
			<wfw:commentRss>http://waffle.coretech.net.au/2008/05/speed-up-apple-mail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac Mini as home media center.</title>
		<link>http://waffle.coretech.net.au/2007/06/mac-mini-as-home-media-center/</link>
		<comments>http://waffle.coretech.net.au/2007/06/mac-mini-as-home-media-center/#comments</comments>
		<pubDate>Tue, 12 Jun 2007 14:49:14 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://waffle.coretech.net.au/?p=56</guid>
		<description><![CDATA[So we know that the humble Mac Mini can drive a SD TV just fine, but what about driving an HD TV? This guy played 1080p video with no dropped frames on a core duo Mac mini with only 512MB RAM. (Safari, Quicktime Pro and Activity Monitor were running.) Not bad for a machine with [...]]]></description>
			<content:encoded><![CDATA[<p>So we know that the humble Mac Mini can drive a SD TV just fine, but what about driving an HD TV? <a href="http://www.xlr8yourmac.com/archives/mar06/030306.html "Xlr8yourmac.com"">This guy</a> played 1080p video with no dropped frames on a core duo Mac mini with only 512MB RAM. (Safari, Quicktime Pro and Activity Monitor were running.) Not bad for a machine with shared graphics memory.</p>
<p>There&#8217;s also his interesting comments on DivX versus H.264 codecs:<br />
> you&#8217;re bound to hear a lot about DivX being better than h.264, some reasons are valid,<br />
but for content providers (i do pro video work), h. 264 is preferred for a number of reasons &#8211; not the least of which is that its an open standard and the licensing fees are reasonable, and there is pro mac software for it. There is a ton of hardware that does broadcast quality h.264 encoding realtime &#8211; its what the pros are moving to for content distro. It streams better than anything else in its range (WM9, Real).<br />
This is why DirecTV, Apple, Verizon, T-Mobile, Orange, Thales, and a ton of actual content makers are using h.264 rather than DivX&#8230;.</p>
<p><a href="http://www.markwilson.co.uk/blog/2007/05/creating-a-media-center-mac.htm "Mark's (we)Blog"">This dude</a> also uses his mini as a media centre running Vista so that he can use Microsoft&#8217;s  latest Media Centre software and a remote control with more features than the Apple remote. This results in a richer TV interface than running a Mac OS X / Elgato solution but you do have to run windows.</p>
<p><a href="http://arstechnica.com/journals/apple.ars/2007/03/30/mac-mini-the-original-apple-tv-alternative "Infinite Loop"">Infinite Loop</a> have a mini setup more as a media jukebox and less as a personal video recorder (PVR) (i.e there&#8217;s no Elgato digital TV receiver). There&#8217;s lots of good stuff in the comments here.</p>
<p>As a further note Elgato&#8217;s software, <a href="http://www.elgato.com/">EyeTV</a> now works with iTunes so you can record TV shows and have them automatically loaded into iTunes for playback on whatever device your mini is driving (HDTV with DVI to HDMI cable).</p>
]]></content:encoded>
			<wfw:commentRss>http://waffle.coretech.net.au/2007/06/mac-mini-as-home-media-center/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
