<?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>Garrett's Stuff</title>
	<atom:link href="http://garrettreid.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://garrettreid.com</link>
	<description>Potentially useful stuff</description>
	<lastBuildDate>Fri, 08 Apr 2011 04:24:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Remote tail with GeekTool</title>
		<link>http://garrettreid.com/2011/remote-tail-with-geektool/</link>
		<comments>http://garrettreid.com/2011/remote-tail-with-geektool/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 04:16:28 +0000</pubDate>
		<dc:creator>garrett</dc:creator>
				<category><![CDATA[Files]]></category>
		<category><![CDATA[Logging]]></category>
		<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[GeekTool]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://garrettreid.com/?p=64</guid>
		<description><![CDATA[Today I discovered a wonderful OSX control panel called GeekTool, which lets you put all kinds of stuff on your desktop. I wish I had known about this long ago, but better late than never =) My goal was to &#8230; <a href="http://garrettreid.com/2011/remote-tail-with-geektool/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today I discovered a wonderful OSX control panel called <a href="http://projects.tynsoe.org/en/geektool/">GeekTool</a>, which lets you put all kinds of stuff on your desktop. I wish I had known about this long ago, but better late than never =)</p>
<p>My goal was to tail a logfile on a remote server and display it on my desktop. GeekTool supports three types of &#8220;Geeklet&#8221;: File, Image, and Shell. File displays the content of a file, Image displays an image, and Shell displays the output of a shell command (good thing I&#8217;m here to clarify!) Each of them has various options, which the GeekTool website documents in further detail.</p>
<p>The shell geeklet is implemented as a (probably recurring) shell command that gets run, with the output being shown on completion. Unfortunately, this rules out the simple approach of `ssh user@server &#8220;tail -f /var/log/yourlog&#8221;`. By running an ssh process to tail the log and piping the output into a local file, we can happily have our &#8220;log tail&#8221; without continuous ssh connects and disconnects: `ssh -f user@server &#8220;tail -f /var/log/yourlog&#8221; > /tmp/server_log_yourlog`.</p>
<p>Throw in a file geeklet, and you&#8217;re done. I happened to want the newest text on top, so I used a shell geeklet of `tail -r -100 /tmp/server_log_yourlog`. Enjoy your upside-down live server logs on your desktop!</p>
]]></content:encoded>
			<wfw:commentRss>http://garrettreid.com/2011/remote-tail-with-geektool/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sign an applet jar with an existing ssl certificate</title>
		<link>http://garrettreid.com/2010/sign-an-applet-jar-with-an-existing-ssl-certificate/</link>
		<comments>http://garrettreid.com/2010/sign-an-applet-jar-with-an-existing-ssl-certificate/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 07:58:34 +0000</pubDate>
		<dc:creator>garrett</dc:creator>
				<category><![CDATA[Code signing]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[applet]]></category>
		<category><![CDATA[jar]]></category>
		<category><![CDATA[jks]]></category>
		<category><![CDATA[sign]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://garrettreid.com/?p=53</guid>
		<description><![CDATA[Since this was a bit of a pain for me, I figured I&#8217;d post a quick how-to. I couldn&#8217;t find any one page with info, so this pseudocody howto is gathered from a few places. The only easy way seems &#8230; <a href="http://garrettreid.com/2010/sign-an-applet-jar-with-an-existing-ssl-certificate/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Since this was a bit of a pain for me, I figured I&#8217;d post a quick how-to. I couldn&#8217;t find any one page with info, so this pseudocody howto is gathered from a few places.</p>
<p>The only easy way seems to be using a java tool called <a href="http://juliusdavies.ca/commons-ssl/">not-yet-commons-ssl</a> which will do this for you. So download their latest jar and use it (update as necessary for your version of not-yet-commons):</p>
<p><code>java -cp not-yet-commons-ssl-0.3.11.jar org.apache.commons.ssl.KeyStoreBuilder your-new-keystore-password-here yourdomain.tld.key yourdomain.tld.crt</code></p>
<p>This will leave you with a yourdomain.tld.jks file, which you can then go ahead and sign your applet with:</p>
<p><code>jarsigner -keystore yourdomain.tld.jks -keypass your-new-keystore-password-here applet.to.sign.jar yourdomain.tld</code></p>
]]></content:encoded>
			<wfw:commentRss>http://garrettreid.com/2010/sign-an-applet-jar-with-an-existing-ssl-certificate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ffmpeg with x264 and libavfilter on debian squeeze</title>
		<link>http://garrettreid.com/2010/ffmpeg-x264-libavfilter-debian-squeeze/</link>
		<comments>http://garrettreid.com/2010/ffmpeg-x264-libavfilter-debian-squeeze/#comments</comments>
		<pubDate>Mon, 27 Sep 2010 21:54:42 +0000</pubDate>
		<dc:creator>garrett</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Video encoding]]></category>

		<guid isPermaLink="false">http://garrettreid.com/?p=45</guid>
		<description><![CDATA[Since the deprecation of vhook, it&#8217;s hard to watermark videos in ffmpeg. With the new google summer of code changes, it&#8217;s possible to do watermarking again. The problem is, this requires building a recent version of ffmpeg. And if you &#8230; <a href="http://garrettreid.com/2010/ffmpeg-x264-libavfilter-debian-squeeze/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Since the deprecation of vhook, it&#8217;s hard to watermark videos in ffmpeg. With the new <a href="http://code.google.com/soc/">google summer of code</a> changes, it&#8217;s possible to do watermarking again. The problem is, this requires building a recent version of ffmpeg. And if you want x264 support too, the package in Squeeze isn&#8217;t recent enough, so that has to be compiled too. Anyway, here&#8217;s the &#8220;guide&#8221;. It&#8217;s based off <a href="http://ffmpeg.arrozcru.org/forum/viewtopic.php?f=8&#038;t=1400">FFmpeg image overlay</a> and <a href="http://www.vps.net/forum/public-forums/tutorials-and-how-tos/851-how-to-install-ffmpeg-on-debian-lenny-from-svn-and-x264-from-git">install ffmpeg on Debian Lenny from SVN and x264 from GIT</a>, with a few small adjustments.</p>
<p>
Let&#8217;s start by installing all the dependencies for debian&#8217;s ffmpeg package:<br />
<code>aptitude build-dep ffmpeg<br />
</code></p>
<p>We need to add the debian-multimedia repository. Edit your sources.list:<br />
<code>vi /etc/apt/sources.list<br />
</code></p>
<p>Add in these lines for the debian-multimedia repository:<br />
<code>deb http://www.debian-multimedia.org squeeze main non-free<br />
deb-src http://www.debian-multimedia.org squeeze main non-free<br />
</code></p>
<p>Then add the repository key so dpkg doesn&#8217;t complain (you&#8217;ll need install wget):<br />
<code>aptitude install wget<br />
wget http://www.debian-multimedia.org/pool/main/d/debian-multimedia-keyring/debian-multimedia-keyring_2008.10.16_all.deb<br />
dpkg -i debian-multimedia-keyring_2008.10.16_all.deb<br />
</code></p>
<p>Then update:<br />
<code>aptitude update<br />
</code></p>
<p>Now we&#8217;ll install some packages to flesh out ffmpeg&#8217;s format support:<br />
<code>aptitude install libmp3lame-dev libxvidcore4-dev libfaad-dev libfaac-dev liba52-0.7.4-dev<br />
</code></p>
<p>And we&#8217;ll need subversion and git to grab sources for ffmpeg and x264, respectively:<br />
<code>aptitude install subversion git<br />
</code></p>
<p>Now, let&#8217;s go ahead and check out the summer of code branch of ffmpeg<br />
<code>svn co svn://svn.ffmpeg.org/soc<br />
cd soc/libavfilter/<br />
./checkout.sh<br />
cd ffmpeg/<br />
./configure --enable-libmp3lame --enable-libtheora --enable-libx264 --enable-libgsm --enable-postproc --enable-libxvid --enable-pthreads --enable-libvorbis --enable-gpl --enable-x11grab --enable-nonfree --enable-filter=movie --enable-avfilter --enable-libfaac<br />
</code></p>
<p>At this point, the configure script will complain that &#8220;ERROR: libx264 not found&#8221;. So now it&#8217;s time to install x264:<br />
<code>cd ../../..<br />
git clone git://git.videolan.org/x264.git<br />
cd x264<br />
./configure<br />
make<br />
checkinstall --fstrans=no --install=yes --pkgname=x264 --pkgversion "1:0.svn`date +%Y%m%d`-0.0squeeze1" --default<br />
</code></p>
<p>Now, back to ffmpeg:<br />
<code>cd ../soc/libavfilter/ffmpeg/<br />
./configure --enable-libmp3lame --enable-libtheora --enable-libx264 --enable-libgsm --enable-postproc --enable-libxvid --enable-pthreads --enable-libvorbis --enable-gpl --enable-x11grab --enable-nonfree --enable-filter=movie --enable-avfilter --enable-libfaac<br />
make<br />
checkinstall --pkgname=ffmpeg --pkgversion "4:0.7+svn`date +%Y%m%d`" --backup=no --default<br />
</code></p>
<p>And that&#8217;s it! You now have ffmpeg on your debian squeeze system (should work fine with lenny if you change the debian-multimedia sources.list entries).<br />
Update: Added libfaac.</p>
]]></content:encoded>
			<wfw:commentRss>http://garrettreid.com/2010/ffmpeg-x264-libavfilter-debian-squeeze/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PwnageTool 2.0</title>
		<link>http://garrettreid.com/2008/pwnagetool-20/</link>
		<comments>http://garrettreid.com/2008/pwnagetool-20/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 00:42:20 +0000</pubDate>
		<dc:creator>garrett</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://garrettreid.com/?p=42</guid>
		<description><![CDATA[PwnageTool (jailbreaking/unlocking for iphone) has been released. There&#8217;s enough excitement that all the mirrors are (essentially) down, so I&#8217;m mirroring a copy too.]]></description>
			<content:encoded><![CDATA[<p>PwnageTool (jailbreaking/unlocking for iphone) has been released. There&#8217;s enough excitement that all the mirrors are (essentially) down, so I&#8217;m <a href="http://garrettreid.com/PwnageTool_2.0.zip">mirroring a copy</a> too.</p>
]]></content:encoded>
			<wfw:commentRss>http://garrettreid.com/2008/pwnagetool-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PrintRoom Albums</title>
		<link>http://garrettreid.com/2008/printroom-albums/</link>
		<comments>http://garrettreid.com/2008/printroom-albums/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 06:10:32 +0000</pubDate>
		<dc:creator>garrett</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Files]]></category>
		<category><![CDATA[downloading]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://garrettreid.com/?p=41</guid>
		<description><![CDATA[I today had the unfortunate experience of having to deal with PrintRoom, which is pathetic. Not only do all pictures (in my case, anyway) get stamped with a low-rent watermark, but they&#8217;re shown through a flash-based interface, and scaled to &#8230; <a href="http://garrettreid.com/2008/printroom-albums/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I today had the unfortunate experience of having to deal with PrintRoom, which is <b>pathetic</b>. Not only do all pictures (in my case, anyway) get stamped with a low-rent watermark, but they&#8217;re shown through a flash-based interface, and scaled to 1.2x original size by a low-quality algorithm!</p>
<p>Needless to say, I took personal exception. So I wrote a script to download all the photos out of a PrintRoom album. It required a <a href="http://www.perl.org">perl</a> interpreter, the <a href="http://search.cpan.org/~gaas/libwww-perl-5.810/lib/LWP/Simple.pm">LWP::Simple</a> module, and <a href="http://www.gnu.org/software/wget/">wget</a> installed on your system. If you don&#8217;t know what this means, the script is not for you. If you have a compatible system and are stuck with printroom, then <a href="http://garrettreid.com/wp-content/uploads/2008/04/printroom_downloader.pl">download the script</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://garrettreid.com/2008/printroom-albums/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>More battle apps added</title>
		<link>http://garrettreid.com/2008/more-battle-apps-added/</link>
		<comments>http://garrettreid.com/2008/more-battle-apps-added/#comments</comments>
		<pubDate>Sat, 09 Feb 2008 04:08:00 +0000</pubDate>
		<dc:creator>garrett</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[greasemonkey]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://garrettreid.com/2008/more-battle-apps-added/</guid>
		<description><![CDATA[While updating my scripts to deal with the latest little captcha deal, I noticed that two more apps have been added to the battle (read: spam?) apps family. So, in addition to the cheats for Vampires vs Werewolves, Skiers vs &#8230; <a href="http://garrettreid.com/2008/more-battle-apps-added/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>While updating my scripts to deal with the latest little captcha deal, I noticed that two more apps have been added to the battle (read: spam?) apps family. So, in addition to the cheats for Vampires vs Werewolves, Skiers vs Snowboarders, Pirates vs Ninjas and Santa vs Grinch, I&#8217;m now introducing the cheats for Cops vs Robbers and Democrats vs Republicans.</p>
<p>Whew! When it takes a whole paragraph to list essentially identical applications, maybe it&#8217;s time to stop making more of them. In any case, the scripts can be downloaded from the <a href="http://garrettreid.com/projects/facebook-battle-apps-automation/">FaceBook battle apps page</a> as usual. Have a great trip upwards through the ranks!</p>
]]></content:encoded>
			<wfw:commentRss>http://garrettreid.com/2008/more-battle-apps-added/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>More on facebook battle apps</title>
		<link>http://garrettreid.com/2008/more-on-facebook-battle-apps/</link>
		<comments>http://garrettreid.com/2008/more-on-facebook-battle-apps/#comments</comments>
		<pubDate>Sat, 09 Feb 2008 03:13:59 +0000</pubDate>
		<dc:creator>garrett</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[greasemonkey]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://garrettreid.com/2008/more-on-facebook-battle-apps/</guid>
		<description><![CDATA[As users of my scripts have undoubtedly noticed, the battle apps have added annoying little captchas to their page during a battle, to prevent any automated playing. So of course, I&#8217;ve updated my scripts to deal with them. Go to &#8230; <a href="http://garrettreid.com/2008/more-on-facebook-battle-apps/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As users of my scripts have undoubtedly noticed, the battle apps have added annoying little captchas to their page during a battle, to prevent any automated playing. So of course, I&#8217;ve updated my scripts to deal with them. Go to the <a href="http://garrettreid.com/projects/facebook-battle-apps-automation/">battle apps page</a>, and grab the latest scripts. Enjoy your climb through the ranks :)</p>
]]></content:encoded>
			<wfw:commentRss>http://garrettreid.com/2008/more-on-facebook-battle-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OSXCrypt and TrueCrypt afterthoughts</title>
		<link>http://garrettreid.com/2008/osxcrypt-and-truecrypt-afterthoughts/</link>
		<comments>http://garrettreid.com/2008/osxcrypt-and-truecrypt-afterthoughts/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 07:42:59 +0000</pubDate>
		<dc:creator>garrett</dc:creator>
				<category><![CDATA[Encryption]]></category>
		<category><![CDATA[Files]]></category>
		<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Alpha Software]]></category>
		<category><![CDATA[OSXCrypt]]></category>
		<category><![CDATA[TrueCrypt]]></category>
		<category><![CDATA[Unfinished]]></category>

		<guid isPermaLink="false">http://garrettreid.com/2008/osxcrypt-and-truecrypt-afterthoughts/</guid>
		<description><![CDATA[So I&#8217;ve been playing with OSXCrypt and TrueCrypt for a few days now, and found out some things that aren&#8217;t so obvious from the websites. Both can only format in the FAT filesystem. Since their primary virtue over encrypted DMGs &#8230; <a href="http://garrettreid.com/2008/osxcrypt-and-truecrypt-afterthoughts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve been playing with <a href="http://www.osxcrypt.org/">OSXCrypt</a> and <a href="http://www.truecrypt.org/">TrueCrypt</a> for a few days now, and found out some things that aren&#8217;t so obvious from the websites.</p>
<ul>
<li>Both can only format in the FAT filesystem. Since their primary virtue over encrypted DMGs is cross-platform portability, this probably isn&#8217;t too big of a deal.</li>
<li>You can use the disk utility to reformat a mounted encrypted volume if you want another filesystem.</li>
<li>With <a href="http://www.truecrypt.org/">TrueCrypt</a> volumes, you can&#8217;t eject from finder, with <a href="http://www.osxcrypt.org/">OSXCrypt</a> you can eject from finder but need to complete from command-line anyway.</li>
<li><a href="http://www.osxcrypt.org/">OSXCrypt</a> is MUCH faster than the official <a href="http://www.truecrypt.org/">TrueCrypt</a> release. I didn&#8217;t do benchmarking, but the difference is easily noticeable.</li>
<li>You can&#8217;t copy large files into a <a href="http://www.truecrypt.org/">TrueCrypt</a> volume unless you use Disk Utility to reformat to another filesystem.</li>
<li><a href="http://www.osxcrypt.org/">OSXCrypt</a> doesn&#8217;t yet do full-disk encryption, and seems to be unable to create an encrypted disk larger than 1GB.</li>
<li><a href="http://www.truecrypt.org/">TrueCrypt</a> has a GUI, but it doesn&#8217;t really feel like it was designed for mac. <a href="http://www.osxcrypt.org/">OSXCrypt</a> has no GUI, but it&#8217;s pretty self-explanitory usage (I had an easier time figuring out <a href="http://www.osxcrypt.org/">OSXCrypt</a> than <a href="http://www.truecrypt.org/">TrueCrypt</a>).</li>
<li>It seems that <a href="http://www.osxcrypt.org/">OSXCrypt</a> won&#8217;t mount images that don&#8217;t have a .img suffix (due to their usage of hdiutil).</li>
<li>From what I&#8217;ve seen around the internet, <a href="http://www.osxcrypt.org/">OSXCrypt</a> is currently more reliable than <a href="http://www.truecrypt.org/">TrueCrypt</a>.</li>
</ul>
<p>While it seems neither is quite ready for day-to-day use, I&#8217;ll be sticking with <a href="http://www.osxcrypt.org/">OSXCrypt</a> and/or sparseimage files for now. I&#8217;m certainly looking forward to support of full-disk encryption, however.</p>
]]></content:encoded>
			<wfw:commentRss>http://garrettreid.com/2008/osxcrypt-and-truecrypt-afterthoughts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OSXCrypt 6.2A vs TrueCrypt 5.0</title>
		<link>http://garrettreid.com/2008/osxcrypt-62a-vs-truecrypt-50/</link>
		<comments>http://garrettreid.com/2008/osxcrypt-62a-vs-truecrypt-50/#comments</comments>
		<pubDate>Wed, 06 Feb 2008 18:20:46 +0000</pubDate>
		<dc:creator>garrett</dc:creator>
				<category><![CDATA[Encryption]]></category>
		<category><![CDATA[Files]]></category>
		<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Alpha Software]]></category>
		<category><![CDATA[Drivers]]></category>
		<category><![CDATA[OSXCrypt]]></category>
		<category><![CDATA[TrueCrypt]]></category>

		<guid isPermaLink="false">http://garrettreid.com/2008/osxcrypt-62a-vs-truecrypt-50/</guid>
		<description><![CDATA[TrueCrypt 5.0 was released today, adding support for Mac OSX among other things. As a OSX user, I&#8217;ve been awaiting full-disk encryption for some time. However, as of January 27th, the OSXCrypt project has also been completed. Now, to keep &#8230; <a href="http://garrettreid.com/2008/osxcrypt-62a-vs-truecrypt-50/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.truecrypt.org/downloads.php">TrueCrypt 5.0</a> was released today, adding support for Mac OSX among other things. As a OSX user, I&#8217;ve been awaiting full-disk encryption for some time. However, as of January 27th, the <a href="http://www.osxcrypt.org/">OSXCrypt project</a> has also been completed.</p>
<p />
Now, to keep the record straight, <a href="http://www.truecrypt.org/">TrueCrypt</a> and <a href="http://www.osxcrypt.org/">OSXCrypt</a> have different goals. <a href="http://www.truecrypt.org/">TrueCrypt</a> allows for steganography, encrypted disk images (something OSX has not been lacking), and full disk encryption. <a href="http://www.osxcrypt.org/">OSXCrypt</a>, on the other hand, is not an encryption solution in and of itself. Instead, they provide a framework for various encryption solutions.</p>
<p />
Personally, I don&#8217;t see anything lacking in <a href="http://www.truecrypt.org/">TrueCrypt</a>&#8216;s feature list, and a 5.0 tag is a little more reassuring to me than 6.2A. I&#8217;m going to be installing <a href="http://www.truecrypt.org/">TrueCrypt</a> shortly, but I&#8217;m wondering if anyone has had experience with <a href="http://www.osxcrypt.org/">OSXCrypt</a> and recommend it.</p>
<p />
Some quick updates that may be of interest to those considering installing one or the other:</p>
<ul>
<li><a href="http://www.truecrypt.org/">TrueCrypt</a>&#8216;s OSX implementation is based on <a href="http://code.google.com/p/macfuse/">MacFUSE</a>.</li>
<li><a href="http://code.google.com/p/macfuse/">MacFUSE</a> comes bundled with other filesystems (NTFS, WebDav, ZFS, FTP, etc)</li>
<li><a href="http://www.osxcrypt.org/">OSXCrypt</a> is probably a lighter-weight install.</li>
<li><a href="http://www.osxcrypt.org/">OSXCrypt</a> has no GUI, whereas <a href="http://www.truecrypt.org/">TrueCrypt</a> does.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://garrettreid.com/2008/osxcrypt-62a-vs-truecrypt-50/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MacSFV 2.0.1 Mirror</title>
		<link>http://garrettreid.com/2008/macsfv-201-mirror/</link>
		<comments>http://garrettreid.com/2008/macsfv-201-mirror/#comments</comments>
		<pubDate>Mon, 21 Jan 2008 02:40:19 +0000</pubDate>
		<dc:creator>garrett</dc:creator>
				<category><![CDATA[Files]]></category>
		<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[Verification]]></category>
		<category><![CDATA[File Transfer]]></category>
		<category><![CDATA[File Verification]]></category>
		<category><![CDATA[Low-Quality DSL]]></category>
		<category><![CDATA[MacOSX]]></category>
		<category><![CDATA[SFV]]></category>

		<guid isPermaLink="false">http://garrettreid.com/2008/macsfv-201-mirror/</guid>
		<description><![CDATA[Due to low-rent DSL, I needed some way to confirm many parts of a file transfer. After a few google searches, I found a great app called MacSFV&#8230; which is practically impossible to find a working download for. So now &#8230; <a href="http://garrettreid.com/2008/macsfv-201-mirror/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Due to low-rent DSL, I needed some way to confirm many parts of a file transfer. After a few google searches, I found a great app called MacSFV&#8230; which is practically impossible to find a working download for. So now that I&#8217;ve found a working download, I&#8217;m playing host to <a href='http://garrettreid.com/wp-content/uploads/2008/01/macsfv-201.dmg' title='MacSFV_2.0.1.dmg'>MacSFV_2.0.1.dmg</a>. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://garrettreid.com/2008/macsfv-201-mirror/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>

