<?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"
	>

<channel>
	<title>eric.ness.net</title>
	<atom:link href="http://eric.ness.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://eric.ness.net</link>
	<description>...I never learned to read.</description>
	<pubDate>Wed, 05 Nov 2008 17:02:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Obama Elected President</title>
		<link>http://eric.ness.net/archives/obama-elected-president/</link>
		<comments>http://eric.ness.net/archives/obama-elected-president/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 15:55:09 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
		
		<category><![CDATA[Misc.]]></category>

		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://eric.ness.net/?p=84</guid>
		<description><![CDATA[Last night Sen. Barak Obama was elected 44th President of the United States. At 11pm when the race was finally called for Obama I witnessed a first for me anyway - people took to the streets in celebration. ]]></description>
			<content:encoded><![CDATA[<p>Last night Sen. Barak Obama was elected 44th President of the United States. At 11pm when the race was finally called for Obama I witnessed a first for me anyway - people took to the streets in celebration.</p>
<p>Here are a few photos:</p>
<p><center><br />
<a href="http://eric.ness.net/wp-content/uploads/2008/11/obama2.jpg"><img class="aligncenter size-full wp-image-87" title="obama2" src="http://eric.ness.net/wp-content/uploads/2008/11/obama2.jpg" /></a><br />
</center></p>
<p><center><br />
<a href="http://eric.ness.net/wp-content/uploads/2008/11/obama3.jpg"><img class="aligncenter size-full wp-image-88" title="obama3" src="http://eric.ness.net/wp-content/uploads/2008/11/obama3.jpg" alt="" /></a><br />
</center></p>
<p><center><br />
<a href="http://eric.ness.net/wp-content/uploads/2008/11/obama4.jpg"><img class="aligncenter size-full wp-image-89" title="obama4" src="http://eric.ness.net/wp-content/uploads/2008/11/obama4.jpg" alt="" /></a><br />
</center></p>
]]></content:encoded>
			<wfw:commentRss>http://eric.ness.net/archives/obama-elected-president/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Euclidean Distance Score</title>
		<link>http://eric.ness.net/archives/euclidean-distance-score/</link>
		<comments>http://eric.ness.net/archives/euclidean-distance-score/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 02:14:19 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
		
		<category><![CDATA[C#]]></category>

		<category><![CDATA[Machine Learning]]></category>

		<category><![CDATA[Statistics]]></category>

		<guid isPermaLink="false">http://eric.ness.net/?p=81</guid>
		<description><![CDATA[I am currently reading Toby Segaran's book "Programming Collective Intelligence" and one of the first topics it covers is how do you determine of similar two people are.]]></description>
			<content:encoded><![CDATA[<p>I am currently reading Toby Segaran&#8217;s book &#8220;Programming Collective Intelligence&#8221; and one of the first topics it covers is how do you determine of similar two people are.</p>
<p>One approach is to use the Euclidean Distance Score. Arun Vijayan C has an excellent power point presentation &#8220;Finding more people like you&#8221; - on this topic:</p>
<div id="__ss_407295" style="width: 425px; text-align: left;"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" title="Finding more people like you" href="http://www.slideshare.net/arunv/finding-more-people-like-you?type=powerpoint">Finding more people like you</a><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=finding-people-like-you-1210843795287894-8&amp;stripped_title=finding-more-people-like-you" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://static.slideshare.net/swf/ssplayer2.swf?doc=finding-people-like-you-1210843795287894-8&amp;stripped_title=finding-more-people-like-you" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View SlideShare <a style="text-decoration:underline;" title="View Finding more people like you on SlideShare" href="http://www.slideshare.net/arunv/finding-more-people-like-you?type=powerpoint">presentation</a> or <a style="text-decoration:underline;" href="http://www.slideshare.net/upload?type=powerpoint">Upload</a> your own. (tags: <a style="text-decoration:underline;" href="http://slideshare.net/tag/socialnetwork">socialnetwork</a> <a style="text-decoration:underline;" href="http://slideshare.net/tag/compare">compare</a>)</div>
</div>
<p>I then wrote up some quick code in C# that uses the values in Arun&#8217;s presentation:</p>
<pre>
<div class="codesnip-container" >
<div class="codesnip"><span class="co1">// Euclidean Distance Score</span>

using System;
using System.<span class="me1">Collections</span>.<span class="me1">Generic</span>;

namespace ConsoleApplication1
<span class="br0">&#123;</span>
&nbsp; &nbsp; internal class Program
&nbsp; &nbsp; <span class="br0">&#123;</span>
&nbsp; &nbsp; &nbsp; &nbsp; private <span class="kw4">static</span> <span class="kw4">void</span> Main<span class="br0">&#40;</span><span class="br0">&#41;</span>
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">// Load People and Values</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var myP = new List&lt;People&gt;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; new People<span class="br0">&#40;</span><span class="st0">&#8220;John&#8221;</span>, <span class="nu0">1</span>.<span class="nu0">5</span>, <span class="nu0">4</span><span class="br0">&#41;</span>,
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; new People<span class="br0">&#40;</span><span class="st0">&#8220;Ravi&#8221;</span>, <span class="nu0">4</span>.<span class="nu0">5</span>, <span class="nu0">1</span>.<span class="nu0">5</span><span class="br0">&#41;</span>,
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; new People<span class="br0">&#40;</span><span class="st0">&#8220;Kiran&#8221;</span>, <span class="nu0">1</span>, <span class="nu0">3</span>.<span class="nu0">5</span><span class="br0">&#41;</span>,
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; new People<span class="br0">&#40;</span><span class="st0">&#8220;Deepti&#8221;</span>, <span class="nu0">3</span>, <span class="nu0">5</span><span class="br0">&#41;</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span>;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">// Print header</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.<span class="me1">WriteLine</span><span class="br0">&#40;</span><span class="st0">&#8220;People And Scores&#8221;</span><span class="br0">&#41;</span>;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.<span class="me1">WriteLine</span><span class="br0">&#40;</span><span class="st0">&#8220;###################&#8221;</span><span class="br0">&#41;</span>;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.<span class="me1">WriteLine</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">// Loop through people and values</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; foreach <span class="br0">&#40;</span>People people in myP<span class="br0">&#41;</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.<span class="me1">WriteLine</span><span class="br0">&#40;</span>people.<span class="me1">Name</span> + <span class="st0">&#8220;<span class="es0">\t</span>&#8220;</span> + people.<span class="me1">xScore</span> + <span class="st0">&#8220;<span class="es0">\t</span>&#8220;</span> + people.<span class="me1">yScore</span><span class="br0">&#41;</span>;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span>

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">// Print Distance And Value Headers</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.<span class="me1">WriteLine</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.<span class="me1">WriteLine</span><span class="br0">&#40;</span><span class="st0">&#8220;Distance Comparison&#8221;</span><span class="br0">&#41;</span>;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.<span class="me1">WriteLine</span><span class="br0">&#40;</span><span class="st0">&#8220;###################&#8221;</span><span class="br0">&#41;</span>;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.<span class="me1">WriteLine</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">// Loop through people and scores</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw4">int</span> myCount = <span class="nu0">1</span>;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">for</span> <span class="br0">&#40;</span><span class="kw4">int</span> i = <span class="nu0">0</span>; i &lt; myP.<span class="me1">Count</span>; i++<span class="br0">&#41;</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">for</span> <span class="br0">&#40;</span><span class="kw4">int</span> j = myCount; j &lt; myP.<span class="me1">Count</span>; j++<span class="br0">&#41;</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">// Euclidean Distance Score</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">// Sqrt( (x1-x2)^2 + (y1+y2)^2)</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.<span class="me1">WriteLine</span><span class="br0">&#40;</span>myP<span class="br0">&#91;</span>i<span class="br0">&#93;</span>.<span class="me1">Name</span> + <span class="st0">&#8220;<span class="es0">\t</span>&#8220;</span> + myP<span class="br0">&#91;</span>j<span class="br0">&#93;</span>.<span class="me1">Name</span> + <span class="st0">&#8220;:<span class="es0">\t</span>&#8220;</span> +
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Math.<span class="me1">Sqrt</span><span class="br0">&#40;</span>Math.<span class="me1">Pow</span><span class="br0">&#40;</span>myP<span class="br0">&#91;</span>i<span class="br0">&#93;</span>.<span class="me1">xScore</span> - myP<span class="br0">&#91;</span>j<span class="br0">&#93;</span>.<span class="me1">xScore</span>, <span class="nu0">2</span><span class="br0">&#41;</span> +
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Math.<span class="me1">Pow</span><span class="br0">&#40;</span>myP<span class="br0">&#91;</span>i<span class="br0">&#93;</span>.<span class="me1">yScore</span> - myP<span class="br0">&#91;</span>j<span class="br0">&#93;</span>.<span class="me1">yScore</span>, <span class="nu0">2</span><span class="br0">&#41;</span><span class="br0">&#41;</span>.<span class="me1">ToString</span><span class="br0">&#40;</span><span class="st0">&#8220;0.##&#8221;</span><span class="br0">&#41;</span><span class="br0">&#41;</span>;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">// Skip to the next guy</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; myCount++;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span>

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">// Print Closer</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.<span class="me1">WriteLine</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.<span class="me1">WriteLine</span><span class="br0">&#40;</span><span class="st0">&#8220;Press enter to continue&#8230;&#8221;</span><span class="br0">&#41;</span>;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.<span class="me1">ReadLine</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span>
&nbsp; &nbsp; <span class="br0">&#125;</span>

&nbsp; &nbsp; internal class People
&nbsp; &nbsp; <span class="br0">&#123;</span>
&nbsp; &nbsp; &nbsp; &nbsp; public <span class="kw4">string</span> Name;
&nbsp; &nbsp; &nbsp; &nbsp; public <span class="kw4">double</span> xScore;
&nbsp; &nbsp; &nbsp; &nbsp; public <span class="kw4">double</span> yScore;

&nbsp; &nbsp; &nbsp; &nbsp; public People<span class="br0">&#40;</span><span class="kw4">string</span> _Name, <span class="kw4">double</span> _xScore, <span class="kw4">double</span> _yScore<span class="br0">&#41;</span>
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Name = _Name;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; xScore = _xScore;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; yScore = _yScore;
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span>
&nbsp; &nbsp; <span class="br0">&#125;</span>
<span class="br0">&#125;</span></div>
</div>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://eric.ness.net/archives/euclidean-distance-score/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Snippet Designer</title>
		<link>http://eric.ness.net/archives/snippet-designer/</link>
		<comments>http://eric.ness.net/archives/snippet-designer/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 17:32:28 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
		
		<category><![CDATA[.NET]]></category>

		<category><![CDATA[C#]]></category>

		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://eric.ness.net/?p=77</guid>
		<description><![CDATA[There is a new tool that allows you to create your own Visual Studio snippets. ]]></description>
			<content:encoded><![CDATA[<p>There is a new tool that allows you to create your own Visual Studio snippets. It can be downloaded <a title="Snippet Designer" href="http://www.codeplex.com/SnippetDesigner">here</a> at codeplex.</p>
<p>[<a href="http://blogs.microsoft.co.il/blogs/tamir/archive/2008/09/22/visual-studio-snippet-designer.aspx">Tamir Khason</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://eric.ness.net/archives/snippet-designer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Presidential Election Poll Stats</title>
		<link>http://eric.ness.net/archives/presidential-election-poll-stats/</link>
		<comments>http://eric.ness.net/archives/presidential-election-poll-stats/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 18:01:33 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
		
		<category><![CDATA[Misc.]]></category>

		<category><![CDATA[Statistics]]></category>

		<guid isPermaLink="false">http://eric.ness.net/?p=70</guid>
		<description><![CDATA[I am love watching the polls. Here are some of my favorite links.]]></description>
			<content:encoded><![CDATA[<p>I am love watching the polls. So I thought I would post some of my favorite links to site that I think do a pretty good job at covering them.</p>
<p><a title="http://pollster.com/" href="http://pollster.com/">Pollster</a></p>
<p><a title="http://www.realclearpolitics.com" href="http://www.realclearpolitics.com/epolls/2008/president/us/general_election_mccain_vs_obama-225.html">Real Clear Politics</a></p>
<p><a title="http://www.fivethirtyeight.com/" href="http://www.fivethirtyeight.com/">Five Thirty Eight</a></p>
<p><a title="http://www.intrade.com" href="http://www.intrade.com/jsp/intrade/trading/t_index.jsp">Intrade</a></p>
]]></content:encoded>
			<wfw:commentRss>http://eric.ness.net/archives/presidential-election-poll-stats/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Benford&#8217;s Law</title>
		<link>http://eric.ness.net/archives/benfords-law/</link>
		<comments>http://eric.ness.net/archives/benfords-law/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 16:58:22 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
		
		<category><![CDATA[Statistics]]></category>

		<category><![CDATA[Video/Audio]]></category>

		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://eric.ness.net/?p=66</guid>
		<description><![CDATA[Benford's Law roughly stats that values of measurements in nature often have a logarithmic distribution. ]]></description>
			<content:encoded><![CDATA[<p>Benford&#8217;s Law roughly stats that  values of measurements in nature often have a logarithmic distribution. Which produces a counter-intuitive result that when applied to a wide variety of natural data sets, including stock prices and population numbers, etc. these things tend to follow that distribution.</p>
<p>In this video it give a rough explination of how Benford&#8217;s Law can be used in Fraud Detection.<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/O8N26edbqLM&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/O8N26edbqLM&amp;hl=en&amp;fs=1" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://eric.ness.net/archives/benfords-law/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ubiquity: Firefox Plugin</title>
		<link>http://eric.ness.net/archives/ubiquity-firefox-plugin/</link>
		<comments>http://eric.ness.net/archives/ubiquity-firefox-plugin/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 20:56:51 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
		
		<category><![CDATA[Misc.]]></category>

		<category><![CDATA[Misc. Fun]]></category>

		<guid isPermaLink="false">http://eric.ness.net/?p=65</guid>
		<description><![CDATA[Came across a Firefox plugin called Ubiquity today that is extremely interesting.]]></description>
			<content:encoded><![CDATA[<p>Came across a Firefox plugin called <a title="Ubiquity" href="https://people.mozilla.com/~avarma/ubiquity-0.1.xpi">Ubiquity</a> today that is extremely interesting. For lack of a better way to discribe it - it allows for users to create mashups on the fly in a variety of different ways. In the above screenshot as you can see I have selected a number of rental units available in Washington DC and then it will map them on the fly.</p>
<p>Here is the video that Mozilla has put together:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="298" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=1561578&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="400" height="298" src="http://vimeo.com/moogaloop.swf?clip_id=1561578&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object><br />
<a href="http://vimeo.com/1561578?pg=embed&amp;sec=1561578">Ubiquity for Firefox</a> from <a href="http://vimeo.com/user532161?pg=embed&amp;sec=1561578">Aza Raskin</a> on <a href="http://vimeo.com?pg=embed&amp;sec=1561578">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://eric.ness.net/archives/ubiquity-firefox-plugin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MVC Pair Programming Videos</title>
		<link>http://eric.ness.net/archives/mvc-pair-programming-videos/</link>
		<comments>http://eric.ness.net/archives/mvc-pair-programming-videos/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 16:19:24 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
		
		<category><![CDATA[.NET]]></category>

		<category><![CDATA[ASP.NET]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[TDD]]></category>

		<category><![CDATA[Video/Audio]]></category>

		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://eric.ness.net/?p=58</guid>
		<description><![CDATA[ASP.Net MVC Site has some new paired programming videos featuring Charlie Pool of NUnit.
]]></description>
			<content:encoded><![CDATA[<p>ASP.Net MVC Site has some new <a title="MVC Pair Programming Videos" href="http://www.asp.net/learn/mvc-videos/#MVCPairProgramming">paired programming videos</a> featuring Charlie Pool of <a title="NUnit" href="http://www.nunit.org">NUnit</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://eric.ness.net/archives/mvc-pair-programming-videos/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Project Management Tools</title>
		<link>http://eric.ness.net/archives/project-management-tools/</link>
		<comments>http://eric.ness.net/archives/project-management-tools/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 20:51:54 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://eric.ness.net/?p=53</guid>
		<description><![CDATA[For me, the one thing that has been indispensable is a project management platform that has a bug tracker and version control as part of the package.]]></description>
			<content:encoded><![CDATA[<p>I’ve been using a variety of project tools for a while now. For me, the one thing that has been indispensable is a project management platform that has a bug tracker and version control as part of the package.</p>
<p>One of the first bug trackers that I used and sometime still use is a bug tracking system called <a href="http://flyspray.org/">Flyspray: The Bug Killer!</a> It’s actually great little system to use; it’s pretty light and uses php and mysql.</p>
<p>I used to use <a href="http://www.activecollab.com/">activeCollab</a> when it was free (loosely based on <a href="http://www.basecamphq.com/">Basecamp</a>) but they stopped supporting the free version after version 0.7 and then started charging for it. It’s a pretty good platform and was then picked up and continued over at <a href="http://www.projectpier.org/">ProjectPier</a>.</p>
<p>I have also checked out <a href="http://www.projectspaces.com/">Project Spaces</a> from my friends over at <a href="http://forumone.com/">Forum One</a> which is fairly good but more geared towards the business end of things like <a href="http://www.basecamphq.com/">BaseCamp</a>.</p>
<p>However, when you start looking for a project management platform that also has bug tracker and source control integrated in to it the picking become a little slim. I have tested a couple but currently the one that I like the most is <a href="http://www.assembla.com">Assembla</a>.</p>
<p><a href="http://www.assembla.com">Assembla</a> actually has pretty much all the basics included in the other project management packages but this one also includes a bug tracker, version control (supporting Trac, Git and Subversion), wiki, and your basic Milestones, Tasks, and Discussions, etc. The only real downside is that if you have large projects you have to pay for them.</p>
<p>Other’s I’ve looked at that may be of interest to you are;</p>
<p><a href="http://www.redmine.org">Redmine</a><br />
<a href="http://studios.thoughtworks.com/mingle-project-intelligence">Mingle</a></p>
]]></content:encoded>
			<wfw:commentRss>http://eric.ness.net/archives/project-management-tools/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Map Resources</title>
		<link>http://eric.ness.net/archives/map-resources/</link>
		<comments>http://eric.ness.net/archives/map-resources/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 05:03:43 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
		
		<category><![CDATA[Visualization]]></category>

		<category><![CDATA[Maps]]></category>

		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://eric.ness.net/?p=48</guid>
		<description><![CDATA[I have been a bit of research on a couple of map resources I thought I would put together.]]></description>
			<content:encoded><![CDATA[<p>I have been a bit of research on a couple of map resources I thought I would put together.</p>
<p><a href="http://www.arc2earth.com">Arc2Earth</a></p>
<p><a href="http://geochalkboard.wordpress.com/2007/08/27/integrating-arcgis-and-google-earth-for-crime-analysis/">Integrating ArcGIS and Google Earth for Crime Analysis</a></p>
<p><a href="http://thematicmapping.org/">thematicmapping.org</a></p>
<p><a href="http://www.gpsvisualizer.com/map?form=googleearth">Convert your GPS data for use in Google Earth</a></p>
<p><a href="http://mapki.com/wiki/Add_Your_Own_Custom_Map">Add Your Own Custom Map</a></p>
<p><a href="http://mapki.com/wiki/Automatic_Tile_Cutter">Automatic Tile Cutter</a></p>
<p><a href="http://maps.forum.nu/">Some experiments with Google Maps</a></p>
<p><a href="http://econym.googlepages.com/index.htm">Google Maps API Tutorial</a></p>
]]></content:encoded>
			<wfw:commentRss>http://eric.ness.net/archives/map-resources/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ubigraph</title>
		<link>http://eric.ness.net/archives/ubigraph/</link>
		<comments>http://eric.ness.net/archives/ubigraph/#comments</comments>
		<pubDate>Thu, 22 May 2008 14:20:18 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://eric.ness.net/?p=41</guid>
		<description><![CDATA[UbiGraph is a tool for visualizing dynamic graphs. It works with Python, Ruby, PHP, Java, C, C++, C#, Haskell, and OCaml. For More info check it out here.
]]></description>
			<content:encoded><![CDATA[<p>UbiGraph is a tool for visualizing dynamic graphs. It works with Python, Ruby, PHP, Java, C, C++, C#, Haskell, and OCaml. For More info check it out <a href="http://www.ubietylab.net/ubigraph/index.html">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://eric.ness.net/archives/ubigraph/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
