<?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>Eigenjoy &#187; Uncategorized</title>
	<atom:link href="http://eigenjoy.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://eigenjoy.com</link>
	<description>a programming blog</description>
	<lastBuildDate>Wed, 14 Dec 2011 18:22:45 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>&#8220;who wrote this code?&#8221;</title>
		<link>http://eigenjoy.com/2008/02/09/who-wrote-this-code/</link>
		<comments>http://eigenjoy.com/2008/02/09/who-wrote-this-code/#comments</comments>
		<pubDate>Sat, 09 Feb 2008 21:10:06 +0000</pubDate>
		<dc:creator>Nate Murray</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.xcombinator.com/2008/02/09/who-wrote-this-code/</guid>
		<description><![CDATA[I just learned a really great svn feature. Its called &#8220;svn blame&#8221;. You run it on a file and it shows you who is responsible for writing each line. For instance:

&#91;nathan@nate ~/s3&#93;$ svn blame app/controllers/sites_controller.rb
...
   154       nate     @category = @breadcrumbs.last
   157 [...]]]></description>
			<content:encoded><![CDATA[<p>I just learned a really great svn feature. Its called &#8220;svn blame&#8221;. You run it on a file and it shows you who is responsible for writing each line. For instance:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#006600; font-weight:bold;">&#91;</span>nathan@nate ~<span style="color:#006600; font-weight:bold;">/</span>s3<span style="color:#006600; font-weight:bold;">&#93;</span>$ svn blame app<span style="color:#006600; font-weight:bold;">/</span>controllers<span style="color:#006600; font-weight:bold;">/</span>sites_controller.<span style="color:#9900CC;">rb</span>
...
   <span style="color:#006666;">154</span>       nate     <span style="color:#0066ff; font-weight:bold;">@category</span> = <span style="color:#0066ff; font-weight:bold;">@breadcrumbs</span>.<span style="color:#9900CC;">last</span>
   <span style="color:#006666;">157</span>       nate     <span style="color:#0066ff; font-weight:bold;">@points</span>   = <span style="color:#0066ff; font-weight:bold;">@category</span>.<span style="color:#9900CC;">points</span>
  <span style="color:#006666;">1048</span>       nate     <span style="color:#006600; font-weight:bold;">&#40;</span>@category_points_name = <span style="color:#0066ff; font-weight:bold;">@points</span>.<span style="color:#9900CC;">name</span> =~<span style="color:#006600; font-weight:bold;">/</span><span style="color:#008000; font-style:italic;">#{@site.brand}/ ? @points.name : &quot;%s %s&quot; % [@site.brand.capitalize,@points.name]) if @points</span>
   <span style="color:#006666;">316</span>     moises     <span style="color:#008000; font-style:italic;"># check for category points get parents category points if none exist</span>
   <span style="color:#006666;">316</span>     moises     <span style="color:#9966CC; font-weight:bold;">if</span> !@points <span style="color:#006600; font-weight:bold;">||</span> <span style="color:#0066ff; font-weight:bold;">@points</span>.<span style="color:#9900CC;">size</span> <span style="color:#006600; font-weight:bold;">&lt;</span> <span style="color:#006666;">1</span>
   <span style="color:#006666;">316</span>     moises       <span style="color:#0066ff; font-weight:bold;">@points</span> = <span style="color:#0066ff; font-weight:bold;">@category</span>.<span style="color:#9900CC;">root</span>.<span style="color:#9900CC;">points</span>
   <span style="color:#006666;">316</span>     moises     <span style="color:#9966CC; font-weight:bold;">end</span>
   <span style="color:#006666;">316</span>     moises
   <span style="color:#006666;">157</span>       nate     <span style="color:#0066ff; font-weight:bold;">@current_category_names</span> = params<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:category_names</span><span style="color:#006600; font-weight:bold;">&#93;</span>
   <span style="color:#006666;">146</span>       nate
   <span style="color:#006666;">157</span>       nate     <span style="color:#0066ff; font-weight:bold;">@products</span>      = <span style="color:#0066ff; font-weight:bold;">@category</span>.<span style="color:#9900CC;">products</span>
   <span style="color:#006666;">871</span>       nate     <span style="color:#008000; font-style:italic;">#NOT SURE IF THIS SHOULD BE HERE</span>
   <span style="color:#006666;">871</span>       nate     <span style="color:#0066ff; font-weight:bold;">@products</span>.<span style="color:#9900CC;">collect</span> <span style="color:#006600; font-weight:bold;">&#123;</span> <span style="color:#006600; font-weight:bold;">|</span>p<span style="color:#006600; font-weight:bold;">|</span> <span style="color:#CC0066; font-weight:bold;">p</span>.<span style="color:#9900CC;">context</span> = <span style="color:#0066ff; font-weight:bold;">@site</span><span style="color:#006600; font-weight:bold;">&#125;</span>
   <span style="color:#006666;">616</span>       nate     <span style="color:#0066ff; font-weight:bold;">@products</span>.<span style="color:#9900CC;">sort</span>! <span style="color:#006600; font-weight:bold;">&#123;</span><span style="color:#006600; font-weight:bold;">|</span>a,b<span style="color:#006600; font-weight:bold;">|</span> a.<span style="color:#9900CC;">offer_price</span> <span style="color:#006600; font-weight:bold;">&lt;=&gt;</span>b.<span style="color:#9900CC;">offer_price</span> <span style="color:#006600; font-weight:bold;">&#125;</span>.<span style="color:#9900CC;">reverse</span>!
   <span style="color:#006666;">626</span>       nate     <span style="color:#0066ff; font-weight:bold;">@products</span>.<span style="color:#9900CC;">delete_if</span> <span style="color:#006600; font-weight:bold;">&#123;</span> <span style="color:#006600; font-weight:bold;">|</span>p<span style="color:#006600; font-weight:bold;">|</span> !<span style="color:#CC0066; font-weight:bold;">p</span>.<span style="color:#9900CC;">display_in_category</span>?<span style="color:#006600; font-weight:bold;">&#40;</span>@category<span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#006600; font-weight:bold;">&#125;</span>
   <span style="color:#006666;">632</span>       nate     <span style="color:#0066ff; font-weight:bold;">@products</span>.<span style="color:#9900CC;">delete_if</span> <span style="color:#006600; font-weight:bold;">&#123;</span> <span style="color:#006600; font-weight:bold;">|</span>p<span style="color:#006600; font-weight:bold;">|</span> !<span style="color:#CC0066; font-weight:bold;">p</span>.<span style="color:#9900CC;">should_be_shown</span>? <span style="color:#006600; font-weight:bold;">&#125;</span>
...</pre></div></div>

<p>Notice that it shows the revision number on the left along with who is responsible for each piece of code.</p>
<p>Share:</p>
<p>	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F09%2Fwho-wrote-this-code%2F&amp;title=%22who%20wrote%20this%20code%3F%22&amp;notes=I%20just%20learned%20a%20really%20great%20svn%20feature.%20Its%20called%20%22svn%20blame%22.%20You%20run%20it%20on%20a%20file%20and%20it%20shows%20you%20who%20is%20responsible%20for%20writing%20each%20line.%20For%20instance%3A%0D%0A%0D%0A%0D%0A%5Bnathan%40nate%20%7E%2Fs3%5D%24%20svn%20blame%20app%2Fcontrollers%2Fsites_controller.rb%0D%0A...%0D%0A%20%20%20154%20%20%20%20%20%20" title="del.icio.us"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F09%2Fwho-wrote-this-code%2F&amp;title=%22who%20wrote%20this%20code%3F%22" title="Reddit"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F09%2Fwho-wrote-this-code%2F" title="Technorati"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://twitter.com/home?status=%22who%20wrote%20this%20code%3F%22%20-%20http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F09%2Fwho-wrote-this-code%2F" title="Twitter"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F09%2Fwho-wrote-this-code%2F&amp;t=%22who%20wrote%20this%20code%3F%22" title="Facebook"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F09%2Fwho-wrote-this-code%2F&amp;title=%22who%20wrote%20this%20code%3F%22&amp;annotation=I%20just%20learned%20a%20really%20great%20svn%20feature.%20Its%20called%20%22svn%20blame%22.%20You%20run%20it%20on%20a%20file%20and%20it%20shows%20you%20who%20is%20responsible%20for%20writing%20each%20line.%20For%20instance%3A%0D%0A%0D%0A%0D%0A%5Bnathan%40nate%20%7E%2Fs3%5D%24%20svn%20blame%20app%2Fcontrollers%2Fsites_controller.rb%0D%0A...%0D%0A%20%20%20154%20%20%20%20%20%20" title="Google Bookmarks"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F09%2Fwho-wrote-this-code%2F&amp;t=%22who%20wrote%20this%20code%3F%22" title="HackerNews"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F09%2Fwho-wrote-this-code%2F&amp;partner=sociable" title="PDF"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://eigenjoy.com/feed/" title="RSS"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></p>
<p><br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://eigenjoy.com/2008/02/09/who-wrote-this-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>determining ssh fingerprint for a server</title>
		<link>http://eigenjoy.com/2008/02/09/determining-ssh-fingerprint-for-a-server/</link>
		<comments>http://eigenjoy.com/2008/02/09/determining-ssh-fingerprint-for-a-server/#comments</comments>
		<pubDate>Sat, 09 Feb 2008 21:00:14 +0000</pubDate>
		<dc:creator>brian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.xcombinator.com/2008/02/09/determining-ssh-fingerprint-for-a-server/</guid>
		<description><![CDATA[I have been trying to figure out for a while how to determine the fingerprint of a server. I knew that doing ssh-keygen -l -f id_rsa.pub would yield a fingerprint, but I couldn&#8217;t figure out where the fingerprint was kept on a server. I don&#8217;t know why this was so hard for me to figure [...]]]></description>
			<content:encoded><![CDATA[<p>I have been trying to figure out for a while how to determine the fingerprint of a server. I knew that doing ssh-keygen -l -f id_rsa.pub would yield a fingerprint, but I couldn&#8217;t figure out where the fingerprint was kept on a server. I don&#8217;t know why this was so hard for me to figure out. No amount of googling seemed to be helping me. But after simply doing a `man ssh` on the server, and then searching for the first appearance of &#8220;fingerprint&#8221; I found this:</p>
<blockquote class="normal"><p>  When connecting to a server for the first time, a fingerprint of the server&#8217;s public key is presented to the user (unless the option      StrictHostKeyChecking has been disabled).  Fingerprints can be determined using ssh-keygen(1):</p>
<pre>            $ ssh-keygen -l -f /etc/ssh/ssh_host_rsa_key </pre>
<p>      If the fingerprint is already known, it can be matched and verified, and the key can be accepted.  If the fingerprint is unknown, an alternative      method of verification is available: SSH fingerprints verified by DNS.  An additional resource record (RR), SSHFP, is added to a zonefile and the      connecting client is able to match the fingerprint with that of the key presented. </p>
</blockquote>
<p>*Note* that the file is different on a mac, but doing the same man lookup will tell you where it is. Sorry if most of you already knew this.<br />
Happy ssh&#8217;ng<br />
-Brian</p>
<p>Share:</p>
<p>	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F09%2Fdetermining-ssh-fingerprint-for-a-server%2F&amp;title=determining%20ssh%20fingerprint%20for%20a%20server&amp;notes=I%20have%20been%20trying%20to%20figure%20out%20for%20a%20while%20how%20to%20determine%20the%20fingerprint%20of%20a%20server.%20I%20knew%20that%20doing%20ssh-keygen%20-l%20-f%20id_rsa.pub%20would%20yield%20a%20fingerprint%2C%20but%20I%20couldn%27t%20figure%20out%20where%20the%20fingerprint%20was%20kept%20on%20a%20server.%20I%20don%27t%20know%20why" title="del.icio.us"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F09%2Fdetermining-ssh-fingerprint-for-a-server%2F&amp;title=determining%20ssh%20fingerprint%20for%20a%20server" title="Reddit"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F09%2Fdetermining-ssh-fingerprint-for-a-server%2F" title="Technorati"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://twitter.com/home?status=determining%20ssh%20fingerprint%20for%20a%20server%20-%20http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F09%2Fdetermining-ssh-fingerprint-for-a-server%2F" title="Twitter"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F09%2Fdetermining-ssh-fingerprint-for-a-server%2F&amp;t=determining%20ssh%20fingerprint%20for%20a%20server" title="Facebook"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F09%2Fdetermining-ssh-fingerprint-for-a-server%2F&amp;title=determining%20ssh%20fingerprint%20for%20a%20server&amp;annotation=I%20have%20been%20trying%20to%20figure%20out%20for%20a%20while%20how%20to%20determine%20the%20fingerprint%20of%20a%20server.%20I%20knew%20that%20doing%20ssh-keygen%20-l%20-f%20id_rsa.pub%20would%20yield%20a%20fingerprint%2C%20but%20I%20couldn%27t%20figure%20out%20where%20the%20fingerprint%20was%20kept%20on%20a%20server.%20I%20don%27t%20know%20why" title="Google Bookmarks"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F09%2Fdetermining-ssh-fingerprint-for-a-server%2F&amp;t=determining%20ssh%20fingerprint%20for%20a%20server" title="HackerNews"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F09%2Fdetermining-ssh-fingerprint-for-a-server%2F&amp;partner=sociable" title="PDF"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://eigenjoy.com/feed/" title="RSS"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></p>
<p><br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://eigenjoy.com/2008/02/09/determining-ssh-fingerprint-for-a-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>fantastic screenshot and screencast program for mac or windows</title>
		<link>http://eigenjoy.com/2008/02/07/fantastic-screenshot-and-screencast-program-for-mac-or-windows/</link>
		<comments>http://eigenjoy.com/2008/02/07/fantastic-screenshot-and-screencast-program-for-mac-or-windows/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 19:30:04 +0000</pubDate>
		<dc:creator>Nate Murray</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.xcombinator.com/2008/02/07/fantastic-screenshot-and-screencast-program-for-mac-or-windows/</guid>
		<description><![CDATA[http://www.jingproject.com/ This app is fantastic for screenshots and screencasts. (Also does annotations). Sample image attached.
Share:
	
	
	
	
	
	
	
	
	

]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jingproject.com/">http://www.jingproject.com/</a> This app is fantastic for screenshots and screencasts. (Also does annotations). Sample image attached.<!--Mime Type of File is image/png --><a href="http://www.xcombinator.com/wp-photos/20080207-113004-1.jpg"><img src="http://www.xcombinator.com/wp-photos/thumb.20080207-113004-1.jpg" alt="2008-01-29_1043.png" /></a></p>
<p>Share:</p>
<p>	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F07%2Ffantastic-screenshot-and-screencast-program-for-mac-or-windows%2F&amp;title=fantastic%20screenshot%20and%20screencast%20program%20for%20mac%20or%20windows&amp;notes=http%3A%2F%2Fwww.jingproject.com%2F%20This%20app%20is%20fantastic%20for%20screenshots%20and%20screencasts.%20%28Also%20does%20annotations%29.%20Sample%20image%20attached." title="del.icio.us"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F07%2Ffantastic-screenshot-and-screencast-program-for-mac-or-windows%2F&amp;title=fantastic%20screenshot%20and%20screencast%20program%20for%20mac%20or%20windows" title="Reddit"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F07%2Ffantastic-screenshot-and-screencast-program-for-mac-or-windows%2F" title="Technorati"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://twitter.com/home?status=fantastic%20screenshot%20and%20screencast%20program%20for%20mac%20or%20windows%20-%20http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F07%2Ffantastic-screenshot-and-screencast-program-for-mac-or-windows%2F" title="Twitter"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F07%2Ffantastic-screenshot-and-screencast-program-for-mac-or-windows%2F&amp;t=fantastic%20screenshot%20and%20screencast%20program%20for%20mac%20or%20windows" title="Facebook"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F07%2Ffantastic-screenshot-and-screencast-program-for-mac-or-windows%2F&amp;title=fantastic%20screenshot%20and%20screencast%20program%20for%20mac%20or%20windows&amp;annotation=http%3A%2F%2Fwww.jingproject.com%2F%20This%20app%20is%20fantastic%20for%20screenshots%20and%20screencasts.%20%28Also%20does%20annotations%29.%20Sample%20image%20attached." title="Google Bookmarks"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F07%2Ffantastic-screenshot-and-screencast-program-for-mac-or-windows%2F&amp;t=fantastic%20screenshot%20and%20screencast%20program%20for%20mac%20or%20windows" title="HackerNews"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Feigenjoy.com%2F2008%2F02%2F07%2Ffantastic-screenshot-and-screencast-program-for-mac-or-windows%2F&amp;partner=sociable" title="PDF"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://eigenjoy.com/feed/" title="RSS"><img src="http://eigenjoy.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></p>
<p><br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://eigenjoy.com/2008/02/07/fantastic-screenshot-and-screencast-program-for-mac-or-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

