<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Church Of The Geek &#187; mac</title>
	<atom:link href="http://churchofthegeek.com/category/mac/feed/" rel="self" type="application/rss+xml" />
	<link>http://churchofthegeek.com</link>
	<description>Who shot who in the what now?</description>
	<lastBuildDate>Wed, 25 Nov 2009 16:16:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How To:  OS X Selective Desktop Lock Hotkey</title>
		<link>http://churchofthegeek.com/2008/11/12/osx-desktop-lock-hotkey/</link>
		<comments>http://churchofthegeek.com/2008/11/12/osx-desktop-lock-hotkey/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 20:17:36 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[screensaver]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/?p=854</guid>
		<description><![CDATA[UPDATE: 10.6 users should follow the guide here. 10.5 or below users can follow the guide below. Despite all the compliments I pile on Mac OS X here, it is missing one feature that can be found on every version of Windows since Windows 2000: A keyboard hot key that locks the desktop regardless of [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://churchofthegeek.com/images/dtlock-icon.jpg" alt="yay security!" border="0" align="left" hspace="5" />UPDATE:  10.6 users should follow the guide <a href="http://artofgeek.com/2009/09/08/lock-your-macs-screen-like-in-windows-snow-leopard-edition/">here</a>.  10.5 or below users can follow the guide below.</p>
<p>Despite all the compliments I pile on Mac OS X here, it is missing one feature that can be found on every version of Windows since Windows 2000:  A keyboard hot key that locks the desktop regardless of the screen saver&#8217;s normal security setting.</p>
<p>Hit the link below for the rest of the guide&#8230;</p>
<p><span id="more-854"></span></p>
<p>One thing Linux, OS X, and Windows all have in common is a static screen saver lock setting.  This setting tells the OS to lock the desktop if the screen saver is ever activated, or to leave it alone and never lock the desktop.  In Windows, you can leave the persistent lock setting off and still lock the desktop by pressing the key with the Windows logo on it and L at the same time.  I like to think of this as &#8220;selective desktop locking&#8221;.</p>
<p>I use my Macbook at work every day, but I don&#8217;t want it to always lock the desktop whenever the screen saver turns on because I take it home every night. </p>
<p>Surprisingly, after myself and a couple other Mac fans at work spent some time trying to find a solution, there doesn&#8217;t appear to be any existing info online covering how to set this up on an OS X system.  So the three of us decided to set it up ourselves.</p>
<p><strong>Requirements:<br />
- OS X (written while on 10.5.5, works fine on 10.5.6)<br />
- <a href="http://docs.blacktree.com/quicksilver/what_is_quicksilver">Quicksilver</a><br />
- Keychain menu bar icon<br />
- Apple&#8217;s Script Editor (you may need to install the Developer Tools from your OS X system discs, not sure though)</strong></p>
<p>To add the Keychain menu bar icon, open the Keychain Access application (found in Applications -> Utilities).  Open preferences for the app, and check the box marked &#8220;Show Status in Menu Bar&#8221;.  You should now have a small padlock icon in your menu bar, like so:</p>
<p><img src="http://churchofthegeek.com/images/dtlock-menubar.jpg" alt="Menu Bar Icon" align="center" border="0"></p>
<p><strong>Note the position of the icon (far right).</strong>  If you want to follow this guide exactly your icon will need to be in the same place, otherwise you will need to modify some of the values in the script below.  Hold down the apple button/command button/whatever you want to call it and drag the icon with the mouse to move it.</p>
<p>Now we need to create a script that will do the actual work.  Open the Script Editor application (Applications -> AppleScript) and create a new script with the following code:</p>
<blockquote><p>
tell application &#8220;System Events&#8221;<br />
     click menu bar item -1 of menu bar 1 of application process &#8220;SystemUIServer&#8221;<br />
     keystroke (key code 125)<br />
     keystroke return<br />
end tell
</p></blockquote>
<p>You should have something that looks like this:</p>
<p><img src="http://churchofthegeek.com/images/dtlock-script.png" alt="Lock Script" align="center" border="0" /></p>
<p>A very special thanks to mark at the osxhints.com forums for helping me figure this part out!</p>
<p>You can save this as either a script or an application and it should still work correctly, however we have seen some odd behaviors from it when saved as a script, <strong>so I recommend you save it as an application</strong>.  Open the File menu and choose Save As.  In the window that appears name it whatever you want (I called mine LockDesktop) and change the File Format drop down menu to Application.  I have a directory I called Files inside my user directory that I use for items like this one, but you can put it wherever you want.</p>
<p>Now it&#8217;s time for some Quicksilver-fu.  Open Quicksilver&#8217;s preferences and go to the Triggers tab.  Click the + button at the bottom of the window and add a new hotkey setup like this:</p>
<p><img src="http://churchofthegeek.com/images/dtlock-trigger.jpg" align="center" border="0"></p>
<p>Click the Save button.  Click on your new trigger and then the i icon near the lower right to open the inspector screen.  Set a Hot Key (I used <strong>⌘ L</strong>).</p>
<p><img src="http://churchofthegeek.com/images/dtlock-hotkey.png" align="center" border="0"></p>
<p>All done!  Close the window (make sure your new trigger is saved and shows up in the list), close the Quicksilver preferences, and test your new hot key.  You may need to adjust the variables in the &#8220;click menu bar item X of X&#8221; line of the script if your keychain icon is not in the far right corner.</p>
<p>One last important item:  While this setup replicates selective desktop locking, it is not perfect.  Sometimes, especially after a reboot or if you just logged in, the application can take several seconds to launch and run correctly.  Subsequent launches will be speedier but can still take a couple seconds to complete.  </p>
<p>Questions/comments/etc are welcome, just post a comment here.</p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2008/11/12/osx-desktop-lock-hotkey/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>NicePlayer Finally Updated</title>
		<link>http://churchofthegeek.com/2008/06/11/niceplayer-finally-updated/</link>
		<comments>http://churchofthegeek.com/2008/06/11/niceplayer-finally-updated/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 14:02:35 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/?p=809</guid>
		<description><![CDATA[There there blog, I know I&#8217;ve neglected you.  I&#8217;ve been super busy and &#8230; yes, yes ok I know excuses won&#8217;t cut it here.  You&#8217;re pissed.  I&#8217;m sorry. Here is a peace offering instead:  My favorite (and default) video player for OS X, NicePlayer, has finally been updated in the form of a preview build.  [...]]]></description>
			<content:encoded><![CDATA[<p>There there blog, I know I&#8217;ve neglected you.  I&#8217;ve been super busy and &#8230; yes, yes ok I know excuses won&#8217;t cut it here.  You&#8217;re pissed.  I&#8217;m sorry.</p>
<p>Here is a peace offering instead:  My favorite (and default) video player for OS X, NicePlayer, has finally been <a href="http://jay.tuley.name/build/">updated in the form of a preview build</a>.  This preview includes the return of remote control support, something which has been broken since 10.5 originally came out.  Yes, that is quite a long time now and yes, I did wonder up until the moment I found this preview build if the application was dead in the water.</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2008/06/11/niceplayer-finally-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Better VLC Icon</title>
		<link>http://churchofthegeek.com/2008/01/06/a-better-vlc-icon/</link>
		<comments>http://churchofthegeek.com/2008/01/06/a-better-vlc-icon/#comments</comments>
		<pubDate>Sun, 06 Jan 2008 21:44:47 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/2008/01/06/a-better-vlc-icon/</guid>
		<description><![CDATA[Having tried a lot of the alternative video players available for OS X 10.5 right now, VLC has become my favorite choice. This mostly has to due with flexibility and the fact that it supports the Apple remote. Up until now I defaulted to NicePlayer (which also supports the remote but only under 10.4). The [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://macrabbit.com/goodies/"><img src="http://churchofthegeek.com/images/vlcicon.png" border="0" align="left" hspace="5"></a>Having tried a lot of the alternative video players available for OS X 10.5 right now, <a href="http://www.videolan.org/vlc/">VLC</a> has become my favorite choice.</p>
<p>This mostly has to due with flexibility and the fact that it supports the Apple remote.  Up until now I defaulted to <a href="http://niceplayer.sourceforge.net/">NicePlayer</a> (which also supports the remote but only under 10.4).</p>
<p>The only problem with VLC is the application icon which is about as smooth as a car wreck in the dock.  MacRabbit has a <a href="http://macrabbit.com/goodies/">very nice replacement icon set</a> which also supports file types.</p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2008/01/06/a-better-vlc-icon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Rsync Backup</title>
		<link>http://churchofthegeek.com/2007/12/04/simple-rsync-backup/</link>
		<comments>http://churchofthegeek.com/2007/12/04/simple-rsync-backup/#comments</comments>
		<pubDate>Tue, 04 Dec 2007 15:22:11 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/2007/12/04/simple-rsync-backup/</guid>
		<description><![CDATA[Rsync is an awesome tool for creating and restoring backups, but it really helps if you remember how you ran the command the first time. This post is an effort to fix that problem with my backups, or rather an excuse to not have to bother remembering it anymore. rsync -avz -e ssh &#8211;delete &#8211;stats [...]]]></description>
			<content:encoded><![CDATA[<p>Rsync is an awesome tool for creating and restoring backups, but it really helps if you remember how you ran the command the first time.</p>
<p>This post is an effort to fix that problem with my backups, or rather an excuse to not have to bother remembering it anymore.</p>
<blockquote><p>
rsync -avz -e ssh &#8211;delete &#8211;stats &#8211;progress /Users/jay jallen@(hostname/IP):/home/jallen/stuff2 &#8211;exclude &#8216;.Trash&#8217; &#8211;exclude &#8216;.DS_Store&#8217;
</p></blockquote>
<p>All of the options starting with delete are double dashes.  For some reason when I copy and paste the above into a terminal it pastes them as single dashes which screws up the command.</p>
<p>Note:  This is being used to backup a MacBook to a remote SSH-accessible drive, hence the exclude statements for .Trash and .DS_Store.</p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2007/12/04/simple-rsync-backup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Leopard Stuff</title>
		<link>http://churchofthegeek.com/2007/11/24/leopard-stuff/</link>
		<comments>http://churchofthegeek.com/2007/11/24/leopard-stuff/#comments</comments>
		<pubDate>Sun, 25 Nov 2007 03:43:56 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/2007/11/24/leopard-stuff/</guid>
		<description><![CDATA[A collection of tips and other goodies I&#8217;ve read recently about OS X 10.5 Leopard: The 512&#215;512 icon support gives an already polished operating system an even cleaner look. Try looking at your applications using Quick Look and you&#8217;ll see what I mean. Apple even hid a few things in their default icon set, like [...]]]></description>
			<content:encoded><![CDATA[<p>A collection of tips and other goodies I&#8217;ve read recently about OS X 10.5 Leopard:</p>
<p>The 512&#215;512 icon support gives an already polished operating system an even cleaner look.  Try looking at your applications using <a href="http://www.simplehelp.net/2007/10/30/an-overview-of-leopards-quick-look/">Quick Look</a> and you&#8217;ll see what I mean.  Apple even hid a few things in their default icon set, like the Font Book icon (letters are A F K) and a letter written in the TextEdit icon (<a href="http://www.usingmac.com/2007/11/13/leopard-coverflow-secret-of-icons">good overview w/pics here</a>).</p>
<p>You can find all of the default icons for 10.5 at /System » Library » CoreServices » CoreTypes.bundle (right-click and open package contents) » Contents » Resources.    (via <a href="http://www.macosxhints.com/article.php?story=20071018143409599">macosxhints.com</a>)<br />
<a href="http://blog.wired.com/gadgets/2007/10/leopard-bsod-ic.html"><br />
public.generic-pc.icns</a> is my personal favorite <img src='http://churchofthegeek.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><a href="http://www.tuaw.com/2007/10/26/24-hours-of-leopard-stacks/">Stacks</a> is a cool feature and is actually somewhat useful, but Apple should take note of <a href="http://t.ecksdee.org/post/19001860">these sweet overlays</a>.</p>
<p>If you have the developer tools installed <a href="http://www.macosxhints.com/article.php?story=20071103185237239">you will find two extra screen savers</a> located at /Developer/Examples/Quartz Composer/Compositions/Screen Savers.  Copy the two files to /Library/Screen Savers or ~/Library/Screen Savers.    The Security screen saver is fun and is actually motion activated.<br />
<a href="http://www.leopardtricks.com/?p=122"><br />
Photobooth can now make animated GIFs</a>.  Handy for buddy icons.</p>
<p>Drives/devices mounted remotely seem to show up in the Shared section of the finder sidebar instead of the Devices section like in 10.4.  Until I realized this I was only able to open them using Quicksilver.  Turns out you can drag them in the sidebar from Shared to Devices, and the move is even permanent after the drive is removed and then remounted.</p>
<p>Quick Look is pure awesomeness in a bottle.<br />
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/MqjH0_E4pxQ&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/MqjH0_E4pxQ&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2007/11/24/leopard-stuff/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>It Lives!!!</title>
		<link>http://churchofthegeek.com/2007/11/19/it-lives/</link>
		<comments>http://churchofthegeek.com/2007/11/19/it-lives/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 03:19:24 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/2007/11/19/it-lives/</guid>
		<description><![CDATA[My MacBook is back online following a hard drive crash. The entire process sucked. It&#8217;s why I haven&#8217;t been online much in the past week or so. Time to stretch some gigabyte-wasting applications now that I&#8217;ve got twice the room available. UPDATE: Shelby asked for the full details, so here we go. Last Sunday, while [...]]]></description>
			<content:encoded><![CDATA[<p>My MacBook is back online following a hard drive crash.  The entire process sucked.  It&#8217;s why I haven&#8217;t been online much in the past week or so.</p>
<p>Time to stretch some gigabyte-wasting applications now that I&#8217;ve got twice the room available.</p>
<p>UPDATE:  Shelby asked for the full details, so here we go.</p>
<p>Last Sunday, while I was running a 103 degree fever due to the flu, Jen sat down with my Macbook to look up a recipe.  It woke up from the sleep mode without a problem but started acting strange.  One by one everything on the desktop started giving the <a href="http://en.wikipedia.org/wiki/Spinning_wait_cursor">spinning beachball o&#8217; doom</a>.  Nothing responded, and I mean nothing, so I shut it down hard using the power button.</p>
<p>Afterwards the Macbook would not start back up at all.  No failed boot screens, no icons indicating a problem, just the startup chime and then a persistent blank white screen.  I reset the PRAM and the PMU to no avail.  Finally I stuck my ear next to the left-side wrist wrest area (where the hard drive is located) and confirmed my worst fears:  A horrible clicking noise was coming from the drive, indicating it had died a messy death and took my data with it.</p>
<p>A little research also linked my dead drive to a bit of news I&#8217;d read not too long ago:  <a href="http://retrodata.co.uk/notice_apple_seagate_drives.php">Data recovery firm Retrodata reported towards the end of October that they are seeing 20 &#8211; 30 times the normal failure rate for certain 60GB Seagate drives used in Macbooks.</a>  Of course my drive matched the referenced model, but sadly Apple has not offered up any kind of replacement for these drives and my Macbook is no longer under warranty.</p>
<p>On a side note, I will never again buy an Apple computer without automatically including the cost of the 3-year apple care extension.  Moving on&#8230;</p>
<p>Thankfully I had made a complete backup of the drive just before installing OS X 10.5 so I didn&#8217;t really lose that much data.  The worst was a few reports for work that take me a while to complete but they can all be done again.</p>
<p>After fighting a long battle with the &#8220;instant gratification&#8221; side of my personality I bought a 120GB Fujitsu drive on newegg that was the best deal I could find.  I patiently (ok, not so patiently) waited the few days it took to get the drive shipped.  I had to go out and pick up a torx driver set to move the drive caddy from the old drive to the new drive, took care of that and put the new drive in.  I figured my problems were just about over but sadly I was very, very mistaken.</p>
<p>Both my original 10.4 restore discs and the 10.5 disc failed to install.  Both yielded I/O errors and would fail at completely random points in the installation process.  My suspicions about my macbook&#8217;s DVD drive failing jumped to mind, so I borrowed a coworker&#8217;s identical Macbook and connected the two with a firewall cable using <a href="http://macamour.com/blog/2007/11/07/installing-os-x-via-the-target-disk-mode/">target disk mode</a> (which is a really cool feature by the way).   Sadly my macbook could see the drives on the other macbook but failed to boot off the DVD.</p>
<p>Later that evening it occurred to me that if the install was failing at random points I could try to install the OS with the smallest feature set possible, just to get the core operating system installed, figuring I could install iLife and everything else later.</p>
<p>Amazingly, after two attempts, it worked!  Once I confirmed 10.4 was running I tried to upgrade to 10.5.  I guess Leopard was determined to add its own bit of humor to this story because even though it told me the install failed it still booted into 10.5 when I took out the installation DVD.</p>
<p>Even though it now appeared to be working ok I did not really trust it.  Considering the DVD drive is failing who knows what parts of the OS could&#8217;ve been corrupted during the install.</p>
<p>Co-worker with a external DVD firewire drive to the rescue!  Using that drive I was able to reinstall everything completely with no errors (for the record, just hold the option key while starting up and a mac will give you a boot-device menu of everything it can see that is attached to it).  My co-worker suggested converting the install DVD to a dmg file, citing the ridiculous speed increase you would get versus the standard DVD install method, but I just wanted a working Macbook again <img src='http://churchofthegeek.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I consider myself extremely lucky that this is the first personal hard drive I&#8217;ve had die in the many years I&#8217;ve been using computers.   Most of my friends and co-workers have had several drives fail on them in their time.</p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2007/11/19/it-lives/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>OS X Tidbits</title>
		<link>http://churchofthegeek.com/2007/10/23/os-x-tidbits/</link>
		<comments>http://churchofthegeek.com/2007/10/23/os-x-tidbits/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 03:14:35 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[quickies]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/2007/10/23/os-x-tidbits/</guid>
		<description><![CDATA[Missile Command Widget Anèmona Screen saver based on the liquidmac app. Enabling HD Trailers in Front Row (make sure Front Row has been opened at least once before running the command)]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.macupdate.com/info.php/id/26023/missile-command">Missile Command Widget</a></p>
<p><a href="http://www.macupdate.com/info.php/id/26026/an%e8mona">Anèmona</a><br />
Screen saver based on the <a href="http://uri.cat/software/LiquidMac/">liquidmac</a> app.</p>
<p><a href="http://www.macosxhints.com/article.php?story=2007101906541184">Enabling HD Trailers in Front Row</a><br />
(make sure Front Row has been opened at least once before running the command)</p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2007/10/23/os-x-tidbits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lifehacker Love</title>
		<link>http://churchofthegeek.com/2007/10/04/lifehacker-love/</link>
		<comments>http://churchofthegeek.com/2007/10/04/lifehacker-love/#comments</comments>
		<pubDate>Thu, 04 Oct 2007 17:08:28 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/2007/10/04/lifehacker-love/</guid>
		<description><![CDATA[Lifehacker sent out a call for submissions for an OS X menu bar show-and-tell feature about a week ago. I snapped a quick screenshot and sent mine in. Today I was happy to see they picked it up and put it on their site: http://lifehacker.com/photogallery/Menu-Bar-Show-and-Tell/2777810]]></description>
			<content:encoded><![CDATA[<p>Lifehacker sent out a call for submissions for an OS X menu bar show-and-tell feature about a week ago.  I snapped a quick screenshot and sent mine in.  Today I was happy to see they picked it up and put it on their site:</p>
<p><a href="http://lifehacker.com/photogallery/Menu-Bar-Show-and-Tell/2777810">http://lifehacker.com/photogallery/Menu-Bar-Show-and-Tell/2777810</a></p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2007/10/04/lifehacker-love/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Safari 3 &#8211; New Hotness</title>
		<link>http://churchofthegeek.com/2007/06/11/safari-3-new-hotness/</link>
		<comments>http://churchofthegeek.com/2007/06/11/safari-3-new-hotness/#comments</comments>
		<pubDate>Mon, 11 Jun 2007 21:37:03 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[downloads]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/2007/06/11/safari-3-new-hotness/</guid>
		<description><![CDATA[Apple dropped a bomb today and not only released a public beta of Safari 3 but also released Safari for WINDOWS. For anyone who doesn&#8217;t understand the big deal here I&#8217;ll just put it this way: Prior to today if me or any of my computer geek/coworker pals saw a Safari window open on a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.apple.com/safari"><img src="http://churchofthegeek.com/images/safari.jpg" border="0" hspace="5" align="left"></a>Apple dropped a bomb today and not only released a <a href="http://www.apple.com/safari/">public beta of Safari 3</a> but also released <a href="http://www.apple.com/safari/">Safari for WINDOWS</a>.</p>
<p>For anyone who doesn&#8217;t understand the big deal here I&#8217;ll just put it this way:  Prior to today if me or any of my computer geek/coworker pals saw a Safari window open on a Windows desktop we&#8217;d probably shake our heads, think we started hallucinating, and then slowly back away.<br />
<span id="more-736"></span></p>
<p>I have no idea how well the Windows version runs, but I&#8217;m trying out the beta of Safari 3 on my MacBook and so far it really seems like it has some worthwhile improvements.  Tabs can now be rearranged by dragging (and animate while doing so in the usual apple way), the memory load seems to be much more under control, and overall speed appears to have improved noticeably.</p>
<p>The more I use Safari 3 the more little tweaks I find.  For example, while writing this post I noticed that all major text input fields can be resized using the bottom right corner icon that appears when you click inside the field.</p>
<p>If you are using Windows (and the site stats say that at least 48.6% of you are) I can&#8217;t stress the following statement enough:  Do yourself a favor and <a href="http://www.apple.com/safari">download the Safari 3 beta</a> now!</p>
<p>Update:  Reports seem to pretty varied.  The Windows version sounds like it really needs some improvement (I hate to be the OS snob here but seriously, that&#8217;s not shocking) and the OS X version is still has the family memory hog gene.  But, and this is a big but, it&#8217;s fast.  REALLY fast.  Not all the time, but you&#8217;ll definitely notice what I mean if you try it on a similar system (10.4.9 Intel with at least a gig of RAM).</p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2007/06/11/safari-3-new-hotness/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>X-Chat Aqua</title>
		<link>http://churchofthegeek.com/2007/02/20/x-chat-aqua/</link>
		<comments>http://churchofthegeek.com/2007/02/20/x-chat-aqua/#comments</comments>
		<pubDate>Wed, 21 Feb 2007 02:29:20 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/?p=706</guid>
		<description><![CDATA[After a difficult search X-Chat Aqua has won the coveted (in my mind, anyway) default IRC client spot on my MacBook. Irssi is still my tool of choice but sometimes a GUI-based IRC client is helpful. In the end Growl support and a complete set of independent network connection preferences (yay SOCKS proxies!) won me [...]]]></description>
			<content:encoded><![CDATA[<p>After a difficult search <a href="http://sourceforge.net/projects/xchataqua/">X-Chat Aqua</a> has won the coveted (in my mind, anyway) default IRC client spot on my MacBook.</p>
<p>Irssi is still my tool of choice but sometimes a GUI-based IRC client is helpful.</p>
<p>In the end <a href="http://growl.info/about.php">Growl support</a> and a complete set of independent network connection preferences (<a href="http://churchofthegeek.com/?p=680">yay SOCKS proxies!</a>) won me over.</p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2007/02/20/x-chat-aqua/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
