<?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; tips</title>
	<atom:link href="http://churchofthegeek.com/category/tips/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.3.2</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>Twitter</title>
		<link>http://churchofthegeek.com/2008/03/26/twitter/</link>
		<comments>http://churchofthegeek.com/2008/03/26/twitter/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 15:49:34 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[webtools]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/2008/03/26/twitter/</guid>
		<description><![CDATA[So I&#8217;m giving Twitter another chance. For those of you who have never used it or seen it Twitter is basically a messaging system. Think of Facebook&#8217;s status indicator and build an entire service around it. You can check out my twitter profile below.]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;m giving Twitter another chance.  For those of you who have never used it or seen it Twitter is basically a messaging system.  Think of Facebook&#8217;s status indicator and build an entire service around it.</p>
<p>You can check out my twitter profile below.</p>
<p><a href="http://twitter.com/radioraheem"><img src="http://churchofthegeek.com/images/twitter_thumb.png" border="0"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2008/03/26/twitter/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>QuickProxy Firefox Addon</title>
		<link>http://churchofthegeek.com/2007/03/21/quickproxy-firefox-addon/</link>
		<comments>http://churchofthegeek.com/2007/03/21/quickproxy-firefox-addon/#comments</comments>
		<pubDate>Wed, 21 Mar 2007 18:22:08 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/?p=715</guid>
		<description><![CDATA[Update June 16 2008: The developer of QuickProxy was nice enough to leave a comment on this post informing me that the firefox add-on is alive again! I just installed it in my copy of Firefox 3 RC 3 (Mac) and can&#8217;t wait to start using it, as it is definitely the best proxy switch [...]]]></description>
			<content:encoded><![CDATA[<p>Update June 16 2008:</p>
<p>The developer of QuickProxy was nice enough to leave a comment on this post informing me that the firefox add-on is alive again!  I just installed it in my copy of Firefox 3 RC 3 (Mac) and can&#8217;t wait to start using it, as it is definitely the best proxy switch add-on I&#8217;ve used.</p>
<p>Awesome!</p>
<p>====</p>
<p>Update April 13 2008:</p>
<p>I&#8217;ve been running the Firefox 3 beta for a while, and unfortunately it appears quickproxy is no longer being updated.  Check out <a href="https://addons.mozilla.org/en-US/firefox/addon/6709">ProxySwitch</a>, which does the same thing.</p>
<p>====</p>
<p>A couple months ago <a href="http://churchofthegeek.com/?p=680">I posted about using a SOCKS proxy</a> to secure your traffic when using an open wireless network (or any time you need to redirect traffic in a VPN-like fashion).  Ever since then I&#8217;ve been using this tip a lot, but it has led to an annoying amount of opening and closing Firefox&#8217;s network preferences to check the proxy status.</p>
<p><a href="https://addons.mozilla.org/firefox/1557/">QuickProxy</a> to the rescue!  I just found this today and it is perfect for what I need.  It adds a simple icon to Firefox&#8217;s status bar which is green when the proxy is in use.  Click on it and it turns gray, disabling the proxy.</p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2007/03/21/quickproxy-firefox-addon/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iPod Shuffle Case</title>
		<link>http://churchofthegeek.com/2007/02/17/ipod-shuffle-case/</link>
		<comments>http://churchofthegeek.com/2007/02/17/ipod-shuffle-case/#comments</comments>
		<pubDate>Sat, 17 Feb 2007 05:19:16 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[ipod]]></category>
		<category><![CDATA[lifehacks]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/?p=705</guid>
		<description><![CDATA[I found that an empty eye glasses case makes an excellent travel case for the 2nd gen ipod shuffle. This one is big enough to hold the shuffle, dock, and earbuds. Since the case is lined to protect glasses it does an awesome job of protecting everything. And it makes it so much easier to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/jasonrallen/392639061/"><img src="/images/shufflecase_thumb.png" alt="ipod shuffle glasses case" border="0" align="left" hspace="5"></a>I found that an empty eye glasses case makes an excellent travel case for the 2nd gen ipod shuffle. This one is big enough to hold the shuffle, dock, and earbuds. Since the case is lined to protect glasses it does an awesome job of protecting everything.</p>
<p>And it makes it so much easier to find in my backpack!  The first thing everyone says when they look at it is &#8220;I&#8217;d be so afraid of losing it.&#8221;</p>
<p>I bought this shuffle a few months ago after I&#8217;d quit smoking and reached the 3 week point. I love it, and it easily gets as much use as the 30GB ipod video my parents got us for Christmas.</p>
<p>You can see the full sized pic in the <a href="http://www.churchofthegeek.com/gallery/main.php/v/gadgets/shufflecase.jpg.html">Gallery</a> or at <a href="http://www.flickr.com/photos/jasonrallen/392639061/">Flickr</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2007/02/17/ipod-shuffle-case/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Dark Side of the Dashboard Moon</title>
		<link>http://churchofthegeek.com/2006/12/20/dark-side-of-the-dashboard-moon/</link>
		<comments>http://churchofthegeek.com/2006/12/20/dark-side-of-the-dashboard-moon/#comments</comments>
		<pubDate>Wed, 20 Dec 2006 05:23:11 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/?p=688</guid>
		<description><![CDATA[I&#8217;ve had my Macbook for six months now, and I just now noticed this cool little feature in OS X&#8217;s Dashboard. The weather widget shows all kinds of weather conditions (a couple weeks ago it impressed me with little freezing rain balls bouncing off it) and at night it switches to show cloud conditions with [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://churchofthegeek.com/gallery/main.php/v/screencaps/dashmoon.png.html"><img src="http://churchofthegeek.com/gallery/main.php/d/44-2/dashmoon.png" alt="Dark Dashboard Moon" align="left" border="0" hspace="5"></a>I&#8217;ve had my Macbook for six months now, and I just now noticed this cool little feature in <a href="http://www.apple.com/macosx/features/dashboard/">OS X&#8217;s Dashboard</a>.  The weather widget shows all kinds of weather conditions (a couple weeks ago it impressed me with little freezing rain balls bouncing off it) and at night it switches to show cloud conditions with the moon.  It wasn&#8217;t until just now that I noticed it tracks the exact <em>phase</em> of the moon too.</p>
<p>I opened up dashboard for the first time tonight and this is what I saw.  Sure enough we are having a clear night and a new moon, <a href="http://en.wikipedia.org/wiki/Moon_phases#Names_of_lunar_phases">meaning no moon visible at all</a>.</p>
<p>Pretty nifty.<br />
<em><br />
Click the thumbnail for the <a href="http://churchofthegeek.com/gallery/main.php/v/screencaps/dashmoon.png.html">full version</a>.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2006/12/20/dark-side-of-the-dashboard-moon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSH, SOCKS proxies, and Firefox</title>
		<link>http://churchofthegeek.com/2006/12/08/ssh-socks-proxies-and-firefox/</link>
		<comments>http://churchofthegeek.com/2006/12/08/ssh-socks-proxies-and-firefox/#comments</comments>
		<pubDate>Fri, 08 Dec 2006 06:26:50 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/?p=680</guid>
		<description><![CDATA[This tip is courtesy of the Ubuntu Blog, but I just discovered it also works perfectly well in OS X and with some hot Putty action you could probably even pull it off with Windows. I&#8217;m writing this using it now. A coworker of mine recently came down with some kind of outer space soul [...]]]></description>
			<content:encoded><![CDATA[<p>This tip is courtesy of the <a href="http://www.ubuntu.com/">Ubuntu</a> <a href="http://ubuntu.wordpress.com/2006/12/08/ssh-tunnel-socks-proxy-forwarding-secure-browsing/">Blog</a>, but I just discovered it also works perfectly well in OS X and with some hot <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">Putty</a> action you could probably even pull it off with Windows.  I&#8217;m writing this using it now.</p>
<p>A coworker of mine recently came down with some kind of outer space soul sucking virus and was ordered by his doctor to take a week off.  Any hardcore geek will tell you that automatically means a lot of potential keyboard time, so he decided to setup a remote connection to the work network.</p>
<p>Being security-minded is important in the hosting world (it should be more important everywhere else) and so the inevitable question arose as to how he could best pull this off.  Like an increasing number of laptop owners he also uses open wireless networks a lot (so do I) and <a href="http://www.informit.com/guides/content.asp?g=security&#038;seqNum=162&#038;rl=1">you really shouldn&#8217;t be using open wireless with any password or data you really care about</a>.</p>
<p>VPN&#8217;s work well for remote connections but can occasionally be a pain to set up depending on how your company has theirs configured.</p>
<p>If you have a computer/server running Linux or any other variety of <a href="http://en.wikipedia.org/wiki/Openssh">OpenSSH</a> server which is connected to a more trustworthy network you can create a <a href="http://en.wikipedia.org/wiki/SOCKS">SOCKS</a> <a href="http://en.wikipedia.org/wiki/Proxy_server">proxy</a> SSH connection to it using the following command:</p>
<blockquote><p>ssh -D 9999 user@server</p></blockquote>
<p>The -D creates the SOCKS proxy, 9999 is the port, and user@server is your user name on the server you are connecting to and its host name or IP address.  Then just set Firefox to use the SOCKS proxy as localhost and set the port to 9999.  Presto &#8211; instant secure web traffic.</p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2006/12/08/ssh-socks-proxies-and-firefox/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Best Firefox Tweak Ever:  Reduce RAM Usage</title>
		<link>http://churchofthegeek.com/2006/10/25/best-firefox-tweak-ever-reduce-ram-usage/</link>
		<comments>http://churchofthegeek.com/2006/10/25/best-firefox-tweak-ever-reduce-ram-usage/#comments</comments>
		<pubDate>Wed, 25 Oct 2006 17:48:08 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/?p=672</guid>
		<description><![CDATA[If you wish you could afford a RAM upgrade (like me) and you are using Firefox then you&#8217;re probably familiar with what a memory hog it can be. Firefox 2 has proven to be just as excellent a browser as previous versions but that RAM appetite sure hasn&#8217;t changed. Lifehacker has posted a series of [...]]]></description>
			<content:encoded><![CDATA[<p>If you wish you could afford a RAM upgrade (like me) and you are using Firefox then you&#8217;re probably familiar with what a memory hog it can be.  Firefox 2 has proven to be just as excellent a browser as previous versions but that RAM appetite sure hasn&#8217;t changed.</p>
<p>Lifehacker has posted a series of tweaks you can make using about:config.  I just tried the browser.cache.disk.capacity tweak and it reduced Firefox&#8217;s total RAM usage on my MacBook by almost 30%.</p>
<p>Good stuff.</p>
<p><a href="http://www.lifehacker.com/software/firefox-2/geek-to-live-top-firefox-2-config-tweaks-209941.php">Lifehacker link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2006/10/25/best-firefox-tweak-ever-reduce-ram-usage/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Switching to Mail.app</title>
		<link>http://churchofthegeek.com/2006/09/10/switching-to-mailapp/</link>
		<comments>http://churchofthegeek.com/2006/09/10/switching-to-mailapp/#comments</comments>
		<pubDate>Sun, 10 Sep 2006 21:59:19 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/?p=665</guid>
		<description><![CDATA[Mail.app, OS X&#8217;s built in email program, is loved by many a Mac user but generally not trusted by support techs dues some known issues with the app in general. Basically it&#8217;s a great mail program when it runs well but occasionally it can have problems that nobody but Apple seems to know how to [...]]]></description>
			<content:encoded><![CDATA[<p>Mail.app, OS X&#8217;s built in email program, is loved by many a Mac user but generally not trusted by support techs dues some known issues with the app in general.  Basically it&#8217;s a great mail program when it runs well but occasionally it can have problems that nobody but Apple seems to know how to fix.</p>
<p>Today I stopped using Thunderbird and switched to Mail.app.  Both are on my system and I&#8217;m using IMAP so I can switch between them whenever I want.</p>
<p>Some of my friends might be asking &#8220;WHY???&#8221;  Quite simple:  Memory footprint.  I noticed today that Thunderbird was using ~30MB of memory when running so I decided to compare them.  Mail.app weighed in at about 18MB average.</p>
<p>Not too difficult a decision when you&#8217;re talking almost 50% difference.</p>
<p>I&#8217;ll be switching back when I can afford that 2GB RAM upgrade <img src='http://churchofthegeek.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2006/09/10/switching-to-mailapp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

