<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-1222781796280348220</id><updated>2010-06-20T23:58:44.173-07:00</updated><title type='text'>things mac</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://thingsmac.tolton.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default'/><link rel='alternate' type='text/html' href='http://thingsmac.tolton.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06228313528648279635</uri><email>noreply@blogger.com</email></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>12</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1222781796280348220.post-290884507105753622</id><published>2008-07-01T00:20:00.000-07:00</published><updated>2008-07-01T00:23:09.080-07:00</updated><title type='text'>Enable "single window mode" in Safari 3.1</title><content type='html'>It's about time Safari added this feature.  Just do the following in the terminal:&lt;br /&gt;&lt;br /&gt;defaults write com.apple.Safari TargetedClicksCreateTabs -bool true&lt;br /&gt;&lt;br /&gt;NB: I've read complaints about this not working in the Safari 4 developer preview.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1222781796280348220-290884507105753622?l=thingsmac.tolton.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thingsmac.tolton.com/feeds/290884507105753622/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1222781796280348220&amp;postID=290884507105753622' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/290884507105753622'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/290884507105753622'/><link rel='alternate' type='text/html' href='http://thingsmac.tolton.com/2008/07/enable-single-window-mode-in-safari-31.html' title='Enable &quot;single window mode&quot; in Safari 3.1'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06228313528648279635</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='07009180725221435556'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1222781796280348220.post-952174617630882106</id><published>2008-06-26T01:06:00.000-07:00</published><updated>2008-06-26T01:36:53.638-07:00</updated><title type='text'>setting up subversion over svn+ssh</title><content type='html'>Consolidating this process, so I don't forget it:&lt;br /&gt;&lt;br /&gt;create user svn&lt;br /&gt;lock svn account (sudo passwd -l svn)&lt;br /&gt;sudo -u svn -s&lt;br /&gt;go to /home/svn/&lt;br /&gt;svnadmin create [repository directory here]&lt;br /&gt;chmod g+s [repository directory]/db&lt;br /&gt;&lt;br /&gt;URL of repository will be: svn+ssh://username@hostname/home/svn/[repository directory]&lt;br /&gt;&lt;br /&gt;Be sure to follow these tips from the svn book:&lt;br /&gt;&lt;div class="itemizedlist"&gt;&lt;ul type="disc"&gt;&lt;li&gt;&lt;p&gt;All of your SSH users need to be able to read and             write to the repository.  Put all the SSH users into a             single group.  Make the repository wholly owned by that             group, and set the group permissions to read/write.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Your users need to use a sane umask when accessing the             repository.  Make sure that &lt;span&gt;&lt;b class="command"&gt;svnserve&lt;/b&gt;&lt;/span&gt;             (&lt;tt class="filename"&gt;/usr/local/bin/svnserve&lt;/tt&gt;, or wherever             it lives in &lt;tt class="literal"&gt;$PATH&lt;/tt&gt;) is actually a             wrapper script which sets &lt;span&gt;&lt;b class="command"&gt;umask 002&lt;/b&gt;&lt;/span&gt; and             executes the real &lt;span&gt;&lt;b class="command"&gt;svnserve&lt;/b&gt;&lt;/span&gt;             binary.  Take similar measures when using             &lt;span&gt;&lt;b class="command"&gt;svnlook&lt;/b&gt;&lt;/span&gt; and             &lt;span&gt;&lt;b class="command"&gt;svnadmin&lt;/b&gt;&lt;/span&gt;.  Either run them with a sane             umask, or wrap them as described above.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;When BerkeleyDB creates new logfiles, they need to be             owned by the group as well, so make sure you run             &lt;span&gt;&lt;b class="command"&gt;chmod g+s&lt;/b&gt;&lt;/span&gt; on the repository's             &lt;tt class="filename"&gt;db&lt;/tt&gt; directory.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;br /&gt;The umask point can be accomplished by using scripts like this:&lt;br /&gt;&lt;pre class="screen"&gt;$ cat /usr/local/bin/svn&lt;br /&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;&lt;br /&gt;umask 002&lt;br /&gt;/usr/local/subversion/bin/svn "$@"&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1222781796280348220-952174617630882106?l=thingsmac.tolton.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thingsmac.tolton.com/feeds/952174617630882106/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1222781796280348220&amp;postID=952174617630882106' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/952174617630882106'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/952174617630882106'/><link rel='alternate' type='text/html' href='http://thingsmac.tolton.com/2008/06/setting-up-subversion-over-svnssh.html' title='setting up subversion over svn+ssh'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06228313528648279635</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='07009180725221435556'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1222781796280348220.post-2893728382401949323</id><published>2008-06-17T16:59:00.001-07:00</published><updated>2008-06-17T17:01:29.063-07:00</updated><title type='text'>LockTight -- lock your computer with a shortcut</title><content type='html'>One of the frustrating things on the Mac is the lack of the ability to lock your computer with a simple keyboard shortcut.  Fortunately, there is a little program called &lt;a href="http://www.gkoya.com/2006/11/23/locktight-for-mac-os-x-intel/"&gt;LockTight&lt;/a&gt; which comes to the rescue.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1222781796280348220-2893728382401949323?l=thingsmac.tolton.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thingsmac.tolton.com/feeds/2893728382401949323/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1222781796280348220&amp;postID=2893728382401949323' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/2893728382401949323'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/2893728382401949323'/><link rel='alternate' type='text/html' href='http://thingsmac.tolton.com/2008/06/locktight-lock-your-computer-with.html' title='LockTight -- lock your computer with a shortcut'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06228313528648279635</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='07009180725221435556'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1222781796280348220.post-3728201141279735896</id><published>2008-05-28T14:26:00.000-07:00</published><updated>2008-05-28T14:29:52.348-07:00</updated><title type='text'>Synchronize two directories (local or remote)</title><content type='html'>Found a neat utility called &lt;a href="http://www.cis.upenn.edu/~bcpierce/unison/"&gt;Unison&lt;/a&gt; which does two way synchronization between two directories (as opposed to rsync which AFAIK is only one way).  It seems much easier to use than rsync, as well.  You simply use a command like so 'unison /path/to/dir1 /path/to/dir2'.  If you want to sync with a remote directory, you can use ssh in the path specification (ssh://username@foo.org/path/to/dir/).&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;It works with Linux, Mac, Windows (I found it on MacPorts for the mac).&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1222781796280348220-3728201141279735896?l=thingsmac.tolton.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thingsmac.tolton.com/feeds/3728201141279735896/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1222781796280348220&amp;postID=3728201141279735896' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/3728201141279735896'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/3728201141279735896'/><link rel='alternate' type='text/html' href='http://thingsmac.tolton.com/2008/05/synchronize-two-directories-local-or.html' title='Synchronize two directories (local or remote)'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06228313528648279635</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='07009180725221435556'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1222781796280348220.post-1110384998506241179</id><published>2008-05-23T10:45:00.000-07:00</published><updated>2008-05-23T10:46:53.354-07:00</updated><title type='text'>Customize your app switching behavior</title><content type='html'>The utility is &lt;a href="http://www.manytricks.com/witch/"&gt;Witch&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1222781796280348220-1110384998506241179?l=thingsmac.tolton.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thingsmac.tolton.com/feeds/1110384998506241179/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1222781796280348220&amp;postID=1110384998506241179' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/1110384998506241179'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/1110384998506241179'/><link rel='alternate' type='text/html' href='http://thingsmac.tolton.com/2008/05/customize-your-app-switching-behavior.html' title='Customize your app switching behavior'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06228313528648279635</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='07009180725221435556'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1222781796280348220.post-7004041762650961708</id><published>2008-05-23T10:40:00.000-07:00</published><updated>2008-05-23T10:42:40.014-07:00</updated><title type='text'>Nice utility to manage sleep vs safe sleep vs hibernate behavior of mac</title><content type='html'>It's called SmartSleep.  Check it out &lt;a href="http://www.jinx.de/SmartSleep.html"&gt;here&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1222781796280348220-7004041762650961708?l=thingsmac.tolton.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thingsmac.tolton.com/feeds/7004041762650961708/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1222781796280348220&amp;postID=7004041762650961708' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/7004041762650961708'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/7004041762650961708'/><link rel='alternate' type='text/html' href='http://thingsmac.tolton.com/2008/05/nice-utility-to-manage-sleep-vs-safe.html' title='Nice utility to manage sleep vs safe sleep vs hibernate behavior of mac'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06228313528648279635</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='07009180725221435556'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1222781796280348220.post-2716223458020873513</id><published>2007-12-12T10:58:00.001-08:00</published><updated>2008-12-13T04:21:23.021-08:00</updated><title type='text'>Strange results on live search</title><content type='html'>A friend of mine and I were messing around with live search, and we noticed some dubious sponsored links associated with certain keywords.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_fGGwegvD_Kc/R2A2Z9noVJI/AAAAAAAAABI/lYN3DYVaN4Q/s1600-h/linux.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_fGGwegvD_Kc/R2A2Z9noVJI/AAAAAAAAABI/lYN3DYVaN4Q/s320/linux.jpg" alt="" id="BLOGGER_PHOTO_ID_5143170594122519698" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_fGGwegvD_Kc/R2A2itnoVKI/AAAAAAAAABQ/M066M6BvxhA/s1600-h/ubuntu.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_fGGwegvD_Kc/R2A2itnoVKI/AAAAAAAAABQ/M066M6BvxhA/s320/ubuntu.jpg" alt="" id="BLOGGER_PHOTO_ID_5143170744446375074" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1222781796280348220-2716223458020873513?l=thingsmac.tolton.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thingsmac.tolton.com/feeds/2716223458020873513/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1222781796280348220&amp;postID=2716223458020873513' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/2716223458020873513'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/2716223458020873513'/><link rel='alternate' type='text/html' href='http://thingsmac.tolton.com/2007/12/strange-results-on-live-search.html' title='Strange results on live search'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06228313528648279635</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='07009180725221435556'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_fGGwegvD_Kc/R2A2Z9noVJI/AAAAAAAAABI/lYN3DYVaN4Q/s72-c/linux.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1222781796280348220.post-6393062814334090640</id><published>2007-12-04T19:46:00.000-08:00</published><updated>2007-12-04T19:48:10.780-08:00</updated><title type='text'>Easily edit Cocoa KeyBindings files</title><content type='html'>Want to add some new keyboard shortcuts to all cocoa programs?  Use a key bindings file.&lt;br /&gt;&lt;br /&gt;This free program will help you edit them:&lt;br /&gt;&lt;br /&gt;http://www.cocoabits.com/KeyBindingsEditor/&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1222781796280348220-6393062814334090640?l=thingsmac.tolton.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thingsmac.tolton.com/feeds/6393062814334090640/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1222781796280348220&amp;postID=6393062814334090640' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/6393062814334090640'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/6393062814334090640'/><link rel='alternate' type='text/html' href='http://thingsmac.tolton.com/2007/12/easily-edit-cocoa-keybindings-files.html' title='Easily edit Cocoa KeyBindings files'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06228313528648279635</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='07009180725221435556'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1222781796280348220.post-9091099748498830334</id><published>2007-11-15T00:32:00.001-08:00</published><updated>2007-11-15T00:34:19.254-08:00</updated><title type='text'>Set default application for file types</title><content type='html'>Use the &lt;a href="http://www.rubicode.com/Software/RCDefaultApp/"&gt;RCDefaultApp&lt;/a&gt; preference pane.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1222781796280348220-9091099748498830334?l=thingsmac.tolton.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thingsmac.tolton.com/feeds/9091099748498830334/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1222781796280348220&amp;postID=9091099748498830334' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/9091099748498830334'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/9091099748498830334'/><link rel='alternate' type='text/html' href='http://thingsmac.tolton.com/2007/11/set-default-application-for-file-types.html' title='Set default application for file types'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06228313528648279635</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='07009180725221435556'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1222781796280348220.post-8130625875783071766</id><published>2007-11-15T00:00:00.000-08:00</published><updated>2007-11-15T00:01:46.232-08:00</updated><title type='text'>Prevent .DS_Store file creation on network drives</title><content type='html'>&lt;code&gt;defaults write com.apple.desktopservices DSDontWriteNetworkStores 1&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1222781796280348220-8130625875783071766?l=thingsmac.tolton.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thingsmac.tolton.com/feeds/8130625875783071766/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1222781796280348220&amp;postID=8130625875783071766' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/8130625875783071766'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/8130625875783071766'/><link rel='alternate' type='text/html' href='http://thingsmac.tolton.com/2007/11/prevent-dsstore-file-creation-on.html' title='Prevent .DS_Store file creation on network drives'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06228313528648279635</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='07009180725221435556'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1222781796280348220.post-7856394664700994594</id><published>2007-11-08T20:02:00.001-08:00</published><updated>2007-11-09T15:26:31.964-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='mac'/><title type='text'>Show hidden files in Finder</title><content type='html'>Ever want to be able to access files that begin with '.' via the Finder?  It's simple, open up Terminal and type:&lt;br /&gt;&lt;br /&gt;defaults write com.apple.finder AppleShowAllFiles 1&lt;br /&gt;&lt;br /&gt;Then to apply the setting immediately:&lt;br /&gt;&lt;br /&gt;killall Finder&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1222781796280348220-7856394664700994594?l=thingsmac.tolton.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thingsmac.tolton.com/feeds/7856394664700994594/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1222781796280348220&amp;postID=7856394664700994594' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/7856394664700994594'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/7856394664700994594'/><link rel='alternate' type='text/html' href='http://thingsmac.tolton.com/2007/11/show-hidden-files-in-finder.html' title='Show hidden files in Finder'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06228313528648279635</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='07009180725221435556'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1222781796280348220.post-3659031665893067947</id><published>2007-11-08T19:59:00.000-08:00</published><updated>2007-11-08T20:01:21.496-08:00</updated><title type='text'>blog why</title><content type='html'>This blog is primarily to help me remember different tweaks I've made on my mac, so that when I need to set up another mac in the future, I have all the information easily accessible.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1222781796280348220-3659031665893067947?l=thingsmac.tolton.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thingsmac.tolton.com/feeds/3659031665893067947/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1222781796280348220&amp;postID=3659031665893067947' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/3659031665893067947'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1222781796280348220/posts/default/3659031665893067947'/><link rel='alternate' type='text/html' href='http://thingsmac.tolton.com/2007/11/blog-why.html' title='blog why'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06228313528648279635</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='07009180725221435556'/></author><thr:total>0</thr:total></entry></feed>