<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>dispatches &#187; John McCombs</title>
	<atom:link href="http://johnmccombs.inmap.net/author/johnmccombs/feed/" rel="self" type="application/rss+xml" />
	<link>http://johnmccombs.inmap.net</link>
	<description></description>
	<lastBuildDate>Thu, 05 Aug 2010 00:50:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='johnmccombs.inmap.net' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/057dd112b8c5d9b08853285020ffbf34?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>dispatches &#187; John McCombs</title>
		<link>http://johnmccombs.inmap.net</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://johnmccombs.inmap.net/osd.xml" title="dispatches" />
	<atom:link rel='hub' href='http://johnmccombs.inmap.net/?pushpress=hub'/>
		<item>
		<title>HTML 5 ToDo List</title>
		<link>http://johnmccombs.inmap.net/2010/08/05/html-5-todo-list/</link>
		<comments>http://johnmccombs.inmap.net/2010/08/05/html-5-todo-list/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 00:37:57 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=387</guid>
		<description><![CDATA[I needed a simple to-do list for my Nexus One.  A quick look in the Android Market turned up a lot of options that were far more complicated than I wanted.   My solution was  a quick offline HTML 5 app with local storage. When you type in the textarea, the text gets stored to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=387&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I needed a simple to-do list for my <a href="http://en.wikipedia.org/wiki/Nexus_One" target="_blank">Nexus One</a>.  A quick look in the Android Market turned up a lot of options that were far more complicated than I wanted.   My solution was  a quick <a href="http://www.w3.org/TR/html5/offline.html" target="_blank">offline</a> HTML 5 app with <a href="http://dev.w3.org/html5/webstorage/#the-localstorage-attribute" target="_blank">local storage</a>. When you type in the <em>textarea</em>, the text gets stored to the local name/value store.  Saving is triggered by each key-up event which is probably excessive, but it works fine. Here&#8217;s the code:</p>
<pre style="padding-left:30px;">&lt;!DOCTYPE html&gt;
&lt;html manifest="cache.manifest"&gt;
&lt;head&gt;
    &lt;meta http-equiv="Content-Type"
         content="text/html;charset=utf-8" &gt;
    &lt;title&gt;List&lt;/title&gt;
    &lt;script type="text/javascript" src="jquery.min.js"&gt;&lt;/script&gt;
    &lt;script type="text/javascript"&gt;

        $(document).ready(function() {
            $("#myText").text(localStorage.getItem("list"));
        });

        function saveText() {
            localStorage.setItem("list", $("#myText").val());
        }

    &lt;/script&gt;
&lt;/head&gt;

&lt;body&gt;
    &lt;form action=""&gt;
        &lt;textarea cols="33" rows="20" id="myText"
              onkeyup="saveText()"&gt;&lt;/textarea&gt;
    &lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>And the manifest</p>
<pre style="padding-left:30px;">CACHE MANIFEST

jquery.min.js<span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:small;"><span style="line-height:19px;white-space:normal;">
</span></span></pre>
<br /> Tagged: <a href='http://johnmccombs.inmap.net/tag/html5/'>html5</a>, <a href='http://johnmccombs.inmap.net/tag/javascript/'>javascript</a>, <a href='http://johnmccombs.inmap.net/tag/jquery/'>jquery</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/387/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=387&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2010/08/05/html-5-todo-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>
	</item>
		<item>
		<title>Gource</title>
		<link>http://johnmccombs.inmap.net/2010/05/24/gource/</link>
		<comments>http://johnmccombs.inmap.net/2010/05/24/gource/#comments</comments>
		<pubDate>Sun, 23 May 2010 22:07:33 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[mercurial]]></category>
		<category><![CDATA[gource]]></category>
		<category><![CDATA[visualisation]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=369</guid>
		<description><![CDATA[Gource is a lot of fun.  You point it at a source control repo (git or Mercurial) and it creates an animated visualisation of changes to the source code, over time.  Here&#8217;s an example from a web app I did recently. For best viewing, click through to YouTube and watch the 720p version. Tip&#8217;o the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=369&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://code.google.com/p/gource/" target="_blank">Gource</a> is a lot of fun.  You point it at a source control repo (git or Mercurial) and it creates an animated visualisation of changes to the source code, over time.  Here&#8217;s an <a href="http://marineinfo.otago.ac.nz/" target="_blank">example</a> from a web app I did recently. For best viewing, <a href="http://www.youtube.com/watch?v=gI38xPiGRr8" target="_blank">click through to YouTube</a> and watch the 720p version. Tip&#8217;o the hat to <a href="http://www.thealphablenders.com/about/" target="_blank">Andrew Caudwell</a>.</p>
<p><span style="text-align:center; display: block;"><a href="http://johnmccombs.inmap.net/2010/05/24/gource/"><img src="http://img.youtube.com/vi/gI38xPiGRr8/2.jpg" alt="" /></a></span></p>
<br /> Tagged: <a href='http://johnmccombs.inmap.net/tag/gource/'>gource</a>, <a href='http://johnmccombs.inmap.net/tag/mercurial/'>mercurial</a>, <a href='http://johnmccombs.inmap.net/tag/visualisation/'>visualisation</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/369/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=369&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2010/05/24/gource/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/gI38xPiGRr8/2.jpg" medium="image" />
	</item>
		<item>
		<title>Open Data with Open Source</title>
		<link>http://johnmccombs.inmap.net/2010/05/16/open_data_and_open_source/</link>
		<comments>http://johnmccombs.inmap.net/2010/05/16/open_data_and_open_source/#comments</comments>
		<pubDate>Sun, 16 May 2010 01:19:35 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[opendata]]></category>
		<category><![CDATA[opensource]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=350</guid>
		<description><![CDATA[I&#8217;ve been helping the folk at Portobello Marine Lab make some of their scientific data available on the web. Like many research institutions they have data on paper and in files on individual PC&#8217;s or a departmental server. Often this data has potential that is unlocked by making it more widely available. The new http://marineinfo.otago.ac.nz/ [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=350&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:left;">I&#8217;ve been helping the folk at Portobello Marine Lab make some of their scientific data available on the web.</p>
<p style="text-align:left;">Like many research institutions they have data on paper and in files on individual PC&#8217;s or a departmental server. Often this data has potential that is unlocked by making it more widely available.</p>
<p style="text-align:left;">The new <a href="http://marineinfo.otago.ac.nz/" target="_blank">http://marineinfo.otago.ac.nz/</a> website publishes data, from 60 years of reaserch, about the Lab&#8217;s reference collection of preserved marine specimens, Dr Elizabeth Batham&#8217;s card index of information, photos and illustrations of local species , and a database of theses and other miscellaneous publications from the Lab.</p>
<p style="text-align:left;"><a href="http://johnmccombs.files.wordpress.com/2010/05/alcithoe-arabica.jpg"><img class="aligncenter size-full wp-image-358" style="border:1px solid black;" title="Alcithoe arabica" src="http://johnmccombs.files.wordpress.com/2010/05/alcithoe-arabica.jpg?w=350&#038;h=322" alt="" width="350" height="322" /></a></p>
<p>More data will be added in the coming months along with interactive maps.</p>
<p>The data is searchable and may be downloaded. Re-use of the data is encouraged with the data licensed on Creative <a href="http://creativecommons.org/licenses/by-sa/3.0/nz/legalcode" target="_blank">Commons ShareAlike</a> terms.</p>
<p><a href="http://en.wikipedia.org/wiki/Free_and_open_source_software">Open Source</a> tools were used to build and power the web site:<a href="http://www.djangoproject.com" target="_blank"> Django</a>, <a href="http://www.python.org" target="_blank">Python</a>, <a href="http://www.postgresql.org/" target="_blank">PostgeSQL</a>, <a href="http://postgis.refractions.net/" target="_blank">PostGIS</a>,<a href="http://www.firefox.com/" target="_blank"> Firefox</a>, <a href="http://getfirebug.com/" target="_blank">Firebug</a>, <a href="http://www.pythonware.com/products/pil/" target="_blank">Python Imaging Library</a>, <a href="http://www.apache.org/" target="_blank">Apache</a>, <a href="http://www.ubuntu.com/" target="_blank">Ubuntu</a>, <a href="http://mercurial.selenic.com/" target="_blank">Mercurial</a>.</p>
<p>.</p>
<br /> Tagged: <a href='http://johnmccombs.inmap.net/tag/opendata/'>opendata</a>, <a href='http://johnmccombs.inmap.net/tag/opensource/'>opensource</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/350/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=350&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2010/05/16/open_data_and_open_source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>

		<media:content url="http://johnmccombs.files.wordpress.com/2010/05/alcithoe-arabica.jpg" medium="image">
			<media:title type="html">Alcithoe arabica</media:title>
		</media:content>
	</item>
		<item>
		<title>What Motivates Us</title>
		<link>http://johnmccombs.inmap.net/2010/05/16/what-motivates-us/</link>
		<comments>http://johnmccombs.inmap.net/2010/05/16/what-motivates-us/#comments</comments>
		<pubDate>Sat, 15 May 2010 23:12:37 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[motivation]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=347</guid>
		<description><![CDATA[Tagged: motivation<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=347&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><span style="text-align:center; display: block;"><a href="http://johnmccombs.inmap.net/2010/05/16/what-motivates-us/"><img src="http://img.youtube.com/vi/u6XAPnuFjJc/2.jpg" alt="" /></a></span></p>
<br /> Tagged: <a href='http://johnmccombs.inmap.net/tag/motivation/'>motivation</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/347/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=347&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2010/05/16/what-motivates-us/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/u6XAPnuFjJc/2.jpg" medium="image" />
	</item>
		<item>
		<title>Maze of Twisty Little Options</title>
		<link>http://johnmccombs.inmap.net/2010/05/14/maze-of-twisty-little-options/</link>
		<comments>http://johnmccombs.inmap.net/2010/05/14/maze-of-twisty-little-options/#comments</comments>
		<pubDate>Thu, 13 May 2010 21:29:28 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=340</guid>
		<description><![CDATA[The New York Times sets out the Facebook privacy settings, a tangle of 50 settings and 170 options, in a graphic. Also, they note that the Facebook privacy statement now has more words than the US constitution. Tagged: facebook, privacy<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=340&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The New York Times <a href="http://www.nytimes.com/interactive/2010/05/12/business/facebook-privacy.html" target="_blank">sets out</a> the Facebook privacy settings, a tangle of 50 settings and 170 options, in a graphic. Also, they note that the Facebook privacy statement now has more words than the US constitution.</p>
<br /> Tagged: <a href='http://johnmccombs.inmap.net/tag/facebook/'>facebook</a>, <a href='http://johnmccombs.inmap.net/tag/privacy/'>privacy</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/340/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=340&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2010/05/14/maze-of-twisty-little-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>
	</item>
		<item>
		<title>Facebook&#8217;s Eroding Privacy</title>
		<link>http://johnmccombs.inmap.net/2010/04/29/facebooks-eroding-privacy/</link>
		<comments>http://johnmccombs.inmap.net/2010/04/29/facebooks-eroding-privacy/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 08:31:58 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=314</guid>
		<description><![CDATA[EFF&#8217;s blog post sets out a timeline showing how Facebook privacy has evolved. It&#8217;s gone from this No personal information that you submit to Thefacebook will be available to any user of the Web Site who does not belong to at least one of the groups specified by you in your privacy settings to this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=314&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>EFF&#8217;s <a href="https://www.eff.org/deeplinks/2010/04/facebook-timeline" target="_blank">blog post</a> sets out a timeline showing how Facebook privacy has evolved. It&#8217;s gone from this</p>
<blockquote><p><em>No personal information that you submit to Thefacebook will be available  to any user of the Web Site who does not belong to at least one of the  groups specified by you in your privacy settings</em></p></blockquote>
<p>to this</p>
<blockquote><p><em>When you connect with an application or website it will have access to  General Information about you.  The term General Information includes  your and your friends’ names, profile pictures, gender, user IDs, connections,  and any content shared using the Everyone privacy setting.  &#8230; The  default privacy setting for certain types of information you post on  Facebook is set to “everyone.” &#8230; Because it takes two to connect, your  privacy settings only control who can see the connection on your  profile page.  If you are uncomfortable with the connection being  publicly available, you should consider removing (or not making) the  connection.</em></p></blockquote>
<p>And in <a href="http://www.eff.org/deeplinks/2010/05/things-you-need-know-about-facebook" target="_blank">another post</a> they set out six things the new Facebook connections feature mean for the information in your profile<em>.</em> Matt McKeon visualises the chnages over time in a blog post <a href="http://mattmckeon.com/facebook-privacy/" target="_blank"><em>The Evolution of Privacy on Facebook</em></a>.</p>
<p><a href="http://primevector.wordpress.com/2010/05/02/why-i-canceled-my-facebook-account/" target="_blank">Adrian Perez</a> sums it up like this</p>
<blockquote><p><em>I joined Facebook under certain conceptions that it was a somewhat  private place. [...] now it seems that there is something every month where  they have started to sell or give more of my stuff to some company  without my knowledge. </em><em>Facebook, used to be fun and cool, but a large part of what I have to  do on Facebook now is adapt to their changes on their terms&#8230;.<br />
</em></p>
<div id="attachment_418"><em>Now I wouldn’t have posted about this [...] if I had not been personally affected by Facebook’s actions.  I was with my girlfriend and we were listening to Pandora. I look at my  Pandora player, and there is my girlfriend’s face (supplied by  Facebook) staring back at me with some information about her tastes.  This would not have been a problem, except she opted out of that  program.</em></div>
<p><em>We quickly learned you had to also ban each of the groups Facebook  was sharing this data with, as well as hitting the opt-out checkbox.</em></p>
<p><em> This immediately congealed a sense of loathing for Facebook. It was a  combination of their confusing interfaces, <a href="http://www.eff.org/deeplinks/2010/04/facebook-timeline" target="_blank">reneging on their former commitments</a>, lack of  privacy, and spammy newsfeeds.</em></p></blockquote>
<p>You can get an idea of how Facebook views your control of your information <a href="http://www.youtube.com/watch?v=Z6TpmMdvSPM" target="_self">in this clip of an interview with their CEO</a>.</p>
<p>So, feeling exploited yet?  Here&#8217;s how to delete your Facebook account</p>
<ul>
<li>Log in to Facebook</li>
<li>Navigate to this URL <a href="http://www.facebook.com/help/contact.php?show_form=delete_account" target="_blank">http://www.facebook.com/help/contact.php?show_form=delete_account</a> and follow the instructions.</li>
<li>Log out and don&#8217;t log in again in the next 14 days.  After that time your account will be deleted.</li>
</ul>
<p>In all likelihood your data will remain on the Facebook servers for an indeterminate period after this, so you probably want to start by deleting all your profile information, applications, inbox/sent folders, networks and everything that you&#8217;ve posted.</p>
<p><em>Update</em>1 : More Facebook privacy problems.  <a href="http://eu.techcrunch.com/2010/05/05/video-major-facebook-security-hole-lets-you-view-your-friends-live-chats/" target="_blank">Techcrunch is reporting</a> that for a period of time private chats weren&#8217;t actually entirely private.  Facebook say this has now been fixed.</p>
<p><em>Update</em>2 : Think it can&#8217;t get any worse? <a href="http://www.macworld.com/article/151087/2010/05/facebook_addingapps.html" target="_blank">MacWorld</a> is reporting that if you visited certain sites while logged in to Facebook, an app for those  sites was quietly added to your Facebook profile. Facebook say this was a bug and it&#8217;s now been fixed.</p>
<p><em>Update 3</em>: Facebook leaks your internet connection&#8217;s IP address when you send a message or write on a wall.  The person tha you sent a message to will get an email notification from Facebook.  The header of that email has the IP address of your internet connection.  That information can be used to discover, for example, where you are.  The mail header looks like this (actual value obscured)</p>
<pre style="padding-left:30px;">X-Facebook: from zuckmail ([xxxxxxxxxjM1LjE1OQ==])
</pre>
<p>&#8220;xxxxxxxxxjM1LjE1OQ==&#8221; is the base64 encoded IP address. Decode it to an IP address with <a href="http://www.python.org" target="_blank">Python</a></p>
<pre style="padding-left:30px;">&gt;&gt;&gt; import base64
&gt;&gt;&gt; base64.b64decode("xxxxxxxxxjM1LjE1OQ==")
'xxx.xxx.xxx.159'
</pre>
<p>and use a GeoIP service to find the user&#8217;s location &#8211; in this case, Christchurch, New Zealand.</p>
<p><em>Update 3</em>: The issue of Facebook leaking IP addresses has apparently now been fixed.  Including the IP was apprently a spam control feature.</p>
<br /> Tagged: <a href='http://johnmccombs.inmap.net/tag/facebook/'>facebook</a>, <a href='http://johnmccombs.inmap.net/tag/privacy/'>privacy</a>, <a href='http://johnmccombs.inmap.net/tag/security/'>security</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/314/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=314&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2010/04/29/facebooks-eroding-privacy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>
	</item>
		<item>
		<title>Think Python</title>
		<link>http://johnmccombs.inmap.net/2010/04/25/think-python/</link>
		<comments>http://johnmccombs.inmap.net/2010/04/25/think-python/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 22:13:54 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=311</guid>
		<description><![CDATA[This looks pretty good. An introduction to programming using Python. You can also get hard copy at Amazon. Tagged: opensource, programming, python<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=311&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.greenteapress.com/thinkpython/html/index.html" target="_blank">This looks pretty good</a>. An introduction to programming using <a href="http://www.python.org" target="_blank">Python</a>. You can also get <a href="http://www.amazon.com/gp/product/0521725968?ie=UTF8&amp;tag=greenteapre01-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0521725968" target="_blank">hard copy</a> at Amazon.</p>
<br /> Tagged: <a href='http://johnmccombs.inmap.net/tag/opensource/'>opensource</a>, <a href='http://johnmccombs.inmap.net/tag/programming/'>programming</a>, <a href='http://johnmccombs.inmap.net/tag/python/'>python</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/311/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=311&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2010/04/25/think-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>
	</item>
		<item>
		<title>Maemo Development &#8211; Getting Started</title>
		<link>http://johnmccombs.inmap.net/2010/01/03/maemo-development-getting-started/</link>
		<comments>http://johnmccombs.inmap.net/2010/01/03/maemo-development-getting-started/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 21:53:22 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[maemo]]></category>
		<category><![CDATA[n900]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[scratchbox]]></category>
		<category><![CDATA[sdk]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=305</guid>
		<description><![CDATA[As complete beginner in programming Maemo devices, I was looking for an easy way to get started.  Currently C++ is the only officially supported language for Maemo development.  The Maemo SDK provides the tools and the Scratchbox sandbox environment.  Scratchbox is a fairly full-featured Linux development environment and includes tools like like gdb, valgrind, ltrace [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=305&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As complete beginner in programming Maemo devices, I was looking for an easy way to get started.  Currently C++ is the only officially supported language for Maemo development.  The <a href="http://www.forum.nokia.com/info/sw.nokia.com/id/c05693a1-265c-4c7f-a389-fc227db4c465/Maemo_5_SDK.html" target="_blank">Maemo SDK</a> provides the tools and the <em>Scratchbox </em>sandbox environment.  Scratchbox is a fairly full-featured Linux development environment and includes tools like like <em><a title="http://sourceware.org/gdb/" rel="nofollow" href="http://sourceware.org/gdb/">gdb</a></em>, <em><a title="http://valgrind.org/" rel="nofollow" href="http://valgrind.org/">valgrind</a></em>,  <em>ltrace</em> and <em><a title="http://sourceforge.net/projects/strace/" rel="nofollow" href="http://sourceforge.net/projects/strace/">strace</a></em>.   Setting up the SDK is a fair amount of work. However, there is a pre-built virtual machine for VMware with the SDK and ESBox IDE all set up an ready to go.  Still, all this is not exactly a dive-right-in toolset.</p>
<p>Fortunately there is a simpler way &#8211; <a href="http://www.python.org">Python</a>.  The N900 has Python 2.5.4 and Xterm,  vi and <a href="http://wiki.maemo.org/PyMaemo/UITutorial" target="_blank">PyMaemo</a>.  This provides all you need to get started. Just type in a program and you&#8217;re in business. Here&#8217;s the hello world app from the <a href="http://wiki.maemo.org/PyMaemo/UITutorial" target="_blank">PyMaemo documentation</a></p>
<pre style="padding-left:30px;">import gtk
import hildon

def hello(widget, data):
 print "Hello World!"

def main():
 program = hildon.Program.get_instance()

 window = hildon.Window()
 program.add_window(window)
 window.connect("delete_event", gtk.main_quit, None)

 button = hildon.Button(gtk.HILDON_SIZE_AUTO, hildon.BUTTON_ARRANGEMENT_VERTICAL, "Hello world!")
 button.connect("clicked", hello, None)
 window.add(button)

 window.show_all()
 gtk.main()

if __name__ == "__main__":
 main()
</pre>
<p>To run the Python program,  use this command at the shell prompt.</p>
<pre style="padding-left:30px;">run-standalone.sh python2.5 helloworld.py
</pre>
<p style="text-align:center;"><a href="http://johnmccombs.files.wordpress.com/2010/01/hello-world.png"><img class="aligncenter size-full wp-image-306" title="Hello World" src="http://johnmccombs.files.wordpress.com/2010/01/hello-world.png?w=350&#038;h=210" alt="" width="350" height="210" /></a></p>
<p>Now typing on the N900 keyboard isn&#8217;t realistic. The <a href="http://www.activestate.com/komodo/" target="_blank">Komodo IDE</a> I use on the Mac has the ability to edit remote files via scp. Once you install the <a href="http://maemo.org/downloads/product/Maemo5/openssh-server/">OpenSSH server</a> on the N900 you&#8217;re in a position to directly edit files on the device with Komodo.</p>
<br /> Tagged: maemo, n900, opensource, scratchbox, sdk <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/305/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=305&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2010/01/03/maemo-development-getting-started/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>

		<media:content url="http://johnmccombs.files.wordpress.com/2010/01/hello-world.png" medium="image">
			<media:title type="html">Hello World</media:title>
		</media:content>
	</item>
		<item>
		<title>Google CEO On Privacy</title>
		<link>http://johnmccombs.inmap.net/2009/12/09/google-ceo-on-privacy/</link>
		<comments>http://johnmccombs.inmap.net/2009/12/09/google-ceo-on-privacy/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 20:32:30 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=300</guid>
		<description><![CDATA[When asked about privacy in an interview on CNBC Google CEO Eric Schmidt said &#8216;If You Have Something You Don&#8217;t Want Anyone To Know, Maybe You Shouldn&#8217;t Be Doing It&#8217;. Bruce Schneier said this on the topic. Just as salient today as it was when it was written in 2006&#8243; &#8230; Some clever answers: &#8220;If [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=300&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When asked about privacy in an <a href="http://www.cnbc.com/id/26182232" target="_blank">interview</a> on CNBC Google CEO Eric Schmidt said &#8216;If You Have Something You Don&#8217;t Want Anyone To Know, Maybe You Shouldn&#8217;t Be Doing It&#8217;.</p>
<p>Bruce Schneier <a href="http://www.schneier.com/blog/archives/2006/05/the_value_of_pr.html" target="_blank">said this on the topic</a>. Just as salient today as it was when it was written in 2006&#8243;</p>
<p style="padding-left:30px;"><em>&#8230; Some clever answers: &#8220;If I&#8217;m not doing anything wrong, then you have no cause to watch me.&#8221; &#8220;Because the government gets to define what&#8217;s wrong, and they keep changing the definition.&#8221; &#8220;Because you might do something wrong with my information.&#8221; My problem with quips like these &#8212; as right as they are &#8212; is that they accept the premise that privacy is about hiding a wrong. It&#8217;s not. Privacy is an inherent human right, and a requirement for maintaining the human condition with dignity and respect.</em></p>
<p style="padding-left:30px;"><em>Two proverbs say it best: </em><em>Quis custodiet custodes ipsos? (&#8220;Who watches the watchers?&#8221;) and &#8220;Absolute power corrupts absolutely.&#8221;</em></p>
<p style="padding-left:30px;"><em>Cardinal Richelieu understood the value of surveillance when he famously said, &#8220;If one would give me six lines written by the hand of the most honest man, I would find something in them to have him hanged.&#8221; Watch someone long enough, and you&#8217;ll find something to arrest &#8212; or just blackmail &#8212; with. Privacy is important because without it, surveillance information will be abused: to peep, to sell to marketers and to spy on political enemies &#8212; whoever they happen to be at the time.</em></p>
<p style="padding-left:30px;"><em>Privacy protects us from abuses by those in power, even if we&#8217;re doing nothing wrong at the time of surveillance.</em></p>
<p style="padding-left:30px;"><em>&#8230; Too many wrongly characterize the debate as &#8220;security versus privacy.&#8221; The real choice is liberty versus control. Tyranny, whether it arises under threat of foreign physical attack or under constant domestic authoritative scrutiny, is still tyranny. Liberty requires security without intrusion, security plus privacy. Widespread police surveillance is the very definition of a police state. And that&#8217;s why we should champion privacy even when we have nothing to hide&#8230;</em></p>
<p style="padding-left:30px;">
<br /> Tagged: google, privacy <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/300/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=300&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2009/12/09/google-ceo-on-privacy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>
	</item>
		<item>
		<title>War of Attrition</title>
		<link>http://johnmccombs.inmap.net/2009/10/31/war-of-attrition/</link>
		<comments>http://johnmccombs.inmap.net/2009/10/31/war-of-attrition/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 05:05:15 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[wildlife]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=294</guid>
		<description><![CDATA[Looks like the mosquitoes are back.  And so it begins&#8230;. Tagged: wildlife<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=294&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://johnmccombs.files.wordpress.com/2009/10/mosquito2.jpg"><img class="aligncenter size-full wp-image-297" title="Mosquito Larva" src="http://johnmccombs.files.wordpress.com/2009/10/mosquito2.jpg?w=500&#038;h=413" alt="Mosquito Larva" width="500" height="413" /></a></p>
<p>Looks like the mosquitoes are back.  And so it begins&#8230;.</p>
<br /> Tagged: wildlife <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/294/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=294&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2009/10/31/war-of-attrition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>

		<media:content url="http://johnmccombs.files.wordpress.com/2009/10/mosquito2.jpg" medium="image">
			<media:title type="html">Mosquito Larva</media:title>
		</media:content>
	</item>
		<item>
		<title>MapToaster Topo/NZ V5.0 is Done</title>
		<link>http://johnmccombs.inmap.net/2009/10/28/maptoaster-toponz-v5-0-is-done/</link>
		<comments>http://johnmccombs.inmap.net/2009/10/28/maptoaster-toponz-v5-0-is-done/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 01:29:13 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[maptotaster]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=291</guid>
		<description><![CDATA[Finally pushed the MapToaster Topo/NZ V5.0 upgrade out the door with the new Topo50 and Topo250 NZTM projection topographical maps of NZ. Clink of glasses at the Integrated Mapping world headquarters&#8230; Tagged: mapping, maptotaster<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=291&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Finally pushed the MapToaster Topo/NZ V5.0 upgrade out the door with the new <a href="http://www.maptoaster.com/maptoaster-topo-nz/upgrade5.html" target="_blank">Topo50 and Topo250 </a><a href="http://www.maptoaster.com/maptoaster-topo-nz/upgrade5.html" target="_blank">NZTM projection</a><a href="http://www.maptoaster.com/maptoaster-topo-nz/upgrade5.html" target="_blank"> topographical maps of NZ</a>. Clink of glasses at the Integrated Mapping world headquarters&#8230;</p>
<br /> Tagged: mapping, maptotaster <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/291/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=291&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2009/10/28/maptoaster-toponz-v5-0-is-done/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>
	</item>
		<item>
		<title>World Scientist&#8217;s Warning to Humanity</title>
		<link>http://johnmccombs.inmap.net/2009/09/23/world-scientists-warning-to-humanity/</link>
		<comments>http://johnmccombs.inmap.net/2009/09/23/world-scientists-warning-to-humanity/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 20:36:21 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=287</guid>
		<description><![CDATA[From 1992: &#8220;Over 1,500 members of national, regional, and international science academies have signed the Warning. Sixtynine nations from all parts of Earth are represented, including each of the twelve most populous nations and the nineteen largest economic powers. The full list includes a majority of the Nobel laureates in the sciences.&#8221; WORLD SCIENTISTS' WARNING [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=287&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>From 1992:</p>
<p>&#8220;Over 1,500 members of national, regional, and international<br />
science academies have signed the Warning.  Sixtynine<br />
nations from all parts of Earth are represented, including<br />
each of the twelve most populous nations and the nineteen<br />
largest economic powers.  The full list includes a majority<br />
of the Nobel laureates in the sciences.&#8221;</p>
<blockquote>
<pre>         WORLD SCIENTISTS' WARNING TO HUMANITY

    Human beings and the natural world are on a collision
course. Human activities inflict harsh and often
irreversible damage on the environment and on critical
resources.  If not checked, many of our current practices
put at serious risk the future that we wish for human
society and the plant and animal kingdoms, and may so alter
the living world that it will be unable to sustain life in
the manner that we know.  Fundamental changes are urgent if
we are to avoid the collision our present course will bring
about.

<a href="http://www-formal.stanford.edu/jmc/progress/ucs-statement.txt" target="_blank">continued...</a></pre>
</blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/287/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=287&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2009/09/23/world-scientists-warning-to-humanity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>
	</item>
		<item>
		<title>New Attack on WiFi</title>
		<link>http://johnmccombs.inmap.net/2009/08/28/new-attack-on-wifi/</link>
		<comments>http://johnmccombs.inmap.net/2009/08/28/new-attack-on-wifi/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 09:24:30 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=283</guid>
		<description><![CDATA[Toshihiro Ohigashi of Hiroshima University and Masakatu Morii of Kobe University have developed a practical attack on WiFi connections that use WPA security with the TKIP algorithm. While not as weak as the earlier, and now completely broken, WEP security, this attack means that WPA/TKIP can no longer be trusted to keep your network safe. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=283&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Toshihiro Ohigashi of <span id="lw_1251448409_4">Hiroshima University</span> and Masakatu Morii of <span id="lw_1251448409_5">Kobe University have developed a <a href="http://jwis2009.nsysu.edu.tw/location/paper/A%20Practical%20Message%20Falsification%20Attack%20on%20WPA.pdf" target="_self">practical attack</a> on WiFi </span><span>connections</span><span id="lw_1251448409_5"> that use WPA security with the </span>TKIP<span id="lw_1251448409_5"> algorithm.</span></p>
<p><span>While not as weak as the earlier, and now completely broken, WEP security, this attack means that WPA/TKIP can no longer be trusted to keep your network safe.</span></p>
<p><span>The good news is that reasonably recent WiFi access-points offer the alternative AES encryption that is not vulnerable to this attack. Avoiding this problem is as simple as logging in to the </span><span>access-point&#8217;s administration page and changing the encryption setting.</span></p>
<p style="text-align:center;"><span> </span></p>
<div id="attachment_284" class="wp-caption aligncenter" style="width: 381px"><a href="http://johnmccombs.files.wordpress.com/2009/08/aes.png"><img class="size-full wp-image-284" title="AES" src="http://johnmccombs.files.wordpress.com/2009/08/aes.png?w=371&#038;h=126" alt="Use AES Encryption" width="371" height="126" /></a><p class="wp-caption-text">Use AES Encryption</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/283/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=283&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2009/08/28/new-attack-on-wifi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>

		<media:content url="http://johnmccombs.files.wordpress.com/2009/08/aes.png" medium="image">
			<media:title type="html">AES</media:title>
		</media:content>
	</item>
		<item>
		<title>Garmin GPSMAP 60CSx review</title>
		<link>http://johnmccombs.inmap.net/2009/08/10/garmin-gpsmap-60csx-review/</link>
		<comments>http://johnmccombs.inmap.net/2009/08/10/garmin-gpsmap-60csx-review/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 23:03:20 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gps]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=281</guid>
		<description><![CDATA[Added a review of Garmin&#8217;s 60CSx GPS to the MapToaster website. Tagged: gps<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=281&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Added a review of Garmin&#8217;s <a href="http://www.maptoaster.com/maptoaster-topo-nz/articles/60CSx-review/garmin-gpsmap-60csx.html" target="_blank">60CSx GPS</a> to the MapToaster website.</p>
<br /> Tagged: gps <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/281/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=281&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2009/08/10/garmin-gpsmap-60csx-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>
	</item>
		<item>
		<title>Alan Kay on Smalltalk Origins</title>
		<link>http://johnmccombs.inmap.net/2009/08/03/alan-kay-on-smalltalk-origins/</link>
		<comments>http://johnmccombs.inmap.net/2009/08/03/alan-kay-on-smalltalk-origins/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 23:14:03 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[alankay]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=277</guid>
		<description><![CDATA[Alan Kay responds in a discussion about the origins of the Smalltalk programming language: This is an interesting example of an ever increasing web disease &#8212; that is: expressing mere opinions without foundations or checking. This one is easy, because there is a readily available &#8220;Early History of Smalltalk&#8221; that the ACM got me to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=277&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Alan Kay <a href="http://article.gmane.org/gmane.comp.lang.smalltalk.squeak.beginners/6311" target="_blank">responds</a> in a discussion about the origins of the <a href="http://www.squeak.org/" target="_blank">Smalltalk</a> <a href="http://en.wikipedia.org/wiki/Smalltalk" target="_blank">programming language</a>:</p>
<p style="padding-left:30px;"><em>This is an interesting example of an ever increasing web disease &#8212; that is: expressing mere opinions without foundations or checking. This one is easy, because there is a readily available &#8220;Early History of Smalltalk&#8221; that the ACM got me to write in 1993. So why wouldn&#8217;t people just type &#8220;history of smalltalk&#8221; into Google? (I don&#8217;t know and I haven&#8217;t been able to figure this out). </em><em></em></p>
<p style="padding-left:30px;"><em>The very first hit finds this paper. (This one is not the best version of it because someone just scanned the doc I wrote to get an HTML version and left out lots of the pictures. But in looking at it, it seems to answer this question very straightforwardly &#8212; and that answer was given by &#8220;someone who was actually there&#8221; and had a hand in the invention of Smalltalk, rather than people with opinions from the side.)</em></p>
<p style="padding-left:30px;"><em>What is wrong? Why is mere opinion so dominating discussions held on the easiest medium there has ever been that can provide substantiations with just a little curiosity and work? Is the world completely reverting to an oral culture of assertions held around an electronic campfire?<br />
</em></p>
<p>I&#8217;m not sure that our behaviour on the Internet is much different to what you get at the water-cooler, in the tea-room or on talk-back radio. But instant access to the facts makes it less excusable.</p>
<p>Anyway, if you&#8217;re a software developer, Alan Kay&#8217;s paper is a <a href="http://gagne.homedns.org/~tgagne/contrib/EarlyHistoryST.html" target="_blank">good read</a>.</p>
<br /> Tagged: alankay, internet <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/277/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=277&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2009/08/03/alan-kay-on-smalltalk-origins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>
	</item>
		<item>
		<title>Feynman&#8217;s Messenger Series Lectures 1964</title>
		<link>http://johnmccombs.inmap.net/2009/07/16/feynmans-messenger-series-lectures-1964/</link>
		<comments>http://johnmccombs.inmap.net/2009/07/16/feynmans-messenger-series-lectures-1964/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 01:13:39 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=273</guid>
		<description><![CDATA[Bill Gates has purchased the rights to the seven-part series of lectures given by Richard Feynman at Cornell University in 1964. The Project Tuva lectures, are hosted by Microsoft Research. The videos have a transcript and interactive annotations.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=273&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:left;"><a href="http://johnmccombs.files.wordpress.com/2009/07/picture-1.jpg"><img class="aligncenter size-medium wp-image-275" title="Picture 1" src="http://johnmccombs.files.wordpress.com/2009/07/picture-1.jpg?w=244&#038;h=300" alt="Picture 1" width="244" height="300" /></a></p>
<p>Bill Gates has purchased the rights to the seven-part series of lectures given by Richard Feynman at Cornell University in 1964.</p>
<p>The Project Tuva lectures, are <a href="http://research.microsoft.com/apps/tools/tuva/index.html" target="_blank">hosted by Microsoft Research</a>. The videos have a transcript and interactive annotations.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/273/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=273&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2009/07/16/feynmans-messenger-series-lectures-1964/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>

		<media:content url="http://johnmccombs.files.wordpress.com/2009/07/picture-1.jpg?w=244" medium="image">
			<media:title type="html">Picture 1</media:title>
		</media:content>
	</item>
		<item>
		<title>SanDisk Does Better</title>
		<link>http://johnmccombs.inmap.net/2009/07/11/sandisk-does-better/</link>
		<comments>http://johnmccombs.inmap.net/2009/07/11/sandisk-does-better/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 10:45:39 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=268</guid>
		<description><![CDATA[SanDisk won the gratutious packaging award a while back.  Bought some more. This time the packaging was of a scale matching the product&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=268&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>SanDisk won the <a href="http://johnmccombs.inmap.net/2009/04/21/gratuitous-packaging-award/" target="_blank">gratutious packaging award</a> a while back.  Bought some more. This time the packaging was of a scale matching the product&#8230;</p>
<p><a href="http://johnmccombs.files.wordpress.com/2009/07/p70800321.jpg"><img class="aligncenter size-full wp-image-270" title="Packing" src="http://johnmccombs.files.wordpress.com/2009/07/p70800321.jpg?w=340&#038;h=382" alt="Packing" width="340" height="382" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/268/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=268&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2009/07/11/sandisk-does-better/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>

		<media:content url="http://johnmccombs.files.wordpress.com/2009/07/p70800321.jpg" medium="image">
			<media:title type="html">Packing</media:title>
		</media:content>
	</item>
		<item>
		<title>Intro to Geocaching</title>
		<link>http://johnmccombs.inmap.net/2009/07/07/intro-to-geocaching/</link>
		<comments>http://johnmccombs.inmap.net/2009/07/07/intro-to-geocaching/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 10:06:51 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[geocaching]]></category>
		<category><![CDATA[gps]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/2009/07/07/intro-to-geocaching/</guid>
		<description><![CDATA[Added the new article to the MapToaster website, an introduction to geocaching. Tagged: geocaching, gps<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=266&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Added the new article to the MapToaster website, an <a title="introduction to geocaching" href="http://www.maptoaster.com/maptoaster-topo-nz/articles/geocaching/geocaching.html" target="_blank">introduction to geocaching</a>.</p>
<br /> Tagged: geocaching, gps <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/266/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=266&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2009/07/07/intro-to-geocaching/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>
	</item>
		<item>
		<title>Browser Wars</title>
		<link>http://johnmccombs.inmap.net/2009/07/01/browser-wars/</link>
		<comments>http://johnmccombs.inmap.net/2009/07/01/browser-wars/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 03:49:05 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=253</guid>
		<description><![CDATA[The  stats for one of our product websites has some interesting data on web browser use. Internet Explorer has fallen below 60% for the first time &#8211; $58% Firefox use has hit 30% Safari is 6% and Google&#8217;s Chrome is 4% Safari is pretty much only used by Mac owners. Safari use on Windows is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=253&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The  stats for one of our product websites has some interesting data on web browser use.</p>
<ul>
<li>Internet Explorer has fallen below 60% for the first time &#8211; $58%</li>
<li>Firefox use has hit 30%</li>
<li>Safari is 6% and Google&#8217;s Chrome is 4%</li>
<li>Safari is pretty much only used by Mac owners. Safari use on Windows is negligible.</li>
</ul>
<p>Uptake of new software versions differs markedly between Internet Explorer and Firefox.</p>
<p><strong>Internet Explorer</strong></p>
<p>The following tables show the percentage of users with each version and the release date for that version.</p>
<table style="height:88px;" border="0" cellspacing="0" cellpadding="5" width="250">
<tbody>
<tr>
<td width="10"></td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">IE 8.0</td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">25%</td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">Mar-09</td>
</tr>
<tr>
<td width="10"></td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">IE 7.0</td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">57%</td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">Oct-06</td>
</tr>
<tr>
<td width="10"></td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">IE 6.0</td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">18%</td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">Aug-01</td>
</tr>
</tbody>
</table>
<p>After 8 years the much loathed (by web developers) IE6 is still used by almost 20% of IE users. A look at the IP addresses of these users indicates that about 60% of them are corporate or institutional. They are probably stuck with IE6 through cost of change or the requirements of legacy intranet applications.</p>
<p>The number non-institutional users with either IE6 or the three-year old IE7 is surprising, as you&#8217;d expect the updates to have been pushed through by Windows Update. You have to wonder if these PC&#8217;s have updates disabled!</p>
<p>96% of Windows users are using either XP (69%) or Vista (27%).</p>
<p><strong>Firefox</strong></p>
<table style="height:116px;" border="0" cellspacing="0" cellpadding="5" width="250">
<tbody>
<tr>
<td width="10"></td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">FF 3.0.11</td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">26%</td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">Jun-09</td>
</tr>
<tr>
<td width="10"></td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">FF 3.0.10</td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">57%</td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">Apr-09</td>
</tr>
<tr>
<td width="10"></td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">Other V3</td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">11%</td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">Jun-08</td>
</tr>
<tr>
<td width="10"></td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">Older</td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;">6%</td>
<td style="border-bottom:solid;border-bottom-width:1px;border-bottom-color:#bbb;"></td>
</tr>
</tbody>
</table>
<p>In contrast, with Firefox there is a very different pattern. 83% of the Firefox users had updated within the last two months and 94% of Firefox users were using a browser less than a year old.</p>
<p>Perhaps the difference is cultural. Firefox users have made a conscious choice to switch and are probably generally more aware of the need to stay up-to-date.</p>
<br /> Tagged: browser, firefox, IE, web <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/253/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=253&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2009/07/01/browser-wars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>
	</item>
		<item>
		<title>Web of Life</title>
		<link>http://johnmccombs.inmap.net/2009/06/13/web-of-life/</link>
		<comments>http://johnmccombs.inmap.net/2009/06/13/web-of-life/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 02:17:51 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ecology]]></category>
		<category><![CDATA[wildlife]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=244</guid>
		<description><![CDATA[Life is connected. We have a lot of small grasses growing in the cracks between the paving stones in our yard.  You might have an urge to &#8220;tidy&#8221; these up, but their seeds  are currently sustaining a flock of 20 or so finches&#8230; Tagged: ecology, wildlife<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=244&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://johnmccombs.files.wordpress.com/2009/06/p61300451.jpg"><img class="aligncenter size-full wp-image-246" title="Grasses" src="http://johnmccombs.files.wordpress.com/2009/06/p61300451.jpg?w=448&#038;h=318" alt="P6130045" width="448" height="318" /></a></p>
<p>Life is <a href="http://news.bbc.co.uk/2/hi/science/nature/2166306.stm" target="_blank">connected</a>. We have a lot of small grasses growing in the cracks between the paving stones in our yard.  You might have an urge to &#8220;tidy&#8221; these up, but their seeds  are currently sustaining a flock of 20 or so finches&#8230;</p>
<br /> Tagged: ecology, wildlife <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnmccombs.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnmccombs.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnmccombs.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnmccombs.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/244/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&amp;blog=5220994&amp;post=244&amp;subd=johnmccombs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2009/06/13/web-of-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>

		<media:content url="http://johnmccombs.files.wordpress.com/2009/06/p61300451.jpg" medium="image">
			<media:title type="html">Grasses</media:title>
		</media:content>
	</item>
	</channel>
</rss>