<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>softwarehardwareweb &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/softwarehardwareweb/</link>
	<description>Feed of posts on WordPress.com tagged "softwarehardwareweb"</description>
	<pubDate>Sun, 03 Jan 2010 14:44:59 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Complete WordPress Theme Guide]]></title>
<link>http://island.wordpress.com/2008/11/09/complete-wordpress-theme-guide/</link>
<pubDate>Sun, 09 Nov 2008 13:27:53 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/11/09/complete-wordpress-theme-guide/</guid>
<description><![CDATA[Nick La, witer for Web Designer Wall, is writing a complete guide on how to install WordPress and cu]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Nick La, witer for Web Designer Wall, is writing a complete guide on how to install WordPress and customize WordPress themes.</p>
<p>(Via <a href="http://www.webdesignerwall.com/tutorials/complete-wordpress-theme-guide/#comment-27406">-Complete WordPress Theme Guide</a>.)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[TheAppleBlog]]></title>
<link>http://island.wordpress.com/2008/11/04/theappleblog/</link>
<pubDate>Tue, 04 Nov 2008 12:08:53 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/11/04/theappleblog/</guid>
<description><![CDATA[The Apple experience is a combination of form, function and intangible user emotional responses earn]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><blockquote><p>The Apple experience is a combination of form, function and intangible user emotional responses earned from its masterful blend of software and hardware </p></blockquote>
<p>(Via <a href="http://theappleblog.com/2008/11/03/the-apple-experience/">-The Apple Experience &#124; TheAppleBlog</a>.)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Digital certificates and signatures]]></title>
<link>http://island.wordpress.com/2008/10/14/digital-certificates-and-signatures/</link>
<pubDate>Tue, 14 Oct 2008 21:40:13 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/10/14/digital-certificates-and-signatures/</guid>
<description><![CDATA[Recently the topic of spam came up in one of the meeting of the PMUG. Someone suggested that digital]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Recently the topic of spam came up in one of the meeting of the PMUG.  Someone suggested that digital signatures was one solution to the problem of spam but there was no clear understanding of digital signatures and how they help with the spam problem.  I intend to write a concise but easily understood series of article on digital signatures, email encryption, and how to use it on Mac OS X ( with Mail.app ).</p>
<h4>What is a digital signature?</h4>
<p>According to Wikipedia:</p>
<p style="padding-left:30px;"><em>A <strong>digital signature</strong> or <strong>digital signature scheme</strong> is a type of <a class="mw-redirect" title="Asymmetric key algorithm" href="http://en.wikipedia.org/wiki/Asymmetric_key_algorithm">asymmetric cryptography</a> used to simulate the security properties of a handwritten <a title="Signature" href="http://en.wikipedia.org/wiki/Signature">signature</a> on paper.</em></p>
<p>Digital signatures are one component of what is called a public key infrastructure ( PKI ).  PKI provides mechanisms and process for ensuring the confidentiality and integrity of digital information.  It allows someone to prove his/her online identity and that documents and communications ( e.g. email and banking transaction ) haven&#8217;t been tampered with.</p>
<h4>How does it work?</h4>
<p>The science behind PKI involves some very complicated math.  It involves finding the factors of very long prime numbers.  These factors are used to create two keys, one private and one public.  The private key is kept strictly confidential and is not shared with anyone, while the public key is distributed widely.  Messages encoded with the private key can only be decoded with the corresponding public key and message encoded with the public key can only be decoded by private key.</p>
<h4>How is this useful for digital signing?</h4>
<p>The idea is to take piece of digital data and using a mathematical algorithm compute a large number called a hash &#8211; a small digital &#8220;fingerprint&#8221; made from any kind of data.  The hashing function should create a unique hash for any particular piece of data.  If the data changes then the hash will also change and we will know that the data has been tampered with.</p>
<p>To digitally sign a document, we compute the hash of the document and then encode the hash using the a private key.  Since the data was encoded with the private key, it can only be decoded with the corresponding public key.  To verify that the document ( e.g. email message ) came from that user, simply decode the hash using the widely known public key, compute a new hash from received document, and compare against the hash that was sent.  If the hashes do not match we know that the document was tampered with.  We know who sent the message because only that user has the private key used to encode the message.</p>
<h4>How do I know the person sending the message is the person sending the message?</h4>
<p>How do I know that the doctors is really a doctor?  That the lawyer really knows the law?  In the end, everything in security boils down to trust &#8230; but verify.  In the real world we have <strong>authorities</strong> that <strong>certify</strong> that the doctors and lawyers ( teacher etc ) know what they are doing.  The doctor or lawyers has been issued a license (certificate) to practice their craft.  In a similar way PKI has the concept of a Certificate Authority (CA).</p>
<p>The user securely creates a private key and the CA signs the users public key with their private. This places their stamp of approval on the user digital certificates.  The system is very heavily dependent on the trust placed in the CA. If the private key of the CA is compromised the entire PKI system is at risk since anyone could use that private key to create digital certificates.  Similarly if the user loses his/her private key then anyone could digitally impersonate that user.</p>
<h4>How does it all work together?</h4>
<ul>
<li>A and B want to exchange confidential message. &#8211; A creates a message and encodes the message ( and the message hash ) using B&#8217;s public key.  B receives the message and decodes the message using his/her confidential private key.  B is the only one who can decode the message because B has the private key.</li>
<li>A wants to send B an ( non-confidential ) message but B wants assurances the message did come from A. -A creates a message and encodes the hash of the message using her private key.  B received the message and decodes the hash using As public key.  B knows the message came from A because only A has the private key to encode the hash.</li>
</ul>
<h4>What&#8217;s Next?</h4>
<p>In my next article I plan to show how to use digital certificate and digital signature to make your email more secure.</p>
<p>References:</p>
<ul>
<li>Public-key encryption for dummies, MIKE ROTHMAN, Network World, 05/17/99,http://www.networkworld.com/news/64452_05-17-1999.html</li>
<li>Digital signature,Wikipedia, http://en.wikipedia.org/wiki/Digital_signature#Definition</li>
<li>Cryptographic hash function, Wikipedia,http://en.wikipedia.org/wiki/Cryptographic_hash_function</li>
<li>What is PKI?, SearchSecurity.com, 10 Oct 2006,Jim Brayton, Andrea Finneman, Nathan Turajski, and Scott Wiltsey,http://searchsecurity.techtarget.com/sDefinition/0,,sid14_gci214299,00.html</li>
</ul>
<p><cite>Cross posted from the <a href="http://pmug-nj.org/blog/?p=19">Princeton Macintosh User&#8217;s Group</a></cite><br />
<a name="pd_a_1014306"></a><div class="PDS_Poll" id="PDI_container1014306" style="display:inline-block;"></div><script type="text/javascript" language="javascript" charset="utf-8" src="http://static.polldaddy.com/p/1014306.js"></script>
		<noscript>
		<a href="http://answers.polldaddy.com/poll/1014306/">View This Poll</a><br/><span style="font-size:10px;"><a href="http://answers.polldaddy.com">answers</a></span>
		</noscript></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Browser security]]></title>
<link>http://island.wordpress.com/2008/09/09/browser-security/</link>
<pubDate>Tue, 09 Sep 2008 14:46:47 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/09/09/browser-security/</guid>
<description><![CDATA[The SecurityFocus web sites has been running a series of articles on web browser security.  The arti]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The <a title="Password Management Concerns with IE and Firefox, part two" href="http://www.securityfocus.com/infocus/1883" target="_blank">SecurityFocus </a>web sites has been running a series of articles on web browser security.  The articles target the two major browsers, IE (6 and 7) and (strangely) older versions of Firexfox (1.5 and 2.0).  The current article looks at <span class="body">attacks on Password Managers. </span> The user is given a false sense of security because they &#8220;<span class="body">expect that the browser, possibly in conjunction with the operating system, will protect their information&#8221;. </span>The major take away was that these browsers are not to be trusted to store personal information such as usernames, passwords and other stored form information.</p>
<blockquote><p><span class="body">Firefox&#8217;s password manager (version 2.0) as of Novermber 2006 has a software flaw that allows a user&#8217;s credentials (from the site being currently visited) to be posted to any URL if the user clicks a maliciously crafted link.</span></p></blockquote>
<p>And IE( 6 or 7) has this issue:</p>
<blockquote><p><span class="body">Internet Explorer is usually a prime target for malware infection. &#8230;&#8230; these vulnerabilities converge at a dangerous point where malware programs are specifically targeting AutoComplete information. These programs gain confidential information, and then send it back to the attacker.</span></p></blockquote>
<p>So what we do to reduce the risks?  Fortunately the article provides some <a title="Password Management Concerns with IE and Firefox, part two" href="http://www.securityfocus.com/infocus/1883/2" target="_blank">defensive strategies</a>.  They suggest avoiding password managers altogher, using a strong ( not easy guessed ) password to protect the password manager, using an <a title="Password Safe" href="http://passwordsafe.sourceforge.net/" target="_blank">alternative password manager that support encryption</a>, strong and unique passwords for every site, and even some programming tips for web developers.</p>
<p>On my Mac I use 1Password.  IPassword uses a master password, encrypts stored passwords and form data, and can generate unique random passwords for any site.  You can <a href="http://agilewebsolutions.com/downloads">Download 1Password here</a> and give it a test drive.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[On Software Evolution]]></title>
<link>http://island.wordpress.com/2008/09/06/on-software-evolution/</link>
<pubDate>Sat, 06 Sep 2008 14:41:59 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/09/06/on-software-evolution/</guid>
<description><![CDATA[Gnip&#8217;s jud valeski on Chrome. My favorite kind of technology is the kind that quietly gets bui]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Gnip&#8217;s <a href="http://one.valeski.org/">jud valeski</a> on Chrome.</p>
<blockquote><p>My favorite kind of technology is the kind that quietly gets built, then one day you wake up and it’s changed everything. Google Gears has that potential and if Chrome winds up with meaningful distribution (or Firefox adopts Gears) web apps as we know them will finally have mark-up-level access to local resources (read “offline functionality”). This kind of evolution is long overdue. &#8212; <a href="http://blog.gnipcentral.com/2008/09/05/software-evolution/">Gnip Blog</a></p></blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How to protect your Gmail account]]></title>
<link>http://island.wordpress.com/2008/09/04/how-to-protect-your-gmail-account/</link>
<pubDate>Thu, 04 Sep 2008 17:05:10 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/09/04/how-to-protect-your-gmail-account/</guid>
<description><![CDATA[Enabling HTTPS in Gmail Researchers at the at a Defcon hackers’ conference revealed a flaw in the wa]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div id="attachment_608" class="wp-caption aligncenter" style="width: 581px"><a href="http://island.files.wordpress.com/2008/09/2008-09-04_1249.png"><img class="size-full wp-image-608" title="2008-09-04_1249" src="http://island.wordpress.com/files/2008/09/2008-09-04_1249.png" alt="Enabling HTTPS in Gmail" width="571" height="94" /></a><p class="wp-caption-text">Enabling HTTPS in Gmail</p></div>
<p>Researchers at the at a Defcon hackers’ conference revealed a flaw in the way Google&#8217;s Gmail handles session cookies. According to the <a href="http://www.hungry-hackers.com/2008/08/gmail-account-hacking-tool.html">Hacking Truths</a>.<em></em> web site:</p>
<blockquote><p>The problem lies with the fact that every time you access anything on Gmail, even an image, your browser also sends your cookie to the website. This makes it possible for an attacker sniffing traffic on the network to insert an image served from http://mail.google.com and force your browser to send the cookie file, thus getting your session ID.</p></blockquote>
<p>However, Google does provide a way to prevent that risk.  Login to your Gmail account and click the <em>Settings </em>link in the upper right hand corner of the page.  At the bottom of that page look for the <em><span class="jwjW1c">Browser connection</span></em> section and make sure that <span class="JuLp9"><em>Always use https</em> is enabled.<br />
</span></p>
<blockquote><p><a href="http://www.hungry-hackers.com/2008/08/gmail-account-hacking-tool.html"><br />
</a></p></blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[iPhone and iTunes uses standard formats]]></title>
<link>http://island.wordpress.com/2008/08/12/iphone-and-itunes-uses-standard-formats/</link>
<pubDate>Tue, 12 Aug 2008 21:28:46 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/08/12/iphone-and-itunes-uses-standard-formats/</guid>
<description><![CDATA[A friend told me recently that he does not like iTunes and iPods because it uses non-standard format]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A friend told me recently that he does not like iTunes and iPods because it uses non-standard formats.  A little research later and here&#8217;s my response ( I borrowed heavily from Wikipedia.com ).</p>
<blockquote><p>.MP4 and .M4V, AAC are the video formats Apple co-developed with Microsoft and others back starting back in 1997.  AAC ( also used in iTunes, RIM BlackBerry, Sony Ericson Phones, Zen and other MP3 players ) is also a standard format.  So when he says iTunes does not use standard formats he is really saying &#8220;iTunes does not use a format I like&#8221;.</p>
<p>http://en.wikipedia.org/wiki/MP4</p>
<p>http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC</p>
<p>http://en.wikipedia.org/wiki/Advanced_Audio_Coding</p>
<p><a href="http://en.wikipedia.org/wiki/MP4" target="_blank">MPEG-4 Part 14 &#8211; Wikipedia, the free encyclopedia</a></p>
<h3><span>Compatible software</span></h3>
<ul>
<li><a title="3ivx" href="http://en.wikipedia.org/wiki/3ivx" target="_blank">3ivx</a></li>
<li><a title="Amarok (audio)" href="http://en.wikipedia.org/wiki/Amarok_%28audio%29" target="_blank">Amarok</a></li>
<li><a title="Banshee (music player)" href="http://en.wikipedia.org/wiki/Banshee_%28music_player%29" target="_blank">Banshee Music Player</a></li>
<li><a title="Foobar2000" href="http://en.wikipedia.org/wiki/Foobar2000" target="_blank">foobar2000</a></li>
<li><a title="GOM Player" href="http://en.wikipedia.org/wiki/GOM_Player" target="_blank">GOM Player</a></li>
<li><a title="ITunes" href="http://en.wikipedia.org/wiki/ITunes" target="_blank">iTunes</a></li>
<li><a title="JetAudio" href="http://en.wikipedia.org/wiki/JetAudio" target="_blank">jetAudio</a></li>
<li><a title="J.River Media Jukebox (page does not exist)" href="http://en.wikipedia.org/w/index.php?title=J.River_Media_Jukebox&#38;action=edit&#38;redlink=1" target="_blank">J.River Media Jukebox</a></li>
<li><a title="J.River Media Center (page does not exist)" href="http://en.wikipedia.org/w/index.php?title=J.River_Media_Center&#38;action=edit&#38;redlink=1" target="_blank">J.River Media Center</a></li>
<li><a title="The KMPlayer" href="http://en.wikipedia.org/wiki/The_KMPlayer" target="_blank">The KMPlayer</a></li>
<li><a title="KSP Sound Player" href="http://en.wikipedia.org/wiki/KSP_Sound_Player" target="_blank">KSP Sound Player</a></li>
<li><a title="Media Player Classic" href="http://en.wikipedia.org/wiki/Media_Player_Classic" target="_blank">Media Player Classic</a></li>
<li><a title="MPlayer" href="http://en.wikipedia.org/wiki/MPlayer" target="_blank">MPlayer</a></li>
<li><a title="Nero Burning ROM" href="http://en.wikipedia.org/wiki/Nero_Burning_ROM" target="_blank">Nero Burning ROM</a> (Nero ShowTime)</li>
<li><a title="Nokia PC Suite" href="http://en.wikipedia.org/wiki/Nokia_PC_Suite" target="_blank">Nokia PC Suite</a></li>
<li><a title="Wii Menu" href="http://en.wikipedia.org/wiki/Wii_Menu#Photo_Channel" target="_blank">Photo Channel</a> (<a title="Wii" href="http://en.wikipedia.org/wiki/Wii" target="_blank">Wii</a>)</li>
<li><a title="QuickTime Player" href="http://en.wikipedia.org/wiki/QuickTime_Player" target="_blank">QuickTime Player</a></li>
<li><a title="RealPlayer" href="http://en.wikipedia.org/wiki/RealPlayer" target="_blank">RealPlayer</a></li>
<li><a title="Songbird (software)" href="http://en.wikipedia.org/wiki/Songbird_%28software%29" target="_blank">Songbird (software)</a></li>
<li><a title="VLC media player" href="http://en.wikipedia.org/wiki/VLC_media_player" target="_blank">VLC media player</a></li>
<li><a title="Winamp" href="http://en.wikipedia.org/wiki/Winamp" target="_blank">Winamp</a></li>
<li><a title="Xbox Media Center" href="http://en.wikipedia.org/wiki/Xbox_Media_Center" target="_blank">Xbox Media Center</a></li>
<li><a title="Xine" href="http://en.wikipedia.org/wiki/Xine" target="_blank">Xine</a></li>
<li><a title="Zune Marketplace" href="http://en.wikipedia.org/wiki/Zune_Marketplace" target="_blank">Zune Marketplace</a></li>
</ul>
<p><a name="11bb8c780e303935_Compatible_hardware"></a></p>
<h3><span>Compatible hardware</span></h3>
<ul>
<li><a title="Archos" href="http://en.wikipedia.org/wiki/Archos" target="_blank">Archos</a></li>
<li><a title="AT&#38;T Tilt" href="http://en.wikipedia.org/wiki/AT%26T_Tilt" target="_blank">AT&#38;T Tilt</a></li>
<li><a title="BlackBerry" href="http://en.wikipedia.org/wiki/BlackBerry" target="_blank">BlackBerry 8100 &#124; 8300 &#124; 8800</a></li>
<li><a title="Creative Zen" href="http://en.wikipedia.org/wiki/Creative_Zen" target="_blank">Creative Zen</a></li>
<li><a title="IPhone" href="http://en.wikipedia.org/wiki/IPhone" target="_blank">iPhone</a></li>
<li><a title="IPod" href="http://en.wikipedia.org/wiki/IPod" target="_blank">iPod</a></li>
<li><a title="Motorola SLVR L9" href="http://en.wikipedia.org/wiki/Motorola_SLVR_L9" target="_blank">Motorola SLVR L9</a></li>
<li><a title="Neuros OSD" href="http://en.wikipedia.org/wiki/Neuros_OSD" target="_blank">Neuros MPEG 4 Recorder &#124; Neuros MPEG 4 Recorder 2 &#124; Neuros OSD</a></li>
<li><a title="Nokia N Series" href="http://en.wikipedia.org/wiki/Nokia_N_Series" target="_blank">Nokia N Series</a>, <a title="Nokia 5300" href="http://en.wikipedia.org/wiki/Nokia_5300" target="_blank">Nokia 5300</a>, <a title="Nokia 5700" href="http://en.wikipedia.org/wiki/Nokia_5700" target="_blank">Nokia 5700</a> and <a title="Nokia 6300" href="http://en.wikipedia.org/wiki/Nokia_6300" target="_blank">Nokia 6300</a></li>
<li><a title="PlayStation 3" href="http://en.wikipedia.org/wiki/PlayStation_3" target="_blank">PlayStation 3</a></li>
<li><a title="PlayStation Portable" href="http://en.wikipedia.org/wiki/PlayStation_Portable" target="_blank">PlayStation Portable</a></li>
<li><a title="Sansa Connect" href="http://en.wikipedia.org/wiki/Sansa_Connect" target="_blank">Sansa Connect</a> (with firmware upgrade)</li>
<li><a title="Sony Ericsson" href="http://en.wikipedia.org/wiki/Sony_Ericsson" target="_blank">Sony Ericsson</a></li>
<li>Some <a title="Sony Walkman" href="http://en.wikipedia.org/wiki/Sony_Walkman" target="_blank">Sony Walkman</a> models</li>
<li><a title="Wii" href="http://en.wikipedia.org/wiki/Wii" target="_blank">Wii</a> (with system software update, available early December 2007)</li>
<li><a title="Xbox 360" href="http://en.wikipedia.org/wiki/Xbox_360" target="_blank">Xbox 360</a></li>
<li><a title="Zune" href="http://en.wikipedia.org/wiki/Zune" target="_blank">Zune</a></li>
</ul>
<p>AAC compatible devices and software.</p>
<h4><span class="mw-headline">Other Portable Players</span></h4>
<ul>
<li><strong><a class="mw-redirect" title="Creative Zen" href="http://en.wikipedia.org/wiki/Creative_Zen">Creative Zen</a> Portable</strong></li>
<li><strong><a title="Microsoft" href="http://en.wikipedia.org/wiki/Microsoft">Microsoft</a> <a title="Zune" href="http://en.wikipedia.org/wiki/Zune">Zune</a></strong></li>
<li><strong><a title="SanDisk" href="http://en.wikipedia.org/wiki/SanDisk">SanDisk</a> <a title="SanDisk Sansa" href="http://en.wikipedia.org/wiki/SanDisk_Sansa">Sansa</a></strong></li>
<li><strong><a title="Sony" href="http://en.wikipedia.org/wiki/Sony">Sony</a> <a title="PlayStation Portable" href="http://en.wikipedia.org/wiki/PlayStation_Portable">PlayStation Portable</a> (PSP)</strong> with firmware 2.0 or greater</li>
<li><strong><a title="Sony" href="http://en.wikipedia.org/wiki/Sony">Sony</a> <a title="Walkman" href="http://en.wikipedia.org/wiki/Walkman">Walkman</a> A and S Series</strong></li>
<li><strong><a class="mw-redirect" title="SonyEricsson" href="http://en.wikipedia.org/wiki/SonyEricsson">SonyEricsson</a> Walkman Phones-W series, e.g. <a class="mw-redirect" title="W890i" href="http://en.wikipedia.org/wiki/W890i">W890i</a></strong></li>
</ul>
<p><a id="Mobile_phones" name="Mobile_phones"></a></p>
<h4><span class="editsection"></span><span class="mw-headline">Mobile phones</span></h4>
<p>For a number of years, many mobile phones from manufacturers such as <a title="Nokia" href="http://en.wikipedia.org/wiki/Nokia">Nokia</a>, <a title="Motorola" href="http://en.wikipedia.org/wiki/Motorola">Motorola</a>, <a class="mw-redirect" title="Samsung" href="http://en.wikipedia.org/wiki/Samsung">Samsung</a>, <a title="Sony Ericsson" href="http://en.wikipedia.org/wiki/Sony_Ericsson">Sony Ericsson</a>, <a title="BenQ-Siemens" href="http://en.wikipedia.org/wiki/BenQ-Siemens">BenQ-Siemens</a> and <a title="Philips" href="http://en.wikipedia.org/wiki/Philips">Philips</a> have supported AAC playback. The first such phone was the <a title="Nokia 5510" href="http://en.wikipedia.org/wiki/Nokia_5510">Nokia 5510</a> released in 2002 which also plays MP3s. However this phone was a commercial failure and such phones with integrated music players did not gain mainstream popularity until 2005 when the trend of having AAC as well as MP3 support continued. Most new smartphones and music-themed phones support playback of these formats.</p>
<ul>
<li><strong><a title="Sony Ericsson" href="http://en.wikipedia.org/wiki/Sony_Ericsson">Sony Ericsson</a></strong> phones support various AAC formats in MP4 container. AAC-LC is supported in all phones beginning with <a class="mw-redirect" title="K700" href="http://en.wikipedia.org/wiki/K700">K700</a>, phones beginning with <a class="mw-redirect" title="Sony Ericsson W550" href="http://en.wikipedia.org/wiki/Sony_Ericsson_W550">W550</a> have support of HE-AAC. The latest devices such as the <a title="Sony Ericsson P990" href="http://en.wikipedia.org/wiki/Sony_Ericsson_P990">P990</a>, <a title="Sony Ericsson K610" href="http://en.wikipedia.org/wiki/Sony_Ericsson_K610">K610</a>, <a class="mw-redirect" title="W890i" href="http://en.wikipedia.org/wiki/W890i">W890i</a> and later support HE-AAC v2.</li>
<li><strong><a class="mw-redirect" title="Nokia XpressMusic" href="http://en.wikipedia.org/wiki/Nokia_XpressMusic">Nokia XpressMusic</a></strong> and other new generation Nokia multimedia phones: also support AAC format.</li>
<li><strong><a title="BlackBerry" href="http://en.wikipedia.org/wiki/BlackBerry">BlackBerry</a></strong>: RIM’s latest series of Smartphones such as the 8100 (&#8220;Pearl&#8221;) and 8800 support AAC.</li>
<li><strong><a title="Apple Inc." href="http://en.wikipedia.org/wiki/Apple_Inc.">Apple</a>&#8217;s <a title="IPhone" href="http://en.wikipedia.org/wiki/IPhone">iPhone</a></strong> supports AAC and <a class="mw-redirect" title="FairPlay (DRM)" href="http://en.wikipedia.org/wiki/FairPlay_%28DRM%29">FairPlay protected AAC files</a> used as the default encoding format in the iTunes store.</li>
</ul>
<p><a id="Other_devices" name="Other_devices"></a></p>
<h4><span class="editsection"></span><span class="mw-headline">Other devices</span></h4>
<ul>
<li><strong><a title="Palm OS" href="http://en.wikipedia.org/wiki/Palm_OS">Palm OS</a> <a title="Personal digital assistant" href="http://en.wikipedia.org/wiki/Personal_digital_assistant">PDAs</a></strong>: Many Palm OS based PDAs and smartphones can play AAC and HE-AAC with the 3rd party software <a title="Pocket Tunes" href="http://en.wikipedia.org/wiki/Pocket_Tunes">Pocket Tunes</a>. Version 4.0, released in December 2006, added support for native AAC and HE-AAC files. The AAC codec for <a class="mw-redirect" title="TCPMP" href="http://en.wikipedia.org/wiki/TCPMP">TCPMP</a>, a popular video player, was withdrawn after version 0.66 due to patent issues, but can still be downloaded from sites other than corecodec.org. CorePlayer, the commercial follow-on to TCPMP, includes AAC support. Other PalmOS programs supporting AAC include Kinoma Player and AeroPlayer.</li>
<li><strong><a class="mw-redirect" title="Microsoft Windows Mobile" href="http://en.wikipedia.org/wiki/Microsoft_Windows_Mobile">Microsoft Windows Mobile</a></strong> platforms support AAC either by the native <a title="Windows Media Player" href="http://en.wikipedia.org/wiki/Windows_Media_Player">Windows Media Player</a> or by third-party products (TCPMP, CorePlayer)</li>
<li><strong><a class="mw-redirect" title="Epson" href="http://en.wikipedia.org/wiki/Epson">Epson</a></strong> supports AAC playback in the <a class="new" title="Epson P-2000 (page does not exist)" href="http://en.wikipedia.org/w/index.php?title=Epson_P-2000&#38;action=edit&#38;redlink=1">P-2000</a> and <a class="new" title="Epson P-4000 (page does not exist)" href="http://en.wikipedia.org/w/index.php?title=Epson_P-4000&#38;action=edit&#38;redlink=1">P-4000</a> Multimedia/Photo Storage Viewers. This support is not available with their older models, however.</li>
</ul>
<ul>
<li><strong><a class="new" title="Vosonic (page does not exist)" href="http://en.wikipedia.org/w/index.php?title=Vosonic&#38;action=edit&#38;redlink=1">Vosonic</a></strong> supports AAC recording and playback in the VP8350, VP8360 and VP8390 MultiMedia Viewers.</li>
</ul>
<ul>
<li>The <strong><a title="Sony Reader" href="http://en.wikipedia.org/wiki/Sony_Reader">Sony Reader</a></strong> portable eBook plays M4A files containing AAC, and displays metadata created by iTunes. Other Sony products, including the A and E series Network Walkmans, support AAC with firmware updates (released May 2006) while the S series supports it out of the box.</li>
</ul>
<ul>
<li>Nearly every major car stereo manufacturer offers models that will play back .m4a files recorded onto CD in a data format. This includes <a title="Pioneer Corporation" href="http://en.wikipedia.org/wiki/Pioneer_Corporation">Pioneer</a>, <a title="Sony" href="http://en.wikipedia.org/wiki/Sony">Sony</a>, <a title="Alpine" href="http://en.wikipedia.org/wiki/Alpine">Alpine</a>, <a title="Kenwood" href="http://en.wikipedia.org/wiki/Kenwood">Kenwood</a>, <a title="Clarion" href="http://en.wikipedia.org/wiki/Clarion">Clarion</a>, <a title="Panasonic" href="http://en.wikipedia.org/wiki/Panasonic">Panasonic</a>, and <a title="JVC" href="http://en.wikipedia.org/wiki/JVC">JVC</a>.</li>
</ul>
<ul>
<li>The <strong><a title="Sonos" href="http://en.wikipedia.org/wiki/Sonos">Sonos</a> Digital Media Player</strong> supports playback of AAC files.</li>
</ul>
<ul>
<li>The <strong>Roku <a title="SoundBridge" href="http://en.wikipedia.org/wiki/SoundBridge">SoundBridge</a></strong> network audio player supports playback of AAC encoded files.</li>
</ul>
<ul>
<li>The <strong><a title="Squeezebox (network music player)" href="http://en.wikipedia.org/wiki/Squeezebox_%28network_music_player%29">Squeezebox</a></strong> network audio player (made by <a title="Slim Devices" href="http://en.wikipedia.org/wiki/Slim_Devices">Slim Devices</a>, a <a title="Logitech" href="http://en.wikipedia.org/wiki/Logitech">Logitech</a> company) supports playback of AAC files.</li>
</ul>
<ul>
<li>The <em><a title="PlayStation 3" href="http://en.wikipedia.org/wiki/PlayStation_3">PlayStation 3</a></em> supports encoding and decoding of AAC files.</li>
</ul>
<ul>
<li>The <em><a title="Xbox 360" href="http://en.wikipedia.org/wiki/Xbox_360">Xbox 360</a></em> supports streaming of AAC through the Zune software, and off supported iPods connected through the USB port</li>
</ul>
<ul>
<li>The <strong><a title="Wii" href="http://en.wikipedia.org/wiki/Wii">Wii</a></strong> video game console supports AAC files through version 1.1 of the <a title="Wii Menu" href="http://en.wikipedia.org/wiki/Wii_Menu#Photo_Channel">Photo Channel</a> as of December 11, 2007. All AAC profiles and bitrates are supported as long as it is in the .m4a file extension. This update removed MP3 compatibility, but users who have installed this may freely downgrade to the old version if they wish.<sup class="reference"><a href="http://en.wikipedia.org/wiki/Advanced_Audio_Coding#cite_note-9">[10]</a></sup></li>
</ul>
<p><a id="Software" name="Software"></a></p>
<h3><span class="editsection"></span><span class="mw-headline">Software</span></h3>
<p>The <a title="Rockbox" href="http://en.wikipedia.org/wiki/Rockbox">Rockbox</a> <a title="Open source" href="http://en.wikipedia.org/wiki/Open_source">Open source</a> <a title="Firmware" href="http://en.wikipedia.org/wiki/Firmware">firmware</a> (available for multiple portable players) also offers support for AAC to varying degrees, depending on the model of player and the AAC profile.</p>
<p>Optional iPod Support (playback of unprotected AAC files) for the <a title="Xbox 360" href="http://en.wikipedia.org/wiki/Xbox_360">Xbox 360</a> is available as a free download from <a title="Xbox Live" href="http://en.wikipedia.org/wiki/Xbox_Live">Xbox Live</a>.<sup class="reference"><a href="http://en.wikipedia.org/wiki/Advanced_Audio_Coding#cite_note-10">[11]</a></sup></p>
<p><a id="Other_software_media_players" name="Other_software_media_players"></a></p>
<h4><span class="editsection"></span><span class="mw-headline">Other software media players</span></h4>
<p>Almost all current computer media players include built-in decoders for AAC, or can utilize a <a class="mw-redirect" title="Library (computer science)" href="http://en.wikipedia.org/wiki/Library_%28computer_science%29">library</a> to decode it. On <a title="Microsoft Windows" href="http://en.wikipedia.org/wiki/Microsoft_Windows">Microsoft Windows</a>, <a title="DirectShow" href="http://en.wikipedia.org/wiki/DirectShow">DirectShow</a> can be utilized this way with the corresponding filters to enable AAC playback in any <a title="DirectShow" href="http://en.wikipedia.org/wiki/DirectShow">DirectShow</a> based player. Software player applications of particular note include:</p>
<ul>
<li>Easy CD-DA Extractor for <a title="Microsoft Windows" href="http://en.wikipedia.org/wiki/Microsoft_Windows">Windows</a>, CD Ripper and audio converter, which includes an AAC encoder that supports LC and HE AAC.</li>
<li><a title="Ffdshow" href="http://en.wikipedia.org/wiki/Ffdshow">ffdshow</a> is a free <a title="Open source" href="http://en.wikipedia.org/wiki/Open_source">open source</a> <a title="DirectShow" href="http://en.wikipedia.org/wiki/DirectShow">DirectShow</a> filter for <a title="Microsoft Windows" href="http://en.wikipedia.org/wiki/Microsoft_Windows">Microsoft Windows</a> operating systems that uses FAAD2 to support AAC decoding.</li>
<li><a title="Foobar2000" href="http://en.wikipedia.org/wiki/Foobar2000">foobar2000</a> is a <a title="Freeware" href="http://en.wikipedia.org/wiki/Freeware">freeware</a> <a title="Audio player (software)" href="http://en.wikipedia.org/wiki/Audio_player_%28software%29">audio player</a> for <a title="Microsoft Windows" href="http://en.wikipedia.org/wiki/Microsoft_Windows">Windows</a> that supports LC and HE AAC.</li>
<li><a class="mw-redirect" title="Jetaudio" href="http://en.wikipedia.org/wiki/Jetaudio">Jetaudio</a> is a free media player for <a title="Microsoft Windows" href="http://en.wikipedia.org/wiki/Microsoft_Windows">Microsoft Windows</a> that plays a large array of formats, including AAC.</li>
<li><a title="The KMPlayer" href="http://en.wikipedia.org/wiki/The_KMPlayer">The KMPlayer</a> also supports AAC.</li>
<li><a title="KSP Sound Player" href="http://en.wikipedia.org/wiki/KSP_Sound_Player">KSP Sound Player</a> also supports AAC.</li>
<li><a title="Media Player Classic" href="http://en.wikipedia.org/wiki/Media_Player_Classic">Media Player Classic</a></li>
<li><a title="MPlayer" href="http://en.wikipedia.org/wiki/MPlayer">MPlayer</a> or <a title="Xine" href="http://en.wikipedia.org/wiki/Xine">xine</a> are often used as AAC decoders on <a title="Linux" href="http://en.wikipedia.org/wiki/Linux">Linux</a>.</li>
<li><a title="RealPlayer" href="http://en.wikipedia.org/wiki/RealPlayer">RealPlayer</a> includes <a title="RealNetworks" href="http://en.wikipedia.org/wiki/RealNetworks">RealNetworks</a>’s RealAudio 10 AAC encoder.</li>
<li><a title="Songbird (software)" href="http://en.wikipedia.org/wiki/Songbird_%28software%29">Songbird (software)</a> for <a title="Microsoft Windows" href="http://en.wikipedia.org/wiki/Microsoft_Windows">Windows</a>, <a title="Linux" href="http://en.wikipedia.org/wiki/Linux">Linux</a> and <a class="mw-redirect" title="Apple Macintosh" href="http://en.wikipedia.org/wiki/Apple_Macintosh">Apple Macintosh</a> supports AAC, including the DRM rights management encoding used for purchased music from the iTunes Store, with a plug-in.</li>
<li><a title="Sony" href="http://en.wikipedia.org/wiki/Sony">Sony</a> <a title="SonicStage" href="http://en.wikipedia.org/wiki/SonicStage">SonicStage</a> also support AAC.</li>
<li><a title="VLC media player" href="http://en.wikipedia.org/wiki/VLC_media_player">VLC media player</a> supports playback of MP4 and AAC files.</li>
<li><a title="Winamp" href="http://en.wikipedia.org/wiki/Winamp">Winamp</a> for <a title="Microsoft Windows" href="http://en.wikipedia.org/wiki/Microsoft_Windows">Windows</a>, which includes an AAC encoder that supports LC and HE AAC;</li>
<li>Another Real product, <a title="Rhapsody (online music service)" href="http://en.wikipedia.org/wiki/Rhapsody_%28online_music_service%29">Rhapsody</a> supports the RealAudio AAC codec, in addition to offering subscription tracks encoded with AAC.</li>
<li><a title="XBMC" href="http://en.wikipedia.org/wiki/XBMC">XBMC (<strong>XB</strong>ox <strong>M</strong>edia <strong>C</strong>enter)</a> supports both AAC (LC and HE) on modified <a title="Xbox" href="http://en.wikipedia.org/wiki/Xbox">Xbox</a> game-consoles.</li>
<li><a title="XMMS" href="http://en.wikipedia.org/wiki/XMMS">XMMS</a> supports mp4 playback using a plugin provided by the faad2 library.</li>
</ul>
<li><a class="external text" title="http://www.convertdirect.com" rel="nofollow" href="http://www.convertdirect.com/">ConvertDirect.com</a> serves AAC Files using Youtube Video conversion. It converts Youtube video to AACs.</li>
</blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Gmail Redesigned V2.0 Extension for Firefox]]></title>
<link>http://island.wordpress.com/2008/08/12/gmail-redesigned-v20-extension-for-firefox/</link>
<pubDate>Tue, 12 Aug 2008 20:53:32 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/08/12/gmail-redesigned-v20-extension-for-firefox/</guid>
<description><![CDATA[Wow! Pow! This is my favorite all time Firefox extension. I think that the Gmail team should buy the]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Wow! Pow! This is my favorite all time Firefox extension.  I think that the Gmail team should buy the code for this extension and incorporate the design right into Gmail or provide it as a skin.  They can use the same mechanism they use for the iGoogle page.  <a title="http://www.globexdesigns.com/gr/" href="http://www.globexdesigns.com/gr/">Go get it!</a></p>
<p><a href="http://island.wordpress.com/files/2008/08/2757031772_8bb8ef4820_o.png"><img class="aligncenter size-full wp-image-587" src="http://island.wordpress.com/files/2008/08/2757031772_8bb8ef4820_o.png" alt="" width="510" height="317" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Mounting MobileMe iDisk on Windows XP]]></title>
<link>http://island.wordpress.com/2008/08/06/mounting-mobileme-idisk-on-windows-xp/</link>
<pubDate>Wed, 06 Aug 2008 15:21:57 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/08/06/mounting-mobileme-idisk-on-windows-xp/</guid>
<description><![CDATA[One of the discussions on the Apple MobileMe iDisk forum is how to get iDisk mounted as a drive on W]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;">One of the discussions on the <a href="http://discussions.apple.com/forum.jspa?forumID=963&#38;start=0">Apple MobileMe iDisk</a> forum is how to get iDisk mounted as a drive on Windows XP.  While Apple has <a href="http://docs.info.apple.com/article.html?path=MobileMe/iDisk/en/idsk17012.html">provided instructions on how to do this on Vista</a> nothing was said about XP.  The solution that worked for me was similar to the one that Apple provided for Vista and involves using the &#8220;Add Network Place&#8221; wizard.  <span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="Mounting iDisk on Windows XP by Khürt, on Flickr" href="http://www.flickr.com/photos/khurt/2738850964/"></a><a href="http://island.files.wordpress.com/2008/10/mounting-idisk-on-windows-xp.png"><img class="aligncenter size-full wp-image-646" title="mounting-idisk-on-windows-xp" src="http://island.wordpress.com/files/2008/10/mounting-idisk-on-windows-xp.png" alt="" width="447" height="329" /></a> </span></span> If you’re using Windows XP, open the Explorer, click Computer, and then click “Map network drive” in the toolbar. Then click the link that says &#8220;Sign up for online storage or connect to a network server&#8221; to launch the &#8220;Add Network Place&#8221; wizard. Then Click OK.  <span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="Add Network Place Wizard by Khürt, on Flickr" href="http://www.flickr.com/photos/khurt/2738877282/"></a><a href="http://island.files.wordpress.com/2008/10/add-network-place-wizard.png"><img class="aligncenter size-full wp-image-648" title="add-network-place-wizard" src="http://island.wordpress.com/files/2008/10/add-network-place-wizard.png" alt="" width="500" height="413" /></a> </span></span> Click to choose a network location and click next.  <span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="Choose a network location by Khürt, on Flickr" href="http://www.flickr.com/photos/khurt/2738043267/"></a><a href="http://island.files.wordpress.com/2008/10/choose-a-network-location.png"><img class="size-full wp-image-650 aligncenter" title="choose-a-network-location" src="http://island.wordpress.com/files/2008/10/choose-a-network-location.png" alt="" width="500" height="413" /></a></span></span> Then type http://idisk.me.com/[username] in the folder field, and click next.  <span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="Enter idsk info by Khürt, on Flickr" href="http://www.flickr.com/photos/khurt/2738889658/"></a><a href="http://island.files.wordpress.com/2008/10/enter-idsk-info.png"><img class="aligncenter size-full wp-image-652" title="enter-idsk-info" src="http://island.wordpress.com/files/2008/10/enter-idsk-info.png" alt="" width="500" height="413" /></a> </span></span> Enter your MobileMe member name and password, and then click OK. This mounts your iDisk on your desktop, so you can work with it as you would any other hard disk.<a title="MobileMe username and password by Khürt, on Flickr" href="http://www.flickr.com/photos/khurt/2738895298/"></a><a href="http://island.files.wordpress.com/2008/10/mobileme-username-and-password1.png"><img class="aligncenter size-full wp-image-657" title="mobileme-username-and-password1" src="http://island.wordpress.com/files/2008/10/mobileme-username-and-password1.png" alt="" width="326" height="302" /></a><br />
<a href="http://island.files.wordpress.com/2008/10/2008-08-11_0805.png"><img class="aligncenter size-full wp-image-655" title="2008-08-11_0805" src="http://island.wordpress.com/files/2008/10/2008-08-11_0805.png" alt="" width="500" height="375" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[iPod Touch as blogging tool]]></title>
<link>http://island.wordpress.com/2008/08/05/ipod-touch-as-blogging-tool/</link>
<pubDate>Tue, 05 Aug 2008 22:33:35 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/08/05/ipod-touch-as-blogging-tool/</guid>
<description><![CDATA[I host my blog on WordPress.com. I use an iPod Touch to read RSS feeds while I listen to music. Now ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I host my blog on WordPress.com. I use an iPod Touch to read RSS feeds while I listen to music. Now with the WordPress iPhone app I downloaded for free from the iTunes App Store I can blog while I listen to musc. I won&#8217;t be doing this often.The touch interface is not suited to long prose. Maybe I<br />
should micro blog. Hello, Tumblr!</p>
<p><a href="http://island.files.wordpress.com/2008/08/l-640-423-db2c31ee-5341-401f-bbc8-785638366d7c.jpeg"><img src="http://island.files.wordpress.com/2008/08/l-640-423-db2c31ee-5341-401f-bbc8-785638366d7c.jpeg?w=300&#038;h=198" alt="" width="300" height="198" class="alignnone size-full wp-image-364" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[MobileMe ate my contact list.]]></title>
<link>http://island.wordpress.com/2008/07/30/mobileme-ate-my-contact-list/</link>
<pubDate>Wed, 30 Jul 2008 11:23:31 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/07/30/mobileme-ate-my-contact-list/</guid>
<description><![CDATA[After composing an email in Gmail yesterday I went to the address bar and started typing in my wife]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>After composing an email in Gmail yesterday I went to the address bar and started typing in my wife&#8217;s name.  Normally Gmail would present me with a drop down of choices but in this case I was present with only her MSN account email.  Strange?  Until I read this on the MobileMe status blog.</p>
<blockquote><p>Yesterday (Monday) morning a syncing bug was discovered which caused contact and calendar data to not sync properly over-the-air with iPhones and iPod touch. For some users this caused their contact and calendar data to disappear from their devices, but not from their computers or the MobileMe cloud.&#8211; <a href="http://www.apple.com/mobileme/status/">MobleMe Status Blog</a></p></blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Google Calendar CalDAV support - Calendar Help Center]]></title>
<link>http://island.wordpress.com/2008/07/28/google-calendar-caldav-support-calendar-help-center/</link>
<pubDate>Mon, 28 Jul 2008 22:52:59 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/07/28/google-calendar-caldav-support-calendar-help-center/</guid>
<description><![CDATA[The Google Calendar code jockeys have added support for iCal. I no longer need Gsync and all that ot]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The Google Calendar code jockeys have added support for iCal.  I no longer need Gsync and all that other non-sense.</p>
<blockquote><p>Event information will automatically refresh every 15 minutes.</p></blockquote>
<p>(Via <a href="http://www.google.com/support/calendar/bin/answer.py?answer=99358">-Google Calendar CalDAV support &#8211; Calendar Help Center</a>.)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Time Machine and Time Capsule Backup Failure]]></title>
<link>http://island.wordpress.com/2008/06/16/time-machine-and-time-capsule-backup-failure/</link>
<pubDate>Mon, 16 Jun 2008 23:16:13 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/06/16/time-machine-and-time-capsule-backup-failure/</guid>
<description><![CDATA[This is a followup to the problems I was having with Time Machine backups to Time Capsule. Time Mach]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div style="text-align:center;"><a title="View 'Time Machine TC Backup Failed' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2548851401"><img src="http://farm4.static.flickr.com/3113/2548851401_1241c67055.jpg" border="0" alt="Time Machine TC Backup Failed" width="500" height="332" /></a></div>
<p>This is a followup to the <a href="http://islandinthenet.com/2008/05/23/throwing-a-spotlight-on-time-machine-backups/">problems I was having</a> with Time Machine backups to Time Capsule.  Time Machine would start preparing a backup and after about 10 would fail.  After a few weeks of failed backups or backups taking hours I called Apple support.  They had me try several things including reseting Time Capsule.  One of the things that we tried was using the Disk Utility to mount the sparse bundle files as a OS X volume.  That&#8217;s when I got this error message.</p>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'Operation not supported on socket' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2548910235"></a><a href="http://island.files.wordpress.com/2008/10/operation-not-supported-on-socket.png"><img class="aligncenter size-full wp-image-662" title="operation-not-supported-on-socket" src="http://island.wordpress.com/files/2008/10/operation-not-supported-on-socket.png" alt="" width="372" height="247" /></a><br />
</span></span></div>
<p>After almost an hour on the phone with first level and second level support I decided on a drastic course of action.  I used the AirPort Utility to erase the Time Capsule disk.  Once that completed I configured Time Machine to point to the Time Capsule disk and Time Machine has successfully completed two weeks worth of backup.</p>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'Finally working' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2549847644"></a><a href="http://island.files.wordpress.com/2008/10/finally-working.png"><img class="aligncenter size-full wp-image-665" title="finally-working" src="http://island.wordpress.com/files/2008/10/finally-working.png" alt="" width="500" height="332" /></a><br />
</span></span></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Throwing a Spotlight on Time Machine backups]]></title>
<link>http://island.wordpress.com/2008/05/23/throwing-a-spotlight-on-time-machine-backups/</link>
<pubDate>Sat, 24 May 2008 03:05:25 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/05/23/throwing-a-spotlight-on-time-machine-backups/</guid>
<description><![CDATA[I like my Time Capsule. Together with Time Machine my MacBook and Mac mini have been wireless archiv]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I like my Time Capsule.  Together with Time Machine my MacBook and Mac mini have been wireless archived &#8230; or so I thought.  Over the last few weeks I started to notice my MacBook huffing and puffing ( the fan would come one and stay on ) and Time Machine seemed to be taking forever to complete backups.  My Mac mini was behaving similarly and would hang ( the mini is a 1.42GHz PowerPC ).</p>
<p>Then one day I got a message from Time Machine saying something along the lines of &#8220;The last time machine backup was 7 days ago&#8221;.  What!!!???</p>
<p>I manually kicked off a Time Machine backup but it was taking a very long time.  I went to use Spotlight to find something and noticed that Spotlight was indexing the Time Machine backup image. 2HRS!!!!!!!</p>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'Spotlight indexing Time Machine backup' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2517765902"></a><a href="http://island.files.wordpress.com/2008/10/spotlight-indexing-time-machine-backup.png"><img class="aligncenter size-full wp-image-668" title="spotlight-indexing-time-machine-backup" src="http://island.wordpress.com/files/2008/10/spotlight-indexing-time-machine-backup.png" alt="" width="339" height="95" /></a><br />
</span></span></div>
<p>So here is what I thought was going on.  Time Machine would create and image file to archive my current local disk for backup.  But before it could complete, Spotlight would start rebuilding the system index, which would then be included in the TM backup, which would then be indexed &#8230;.</p>
<p>I tried excluding the Time Capsule disk and backup image file from Spotlight indexing but &#8230; Spotlight continued doing what it does and I am stuck with a 500GB Time Capsule that is almost full.</p>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'Excluding Time Capsule Disk and Backup of MacBook' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2517776314"></a><a href="http://island.files.wordpress.com/2008/10/excluding-time-capsule-disk-and-backup-of-macbook.png"><img class="aligncenter size-full wp-image-670" title="excluding-time-capsule-disk-and-backup-of-macbook" src="http://island.wordpress.com/files/2008/10/excluding-time-capsule-disk-and-backup-of-macbook.png" alt="" width="500" height="471" /></a><br />
</span></span></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[NetNewsWire Issue]]></title>
<link>http://island.wordpress.com/2008/05/15/netnewswire-issue/</link>
<pubDate>Thu, 15 May 2008 10:39:46 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/05/15/netnewswire-issue/</guid>
<description><![CDATA[I have been having a lot of problems with NetNewsWire recently. The applications sometimes causes th]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div style="text-align:center;"><a href="http://www.flickr.com/photos/51035789317@N01/2493848187" title="View '2008-05-15_0629' on Flickr.com"><img src="http://farm4.static.flickr.com/3030/2493848187_09a5c36845.jpg" alt="2008-05-15_0629" border="0" width="500" height="276" /></a></div>
<p>I have been having a lot of problems with NetNewsWire recently.  The applications sometimes causes the fan on my back to sound like a Honda Civic in a street race and if I use the application for too long or simply leave it open, the app hangs.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[AirTunes and WDS]]></title>
<link>http://island.wordpress.com/2008/05/04/airtunes-and-wds/</link>
<pubDate>Sun, 04 May 2008 15:45:29 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/05/04/airtunes-and-wds/</guid>
<description><![CDATA[Earlier this year I decided that my home did not have enough Apple products, that my network and hom]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Earlier this year I decided that my home did not have enough Apple products, that my network and home data center design was not stable, and that my cable bill was too high.</p>
<p>I decided that I wanted better range on my wireless home network, backup solution that worked without much work from me, and a home entertainment system that allowed me to enjoy music and movies from anywhere in the home on any device.</p>
<p>Some of the pieces are starting to fall into place.  In April, I purchase Time Capsule (TC), Apple&#8217;s simple but effective combination of a Wireless Access Point (WAP) and a Network Attached Storage ( NAS ).  I already had a <a href="http://islandinthenet.com/2006/12/09/freenas/">NAS</a> that I setup by installing BSD based <a href="http://www.freenas.org/">FreeNAS</a> on an old Dell Dimension.  That setup works ( it works so well that I sometimes forget it&#8217;s there ) but I wanted something that offered automatic backup.  So for about $300, I bought a Time Capsule from Apple that provides me with both.  With Time Machine running on both my Macs things just work.</p>
<p>One of the problems I have in my house is that the cable company installed the cable router/VOIP gateway in my basement.  This was the easiest place to put the device since it provided a juncture to attach the cable telephone service to the phone wiring in my home.  Unfortunately it is also where I have to place the Time Capsule to easily plug it into the cable router.  The Time Capsule is off to the far end of the basement so the far end of the second floor of the house gets a very weak signal.  My wife kept complaining that she could not get a signal from her laptop and the kids could not get onto Webkinz.</p>
<p>This problem existed before I bought Time Capsule.  Earlier this year I tried solving the problem with power-line networking but that solution did not work at all for me.  Once I had Time Capsule I learned about <a href="http://en.wikipedia.org/wiki/Wireless_Distribution_System">Wireless Distribution System</a> (WDS).</p>
<blockquote><p>A Wireless Distribution System is a system that enables the wireless interconnection of access points in an IEEE 802.11 network. &#8212; via <a href="http://en.wikipedia.org/wiki/Wireless_Distribution_System">Wikipedia.org</a></p></blockquote>
<p>I was hoping to use my old Linksys WRT54G WAP to go this but then I remembered Apple&#8217;s <a href="http://www.apple.com/airportexpress/"> AirPort Express</a> (AX).  AirPort Express is a WAP that is perfect for frequent travelers or someone with a very simple home network with just a few computers.  It is designed like a MacBook power-brick and includes two very interesting features.  One of these allows the AirPort Express to extend the range of an existing wireless network using WDS.  The other enables the streaming of music from any computer (Mac or PC) running iTunes to the AirPort Express.  The Express has an audio jack into which one can plug in any stereo or powered speakers in your home.</p>
<p>I found and 802.11g AirPort Express on eBay that was gently used ( the previous owner had just bought it before Apple debuted the newer 802.11n model ).  Within an hour I had extended the range of my network with the AX and the TC in a WDS configuration.  Yesterday while eating dinner the family listened to our favorite music send over the network from my Mac mini.  Now how cool is that!!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Back to the Future]]></title>
<link>http://island.wordpress.com/2008/05/04/back-to-the-future/</link>
<pubDate>Sun, 04 May 2008 12:07:45 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/05/04/back-to-the-future/</guid>
<description><![CDATA[Time Machine and Time Capsule have been working in synch for over a month now, automatically and sea]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'Time Machin' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2387594288"></a><a href="http://island.files.wordpress.com/2008/10/time-machine.png"><img class="aligncenter size-full wp-image-672" title="time-machine" src="http://island.wordpress.com/files/2008/10/time-machine.png" alt="" width="500" height="312" /></a><br />
</span></span></div>
<p>Time Machine and Time Capsule have been working in synch for over a month now, automatically and seamlessly ensuring the safety of my data.  The MacBook and Mac mini have been set to backup every 12 hours using the very simple but very useful <a href="http://timesoftware.free.fr/timemachineeditor/">TimeMachineEditor</a>.</div>
<div>
<blockquote><p>TimeMachineEditor is a software for Mac OS X 10.5 Leopard that lets you change the default one-hour backup interval of Time Machine.<br />
You can change the interval or decide to make a backup once a day, once a week or once a month.&#160;</p></blockquote>
</div>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'TimeMachineEditor' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2464273722"></a><a href="http://island.files.wordpress.com/2008/10/timemachineeditor.png"><img class="aligncenter size-full wp-image-674" title="timemachineeditor" src="http://island.wordpress.com/files/2008/10/timemachineeditor.png" alt="" width="411" height="223" /></a><br />
</span></span></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[What the ... ?!]]></title>
<link>http://island.wordpress.com/2008/05/01/what-the/</link>
<pubDate>Thu, 01 May 2008 17:04:50 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/05/01/what-the/</guid>
<description><![CDATA[When will people learn not to trust this company. Microsoft spent miilions convincing consumers and ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>When will people learn not to trust this company.  Microsoft spent miilions convincing consumers and media devices manufacturers to invest in its technology and then <a href="http://www.news.com/8301-10784_3-9931304-7.html?tag=nefd.top">leaves its &#8220;customers&#8221;</a> holding the bag.  The funny things is their technology is called &#8220;Play for Sure&#8221;.  Yeah, right!</p>
<p>In other news, concerns over Vista are so &#8220;minor&#8221; that the <a href="http://www.usnews.com/blogs/daves-download/2008/04/28/concerns-grow-over-microsofts-plans-to-kill-windows-xp.html">US News and World Report</a> had to write about it.</p>
<p>Imagine the training budget for a company like with tens of thousands of employes that must be trained, hundreds of in-house custom apps that must be tested and or rebuilt ( some software consulting firm will be swimming in the dough ), and hundreds of business applications that just do NOT run ( image how costly it will be to upgrade or replace Windows based manufactuing systems ) on Vista.  My employers migration plans do not even start until 2010, which is when we expect that all of the current set of PCs would have replaced by &#8220;Vista ready&#8221; machines.</p>
<p>And the business productivity <a href="http://www.infoworld.com/article/08/04/14/16TC-winoffice-performance_1.html">benefit is suspect</a>.</p>
<p>Oh, and just to make sure we all feel the urgent need to move to Vista, <a href="http://www.enterpriseitplanet.com/breakingnews/article.php/3738941">Bill Gates has already started talking about Windows 7</a> which he expects Microsoft to release &#8220;sometime in the next year or so&#8221;.  That&#8217;s just around the time I expect most people will have &#8220;Vista ready&#8221; computers.  What the &#8230;.?!</p>
<p>Any idea on what your employers plans are for Vista?  I say &#8220;Hasta la vista, Vista!&#8221;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Proposed Home Network and rebuilding the home network]]></title>
<link>http://island.wordpress.com/2008/04/05/proposed-home-network/</link>
<pubDate>Sat, 05 Apr 2008 13:50:32 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/04/05/proposed-home-network/</guid>
<description><![CDATA[I recently bought a 500GB Apple Time Capsule. The Time Capsule is a wireless access point (WAP) with]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I recently  bought a <a href="http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore.woa/wa/RSLID?mco=823A0710&#38;fnode=standard/home/shop_mac/mac_accessories/airport_wireless&#38;nplm=MB276LL/A">500GB Apple Time Capsule</a>.  The Time Capsule is a wireless access point (WAP) with an embedded hard drive.  The Time Capsule replaced my aging Linksys WRT54G WAP.  The WRT has worked flawlessly over the last 3 to 4 years but I wanted something for the future ( 802.11n ) and since I plan to completely switch my home over to Macs in the near ( or not ) future I figured I might as well start with the infrastructure.</p>
<p>However, the install and setup did not go as easy as I expect.  I ran the Airport Utility and entered all the questions the wizard requested.  One thing I did not expect was that the Time Capsule could import the configuration of my current router ( a Linksys WRT54G ).  That would make things a lot easier to setup.</p>
<p>I fully expected the setup to take about 15 minutes.  Three hours later I was still screwing with the thing.  I had disconnected the WRT54G and connected the WAN port of Time Machine to the cable modem.  But Time Machine kept coming up with a private IP.  When I plugged it into the Linksys it worked fine as a secondary gateway behind the WRT54G.  It was not until the second day ( after going to bed around 1 AM ) that I realised that the problem was the cable modem.  I do not know what the issue was but after resetting the cable modem Time Machine was able to get a proper IP and I was able to surf the web.  And oh &#8230; install the latest Airport update from Apple.</p>
<p>I then configured Time Machine to use Time Capsule as it&#8217;s backup drive. That was extremely easy as shown here.</p>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'Time Capsule Disk' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2353809732"></a><a href="http://island.files.wordpress.com/2008/10/time-capsule-disk.png"><img class="aligncenter size-full wp-image-681" title="time-capsule-disk" src="http://island.wordpress.com/files/2008/10/time-capsule-disk.png" alt="" width="405" height="274" /></a><br />
</span></span></div>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'Time Machine Setup' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2352978533"></a><a href="http://island.files.wordpress.com/2008/10/time-machine-setup.png"><img class="aligncenter size-full wp-image-682" title="time-machine-setup" src="http://island.wordpress.com/files/2008/10/time-machine-setup.png" alt="" width="500" height="332" /></a><br />
</span></span></div>
<p>I then forced my first Time Machine backup and waited.  And waited. And waited some more.  I am not quite sure how long it took.  I went to bed and in the morning both my Mac mini and MacBook had been backedup to Time Capsule.  Using OS X 10.5 ( Leopard ) with Time Machine, the macs on my network are backed up ( differentials ) each and every hour.  Very cool.</p>
<p>The WRT still works so I decided to repurpose it.  My friend Mike, suggested I re-image the device with DD-WRT.  DD-WRT was originally a project to create a modified and enhanced firmware for the Linksys line of WAPs.  The project has grown overtime to <a href="http://www.dd-wrt.com/wiki/index.php/Supported_Devices">support other WAP</a> and router brands but the main focus is still the WRT.</p>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'DD-WRT on LinkSys WRT54G' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2373445831"></a><a href="http://island.files.wordpress.com/2008/10/dd-wrt-on-linksys-wrt54g.png"><img class="aligncenter size-full wp-image-685" title="dd-wrt-on-linksys-wrt54g" src="http://island.wordpress.com/files/2008/10/dd-wrt-on-linksys-wrt54g.png" alt="" width="500" height="302" /></a><br />
</span></span></div>
<p>I have version 5 of the WRT54G, so I downloaded the micro version of the binary from the DD-WRT web site and followed the instructions from <a href="http://www.bitsum.com/openwiking/owbase/ow.asp?WRT54G5%5FCFE">this site.</a> Why?  Well&#8230; they seemed to be more detailed and provided a back-out plan in case of trouble; something the instructions on the main site did not.  Following the instructions I had a new router in less than 15 minutes.  I won&#8217;t go into the features and benefits of the DD-WRT software; there is just too much there.  Perhaps another post later this month when I have poked at all the button.</p>
<p>I did notice that DD-WRT supports <a href="http://en.wikipedia.org/wiki/Wireless_Distribution_System">Wireless Distribution System</a> (WDS).  WDS allows for connecting WAP to extend the range of wireless networks.  The Time Capsule also supports WDS. I do not really understand how it all works but I am looking to use WDS between Time Capsule and DD-WRT.  The Time Capsule is in the basement where the cable company placed the box that provides my internet connection and my telephone service.  The wireless signal does not make it to some parts of the house.  I can get about 30-40% in my family room; which hosts my mac mini, TiVo, and Nintendo Wii which all happen to be wireless.  If I can get WDS working between WAPs then I may be able to provide a more robust signal in the other parts of the house.</p>
<div class="flickr-frame"><a title="photo sharing" href="http://www.flickr.com/photos/khurt/2384502891/"><img class="flickr-photo" src="http://farm3.static.flickr.com/2201/2384502891_9755a18fe4.jpg" alt="Proposed Home Network" /></a> </p>
<p><span class="flickr-caption"><a href="http://www.flickr.com/photos/khurt/2384502891/">Proposed Home Network</a>, originally uploaded by <a href="http://www.flickr.com/people/khurt/">Khürt</a> on 3rd April, 2008.</span></div>
<p><!-- Technorati Tags Start --></p>
<p>Technorati Tags:<br />
<a rel="tag" href="http://technorati.com/tag/apple">apple</a>, <a rel="tag" href="http://technorati.com/tag/time%20capsule">time capsule</a></p>
<p><!-- Technorati Tags End --></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Why Apple will get my money]]></title>
<link>http://island.wordpress.com/2008/03/16/why-apple-will-get-my-money/</link>
<pubDate>Sun, 16 Mar 2008 14:52:07 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/03/16/why-apple-will-get-my-money/</guid>
<description><![CDATA[To followup on yesterdays conversation. The vision I have for the IT infrastructure of my home ( yes]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>To followup on yesterdays conversation.  The vision I have for the IT infrastructure of my home ( yes, I used IT infrastructure and home in the same sentence ) revolves around Apple product. No surprise there.</p>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'Time Capsule Back View' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2336918929"></a><a href="http://island.files.wordpress.com/2008/10/time-capsule-back-view.jpg"><img class="aligncenter size-full wp-image-687" title="time-capsule-back-view" src="http://island.wordpress.com/files/2008/10/time-capsule-back-view.jpg" alt="" width="424" height="169" /></a><br />
</span></span></div>
<p>My vision is one where the computers in the house automatically and seamlessly backup on a regular basis without user intervention.  I have already put some money into that part with the purchase of the Apple Time Capsule.  Time Capsule is a wireless access point that contains a hard drive ( 500G or 1 TB ) that can be networked to other computers in the house.  A single place to put my media (music, movies, photos).  Time Capsule works wirelessly with the Time Machine software built into Mac OS X Leopard.  It automatically backups everything so my important files won&#8217;t be lost.</p>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'Time Capsule and Time Machine in action' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2336918787"></a><a href="http://island.files.wordpress.com/2008/10/time-capsule-and-time-machine-in-action.jpg"><img class="aligncenter size-full wp-image-688" title="time-capsule-and-time-machine-in-action" src="http://island.wordpress.com/files/2008/10/time-capsule-and-time-machine-in-action.jpg" alt="" width="500" height="155" /></a><br />
</span></span></div>
<p>The second part of the plan involves thinking about how my family uses media; movies, photos, and music.  Right now we have a TiVo and a cable provided HD PVR for time shifting TV and controlling the shows that our kids watch.  We also have a DVD player (we have a Netflix subscription) and a Mac mini hooked up to our Sony HDTV.  The Mac mini is a sort of media center for synching iPods, editing photos in iPhoto, and watching movies rented from iTunes.  That&#8217;s 4 devices and none of the media is moveable between them.  If I want to watch a movie I must sit in front of the TV to do so.  If I want to watch a previously recorded show I must switch inputs and use a completely different menuing system.  I want something simpler.  What I want to do is replaces all of those devices with one or two devices.</p>
<p>I want to be able to view or listen to any of my media from either another other devices around the house.  I want my media centralized and managed from one place.  I also believe that the future of movie rental is broadband download.  The iPod touch has a screen large enough to view a movie and is small enough to take anywhere.  I recently rented the movie, Next, from the iTunes store.  I quickly synced the movie to my 3rd generation iPod Nano and started watching it while the kids were in Tae Kwon Doe.  When I came home later I moved the movie back to my Mac min and continued watching it from where I left off.   iTunes took care of the whole thing.  Why bother with the DVD player ( or Blu-ray ) and Netflix when within 10 minutes I can be watching a movie downloaded from iTunes?</p>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'EyeTV 250 with Mac mini' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2336918755"></a><a href="http://island.files.wordpress.com/2008/10/eyetv-250-with-mac-mini.jpg"><img class="aligncenter size-full wp-image-689" title="eyetv-250-with-mac-mini" src="http://island.wordpress.com/files/2008/10/eyetv-250-with-mac-mini.jpg" alt="" width="500" height="329" /></a><br />
</span></span></div>
<p>I plan to buy either an Apple TV and an HD TiVo, or get an Intel Mac mini and an Elgato eyetv 250 plus.  With an Intel Mac mini I could use iTunes as a source of rental or bought movies as well as manage my music library with all media stored on the network on the Time Capsule.  The Mac mini support HD and DVD quality video via as well as digital sound.  However, the Mac mini does not have a tuner.  That problem I plan to solve with an the Elgato EyeTV 250 Plus.   EyeTV 250 Plus delivers free-to-air digital TV to a Mac (ATSC), unencrypted digital cable (Clear QAM), as well as conventional analog TV via standard cable or antenna. EyeTV 250 Plus also comes with a break-out cable for composite video and S-Video, enabling you to connect a set-top box directly to your Mac.  The Mac mini could then becomes the digital media hub of the home.</p>
<p>But I could take this even further and question whether I need cable at all.  A lot of top TV shows are available on iTunes.  Why watch Lost interrupted by ads when I can download the season on iTunes ( one episode ) for about $30?  My cable connection costs $45/month times 12 months.  That&#8217;s $540/year.  I could subscribe to 18 different shows on iTunes.</p>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View '2008-03-16_1006' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2337674798"></a><a href="http://island.files.wordpress.com/2008/10/2008-03-16_1006.png"><img class="aligncenter size-full wp-image-691" title="2008-03-16_1006" src="http://island.wordpress.com/files/2008/10/2008-03-16_1006.png" alt="" width="500" height="135" /></a><br />
</span></span></div>
<p>To be clear, from a technical standpoint, I do not think this solution is superior to other products on the market.  There are most likely other products on the market that do one or all of the above.  However, none of these solutions are well integrated.  It requires the user to buy separate pieces and &#8220;hack&#8221; together a solution that works.  The value proposition of an all Apple solution is that everything just works and works well.  Apple is doing what Sony wishes they could do.</p>
<p>Do you see any flaws in my plan?  Let me know in the comments.</p>
<p><!-- Technorati Tags Start --></p>
<p>Technorati Tags:<br />
<a rel="tag" href="http://technorati.com/tag/apple">apple</a>, <a rel="tag" href="http://technorati.com/tag/hdtv">hdtv</a>, <a rel="tag" href="http://technorati.com/tag/mac">mac</a>, <a rel="tag" href="http://technorati.com/tag/apple%20tv">apple tv</a></p>
<p><!-- Technorati Tags End --></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The myth of the $500 computer]]></title>
<link>http://island.wordpress.com/2008/03/15/the-myth-of-the-500-computer/</link>
<pubDate>Sat, 15 Mar 2008 15:54:26 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/03/15/the-myth-of-the-500-computer/</guid>
<description><![CDATA[This post started life as an email reply to my bother-in-law. The text of his original email. A few ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>This post started life as an email reply to my bother-in-law.  The text of his original email.</p>
<blockquote><p>A few thouths on what you sent out earlier about AAPL and how is makes money.</p>
<p>Even at the 120 price the PE ration for Apple is double the others in the market space, so people have high hopes at this price.</p>
<p>the money is still in the software market, you just have to get enought people to buy it. The margins are amazing. hardware unless you can get people to buy itesm more often you will not make the money at high % over a long term period.</p>
<p>Apple has already shown signs of this. by having to lower its prices to compete withe other companys offering product in the same market space.  Apple is still a good but at the 120 mark but will have to bit the bullet as being a special persons things, ie if they want to be a money making machine that lasts, it will have to sell to the general public (500/pcs not 1000-2000/pc)</p></blockquote>
<p>In my opinion the $500 PC is a myth.  That $500 PC or laptop becomes a $1000 computer after 6 to 12 months.  You buy something at Dell or Best Buy.  A few months later you start complaining that editing your pictures or that video of your vacation takes a long time.  You buy more RAM and a larger hard drive and a few more applications (photo editing, video editing etc) after the trial versions expire.  Add a webcam to use that cool video chat feature the salesman showed you.  And then you need software (subscription) to remove all the spyware and viruses on the machine.</p>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'Dell XPS laptop prices' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2335302618"></a><a href="http://island.files.wordpress.com/2008/10/dell-xps-laptop-prices.png"><img class="aligncenter size-full wp-image-693" title="dell-xps-laptop-prices" src="http://island.wordpress.com/files/2008/10/dell-xps-laptop-prices.png" alt="" width="500" height="347" /></a><br />
</span></span></div>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'Apple Store MacBook prices' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2335302536"></a><a href="http://island.files.wordpress.com/2008/10/apple-store-macbook-prices.png"><img class="aligncenter size-full wp-image-695" title="apple-store-macbook-prices" src="http://island.wordpress.com/files/2008/10/apple-store-macbook-prices.png" alt="" width="382" height="329" /></a><br />
</span></span></div>
<blockquote><p>Dell is a lot better at marketing themselves as cheap and affordable. The reality is, however, far from it. Sure, they offer truly cheap desktops and notebooks, but a little looking around makes it perfectly clear that those cheap prices are for entirely stripped-off computers with abysmal hardware; suffice to say, not an option for a serious computer user. ( via <a href="http://kurafire.net/log/archive/2006/04/25/debunking-the-price-myth-apple-vs-dell">Debunking the price myth: Apple vs. Dell</a> )</p></blockquote>
<p>In my opinion, Apple&#8217;s competition is not the $500 Dell or HP.  It is the Sony Vaio, IBM ThinkPad and the higher end Dell XPS.  If a $500 PC is so good why does Dell and HP sell $1000 machines?  Click here for <a href="http://www.pcmag.com/process_download_thank_you/0,,d=3483,00.pdf">PC Magazine&#8217;s 19th Annual Reader Satisfaction Survey</a> ( I did not find one for 2007 or 2008 ).  Why is Dell tech support is so bad?  Why is it outsourced to India? Costs get high when you have to provide the same support for the $500 buyer and the $1000+ buyer.  Everyone suffers.  The Dell brand is now seen as cheap just like a Chinese brand DVD player.  Throw it away and buy a new one in a year.</p>
<p>I went to the Dell web site and as soon as I selected an Intel Core 2 Duo CPU and 2GB RAM ( same specs as in the MacBook line ) for a laptop the price went to over $1000 and that was for a CPU that was slower than the one the MacBook.  I then select at least a 250 GB HD and CD/DVD+RW drive, web cam etc.  The price was now just over $1100 about the same as a new MacBook with the same specs.</p>
<p>I the made a similar price comparison; comparing Dell desktops to the iMac.</p>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'Dell XPS Desktop prices' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2335302504"></a><a href="http://island.files.wordpress.com/2008/10/dell-xps-desktop-prices.png"><img class="aligncenter size-full wp-image-696" title="dell-xps-desktop-prices" src="http://island.wordpress.com/files/2008/10/dell-xps-desktop-prices.png" alt="" width="500" height="227" /></a><br />
</span></span></div>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'Apple Store iMac prices' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2335302570"></a><a href="http://island.files.wordpress.com/2008/10/apple-store-imac-prices.png"><img class="aligncenter size-full wp-image-697" title="apple-store-imac-prices" src="http://island.wordpress.com/files/2008/10/apple-store-imac-prices.png" alt="" width="500" height="205" /></a><br />
</span></span></div>
<p> </p>
<p>Now imagine BMW, Mercedes, Infinity, Acura and Lexus introducing a cheap car?  Mercedes tried that with the C230.  It failed miserably.  I admit that with the market downturn ( that sub-prime mortgage thing ) that luxury brands ( including Apple ) will be hard hit.  But now is the time for them to really promote the value of their product not cheapen it.  In the end it all comes down to what you want to do with the machine.  If all you want to do is run a web browser and sync music to your MP3 player then a $500 computer might suit your needs.  Just don&#8217;t expect Apple to make one.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[My Amazon Unbox experience has been terrible!]]></title>
<link>http://island.wordpress.com/2008/03/01/my-amazon-unbox-experience-has-been-terrible/</link>
<pubDate>Sat, 01 Mar 2008 22:32:33 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/03/01/my-amazon-unbox-experience-has-been-terrible/</guid>
<description><![CDATA[I tell my kids ( 9 and 7 ) &#8220;let&#8217;s order a pizzaa and watch a movie&#8221;. Yeah, Dad]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I tell my kids ( 9 and 7 ) &#8220;let&#8217;s order a pizzaa and watch a movie&#8221;.  Yeah, Dad&#8217;s a cool guy.  Amazon tells me that the download will take 30 minutes to my TiVo.  1.5 hours later my kids and I are eating pizza and WE STILL HAVE NO MOVIE TO WATCH!!!!!</p>
<p>iTunes?  I find a movie, place the order, and 10 minutes later we are watching an almost HD quality movie on my HDTV ( via my Mac mini ).</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Adobe AIR and twitter, spaz, twhirl, amd tweetr]]></title>
<link>http://island.wordpress.com/2008/02/26/adobe-air-and-twitter/</link>
<pubDate>Wed, 27 Feb 2008 03:35:38 +0000</pubDate>
<dc:creator>Khürt</dc:creator>
<guid>http://island.wordpress.com/2008/02/26/adobe-air-and-twitter/</guid>
<description><![CDATA[Adobe recently announced the release of version 1.0 of their AIR application platform. I have been u]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Adobe recently announced the release of version 1.0 of their <a href="http://www.adobe.com/products/air/">AIR application platform</a>.  I have been using the <a href="http://pownce.com">Pownce</a> client which is an application written for AIR.  I decided to take a look at what else was available.</p>
<p>Adobe has a list of applications on the<a href="http://www.adobe.com/cfusion/exchange/index.cfm?event=productHome&#38;exc=24&#38;loc=en_us"> AIR Marketplace</a> portion of their web site and I noticed that there are three <a href="http://twitter.com/">twitter</a> clients built on the AIR platform; <a href="http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&#38;loc=en_us&#38;extid=1291018">Spaz</a>, <a href="http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&#38;loc=en_us&#38;extid=1313518">tweetr</a>, and <a href="http://www.twhirl.org/">twhirl</a>.  This is not a review of these but my personal opinions of each after trying them out for about an hour.</p>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'Spaz twitter client on Adobe AIR on OS X' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2295066472"></a><a href="http://island.files.wordpress.com/2008/10/spaz-twitter-client-on-adobe-air-on-os-x.jpg"><img class="aligncenter size-full wp-image-701" title="spaz-twitter-client-on-adobe-air-on-os-x" src="http://island.wordpress.com/files/2008/10/spaz-twitter-client-on-adobe-air-on-os-x.jpg" alt="" width="382" height="565" /></a><br />
</span></span></div>
<p><a href="http://get.adobe.com/air/?promoid=BTLOA">Downloading</a> and installing an AIR application is VERY easy but first you will need the AIR runtime.  I installed the 1.0 version and then clicked the link for each client and accepted to install the .air package into my AIR runtime.</p>
<p>Spaz, an open source project, appears to be the least stable of the three <a href="http://twitter.com/">twitter</a> clients.</p>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'Spaz error' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2295093174"></a><a href="http://island.files.wordpress.com/2008/10/spaz-error.png"><img class="aligncenter size-full wp-image-702" title="spaz-error" src="http://island.wordpress.com/files/2008/10/spaz-error.png" alt="" width="420" height="254" /></a><br />
</span></span></div>
<p>The application crashed at least three times.  But that also proved the stability of the AIR platform since the crashing app did not bring down the other twitter clients that I was running simultaneously.</p>
<p><a title="View 'twhirl reply, favs etc.' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2295450882"></a><span style="color:#551a8b;"><span style="text-decoration:underline;"><a href="http://island.files.wordpress.com/2008/10/twhirl-reply-favs-etc.png"><img class="alignleft size-full wp-image-703" title="twhirl-reply-favs-etc" src="http://island.wordpress.com/files/2008/10/twhirl-reply-favs-etc.png" alt="" width="59" height="59" /></a></span></span>Feature wise twhirl and Spaz are about the same and are more feature rich than tweetr.  Both Spaz and twhirl have clickables to mark a tweet as a favourite or to do @replies or direct communications.  This feature is lacking in tweetr.  Also, Spaz and twhirl are &#8220;skinnable&#8221;, although twhirl does this better than Spaz.</p>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'twhirl twitter client on Adobe AIR on OS X' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2295067976"></a><a href="http://island.files.wordpress.com/2008/10/twhirl-twitter-client-on-adobe-air-for-windows.png"></a><a href="http://island.files.wordpress.com/2008/10/twhirl-twitter-client-on-adobe-air-on-os-x.jpg"><img class="aligncenter size-full wp-image-707" title="twhirl-twitter-client-on-adobe-air-on-os-x" src="http://island.wordpress.com/files/2008/10/twhirl-twitter-client-on-adobe-air-on-os-x.jpg" alt="" width="319" height="529" /></a><br />
</span></span></div>
<p>tweetr was the least feature rich of the three and is more of a front end that replicates the functionality of the twitter web page.</p>
<div style="text-align:center;"><span style="color:#551a8b;"><span style="text-decoration:underline;"><a title="View 'Tweetr twitter client on Adobe AIR on OS X' on Flickr.com" href="http://www.flickr.com/photos/51035789317@N01/2294276347"></a><a href="http://island.files.wordpress.com/2008/10/tweetr-twitter-client-on-adobe-air-on-os-x.png"><img class="aligncenter size-full wp-image-706" title="tweetr-twitter-client-on-adobe-air-on-os-x" src="http://island.wordpress.com/files/2008/10/tweetr-twitter-client-on-adobe-air-on-os-x.png" alt="" width="323" height="522" /></a><br />
</span></span></div>
<p>The screen shots are from my MacBook but I also ran all three clients on a MacBook.  The look and feel was exactly the same.  I guess that is one good things going for Adobe with the AIR platform.  Users can expect consistency in the GUI and developers can code once run anywhere.  Now where have I heard that before?</p>
<p>I plan to keep twhirl as my twitter client on both OS X and Windows.  I have already removed Spaz.  It crashed too often to be useful.  Too bad, because aesthetically speaking I found it the most pleasing of the three clients.</p>
<p><em>NOTE: My apologies to the Spaz team.  To make the screen shots look the same I opened multiple client connections to twitter and caused the error above to appear.  If I had bothered to read it then I would have known what the issue.  Since this is the only issue I had with Spaz, I have since re-installed it and I Spaz is now my favourite twitter client.</em></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
