<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Island in the Net</title>
	
	<link>http://islandinthenet.com</link>
	<description>husband, father, CISSP, web developer and Linux/UNIX/OS X/Perl/PHP/AJAX geek, amateur photographer, Belgian beer and Ethiopian coffee enthusiast.</description>
	<lastBuildDate>Fri, 17 Jul 2009 12:52:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<geo:lat>40.357439</geo:lat><geo:long>-74.649228</geo:long><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/islandinthenet/feed" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Adding style to perl code</title>
		<link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/q21-PYSjO84/</link>
		<comments>http://islandinthenet.com/2009/07/16/adding-style-to-perl-code/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 13:15:59 +0000</pubDate>
		<dc:creator>Khürt</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://islandinthenet.com/?p=1327</guid>
		<description><![CDATA[Perl has always been my favourite command line and web programming language. There is nothing Perl can&#8217;t do. The Perl language combined with the large quantities of modules on CPAN (developed by some of the best programmers on the planet) make it the kitchen sink of programming languages.
I like to make my code as easy [...]


Related posts:<ol><li><a href='http://islandinthenet.com/2008/09/04/how-to-protect-your-gmail-account/' rel='bookmark' title='Permanent Link: How to protect your Gmail account'>How to protect your Gmail account</a> <small>Researchers at the at a Defcon hackers’ conference revealed a...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p></p><p style="clear: both"><span class="drop_cap">P</span>erl has always been my favourite command line and web programming language. There is nothing Perl can&#8217;t do. The Perl language combined with the large quantities of modules on <a title="CPAN" href="http://search.cpan.org/" target="_blank">CPAN</a> (developed by some of the best programmers on the planet) make it the kitchen sink of programming languages.</p>
<p style="clear: both">I like to make my code as easy to read as possible. Nothing irks me more than a jumble of spaghetti code with indents and curly braces everywhere. I admit that there are times when a solution to a difficult problem comes to me and I become more concerned with getting my ideas down than on following style rules. But after I have my thoughts properly coded I want to go back and clean things up a bit. That&#8217;s where <a title="perltidy home page" href="http://perltidy.sourceforge.net/" target="_blank">perltidy</a> comes in.</p>
<h3>What is Perl::Tidy?</h3>
<p class="alert" style="clear: both">Perltidy is a Perl script which indents and reformats Perl scripts to make them easier to read.</p>
<p style="clear: both">The <a title="CPAN" href="http://search.cpan.org/" target="_blank">CPAN</a> module, written by <a title="Steve's CPAN profile" href="http://search.cpan.org/~shancock/" target="_blank">Steve Hancock</a>,  makes the functionality of the perltidy utility available to other Perl scripts. That means you can write your own script for your own Perl style needs. I prefer to use the utility.</p>
<h3>Installation</h3>
<p><a class="image-link" href="http://islandinthenet.com/wp-content/uploads/2009/07/Picture_1.png" rel="lightbox[1327]"><img class="linked-to-original frame" style="text-align: center; display: block; margin: 0 auto 10px;" title="Installing Perl:Tidy in Terminal" src="http://islandinthenet.com/wp-content/uploads/2009/07/Picture_1-thumb.png" alt="" width="380" height="229" /></a></p>
<p style="clear: both"><span class="drop_cap">I</span>nstalling <a title="Perl::Tidy on CPAN" href="http://search.cpan.org/~shancock/Perl-Tidy-20090616/lib/Perl/Tidy.pm" target="_blank">Perl::Tidy</a> on OS X is quite easy. From the Terminal use the sudo command to run the cpan command line utility. You need to be logged into an account with administrator privileges. This will pull down and install from <a title="CPAN home page" href="http://search.cpan.org/" target="_blank">CPAN</a>, all the necessary code for using perltidy.</p>
<h3>Using perltidy</h3>
<p style="clear: both"><span class="drop_cap">O</span>nce the module has been installed (the utility is placed in /usr/bin ) you can use the command line utility just like any command in Terminal. Perltidy has a number of command line switches to modify it&#8217;s behavior. I have found that the default styling works well enough for me. To use the command line utility open up a Terminal window and type</p>
<p class="note" style="clear: both">:~ perltidy -b /path/to/your/code.pl</p>
<p style="clear: both">I used the -b switch to tell perltidy to create a backup of my script before doing its work. I want a copy just in case something goes wrong. Perltidy does its thing and then exits. If errors are found, e.g. a missing curly brace, perltidy will let you know and create a error file that contains more information about the problem.</p>
<p class="alert">Useful perltidy command:<br />
: ~ perltidy -html -pre code.pl
</p>
<p style="clear: both">This will create an html snippet with only the PRE section to code.pl.html.  This is useful when code snippets are being formatted for inclusion in a larger web page (such as a blog).</p>
<p style="clear: both">Perltidy will take this code:</p>
<p class="note" style="clear: both">#!/usr/bin/perl<br />
my %var = { name =&gt; &#8216;khurt&#8217;, last =&gt; &#8216;williams&#8217;, location =&gt; &#8216;Princeton&#8217;, height =&gt; &#8216;164cm&#8217;, weight =&gt; &#8216;64 kg&#8217; };<br />
foreach my $key ( sort keys %var ) { printif( &#8220;%s:%s\n&#8221;, $key, $var{$key} ); }    #this prints the values in the hash
</p>
<p style="clear: both">and turn it into this code:</p>
<pre class="note" style="clear: both">#!/usr/bin/perl
my %var = {
    name     =&gt; 'khurt',
    last     =&gt; 'williams',
    location =&gt; 'Princeton',
    height   =&gt; '164cm',
    weight   =&gt; '64 kg'
};
foreach my $key ( sort keys %var ) {
    printif( "%s:%s\n", $key, $var{$key} );
}    #this prints the values in the hash</pre>
<p>To find out more about perltidy type “man perltidy” into Terminal to see the manual page.  Prepare to be overwhelmed.  Perltidy is feature rich.</p>


<!&#8211; Begin TwitThis script (http://twitthis.com/) &#8211;>
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!&#8211;
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//&#8211;>
</script>
</div>
<!&#8211; /End &#8211;>



<p>Related posts:<ol><li><a href='http://islandinthenet.com/2008/09/04/how-to-protect-your-gmail-account/' rel='bookmark' title='Permanent Link: How to protect your Gmail account'>How to protect your Gmail account</a> <small>Researchers at the at a Defcon hackers’ conference revealed a...</small></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/islandinthenet/feed?a=q21-PYSjO84:i8DzMmbfQIM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/islandinthenet/feed?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/q21-PYSjO84" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://islandinthenet.com/2009/07/16/adding-style-to-perl-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<creativeCommons:license>http://creativecommons.org/licenses/by-nd/3.0/</creativeCommons:license><feedburner:origLink>http://islandinthenet.com/2009/07/16/adding-style-to-perl-code/</feedburner:origLink></item>
		<item>
		<title>Win business cards from allbusinesscards.com</title>
		<link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/b4tZ6_gW2ss/</link>
		<comments>http://islandinthenet.com/2009/07/14/win-business-cards-from-allbusinesscards-com/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 18:33:00 +0000</pubDate>
		<dc:creator>Khürt</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://islandinthenet.com/?p=1318</guid>
		<description><![CDATA[
Like the example business card below?  Want win your own?  Six Revisions teamed up with allbusinesscards.com to give out 5 more sets specifically to Six Revisions readers.
How to enter (as a Six Revisions reader)
Head on over to the AllBusinessCards.com 100,000 Business Card Giveaway page.
Write about the contest on your website (see official rules [...]


Related posts:<ol><li><a href='http://islandinthenet.com/2008/08/06/mounting-mobileme-idisk-on-windows-xp/' rel='bookmark' title='Permanent Link: Mounting MobileMe iDisk on Windows XP'>Mounting MobileMe iDisk on Windows XP</a> <small>One of the discussions on the Apple MobileMe iDisk forum...</small></li><li><a href='http://islandinthenet.com/2009/05/13/sync-yahoo-and-gmail-contacts-with-leopards-addressbook/' rel='bookmark' title='Permanent Link: Sync Yahoo and Gmail Contacts with Leopard&#8217;s AddressBook'>Sync Yahoo and Gmail Contacts with Leopard&#8217;s AddressBook</a> <small>Both Yahoo and Google provide a method for importing and...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://islandinthenet.com/2009/07/14/win-business-cards-from-allbusinesscards-com/" title="Permanent link to Win business cards from allbusinesscards.com"><img class="post_image alignright" src="http://islandinthenet.com/wp-content/uploads/2009/07/businesscard.jpg" width="491" height="285" alt="Post image for Win business cards from allbusinesscards.com" /></a>
</p><p>Like the example business card below?  Want win your own?  <a href="http://sixrevisions.com/">Six Revisions</a> teamed up with <a href="http://allbusinesscards.com">allbusinesscards.com</a> to give out 5 more sets specifically to <a href="http://sixrevisions.com/">Six Revisions</a> readers.</p>
<div id="attachment_1319" class="wp-caption aligncenter" style="width: 491px">
	<a href="http://islandinthenet.com/wp-content/uploads/2009/07/businesscard.jpg" rel="lightbox[1318]"><img class="size-full wp-image-1319" title="businesscard" src="http://islandinthenet.com/wp-content/uploads/2009/07/businesscard.jpg" alt="allbusinesscards.com" width="491" height="285" /></a>
	<p class="wp-caption-text">allbusinesscards.com</p>
</div>
<p>How to enter (as a Six Revisions reader)<br />
Head on over to the <a href="http://allbusinesscards.com">AllBusinessCards.com</a> 100,000 Business Card Giveaway page.<br />
Write about the contest on your website (see official rules at <a href="http://www.allbusinesscards.com/business-card-giveaway.php">http://www.allbusinesscards.com/business-card-giveaway.php</a>)<br />
Fill out the form.<br />
In the Referred by: field, enter <a href="http://sixrevisions.com/">http://sixrevisions.com/</a> &#8211; this will let them know that you’re from Six Revisions.  Five entrants that enter Six Revisions in the Referred by: field will be chosen at random to win an extra set of 1,000 cards.<br />
You can also enter by referring people to the contest, the more people you refer that write about it, the more entries you receive.</p>


<!&#8211; Begin TwitThis script (http://twitthis.com/) &#8211;>
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!&#8211;
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//&#8211;>
</script>
</div>
<!&#8211; /End &#8211;>



<p>Related posts:<ol><li><a href='http://islandinthenet.com/2008/08/06/mounting-mobileme-idisk-on-windows-xp/' rel='bookmark' title='Permanent Link: Mounting MobileMe iDisk on Windows XP'>Mounting MobileMe iDisk on Windows XP</a> <small>One of the discussions on the Apple MobileMe iDisk forum...</small></li><li><a href='http://islandinthenet.com/2009/05/13/sync-yahoo-and-gmail-contacts-with-leopards-addressbook/' rel='bookmark' title='Permanent Link: Sync Yahoo and Gmail Contacts with Leopard&#8217;s AddressBook'>Sync Yahoo and Gmail Contacts with Leopard&#8217;s AddressBook</a> <small>Both Yahoo and Google provide a method for importing and...</small></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/islandinthenet/feed?a=b4tZ6_gW2ss:SfhqgaQ2PWw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/islandinthenet/feed?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/b4tZ6_gW2ss" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://islandinthenet.com/2009/07/14/win-business-cards-from-allbusinesscards-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<creativeCommons:license>http://creativecommons.org/licenses/by-nd/3.0/</creativeCommons:license><feedburner:origLink>http://islandinthenet.com/2009/07/14/win-business-cards-from-allbusinesscards-com/</feedburner:origLink></item>
		<item><title>Picture 1 [Flickr]</title><link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/WsoyHdOpmUM/</link><dc:creator>islandinthenet</dc:creator><pubDate>Sat, 11 Jul 2009 07:49:07 PDT</pubDate><guid isPermaLink="false">tag:flickr.com,2005:/photo/3710145120</guid><description>&lt;p&gt;&lt;a href="http://www.flickr.com/people/islandinthenet/"&gt;islandinthenet&lt;/a&gt; posted a photo:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.flickr.com/photos/islandinthenet/3710145120/" title="Picture 1"&gt;&lt;img src="http://farm3.static.flickr.com/2658/3710145120_bd086819cc_m.jpg" width="80" height="240" alt="Picture 1" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/WsoyHdOpmUM" height="1" width="1"/&gt;</description><enclosure url="http://farm3.static.flickr.com/2658/3710145120_0fe5e4552b_o.png" length="0" type="image/jpeg" /><dc:date.Taken>2009-07-11T10:49:07-08:00</dc:date.Taken><feedburner:origLink>http://www.flickr.com/photos/islandinthenet/3710145120/</feedburner:origLink></item><item><title>Links for 2009-07-09 [del.icio.us]</title><link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/16872KkiaM4/khurtwilliams</link><pubDate>Fri, 10 Jul 2009 00:00:00 PDT</pubDate><guid isPermaLink="false">http://del.icio.us/khurtwilliams#2009-07-09</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.doshdosh.com/ways-you-can-use-twitter/"&gt;17 Ways You Can Use Twitter: A Guide for Beginners and Businesses&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/16872KkiaM4" height="1" width="1"/&gt;</description><feedburner:origLink>http://del.icio.us/khurtwilliams#2009-07-09</feedburner:origLink></item><item><title>IMG_0059 [Flickr]</title><link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/Z43iU9hSTIM/</link><dc:creator>islandinthenet</dc:creator><pubDate>Wed, 24 Jun 2009 04:33:55 PDT</pubDate><guid isPermaLink="false">tag:flickr.com,2005:/photo/3656992308</guid><description>&lt;p&gt;&lt;a href="http://www.flickr.com/people/islandinthenet/"&gt;islandinthenet&lt;/a&gt; posted a photo:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.flickr.com/photos/islandinthenet/3656992308/" title="IMG_0059"&gt;&lt;img src="http://farm4.static.flickr.com/3544/3656992308_fd36b52250_m.jpg" width="160" height="240" alt="IMG_0059" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/Z43iU9hSTIM" height="1" width="1"/&gt;</description><enclosure url="http://farm4.static.flickr.com/3544/3656992308_d084119e9c_o.jpg" length="0" type="image/jpeg" /><dc:date.Taken>2009-06-24T07:33:55-08:00</dc:date.Taken><feedburner:origLink>http://www.flickr.com/photos/islandinthenet/3656992308/</feedburner:origLink></item><item><title>IMG_0058 [Flickr]</title><link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/4xQnYro5d44/</link><dc:creator>islandinthenet</dc:creator><pubDate>Wed, 24 Jun 2009 04:33:50 PDT</pubDate><guid isPermaLink="false">tag:flickr.com,2005:/photo/3656992200</guid><description>&lt;p&gt;&lt;a href="http://www.flickr.com/people/islandinthenet/"&gt;islandinthenet&lt;/a&gt; posted a photo:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.flickr.com/photos/islandinthenet/3656992200/" title="IMG_0058"&gt;&lt;img src="http://farm4.static.flickr.com/3401/3656992200_cc49e8faea_m.jpg" width="160" height="240" alt="IMG_0058" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/4xQnYro5d44" height="1" width="1"/&gt;</description><enclosure url="http://farm4.static.flickr.com/3401/3656992200_2db40d677d_o.jpg" length="0" type="image/jpeg" /><dc:date.Taken>2009-06-24T07:33:50-08:00</dc:date.Taken><feedburner:origLink>http://www.flickr.com/photos/islandinthenet/3656992200/</feedburner:origLink></item><item><title>IMG_0057 [Flickr]</title><link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/JoRmwKL3Z7Q/</link><dc:creator>islandinthenet</dc:creator><pubDate>Wed, 24 Jun 2009 04:33:45 PDT</pubDate><guid isPermaLink="false">tag:flickr.com,2005:/photo/3656992070</guid><description>&lt;p&gt;&lt;a href="http://www.flickr.com/people/islandinthenet/"&gt;islandinthenet&lt;/a&gt; posted a photo:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.flickr.com/photos/islandinthenet/3656992070/" title="IMG_0057"&gt;&lt;img src="http://farm4.static.flickr.com/3374/3656992070_8550b3dbf8_m.jpg" width="160" height="240" alt="IMG_0057" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/JoRmwKL3Z7Q" height="1" width="1"/&gt;</description><enclosure url="http://farm4.static.flickr.com/3374/3656992070_6599999468_o.jpg" length="0" type="image/jpeg" /><dc:date.Taken>2009-06-24T07:33:45-08:00</dc:date.Taken><feedburner:origLink>http://www.flickr.com/photos/islandinthenet/3656992070/</feedburner:origLink></item><item><title>IMG_0056 [Flickr]</title><link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/MdjrPOu_cuM/</link><dc:creator>islandinthenet</dc:creator><pubDate>Wed, 24 Jun 2009 04:33:42 PDT</pubDate><guid isPermaLink="false">tag:flickr.com,2005:/photo/3656992010</guid><description>&lt;p&gt;&lt;a href="http://www.flickr.com/people/islandinthenet/"&gt;islandinthenet&lt;/a&gt; posted a photo:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.flickr.com/photos/islandinthenet/3656992010/" title="IMG_0056"&gt;&lt;img src="http://farm4.static.flickr.com/3662/3656992010_910ecd53aa_m.jpg" width="160" height="240" alt="IMG_0056" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/MdjrPOu_cuM" height="1" width="1"/&gt;</description><enclosure url="http://farm4.static.flickr.com/3662/3656992010_579526304f_o.jpg" length="0" type="image/jpeg" /><dc:date.Taken>2009-06-24T07:33:42-08:00</dc:date.Taken><feedburner:origLink>http://www.flickr.com/photos/islandinthenet/3656992010/</feedburner:origLink></item><item>
		<title>Bluetooth on iPod Touch 2G</title>
		<link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/9_WfzjPK2pg/</link>
		<comments>http://islandinthenet.com/2009/06/19/iphone-os-30-enables-bluetooth-on-ipod-touch-2g/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 19:17:05 +0000</pubDate>
		<dc:creator>Khürt</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[bluetooth]]></category>
		<category><![CDATA[ipod]]></category>

		<guid isPermaLink="false">http://islandinthenet.com/?p=1266</guid>
		<description><![CDATA[After upgrading (the iTunes servers were jammed so I did it after midnight) I noticed a small Bluetooth icon in the upper right hand corner of the home screen. So I went straight into Settings-&#62;General and ... what do you know, Bluetooth.


Related posts:<ol><li><a href='http://islandinthenet.com/2008/08/05/ipod-touch-as-blogging-tool/' rel='bookmark' title='Permanent Link: iPod Touch as blogging tool'>iPod Touch as blogging tool</a> <small>I host my blog on Wordpress.com. I use an iPod...</small></li><li><a href='http://islandinthenet.com/2008/08/13/rethinking-mobileme-and-ipod-touch-as-ultra-portable/' rel='bookmark' title='Permanent Link: Rethinking MobileMe and iPod Touch as ultra-portable'>Rethinking MobileMe and iPod Touch as ultra-portable</a> <small> I find that I use my iPod Touch as...</small></li><li><a href='http://islandinthenet.com/2009/05/13/sync-yahoo-and-gmail-contacts-with-leopards-addressbook/' rel='bookmark' title='Permanent Link: Sync Yahoo and Gmail Contacts with Leopard&#8217;s AddressBook'>Sync Yahoo and Gmail Contacts with Leopard&#8217;s AddressBook</a> <small>Both Yahoo and Google provide a method for importing and...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://islandinthenet.com/2009/06/19/iphone-os-30-enables-bluetooth-on-ipod-touch-2g/" title="Permanent link to Bluetooth on iPod Touch 2G"><img class="post_image alignright" src="http://islandinthenet.com/wp-content/uploads/2009/06/3656991354_8aaabb8feb_o.jpg" width="320" height="480" alt="iPod Touch 2G" /></a>
</p><p>I was pleasantly surprised to find out that upgrading to iPhone OS 3.0 enabled previously hidden Bluetooth functionality on my second generation iPod Touch. After upgrading (the iTunes servers were jammed so I did it after midnight) I noticed a small Bluetooth icon in the upper right hand corner of the home screen. So I went straight into Settings-&gt;General and &#8230; what do you know, Bluetooth.</p>
<div style="text-align:center;"><a title="IMG_0037 by islandinthenet, on Flickr" href="http://www.flickr.com/photos/islandinthenet/3639863496/"><img class="alignnone frame" src="http://farm4.static.flickr.com/3646/3639863496_671800795f_o.jpg" alt="IMG_0037" width="240" height="360" /></a><a href="http://islandinthenet.com/wp-content/uploads/2009/06/3656991354_8aaabb8feb_o.jpg" rel="lightbox[1266]"><img class="alignnone size-full wp-image-1297 frame" title="IMG_0050" src="http://islandinthenet.com/wp-content/uploads/2009/06/3656991354_8aaabb8feb_o.jpg" alt="IMG_0050" width="240" height="360" /></a></div>
<p>The only Bluetooth device I have is a headset for my Motorola KRZR cellphone (no iPhone yet) so I resorted to trying to connect from the kids iMac.  While I can&#8217;t do anything useful with it (yet) I expect we will see a host of new accessories for the iPhone 3G(S) and iPod Touch 2G.  I for one would like a Bluetooth car kit to wirelessly stream music from my iPod Touch.  Perhaps maybe sync my iPod without docking.</p>
<div style="text-align:center;"><img class="aligncenter" style="border: 0px initial initial;" src="http://pmug-nj.org/blog/wp-content/uploads/2009/06/picture-1.png" border="0" alt="Picture 1.png" width="584" height="440" /></div>
<div style="text-align:center;"><img class="aligncenter" style="border: 0px initial initial;" src="http://pmug-nj.org/blog/wp-content/uploads/2009/06/picture-2.png" border="0" alt="Picture 2.png" width="584" height="440" /></div>
<p>I noticed that one of the services available on the iPod Touch via Bluetooth is something called <a href="http://www.bluetooth.com/Bluetooth/Technology/Works/AVRCP.htm">AVRCP</a>.  According to the official Bluetooth web site AVRCP:</p>
<blockquote><p>AVRCP is designed to provide a standard interface to control TVs, hi-fi equipment, or others to allow a single remote control (or other device) to control all the A/V equipment to which a user has access. It may be used in concert with A2DP or VDP.</p></blockquote>
<p>I can&#8217;t wait!!</p>
<div style="text-align:center;"><a rel="ibox" href="http://pmug-nj.org/blog/wp-content/uploads/2009/06/picture-3.png" rel="lightbox[1266]"><img class="aligncenter" style="border: 0px initial initial;" src="http://pmug-nj.org/blog/wp-content/uploads/2009/06/picture-3.png" border="0" alt="Picture 3.png" width="598" height="427" /></a></div>


<!&#8211; Begin TwitThis script (http://twitthis.com/) &#8211;>
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!&#8211;
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//&#8211;>
</script>
</div>
<!&#8211; /End &#8211;>



<p>Related posts:<ol><li><a href='http://islandinthenet.com/2008/08/05/ipod-touch-as-blogging-tool/' rel='bookmark' title='Permanent Link: iPod Touch as blogging tool'>iPod Touch as blogging tool</a> <small>I host my blog on Wordpress.com. I use an iPod...</small></li><li><a href='http://islandinthenet.com/2008/08/13/rethinking-mobileme-and-ipod-touch-as-ultra-portable/' rel='bookmark' title='Permanent Link: Rethinking MobileMe and iPod Touch as ultra-portable'>Rethinking MobileMe and iPod Touch as ultra-portable</a> <small> I find that I use my iPod Touch as...</small></li><li><a href='http://islandinthenet.com/2009/05/13/sync-yahoo-and-gmail-contacts-with-leopards-addressbook/' rel='bookmark' title='Permanent Link: Sync Yahoo and Gmail Contacts with Leopard&#8217;s AddressBook'>Sync Yahoo and Gmail Contacts with Leopard&#8217;s AddressBook</a> <small>Both Yahoo and Google provide a method for importing and...</small></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/islandinthenet/feed?a=9_WfzjPK2pg:1H4EQQNpSog:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/islandinthenet/feed?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/9_WfzjPK2pg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://islandinthenet.com/2009/06/19/iphone-os-30-enables-bluetooth-on-ipod-touch-2g/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<creativeCommons:license>http://creativecommons.org/licenses/by-nd/3.0/</creativeCommons:license><feedburner:origLink>http://islandinthenet.com/2009/06/19/iphone-os-30-enables-bluetooth-on-ipod-touch-2g/</feedburner:origLink></item>
		<item><title>Links for 2009-06-15 [del.icio.us]</title><link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/qaMkLPKLP6E/khurtwilliams</link><pubDate>Tue, 16 Jun 2009 00:00:00 PDT</pubDate><guid isPermaLink="false">http://del.icio.us/khurtwilliams#2009-06-15</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.instructables.com/id/Tabletop-Tesla-Coil/"&gt;Tabletop Tesla Coil&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/qaMkLPKLP6E" height="1" width="1"/&gt;</description><feedburner:origLink>http://del.icio.us/khurtwilliams#2009-06-15</feedburner:origLink></item><item><title>Links for 2009-06-12 [del.icio.us]</title><link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/up4P18HwCvs/khurtwilliams</link><pubDate>Sat, 13 Jun 2009 00:00:00 PDT</pubDate><guid isPermaLink="false">http://del.icio.us/khurtwilliams#2009-06-12</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.gelaskins.com/"&gt;GelaSkins | Protection with Style, not Bulk&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/up4P18HwCvs" height="1" width="1"/&gt;</description><feedburner:origLink>http://del.icio.us/khurtwilliams#2009-06-12</feedburner:origLink></item><item><title>Links for 2009-06-11 [del.icio.us]</title><link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/8VQVgSlpahc/khurtwilliams</link><pubDate>Fri, 12 Jun 2009 00:00:00 PDT</pubDate><guid isPermaLink="false">http://del.icio.us/khurtwilliams#2009-06-11</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://theappleblog.com/2009/06/11/how-to-proximity-automation/"&gt;How-To: Proximity Automation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/8VQVgSlpahc" height="1" width="1"/&gt;</description><feedburner:origLink>http://del.icio.us/khurtwilliams#2009-06-11</feedburner:origLink></item><item><title>Links for 2009-06-08 [del.icio.us]</title><link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/73s83k4_r1k/khurtwilliams</link><pubDate>Tue, 09 Jun 2009 00:00:00 PDT</pubDate><guid isPermaLink="false">http://del.icio.us/khurtwilliams#2009-06-08</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://zenhabits.net/2009/06/feng-shui-on-steroids-design-your-space-to-achieve-your-goals/"&gt;Feng Shui On Steroids: Design Your Space to Achieve Your Goals | Zen Habits&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/73s83k4_r1k" height="1" width="1"/&gt;</description><feedburner:origLink>http://del.icio.us/khurtwilliams#2009-06-08</feedburner:origLink></item><item><title>Links for 2009-06-02 [del.icio.us]</title><link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/a0x2ttyr43Q/khurtwilliams</link><pubDate>Wed, 03 Jun 2009 00:00:00 PDT</pubDate><guid isPermaLink="false">http://del.icio.us/khurtwilliams#2009-06-02</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://networklocationapp.com/"&gt;NetworkLocation - Manage settings on your Mac&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.angurialab.com/apps/postino/"&gt;Postino for iPhone - send real postcards with your photos :: AnguriaLab&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/a0x2ttyr43Q" height="1" width="1"/&gt;</description><feedburner:origLink>http://del.icio.us/khurtwilliams#2009-06-02</feedburner:origLink></item><item><title>Links for 2009-05-27 [del.icio.us]</title><link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/YbmsfnFlR8M/khurtwilliams</link><pubDate>Thu, 28 May 2009 00:00:00 PDT</pubDate><guid isPermaLink="false">http://del.icio.us/khurtwilliams#2009-05-27</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://westciv.com/style_master/blog/"&gt;The Style Master Blog &amp;raquo;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.dlife.com/diabetes-news/2009/05/study_shows_cgm_devices_also_b.html"&gt;Study Shows CGM Devices Also Benefit People with Type 1 Diabetes Who Already Have Good Blood Sugar Control&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/YbmsfnFlR8M" height="1" width="1"/&gt;</description><feedburner:origLink>http://del.icio.us/khurtwilliams#2009-05-27</feedburner:origLink></item><item>
		<title>How to create a wireless mesh network with Apple AirPorts</title>
		<link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/JwXIQ7YRf70/</link>
		<comments>http://islandinthenet.com/2009/05/15/creating-a-wireless-mesh-with-apple-airports/#comments</comments>
		<pubDate>Fri, 15 May 2009 12:01:00 +0000</pubDate>
		<dc:creator>Khürt</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://islandinthenet.com/?p=1176</guid>
		<description><![CDATA[
Being able to get a robust wireless network signal around my house was something that I struggled with for some time.  My Comcast cable broadband connection came in through my garage and basement so that is where I had placed my wireless access point (WAP). The cable coax connected to my broadband bridge which [...]


Related posts:<ol><li><a href='http://islandinthenet.com/2009/04/05/welcoming-mackiemac-to-our-family/' rel='bookmark' title='Permanent Link: Welcoming &#8220;MackieMac&#8221; to our family'>Welcoming &#8220;MackieMac&#8221; to our family</a> <small> With the addition of a 20&#8243; iMac for the...</small></li><li><a href='http://islandinthenet.com/2009/07/16/adding-style-to-perl-code/' rel='bookmark' title='Permanent Link: Adding style to perl code'>Adding style to perl code</a> <small>Perl has always been my favourite command line and web...</small></li><li><a href='http://islandinthenet.com/2008/08/06/mounting-mobileme-idisk-on-windows-xp/' rel='bookmark' title='Permanent Link: Mounting MobileMe iDisk on Windows XP'>Mounting MobileMe iDisk on Windows XP</a> <small>One of the discussions on the Apple MobileMe iDisk forum...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://islandinthenet.com/2009/05/15/creating-a-wireless-mesh-with-apple-airports/" title="Permanent link to How to create a wireless mesh network with Apple AirPorts"><img class="post_image alignright" src="http://islandinthenet.com/wp-content/uploads/2009/05/airportexpress.jpg" width="300" height="361" alt="Post image for How to create a wireless mesh network with Apple AirPorts" /></a>
</p><p>Being able to get a robust wireless network signal around my house was something that I struggled with for some time.  My Comcast cable broadband connection came in through my garage and basement so that is where I had placed my wireless access point (WAP). The cable coax connected to my broadband bridge which was then connected to my 802.11n Apple Time Capsule (TC) WAP.  The problem was that the wireless signal was not strong enough to reach throughout my 1700 square foot home.</p>
<p>I could sit in my kitchen (right above the WAPs location in the basement) and get a very strong signal but I barely got a signal in my family room or bedroom.  If I wanted to use the computer from the backyard, I couldn&#8217;t; unless I piggy backed on my neighbor&#8217;s signal.</p>
<p>At fist I tried to solve this problem by moving the position of the WAP.  It originally on a shelf in the basement but then I moved it up into the rafters in my unfinished basement.  That yield only a slight improvement.  I then tried using Powerline Ethernet devices but I never successfully got those working.</p>
<p>Some coworkers suggested using a Linksys WET54G Wireless-G Ethernet Bridge to extend the network.  These devices were very difficult to setup and never worked reliably.  I though maybe the Linksys equipment did not work well with the TC so I went searching on the Apple web site discussion board for a solution.  That&#8217;s when I found out about <a href="http://en.wikipedia.org/wiki/Wireless_Distribution_System" target="_blank">Wireless Distribution System</a> (WDS).</p>
<p>Appple&#8217;s online documentation mentioned that I could use WDS to &#8220;set up two to five base stations as a unified network that shares one Internet connection.&#8221;  In other words, I could setup multiple Apple WAP to create a single large wireless network that I could access from multiple locations in the home.  I could put a WAP in the basement, one in the family room, and one in the living room (near the back of the house) basically saturating my home with wireless.  This is exactly what I did.</p>
<p>WDS does not yet have a standard implementation.  There is no guarantee that WDS implementations from different vendors will interoperate.  I used only Apple branded products to setup my WDS network.  I did this because I wanted everything to work and because Apple has excellent documentation on how to do it. Your mileage may vary.</p>
<p>Below is a list of the equipment I used.</p>
<ul>
<li>Apple Time Capsule (802.11n)</li>
<li>Apple Airport Extreme Base Station (802.11g)</li>
<li>Apple AirPort Express (802.11g)</li>
</ul>
<p>I bought the AirPort Express (AX) on eBay as the lowest cost method to acquiring an Apple wireless base station.  The AirPort Express is a small portable WAP and Internet gateway with one 10/100BASE-T Ethernet port for connecting a DSL modem, cable modem, or Ethernet network, a USB port for connecting a USB printer, and a 3.5-mm audio minijack for analog or optical digital sound to a stereo or powered speakers.  The AX also support AirTunes.  AirTunes transmits music from my iTunes library on any of my Macs and sends it wirelessly to the AX attached to my stereo.  How cool is that!?</p>
<p>I also bought an unopened flying saucer style AirPort Extreme Base (AE) station from a colleague.  He had picked it up at a yard sale and was willing to let me have it for $50.  With the existing TC and the new AX and AE I now had enough to create a WDS network to blanket every part of my home.</p>
<p><a href="http://islandinthenet.com/wp-content/uploads/2009/05/picture-2.png" rel="lightbox[1176]"><img class="alignleft size-full wp-image-1205 frame" title="setting the WDS mode" src="http://islandinthenet.com/wp-content/uploads/2009/05/picture-2.png" alt="setting the WDS mode" width="290" height="96" /></a>The first thing I did was setup my main base station, the Time Capsule,  in WDS mode.  I had already setup all the other parameters including the SSID, channel number, password, wireless security etc.  The SSID and channel number must be the same for each base station for WDS to work.  These settings are found in the Wireless and WDS tabs in the Apple AirPort Utility.</p>
<p>Once I was done setting up the WDS information for the main base station I clicked &#8220;Update&#8221; and waited for the base station to reboot. I made sure to note the AirPort ID of the TC and used this information later to setup the other two base stations.<br />
<a href="http://islandinthenet.com/wp-content/uploads/2009/05/picture-10.png" rel="lightbox[1176]"><img class="aligncenter size-full wp-image-1216" title="base station and AirPort ID" src="http://islandinthenet.com/wp-content/uploads/2009/05/picture-10.png" alt="base station and AirPort ID" width="704" height="478" /></a><br />
I selected &#8220;Participate in a WDS network&#8221; from the drop down box in Wireless tab and from the WDS tab drop down I selected &#8220;WDS main&#8221; to set the WDS Mode and checked the &#8220;Allow wireless clients&#8221; check box.<br />
<a href="http://islandinthenet.com/wp-content/uploads/2009/05/picture-7.png" rel="lightbox[1176]"><img class="alignleft size-full wp-image-1210" title="participate in a WDS network" src="http://islandinthenet.com/wp-content/uploads/2009/05/picture-7.png" alt="participate in a WDS network" width="697" height="517" /></a><br />
Next, I setup the the AirPort Express (AX) base station as a remote base station.  A remote base station connects wirelessly to the main station and retransmits the signal from the main base station for wireless clients that are too far from the main base station.  I used the AirPort Utility to connect to the AX and set it up with the same network specific information (channel number, SSID etc) I used for the TC.  I selected &#8220;Participate in a WDS network&#8221; from the drop down box in Wireless tab and from the WDS tab drop down I selected &#8220;WDS remote&#8221; to set the WDS Mode and checked the &#8220;Allow wireless clients&#8221; check box. I entered the AirPort ID of the WDS Main base station and clicked update.<br />
<a href="http://islandinthenet.com/wp-content/uploads/2009/05/picture-5.png" rel="lightbox[1176]"><img class="size-full wp-image-1212 aligncenter" title="AEX as WDS remote" src="http://islandinthenet.com/wp-content/uploads/2009/05/picture-5.png" alt="AEX as WDS remote" width="678" height="503" /></a><br />
After the AX base station rebooted I moved on to setup the AirPort Extreme Base (AE) station.  Setup was similar to the AE.  I used the AirPort Utility to setup the network parameters (SSID, channel number, etc) including information for the WDS Main.<br />
<a href="http://islandinthenet.com/wp-content/uploads/2009/05/picture-6.png" rel="lightbox[1176]"><img class="size-full wp-image-1213 aligncenter" title="AEB as WDS remote" src="http://islandinthenet.com/wp-content/uploads/2009/05/picture-6.png" alt="AEB as WDS remote" width="704" height="522" /></a><br />
Once the AirPort Extreme Base station rebooted I used the AirPort Utility to confirm that the AirPort Express and AirPort Extreme were bound to my home network and relaying traffic.<br />
<a href="http://islandinthenet.com/wp-content/uploads/2009/05/picture-31.png" rel="lightbox[1176]"><img class="size-full wp-image-1214 aligncenter" title="complete WDS network" src="http://islandinthenet.com/wp-content/uploads/2009/05/picture-31.png" alt="complete WDS network" width="704" height="522" /></a></p>
<p>The solution is not perfect.  The WDS network uses a small amount of the network bandwidth for network management so wireless throughput is slightly less than it would be with just one base station.  However, this is a small price to pay for being able to use my laptop or iPod Touch from anywhere inside or outside my home.  Now I can sit in bed and catch up on show in Hulu or work in my backyard streaming music to my iPod Touch from my iTunes library.</p>
<p>References:</p>
<p><a href="http://support.apple.com/kb/HT2044" target="_blank">Using the AirPort Admin Utility to create a WDS network with multiple base stations</a></p>


<!&#8211; Begin TwitThis script (http://twitthis.com/) &#8211;>
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!&#8211;
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//&#8211;>
</script>
</div>
<!&#8211; /End &#8211;>



<p>Related posts:<ol><li><a href='http://islandinthenet.com/2009/04/05/welcoming-mackiemac-to-our-family/' rel='bookmark' title='Permanent Link: Welcoming &#8220;MackieMac&#8221; to our family'>Welcoming &#8220;MackieMac&#8221; to our family</a> <small> With the addition of a 20&#8243; iMac for the...</small></li><li><a href='http://islandinthenet.com/2009/07/16/adding-style-to-perl-code/' rel='bookmark' title='Permanent Link: Adding style to perl code'>Adding style to perl code</a> <small>Perl has always been my favourite command line and web...</small></li><li><a href='http://islandinthenet.com/2008/08/06/mounting-mobileme-idisk-on-windows-xp/' rel='bookmark' title='Permanent Link: Mounting MobileMe iDisk on Windows XP'>Mounting MobileMe iDisk on Windows XP</a> <small>One of the discussions on the Apple MobileMe iDisk forum...</small></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/islandinthenet/feed?a=JwXIQ7YRf70:DYKcG0-5pMo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/islandinthenet/feed?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/JwXIQ7YRf70" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://islandinthenet.com/2009/05/15/creating-a-wireless-mesh-with-apple-airports/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<creativeCommons:license>http://creativecommons.org/licenses/by-nd/3.0/</creativeCommons:license><feedburner:origLink>http://islandinthenet.com/2009/05/15/creating-a-wireless-mesh-with-apple-airports/</feedburner:origLink></item>
		<item>
		<title>Sync Yahoo and Gmail Contacts with Leopard’s AddressBook</title>
		<link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/9e2DnzGTBDY/</link>
		<comments>http://islandinthenet.com/2009/05/13/sync-yahoo-and-gmail-contacts-with-leopards-addressbook/#comments</comments>
		<pubDate>Wed, 13 May 2009 11:22:41 +0000</pubDate>
		<dc:creator>Khürt</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[addressbook]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[leopard]]></category>

		<guid isPermaLink="false">http://islandinthenet.com/?p=1182</guid>
		<description><![CDATA[Both Yahoo and Google provide a method for importing and exporting email addresses to and from OS X AddressBook but I wanted an easier way to keep things synchronized. Fortunately, if you are running OS X 10.5 (Leopard), the AddressBook application provides a straight forward way to do so.


Related posts:<ol><li><a href='http://islandinthenet.com/2009/05/08/how-to-setup-leopard-mailapp-to-use-gmail-2/' rel='bookmark' title='Permanent Link: How to setup OS X&#8217;s Mail.app to use Gmail'>How to setup OS X&#8217;s Mail.app to use Gmail</a> <small> In a previous post I mentioned that I had...</small></li><li><a href='http://islandinthenet.com/2009/05/11/how-to-use-leopards-ical-with-google-calendar/' rel='bookmark' title='Permanent Link: How to use Leopard&#8217;s iCal with Google Calendar'>How to use Leopard&#8217;s iCal with Google Calendar</a> <small> Some time last year Google updated their online Calendar...</small></li><li><a href='http://islandinthenet.com/2008/09/04/how-to-protect-your-gmail-account/' rel='bookmark' title='Permanent Link: How to protect your Gmail account'>How to protect your Gmail account</a> <small>Researchers at the at a Defcon hackers’ conference revealed a...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://islandinthenet.com/2009/05/13/sync-yahoo-and-gmail-contacts-with-leopards-addressbook/" title="Permanent link to Sync Yahoo and Gmail Contacts with Leopard&#8217;s AddressBook"><img class="post_image alignright" src="http://islandinthenet.com/wp-content/uploads/2009/05/yahoo.jpg" width="394" height="350" alt="Post image for Sync Yahoo and Gmail Contacts with Leopard&#8217;s AddressBook" /></a>
</p><p>Both Yahoo and Google provide a method for importing and exporting email addresses to and from OS X AddressBook but I wanted an easier way to keep things synchronized.  Fortunately, if you are running OS X 10.5 (Leopard), the AddressBook application provides a straight forward way to do so.</p>
<h3>Google is special</h3>
<p>Like most people I use a web based email service like Yahoo! Mail or Gmail.  And like most people I have been using one of these services for quite a long time and I have quite a large number of email addresses that I have saved in the contact list of each of those services, especially Gmail.  The ability to sync with Google is not present as an option unless you have synced your computer with an iPhone or iPod Touch at least once.  There is a work around for non-iPhone/iPod Touch users on <a href="http://lifehacker.com/393855/enable-google-contact-sync-without-an-iphoneipod-touch">Lifehacker</a> web site.  Go ahead and do that.  We&#8217;ll wait until you return.</p>
<h3>Setup</h3>
<p><img class="aligncenter" src="http://pmug-nj.org/blog/wp-content/uploads/2009/03/picture-21.png" border="0" alt="Picture 2.png" width="541" height="584" /><img class="alignright" src="http://pmug-nj.org/blog/wp-content/uploads/2009/03/picture-3.png" border="0" alt="Picture 3.png" width="466" height="157" />Setup is quick and easy.  Go into the <em><strong>Preferences</strong></em> for AddressBook.  On the <em><strong>General</strong></em> tab you will see three check boxes for each of the following services: MobileMe, Exchange, Yahoo and Google.  You can select all (or none) of these check boxes to enable syncing with each of those services.  Google is my preferred service for email so tha&#8217;s the service I setup.  Once you select the checkbox, AddressBook will prompt you for your Gmail username and password.  Enter that information and click <strong><em>OK</em></strong> to complete setup.  If you have a large AddressBook it could take a while for the sync to complete.</p>
<h3>Finish Up</h3>
<p><img class="alignright" src="http://pmug-nj.org/blog/wp-content/uploads/2009/03/picture-41.png" border="0" alt="Picture 4.png" width="299" height="342" />You may already have some contacts in AddressBook that are also in Yahoo or Google and you may find duplicates in your AddressBook once the sync is complete.  These are easy to remove.  From the AddressBook menu select <em><strong>Card-&gt;Look for duplicates</strong></em>.  AddressBook will find and merge duplicates entries into just one entry.  Any changes or additions to your AddressBook contacts will update your online Google or Yahoo contacts and vice versa.</p>


<!&#8211; Begin TwitThis script (http://twitthis.com/) &#8211;>
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!&#8211;
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//&#8211;>
</script>
</div>
<!&#8211; /End &#8211;>



<p>Related posts:<ol><li><a href='http://islandinthenet.com/2009/05/08/how-to-setup-leopard-mailapp-to-use-gmail-2/' rel='bookmark' title='Permanent Link: How to setup OS X&#8217;s Mail.app to use Gmail'>How to setup OS X&#8217;s Mail.app to use Gmail</a> <small> In a previous post I mentioned that I had...</small></li><li><a href='http://islandinthenet.com/2009/05/11/how-to-use-leopards-ical-with-google-calendar/' rel='bookmark' title='Permanent Link: How to use Leopard&#8217;s iCal with Google Calendar'>How to use Leopard&#8217;s iCal with Google Calendar</a> <small> Some time last year Google updated their online Calendar...</small></li><li><a href='http://islandinthenet.com/2008/09/04/how-to-protect-your-gmail-account/' rel='bookmark' title='Permanent Link: How to protect your Gmail account'>How to protect your Gmail account</a> <small>Researchers at the at a Defcon hackers’ conference revealed a...</small></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/islandinthenet/feed?a=9e2DnzGTBDY:FNtVmoYXOCY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/islandinthenet/feed?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/9e2DnzGTBDY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://islandinthenet.com/2009/05/13/sync-yahoo-and-gmail-contacts-with-leopards-addressbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<creativeCommons:license>http://creativecommons.org/licenses/by-nd/3.0/</creativeCommons:license><feedburner:origLink>http://islandinthenet.com/2009/05/13/sync-yahoo-and-gmail-contacts-with-leopards-addressbook/</feedburner:origLink></item>
		<item>
		<title>How to use Leopard’s iCal with Google Calendar</title>
		<link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/mnzbIyKMM9M/</link>
		<comments>http://islandinthenet.com/2009/05/11/how-to-use-leopards-ical-with-google-calendar/#comments</comments>
		<pubDate>Mon, 11 May 2009 11:17:24 +0000</pubDate>
		<dc:creator>Khürt</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[google calendar]]></category>
		<category><![CDATA[ical]]></category>
		<category><![CDATA[leopard]]></category>

		<guid isPermaLink="false">http://islandinthenet.com/?p=1178</guid>
		<description><![CDATA[
Some time last year Google updated their online Calendar service to support the CalDAV protocol.  CalDAV is a standard protocol that allows access to web based calendars from desktop clients like iCal.  Now from within iCal I can schedule create calendar entries that appear in my Google web calendar and vice versa.  [...]


Related posts:<ol><li><a href='http://islandinthenet.com/2008/07/28/google-calendar-caldav-support-calendar-help-center/' rel='bookmark' title='Permanent Link: Google Calendar CalDAV support &#8211; Calendar Help Center'>Google Calendar CalDAV support &#8211; Calendar Help Center</a> <small>The Google Calendar code jockeys have added support for iCal....</small></li><li><a href='http://islandinthenet.com/2009/05/08/how-to-setup-leopard-mailapp-to-use-gmail-2/' rel='bookmark' title='Permanent Link: How to setup OS X&#8217;s Mail.app to use Gmail'>How to setup OS X&#8217;s Mail.app to use Gmail</a> <small> In a previous post I mentioned that I had...</small></li><li><a href='http://islandinthenet.com/2008/08/13/rethinking-mobileme-and-ipod-touch-as-ultra-portable/' rel='bookmark' title='Permanent Link: Rethinking MobileMe and iPod Touch as ultra-portable'>Rethinking MobileMe and iPod Touch as ultra-portable</a> <small> I find that I use my iPod Touch as...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://islandinthenet.com/2009/05/11/how-to-use-leopards-ical-with-google-calendar/" title="Permanent link to How to use Leopard&#8217;s iCal with Google Calendar"><img class="post_image alignright" src="http://islandinthenet.com/wp-content/uploads/2009/05/icl2.jpg" width="254" height="264" alt="Post image for How to use Leopard&#8217;s iCal with Google Calendar" /></a>
</p><p><img class="alignright frame" style="border: 0px initial initial;" src="http://pmug-nj.org/blog/wp-content/uploads/2009/03/google-calaboration-tool.png" border="0" alt="Google Calaboration Tool.png" width="128" height="98" /><span class="dropcap">S</span>ome time last year Google updated their online Calendar service to support the CalDAV protocol.  CalDAV is a standard protocol that allows access to web based calendars from desktop clients like iCal.  Now from within iCal I can schedule create calendar entries that appear in my Google web calendar and vice versa.  Google provides instructions on how to setup iCal to access Google Calendar but &#8230; a screen shot is worth a thousand lines of text.</p>
<p>Setup is fairly easy.  Google provides a set-up tool to make the process quick and painless.  Download the setup tool <a href="http://code.google.com/p/calaboration/downloads/list">here</a>.  After downloading, unzip the file, and run the Calaboration application.  Be sure to exit iCal before running the Calaboration tool.</p>
<p><img class="aligncenter" src="http://pmug-nj.org/blog/wp-content/uploads/2009/03/picture-1.png" border="0" alt="Picture 1.png" width="466" height="183" />Enter your Google email address and password and click the <em>Sign In</em> button.</p>
<p><img class="aligncenter" src="http://pmug-nj.org/blog/wp-content/uploads/2009/03/picture-2.png" border="0" alt="Picture 2.png" width="579" height="604" />After a few seconds the application will display your Google Calendars.  Select the calendars you want to add to iCal and click the &#8220;Add to iCal&#8221; button.  If your email address is not in your Leopard Address Book you will be prompted to do so.</p>
<p><img class="alignleft frame" style="border: 0px initial initial;" src="http://pmug-nj.org/blog/wp-content/uploads/2009/03/picture-4.png" border="0" alt="Picture 4.png" width="237" height="53" />Your Google Calendar will now appear in the list of calendars in iCal.  Any changes you make to your Google Calendar in iCal will show up in your Google web Calendar.</p>


<!&#8211; Begin TwitThis script (http://twitthis.com/) &#8211;>
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!&#8211;
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//&#8211;>
</script>
</div>
<!&#8211; /End &#8211;>



<p>Related posts:<ol><li><a href='http://islandinthenet.com/2008/07/28/google-calendar-caldav-support-calendar-help-center/' rel='bookmark' title='Permanent Link: Google Calendar CalDAV support &#8211; Calendar Help Center'>Google Calendar CalDAV support &#8211; Calendar Help Center</a> <small>The Google Calendar code jockeys have added support for iCal....</small></li><li><a href='http://islandinthenet.com/2009/05/08/how-to-setup-leopard-mailapp-to-use-gmail-2/' rel='bookmark' title='Permanent Link: How to setup OS X&#8217;s Mail.app to use Gmail'>How to setup OS X&#8217;s Mail.app to use Gmail</a> <small> In a previous post I mentioned that I had...</small></li><li><a href='http://islandinthenet.com/2008/08/13/rethinking-mobileme-and-ipod-touch-as-ultra-portable/' rel='bookmark' title='Permanent Link: Rethinking MobileMe and iPod Touch as ultra-portable'>Rethinking MobileMe and iPod Touch as ultra-portable</a> <small> I find that I use my iPod Touch as...</small></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/islandinthenet/feed?a=mnzbIyKMM9M:8gGLTIhhuCE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/islandinthenet/feed?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/mnzbIyKMM9M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://islandinthenet.com/2009/05/11/how-to-use-leopards-ical-with-google-calendar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<creativeCommons:license>http://creativecommons.org/licenses/by-nd/3.0/</creativeCommons:license><feedburner:origLink>http://islandinthenet.com/2009/05/11/how-to-use-leopards-ical-with-google-calendar/</feedburner:origLink></item>
		<item>
		<title>How to setup OS X’s Mail.app to use Gmail</title>
		<link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/mREiOw8gpAQ/</link>
		<comments>http://islandinthenet.com/2009/05/08/how-to-setup-leopard-mailapp-to-use-gmail-2/#comments</comments>
		<pubDate>Fri, 08 May 2009 13:00:39 +0000</pubDate>
		<dc:creator>Khürt</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[imap]]></category>
		<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://islandinthenet.com/?p=1180</guid>
		<description><![CDATA[
In a previous post I mentioned that I had already configured my Mac to use some of Google&#8217;s free services and how I felt that this was a cheap way to get some of the same features offered in MobileMe.  Namely, I configured Mail.app for use with Gmail, synced my Address Book to my [...]


Related posts:<ol><li><a href='http://islandinthenet.com/2008/09/04/how-to-protect-your-gmail-account/' rel='bookmark' title='Permanent Link: How to protect your Gmail account'>How to protect your Gmail account</a> <small>Researchers at the at a Defcon hackers’ conference revealed a...</small></li><li><a href='http://islandinthenet.com/2009/05/13/sync-yahoo-and-gmail-contacts-with-leopards-addressbook/' rel='bookmark' title='Permanent Link: Sync Yahoo and Gmail Contacts with Leopard&#8217;s AddressBook'>Sync Yahoo and Gmail Contacts with Leopard&#8217;s AddressBook</a> <small>Both Yahoo and Google provide a method for importing and...</small></li><li><a href='http://islandinthenet.com/2009/05/11/how-to-use-leopards-ical-with-google-calendar/' rel='bookmark' title='Permanent Link: How to use Leopard&#8217;s iCal with Google Calendar'>How to use Leopard&#8217;s iCal with Google Calendar</a> <small> Some time last year Google updated their online Calendar...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://islandinthenet.com/2009/05/08/how-to-setup-leopard-mailapp-to-use-gmail-2/" title="Permanent link to How to setup OS X&#8217;s Mail.app to use Gmail"><img class="post_image alignright frame" src="http://islandinthenet.com/wp-content/uploads/2009/05/gmail.png" width="186" height="181" alt="Post image for How to setup OS X&#8217;s Mail.app to use Gmail" /></a>
</p><p><span class="dropcap">I</span>n a previous post I mentioned that I had already configured my Mac to use some of Google&#8217;s free services and how I felt that this was a cheap way to get some of the same features offered in MobileMe.  Namely, I configured Mail.app for use with Gmail, synced my Address Book to my Gmail Contacts, and connected iCal to my Google Calendar.  In this post, I explain how to setup Leopard Mail.app for reading Gmail.</p>
<h3>IMAP vs POP3</h3>
<p><span class="dropcap">G</span>oogle provides three ways to access Gmail, their free email service; via the browser, <a title="POP on WikiPedia" href="http://en.wikipedia.org/wiki/Post_Office_Protocol">POP3</a>, or <a title="IMAP on WikiPedia" href="http://en.wikipedia.org/wiki/IMAP4">IMAP</a>.  The Post Office Protocol version 3 (POP3) is a standard protocol used by local e-mail clients to retrieve e-mail from a remote server and download it to the client.  IMAP is also a standard protocol for accessing email but unlike POP3 the email stays on the remote server.  With POP3 you are limited to reading your email from one location.  With IMAP the email stays on the server and you can read it from any computer.  IMAP is the method I use to access my Gmail in Mail.app.  If I read an email in a web browser then it is marked as read on the server and in Mail.app.</p>
<h3>Configuration</h3>
<p><img class="alignright" src="http://pmug-nj.org/blog/wp-content/uploads/2009/02/picture-2.png" border="0" alt="Picture 2.png" width="172" height="102" /><span class="dropcap">C</span>onfiguring Mail.app to use Gmail is relatively easy.  Google has <a href="http://mail.google.com/support/bin/answer.py?answer=81379&amp;topic=12920">provided excellent instructions</a> on their Gmail Help web site. I have provided my own version here.  I think screen shots help in understanding.  Launch Mail.app and click <em>Mail-&gt;Preferences</em> from the menu bar.  Click on the Accounts tab and then click the &#8220;+&#8221; symbol on the lower left  to start the account creation wizard.</p>
<p><img class="aligncenter" src="http://pmug-nj.org/blog/wp-content/uploads/2009/02/picture-4.png" border="0" alt="Picture 4.png" width="592" height="430" /><br />
Enter your name, your Gmail address and password.  Be sure to deselect the &#8220;<em>Automatically set up account</em>&#8221; check box.  This check box is enabled by default and automatically creates an entry for POP3 access.  We want to setup for IMAP. Now click continue.</p>
<p><img class="aligncenter" src="http://pmug-nj.org/blog/wp-content/uploads/2009/02/picture-6.png" border="0" alt="Picture 6.png" width="592" height="430" /><br />
Click the <em>Account Type</em> drop down and select IMAP.  Be sure to change the <em>Incoming Mail Server</em> address to <em>imap.gmail.com</em>.  Leave the other fields as they are and click Continue.</p>
<p><img class="aligncenter" src="http://pmug-nj.org/blog/wp-content/uploads/2009/02/picture-7.png" border="0" alt="Picture 7.png" width="592" height="430" /><br />
The next screen is for setting up the <em>Outgoing Mail</em> server information.  Other than entering a description, e.g Gmail, you can go ahead and click continue.  This will take you to a confirmation summary page.  If it all looks correct go ahead and click create.  The new account should now appear in the Account column on the left.<br />
<img class="aligncenter" src="http://pmug-nj.org/blog/wp-content/uploads/2009/02/picture-8.png" border="0" alt="Picture 8.png" width="592" height="430" /></p>
<h3>Tweaks</h3>
<p><span class="dropcap">T</span>here are a few small details that will make reading Gmail in Mail.app easier.  We will need to change a few things to make Mail.app play nice with Gmail.  Google has a number of DO&#8217;s and DON&#8217;Ts that will ensure a smooth experience using Mail.app.   Google wants all deleted or sent mail to use the local trash and sent folders.  While still in the Accounts tab make sure to deselect all the checkboxes except for &#8220;<em>Store draft messages on the server</em>&#8220;.<img class="aligncenter" src="http://pmug-nj.org/blog/wp-content/uploads/2009/02/picture-9.png" border="0" alt="Picture 9.png" width="630" height="646" /></p>
<h3>Summary</h3>
<p>One of the benefits of using Mail.app with Gmail is that you can now take advantage of all of Mail.app goodness.  You can set fonts, colors, backgrounds, and signatures, or one of those interesting templates and pick addresses right from your Address Book.  Next post, I&#8217;ll tell you how to sync your Gmail contact straight with Leopard Address Book.<img class="aligncenter" src="http://pmug-nj.org/blog/wp-content/uploads/2009/02/picture-10.png" border="0" alt="Picture 10.png" width="690" height="587" /></p>


<!&#8211; Begin TwitThis script (http://twitthis.com/) &#8211;>
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!&#8211;
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//&#8211;>
</script>
</div>
<!&#8211; /End &#8211;>



<p>Related posts:<ol><li><a href='http://islandinthenet.com/2008/09/04/how-to-protect-your-gmail-account/' rel='bookmark' title='Permanent Link: How to protect your Gmail account'>How to protect your Gmail account</a> <small>Researchers at the at a Defcon hackers’ conference revealed a...</small></li><li><a href='http://islandinthenet.com/2009/05/13/sync-yahoo-and-gmail-contacts-with-leopards-addressbook/' rel='bookmark' title='Permanent Link: Sync Yahoo and Gmail Contacts with Leopard&#8217;s AddressBook'>Sync Yahoo and Gmail Contacts with Leopard&#8217;s AddressBook</a> <small>Both Yahoo and Google provide a method for importing and...</small></li><li><a href='http://islandinthenet.com/2009/05/11/how-to-use-leopards-ical-with-google-calendar/' rel='bookmark' title='Permanent Link: How to use Leopard&#8217;s iCal with Google Calendar'>How to use Leopard&#8217;s iCal with Google Calendar</a> <small> Some time last year Google updated their online Calendar...</small></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/islandinthenet/feed?a=mREiOw8gpAQ:givdhDv3aeQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/islandinthenet/feed?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/mREiOw8gpAQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://islandinthenet.com/2009/05/08/how-to-setup-leopard-mailapp-to-use-gmail-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<creativeCommons:license>http://creativecommons.org/licenses/by-nd/3.0/</creativeCommons:license><feedburner:origLink>http://islandinthenet.com/2009/05/08/how-to-setup-leopard-mailapp-to-use-gmail-2/</feedburner:origLink></item>
		<item>
		<title>Welcoming “MackieMac” to our family</title>
		<link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/q7_hWK-DHtY/</link>
		<comments>http://islandinthenet.com/2009/04/05/welcoming-mackiemac-to-our-family/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 13:00:58 +0000</pubDate>
		<dc:creator>Khürt</dc:creator>
				<category><![CDATA[Work/Life]]></category>
		<category><![CDATA[imac]]></category>
		<category><![CDATA[kids]]></category>

		<guid isPermaLink="false">http://islandinthenet.com/?p=812</guid>
		<description><![CDATA[
With the addition of a 20&#8243; iMac for the kids (and an Ikea VIKA Amon desk to display it) we are now completely a Windows free house.  This was an important goal for me.  I am an anal retentive obsessive compulsive type who likes everything &#8220;just so&#8221;.  It&#8217;s bad.  I buy [...]


Related posts:<ol><li><a href='http://islandinthenet.com/2009/01/05/all-the-other-macworld-predictions-are-wrong/' rel='bookmark' title='Permanent Link: All the other MacWorld predictions are wrong.'>All the other MacWorld predictions are wrong.</a> <small>Everyone has predictions for MacWorld 2008. The pundits are making...</small></li><li><a href='http://islandinthenet.com/2009/01/06/macworld-disappoints-some/' rel='bookmark' title='Permanent Link: MacWorld 2009 Keynote News'>MacWorld 2009 Keynote News</a> <small> The weeks and days leading up to MacWorld &#8216;09...</small></li><li><a href='http://islandinthenet.com/2008/07/30/mobileme-ate-my-contact-list/' rel='bookmark' title='Permanent Link: MobileMe ate my contact list.'>MobileMe ate my contact list.</a> <small>After composing an email in Gmail yesterday I went to...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://islandinthenet.com/2009/04/05/welcoming-mackiemac-to-our-family/" title="Permanent link to Welcoming &#8220;MackieMac&#8221; to our family"><img class="post_image alignright" src="http://islandinthenet.com/wp-content/uploads/2009/04/dsc_34971-300x207.jpg" width="300" height="207" alt="Post image for Welcoming &#8220;MackieMac&#8221; to our family" /></a>
</p><p>With the addition of a 20&#8243; iMac for the kids (and an Ikea VIKA Amon desk to display it) we are now completely a Windows free house.  This was an important goal for me.  I am an anal retentive obsessive compulsive type who likes everything &#8220;just so&#8221;.  It&#8217;s bad.  I buy all my clothes from the same retailer/brand: shirts, undershirts, pants, underpants, undershirts, shoes, coats.  My last three cars were all made by Honda.  My TV, DVD player, stereo, and alarm clock are all made by Sony.</p>
<p>What started as new found love for a Mac mini and an iPod shuffle in 2005 wound up being an obsession to do everything the Apple way.  We are a family of four; I have an iPod Touch (and maybe an iPhone this summer), my wife has a Red iPod Nano, my son has an iPod nano, and my daughter has the original shuffle (she&#8217;s the youngest).  An Apple Time Capsule, AirPort Extreme and AirPort Express provide regular backups, ubiquitous wireless access, and music streaming around the house.</p>
<p>Where my kids used to argue over who crashed the Dell, now they argue who spent more time with &#8220;MackieMac&#8221;.  <em>Parental Controls</em> was one of the first features I enabled.  My kids are addicted to the Pokemon, Webkinz, American Girl crack. They get to spend one hour each per day; 3 hours on the weekend.  Enough to keep them out of the Disney clinic for recovering screen addicts.  Being kids, their favorite application is <em>Photo Booth</em>.  This might be worse than letting them catch another Chimchar.  They have also taken relieved me of the Bluetooth Mighty Mouse I used on my MacBook.</p>
<div class="wp-caption alignleft frame" style="width: 240px">
	<a href="http://www.flickr.com/photos/islandinthenet/3409349741/"><img class="flickr-image" title="duct taped dell" src="http://farm4.static.flickr.com/3663/3409349741_261be18b06_m.jpg" alt="duct taped dell" width="240" height="180" /></a>
	<p class="wp-caption-text">Dell Inspiron 2600 - Circa 2001</p>
</div>
<p>My wife is enjoying computing iLife without duct tape.  She was previously addicted to iTunes Bollywood edition but the lack of Windows crashes now allows her to up her habit slightly.  Hits by Lata and A.R Rahman are helping fill the 120GB hard drive on her new White MacBook.  She has also upgraded to scolding me via iChat Video.</p>
<div class="wp-caption alignright frame" style="width: 240px">
	<a href="http://www.flickr.com/photos/islandinthenet/2969519674/"><img class="flickr-image" title="DSC00023" src="http://farm4.static.flickr.com/3245/2969519674_dd1e4b9abb_m.jpg" alt="DSC00023" width="240" height="180" /></a>
	<p class="wp-caption-text">G4 Mac mini</p>
</div>
<p>Meanwhile, the Mac mini that started the obsession serves the most important role; as a media server and repository for all our family photos and videos.  Mac mini has been upgraded from Tiger to Leopard; from iLife 06 to iLife 09; from 512MB of RAM to 1 GB.  He&#8217;s the one that paved the path for the others to follow.  Apple turned a $500 customers into a life long addict.</p>


<!&#8211; Begin TwitThis script (http://twitthis.com/) &#8211;>
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!&#8211;
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//&#8211;>
</script>
</div>
<!&#8211; /End &#8211;>



<p>Related posts:<ol><li><a href='http://islandinthenet.com/2009/01/05/all-the-other-macworld-predictions-are-wrong/' rel='bookmark' title='Permanent Link: All the other MacWorld predictions are wrong.'>All the other MacWorld predictions are wrong.</a> <small>Everyone has predictions for MacWorld 2008. The pundits are making...</small></li><li><a href='http://islandinthenet.com/2009/01/06/macworld-disappoints-some/' rel='bookmark' title='Permanent Link: MacWorld 2009 Keynote News'>MacWorld 2009 Keynote News</a> <small> The weeks and days leading up to MacWorld &#8216;09...</small></li><li><a href='http://islandinthenet.com/2008/07/30/mobileme-ate-my-contact-list/' rel='bookmark' title='Permanent Link: MobileMe ate my contact list.'>MobileMe ate my contact list.</a> <small>After composing an email in Gmail yesterday I went to...</small></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/islandinthenet/feed?a=q7_hWK-DHtY:Hjp0vrYSGoI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/islandinthenet/feed?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/q7_hWK-DHtY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://islandinthenet.com/2009/04/05/welcoming-mackiemac-to-our-family/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<creativeCommons:license>http://creativecommons.org/licenses/by-nd/3.0/</creativeCommons:license><feedburner:origLink>http://islandinthenet.com/2009/04/05/welcoming-mackiemac-to-our-family/</feedburner:origLink></item>
		<item>
		<title>Paranoid about data loss?</title>
		<link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/me2wkxHVEzw/</link>
		<comments>http://islandinthenet.com/2009/03/28/paranoid-about-data-loss/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 18:27:47 +0000</pubDate>
		<dc:creator>Khürt</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://islandinthenet.com/?p=789</guid>
		<description><![CDATA[
I think maybe I have a little too much storage space.  Between Amazon S3, the two 500GB G-Drive Q external drives and the 500GB Apple Time Capsule, I have over 2TB of storage.  I don&#8217;t think I have that many photo and family videos and my iTunes library isn&#8217;t that large either.  The [...]


Related posts:<ol><li><a href='http://islandinthenet.com/2008/08/13/rethinking-mobileme-and-ipod-touch-as-ultra-portable/' rel='bookmark' title='Permanent Link: Rethinking MobileMe and iPod Touch as ultra-portable'>Rethinking MobileMe and iPod Touch as ultra-portable</a> <small> I find that I use my iPod Touch as...</small></li><li><a href='http://islandinthenet.com/2009/02/02/dropbox-and-idisk/' rel='bookmark' title='Permanent Link: Dropbox and iDisk'>Dropbox and iDisk</a> <small> When Apple released MobileMe as a replacement for .Mac...</small></li><li><a href='http://islandinthenet.com/2008/11/16/elias-bizannes-you-don%e2%80%99t-nor-need-to-own-your-data/' rel='bookmark' title='Permanent Link: Elias Bizannes: You don’t nor need to own your data'>Elias Bizannes: You don’t nor need to own your data</a> <small> One of the more lucid and erudite thoughts on...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://islandinthenet.com/2009/03/28/paranoid-about-data-loss/" title="Permanent link to Paranoid about data loss?"><img class="post_image alignright frame" src="http://islandinthenet.com/wp-content/uploads/2009/03/g-driveq.jpg" width="500" height="335" alt="G-Drive Q" /></a>
</p><p>I think maybe I have a little too much storage space.  Between Amazon S3, the two 500GB G-Drive Q external drives and the 500GB Apple Time Capsule, I have over 2TB of storage.  I don&#8217;t think I have that many photo and family videos and my iTunes library isn&#8217;t that large either.  The Amazon S3 is used to backup photos from our iPhoto library stored on the G-Drive Q Media and documents stored on the G-Drive Q.  The Time Capsule is for backing up the three Macs via Time Machine.<a href="http://islandinthenet.com/wp-content/uploads/2009/03/picture-11.png" rel="lightbox[789]"><img class="aligncenter size-full wp-image-800" title="picture-11" src="http://islandinthenet.com/wp-content/uploads/2009/03/picture-11.png" alt="picture-11" width="516" height="740" /></a></p>


<!&#8211; Begin TwitThis script (http://twitthis.com/) &#8211;>
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!&#8211;
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//&#8211;>
</script>
</div>
<!&#8211; /End &#8211;>



<p>Related posts:<ol><li><a href='http://islandinthenet.com/2008/08/13/rethinking-mobileme-and-ipod-touch-as-ultra-portable/' rel='bookmark' title='Permanent Link: Rethinking MobileMe and iPod Touch as ultra-portable'>Rethinking MobileMe and iPod Touch as ultra-portable</a> <small> I find that I use my iPod Touch as...</small></li><li><a href='http://islandinthenet.com/2009/02/02/dropbox-and-idisk/' rel='bookmark' title='Permanent Link: Dropbox and iDisk'>Dropbox and iDisk</a> <small> When Apple released MobileMe as a replacement for .Mac...</small></li><li><a href='http://islandinthenet.com/2008/11/16/elias-bizannes-you-don%e2%80%99t-nor-need-to-own-your-data/' rel='bookmark' title='Permanent Link: Elias Bizannes: You don’t nor need to own your data'>Elias Bizannes: You don’t nor need to own your data</a> <small> One of the more lucid and erudite thoughts on...</small></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/islandinthenet/feed?a=me2wkxHVEzw:C8yANPI_D8o:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/islandinthenet/feed?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/me2wkxHVEzw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://islandinthenet.com/2009/03/28/paranoid-about-data-loss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<creativeCommons:license>http://creativecommons.org/licenses/by-nd/3.0/</creativeCommons:license><feedburner:origLink>http://islandinthenet.com/2009/03/28/paranoid-about-data-loss/</feedburner:origLink></item>
		<item>
		<title>Using iChat with Google Talk</title>
		<link>http://feedproxy.google.com/~r/islandinthenet/feed/~3/uOnHQr_Rc7I/</link>
		<comments>http://islandinthenet.com/2009/03/09/using-ichat-with-google-talk/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 14:15:43 +0000</pubDate>
		<dc:creator>Khürt</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[google talk]]></category>
		<category><![CDATA[ichat]]></category>

		<guid isPermaLink="false">http://islandinthenet.com/?p=765</guid>
		<description><![CDATA[
I bought my wife (and myself) a white MacBook last week.  Her birthday is next month and with Apple&#8217;s newly updated aluminium notebooks the previous model white notebook was put on sale.  Her previous laptop, an 8 year old Dell Inspiron, was a joke and a pain in my neck.  It was [...]


Related posts:<ol><li><a href='http://islandinthenet.com/2009/05/11/how-to-use-leopards-ical-with-google-calendar/' rel='bookmark' title='Permanent Link: How to use Leopard&#8217;s iCal with Google Calendar'>How to use Leopard&#8217;s iCal with Google Calendar</a> <small> Some time last year Google updated their online Calendar...</small></li><li><a href='http://islandinthenet.com/2008/08/13/rethinking-mobileme-and-ipod-touch-as-ultra-portable/' rel='bookmark' title='Permanent Link: Rethinking MobileMe and iPod Touch as ultra-portable'>Rethinking MobileMe and iPod Touch as ultra-portable</a> <small> I find that I use my iPod Touch as...</small></li><li><a href='http://islandinthenet.com/2009/05/08/how-to-setup-leopard-mailapp-to-use-gmail-2/' rel='bookmark' title='Permanent Link: How to setup OS X&#8217;s Mail.app to use Gmail'>How to setup OS X&#8217;s Mail.app to use Gmail</a> <small> In a previous post I mentioned that I had...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://islandinthenet.com/2009/03/09/using-ichat-with-google-talk/" title="Permanent link to Using iChat with Google Talk"><img class="post_image alignleft frame" src="http://islandinthenet.com/wp-content/uploads/2009/03/picture-3.png" width="212" height="144" alt="iChat with Google Talk" /></a>
</p><p><span class="drop_cap">I</span> bought my wife (and myself) a white MacBook last week.  Her birthday is next month and with Apple&#8217;s newly updated aluminium notebooks the previous model white notebook was put on sale.  Her previous laptop, an 8 year old Dell Inspiron, was a joke and a pain in my neck.  It was held together with duct tape.  The battery held no charge so it had to be plugged in all the time.  It could only connect to the Wi-Fi from one or two spots in the house.  I spent a lot of time trouble shooting one problem after another.  So this laptop was two gifts in one; an expensive birthday gift for my wife and lots of free time for me.</p>
<p>I spent about 30 minutes setting things up.  I created an admin account, created her non-admin account,  connected the laptop to the network, setup Mail.app to read her Gmail, linked her Gmail contacts to OS X&#8217;s AddressBook, installed one software patch, linked her iTunes to the Mac mini&#8217;s media library, and finally, setup iChat to use Google Talk.</p>
<h3>iChat Video and Google Talk</h3>
<p><a href="http://islandinthenet.com/wp-content/uploads/2009/03/picture-2.png" rel="lightbox[765]"><img class="size-medium wp-image-767 frame alignright" title="picture-2" src="http://islandinthenet.com/wp-content/uploads/2009/03/picture-2-300x185.png" alt="iChat Video with Google Talk" width="300" height="185" /></a><span class="drop_cap">G</span>oogle Talk uses <a href="http://www.jabber.org/">Jabber</a>, an open instant messaging protocol.  Apple built support for Jabber into the Leopard version of iChat.  I added the account via the Accounts tab in the Preferences pane and was given a pleasant surprise once I logged in.  A little camera style icon appeared next to my wife&#8217;s name in the contact list.  I excited clicked it to find that I could initiate and conducts video chats via my Gtalk account.  Audio and video quality were excellent with very little of that delay I&#8217;ve seen when using Skype.  I can not find any official documentation on Google site about this but others have been doing this for some time.  I take my MacBook to work each day and it would be nice to video chat with my wife during the day.</p>


<!&#8211; Begin TwitThis script (http://twitthis.com/) &#8211;>
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!&#8211;
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//&#8211;>
</script>
</div>
<!&#8211; /End &#8211;>



<p>Related posts:<ol><li><a href='http://islandinthenet.com/2009/05/11/how-to-use-leopards-ical-with-google-calendar/' rel='bookmark' title='Permanent Link: How to use Leopard&#8217;s iCal with Google Calendar'>How to use Leopard&#8217;s iCal with Google Calendar</a> <small> Some time last year Google updated their online Calendar...</small></li><li><a href='http://islandinthenet.com/2008/08/13/rethinking-mobileme-and-ipod-touch-as-ultra-portable/' rel='bookmark' title='Permanent Link: Rethinking MobileMe and iPod Touch as ultra-portable'>Rethinking MobileMe and iPod Touch as ultra-portable</a> <small> I find that I use my iPod Touch as...</small></li><li><a href='http://islandinthenet.com/2009/05/08/how-to-setup-leopard-mailapp-to-use-gmail-2/' rel='bookmark' title='Permanent Link: How to setup OS X&#8217;s Mail.app to use Gmail'>How to setup OS X&#8217;s Mail.app to use Gmail</a> <small> In a previous post I mentioned that I had...</small></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/islandinthenet/feed?a=uOnHQr_Rc7I:5lkImlcn970:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/islandinthenet/feed?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/islandinthenet/feed/~4/uOnHQr_Rc7I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://islandinthenet.com/2009/03/09/using-ichat-with-google-talk/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<creativeCommons:license>http://creativecommons.org/licenses/by-nd/3.0/</creativeCommons:license><feedburner:origLink>http://islandinthenet.com/2009/03/09/using-ichat-with-google-talk/</feedburner:origLink></item>
	</channel>
</rss>
