<?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</title>
	<atom:link href="http://johnmccombs.inmap.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://johnmccombs.inmap.net</link>
	<description></description>
	<lastBuildDate>Sat, 02 Jan 2010 22:56:05 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='johnmccombs.inmap.net' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/057dd112b8c5d9b08853285020ffbf34?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>dispatches</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>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[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,  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=305&subd=johnmccombs&ref=&feed=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, 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/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&blog=5220994&post=305&subd=johnmccombs&ref=&feed=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 I&#8217;m not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=300&subd=johnmccombs&ref=&feed=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/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&blog=5220994&post=300&subd=johnmccombs&ref=&feed=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&blog=5220994&post=294&subd=johnmccombs&ref=&feed=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/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&blog=5220994&post=294&subd=johnmccombs&ref=&feed=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&blog=5220994&post=291&subd=johnmccombs&ref=&feed=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/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&blog=5220994&post=291&subd=johnmccombs&ref=&feed=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;

        [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=287&subd=johnmccombs&ref=&feed=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/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&blog=5220994&post=287&subd=johnmccombs&ref=&feed=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.
The good [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=283&subd=johnmccombs&ref=&feed=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/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&blog=5220994&post=283&subd=johnmccombs&ref=&feed=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&blog=5220994&post=281&subd=johnmccombs&ref=&feed=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/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&blog=5220994&post=281&subd=johnmccombs&ref=&feed=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 write [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=277&subd=johnmccombs&ref=&feed=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/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&blog=5220994&post=277&subd=johnmccombs&ref=&feed=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&blog=5220994&post=273&subd=johnmccombs&ref=&feed=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/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&blog=5220994&post=273&subd=johnmccombs&ref=&feed=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&blog=5220994&post=268&subd=johnmccombs&ref=&feed=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/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&blog=5220994&post=268&subd=johnmccombs&ref=&feed=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&blog=5220994&post=266&subd=johnmccombs&ref=&feed=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/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&blog=5220994&post=266&subd=johnmccombs&ref=&feed=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 negligible.

Uptake of new software [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=253&subd=johnmccombs&ref=&feed=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/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&blog=5220994&post=253&subd=johnmccombs&ref=&feed=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&blog=5220994&post=244&subd=johnmccombs&ref=&feed=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/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&blog=5220994&post=244&subd=johnmccombs&ref=&feed=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>
		<item>
		<title>Hans Rosling and Data Visualisation</title>
		<link>http://johnmccombs.inmap.net/2009/05/14/hans-rosling-and-data-visualisation/</link>
		<comments>http://johnmccombs.inmap.net/2009/05/14/hans-rosling-and-data-visualisation/#comments</comments>
		<pubDate>Thu, 14 May 2009 03:29:56 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[data visualisation]]></category>
		<category><![CDATA[ted]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=214</guid>
		<description><![CDATA[Hans Rosling (blog), Professor of International Health at Karolinska Institutet and Director of the Gapminder Foundation, using data visualisation to explain poverty, health and economic development.
Swine Flu and Tuberculosis vs the news media

And two talks from TED. The first on HIV


And the second exposing preconceptions about the &#8220;developing world&#8221;


 Tagged: data visualisation, ted   [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=214&subd=johnmccombs&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Hans_Rosling" target="_blank">Hans Rosling</a> (<a href="http://www.roslingsblogger.blogspot.com/" target="_blank">blog</a>), Professor of International Health at Karolinska Institutet and Director of the <a href="http://www.gapminder.org/" target="_blank">Gapminder</a> Foundation, using data visualisation to explain poverty, health and economic development.</p>
<p>Swine Flu and Tuberculosis vs the news media</p>
<p><span style="text-align:center; display: block;"><a href="http://johnmccombs.inmap.net/2009/05/14/hans-rosling-and-data-visualisation/"><img src="http://img.youtube.com/vi/V8bUtbODV-Q/2.jpg" alt="" /></a></span></p>
<p>And two talks from TED. The first on HIV</p>
<p style="text-align:center;"><object width="446" height="326"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent"></param><param name="bgColor" value="#ffffff"></param> <param name="flashvars" value="vu=http://video.ted.com/talks/embed/HansRosling_2009-embed_high.flv&su=http://images.ted.com/images/ted/tedindex/embed-posters/HansRosling-2009.embed_thumbnail.jpg&vw=432&vh=240&ap=0&ti=540" /><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="446" height="326" allowFullScreen="true" flashvars="vu=http://video.ted.com/talks/embed/HansRosling_2009-embed_high.flv&su=http://images.ted.com/images/ted/tedindex/embed-posters/HansRosling-2009.embed_thumbnail.jpg&vw=432&vh=240&ap=0&ti=540"></embed></object></p>
<p style="text-align:center;">
<p style="text-align:left;">And the second exposing preconceptions about the &#8220;developing world&#8221;</p>
<p style="text-align:center;">
<p style="text-align:center;"><object width="334" height="326"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent"></param><param name="bgColor" value="#ffffff"></param> <param name="flashvars" value="vu=http://video.ted.com/talks/embed/HansRosling_2006-embed_high.flv&su=http://images.ted.com/images/ted/tedindex/embed-posters/HansRosling-2006.embed_thumbnail.jpg&vw=320&vh=240&ap=0&ti=92" /><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="334" height="326" allowFullScreen="true" flashvars="vu=http://video.ted.com/talks/embed/HansRosling_2006-embed_high.flv&su=http://images.ted.com/images/ted/tedindex/embed-posters/HansRosling-2006.embed_thumbnail.jpg&vw=320&vh=240&ap=0&ti=92"></embed></object></p>
<br /> Tagged: data visualisation, ted <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/214/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=214&subd=johnmccombs&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2009/05/14/hans-rosling-and-data-visualisation/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/V8bUtbODV-Q/2.jpg" medium="image" />
	</item>
		<item>
		<title>Ubuntu Netbook Remix</title>
		<link>http://johnmccombs.inmap.net/2009/05/07/ubuntu-netbook-remix/</link>
		<comments>http://johnmccombs.inmap.net/2009/05/07/ubuntu-netbook-remix/#comments</comments>
		<pubDate>Thu, 07 May 2009 04:39:08 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[unr]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=197</guid>
		<description><![CDATA[Put Ubuntu Netbook Remix on the AspireOne. Amazingly good.
The Windows XP installation on this machine was crumbling. Suspend/hibernate didn&#8217;t work. There would be no fixing that without re-installing Windows.  Even when it was working properly, the XP user-interface was kind of awkward on the small keyboard and trackpad. This seemed like a good opportunity to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=197&subd=johnmccombs&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Put <a href="http://www.canonical.com/projects/ubuntu/unr" target="_blank">Ubuntu Netbook</a> <a href="https://wiki.ubuntu.com/UNR">Remix</a> on the <a href="http://en.wikipedia.org/wiki/Acer_Aspire_One">AspireOne</a>. Amazingly good.</p>
<p>The Windows XP installation on this machine was crumbling. Suspend/hibernate didn&#8217;t work. There would be no fixing that without re-installing Windows.  Even when it was working properly, the XP user-interface was kind of awkward on the small keyboard and trackpad. This seemed like a good opportunity to try out the latest Ubuntu release &#8211; <strong><a href="http://www.ubuntu.com/products/whatisubuntu/904features/" target="_blank">9.04</a></strong>.</p>
<div id="attachment_198" class="wp-caption aligncenter" style="width: 310px"><a href="http://johnmccombs.files.wordpress.com/2009/05/screenshot.png"><img class="size-medium wp-image-198" title="Ubuntu Netbook Remix" src="http://johnmccombs.files.wordpress.com/2009/05/screenshot.png?w=300&#038;h=175" alt="Ubuntu Netbook RemixUbuntu Netbook Remix" width="300" height="175" /></a><p class="wp-caption-text">Ubuntu Netbook Remix</p></div>
<p>The Ubuntu <a href="http://www.ubuntu.com/getubuntu/download">installation</a> took about 15 minutes, using an USB CD-ROM drive.  As far as I could tell everything worked except the network activity light and the SD slot. Fixed by running this, in the terminal, then rebooting</p>
<pre>  sudo apt-get install linux-backports-modules-jaunty</pre>
<p>The next step was  to install the Netbook Remix (UNR). Execute this in a terminal window and re-boot:</p>
<pre class="command">  sudo apt-get install go-home-applet human-netbook-theme \
    maximus netbook-launcher window-picker-appletsudo apt-get \
    install go-home-applet human-netbook-theme maximus \
    netbook-launcher window-picker-applet</pre>
<p>The result is brilliant. The UNR user-interface is much more manageable with a small trackpad and keyboard.</p>
<p>UNR replaces the standard Gnome interface with one more suited to a small screen. Instead of the usual Applications/Places/System menu, there is a full-screen &#8220;home&#8221; panel that shows the icons for the installed applications. The applications are organised in a series of tabs. Clicking the tab shows the application in that category. The tabs and icons are large and easy to hit.</p>
<div id="attachment_205" class="wp-caption aligncenter" style="width: 355px"><img class="size-full wp-image-205" title="UNR Main Screen" src="http://johnmccombs.files.wordpress.com/2009/05/ss-nav.png?w=345&#038;h=188" alt="UNR Main Screen" width="345" height="188" /><p class="wp-caption-text">UNR Main Screen</p></div>
<p>The right-hand part of the the top bar has the usual status applets and you can add more from the standard selection</p>
<div id="attachment_206" class="wp-caption aligncenter" style="width: 420px"><img class="size-full wp-image-206" title="Status Bar" src="http://johnmccombs.files.wordpress.com/2009/05/ss-status.png?w=410&#038;h=28" alt="Status Bar" width="410" height="28" /><p class="wp-caption-text">Status Bar</p></div>
<p>The task bar lives on the left of the top bar. The running applications are represented by 16&#215;16 icons. Click the icon to bring the application to the front &#8211; much like the standard task bar. The front application gets a larger tab in the top bar.</p>
<div id="attachment_208" class="wp-caption aligncenter" style="width: 218px"><img class="size-full wp-image-208" title="Taskbar" src="http://johnmccombs.files.wordpress.com/2009/05/ss-taskbar.png?w=208&#038;h=29" alt="ss-taskbar" width="208" height="29" /><p class="wp-caption-text">Taskbar</p></div>
<p>Overlapping windows are gone.  All the applications run with their window maximised.  All the window decoration is stripped away leaving only the application, maximised against the top bar.  There is no title bar, minimise/maximise/close buttons or window resize controls.</p>
<p>Compared to a normal notebook, the netbook&#8217;s small trackpad and screen are quite fiddly. UNR&#8217;s simplification of the user-interface makes the netbook so much easier to work with.  The effect is surprisingly good and far better than using Windows XP.</p>
<p>Overall UNR has transformed the Acer from something that was tolerable to a device I actually like using&#8230;.</p>
<br /> Tagged: linux, netbook, ubuntu, unr <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/197/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=197&subd=johnmccombs&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2009/05/07/ubuntu-netbook-remix/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/05/screenshot.png?w=300" medium="image">
			<media:title type="html">Ubuntu Netbook Remix</media:title>
		</media:content>

		<media:content url="http://johnmccombs.files.wordpress.com/2009/05/ss-nav.png" medium="image">
			<media:title type="html">UNR Main Screen</media:title>
		</media:content>

		<media:content url="http://johnmccombs.files.wordpress.com/2009/05/ss-status.png" medium="image">
			<media:title type="html">Status Bar</media:title>
		</media:content>

		<media:content url="http://johnmccombs.files.wordpress.com/2009/05/ss-taskbar.png" medium="image">
			<media:title type="html">Taskbar</media:title>
		</media:content>
	</item>
		<item>
		<title>ANZAC Day</title>
		<link>http://johnmccombs.inmap.net/2009/04/25/anzac-day/</link>
		<comments>http://johnmccombs.inmap.net/2009/04/25/anzac-day/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 06:52:21 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=192</guid>
		<description><![CDATA[Watched the Leopard Coach Lines Canterbury Brass play World War 1 era music outside the Canterbury Museum. Here&#8217;s what twitter said about ANZAC day.
Click on the image for a zoomable view (requires Microsoft Silverlight)
 
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=192&subd=johnmccombs&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Watched the Leopard Coach Lines Canterbury Brass play World War 1 era music outside the <a href="http://www.canterburymuseum.com/" target="_blank">Canterbury Museum</a>. Here&#8217;s what <a href="http://search.twitter.com/search?q=anzac" target="_blank">twitter</a> said about ANZAC day.</p>
<p>Click on the image for a zoomable view (requires Microsoft <a href="http://silverlight.net/" target="_blank">Silverlight</a>)</p>
<p> </p>
<div id="attachment_193" class="wp-caption aligncenter" style="width: 410px"><a href="http://projx.inmap.net/pano-anzac-2009/anzac-2009-canty-museum.html"><img class="size-full wp-image-193 " title="ANZAC Day 2009 - Canterbury Museum" src="http://johnmccombs.files.wordpress.com/2009/04/anzac-2009-canty-museum_thumb.jpg?w=400&#038;h=299" alt="ANZAC Day 2009 - Canterbury Museum" width="400" height="299" /></a><p class="wp-caption-text">ANZAC Day 2009 - Canterbury Museum</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/192/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=192&subd=johnmccombs&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2009/04/25/anzac-day/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/04/anzac-2009-canty-museum_thumb.jpg" medium="image">
			<media:title type="html">ANZAC Day 2009 - Canterbury Museum</media:title>
		</media:content>
	</item>
		<item>
		<title>Stand by Me</title>
		<link>http://johnmccombs.inmap.net/2009/04/24/stand-by-me/</link>
		<comments>http://johnmccombs.inmap.net/2009/04/24/stand-by-me/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 23:21:39 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=179</guid>
		<description><![CDATA[Playing for Change

 Tagged: music      <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=179&subd=johnmccombs&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://playingforchange.com/" target="_blank">Playing for Change</a></p>
<p style="text-align:center;"><span style="text-align:center; display: block;"><a href="http://johnmccombs.inmap.net/2009/04/24/stand-by-me/"><img src="http://img.youtube.com/vi/Us-TVg40ExM/2.jpg" alt="" /></a></span></p>
<br /> Tagged: music <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/179/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=179&subd=johnmccombs&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2009/04/24/stand-by-me/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/Us-TVg40ExM/2.jpg" medium="image" />
	</item>
		<item>
		<title>Gratuitous Packaging Award</title>
		<link>http://johnmccombs.inmap.net/2009/04/21/gratuitous-packaging-award/</link>
		<comments>http://johnmccombs.inmap.net/2009/04/21/gratuitous-packaging-award/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 02:50:27 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[green]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=171</guid>
		<description><![CDATA[This month&#8217;s award goes to SanDisk for the mountain of unnecessary plastic and cardboard surrounding these three USB flash drives.  At least most of the materials were recyclable and the drives themselves are excellent.

 Tagged: green      <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=171&subd=johnmccombs&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>This month&#8217;s award goes to SanDisk for the mountain of unnecessary plastic and cardboard surrounding these three USB flash drives.  At least most of the materials were recyclable and the drives themselves are excellent.</p>
<p><img class="aligncenter size-full wp-image-174" title="SanDisk packaging" src="http://johnmccombs.files.wordpress.com/2009/04/pics1.jpg?w=400&#038;h=614" alt="SanDisk packaging" width="400" height="614" /></p>
<br /> Tagged: green <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/171/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=171&subd=johnmccombs&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2009/04/21/gratuitous-packaging-award/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/04/pics1.jpg" medium="image">
			<media:title type="html">SanDisk packaging</media:title>
		</media:content>
	</item>
		<item>
		<title>(Much) Too Much Time on Their Hands</title>
		<link>http://johnmccombs.inmap.net/2009/04/12/much-too-much-time-on-their-hands/</link>
		<comments>http://johnmccombs.inmap.net/2009/04/12/much-too-much-time-on-their-hands/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 04:10:02 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=167</guid>
		<description><![CDATA[telnet towel.blinkenlights.nl
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=167&subd=johnmccombs&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><a href="telnet://towel.blinkenlights.nl">telnet towel.blinkenlights.nl</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/167/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=167&subd=johnmccombs&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2009/04/12/much-too-much-time-on-their-hands/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 Mapping Articles</title>
		<link>http://johnmccombs.inmap.net/2009/04/06/new_mapping_articles/</link>
		<comments>http://johnmccombs.inmap.net/2009/04/06/new_mapping_articles/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 02:27:37 +0000</pubDate>
		<dc:creator>John McCombs</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[nztm]]></category>
		<category><![CDATA[projections]]></category>

		<guid isPermaLink="false">http://johnmccombs.inmap.net/?p=164</guid>
		<description><![CDATA[Added some new mapping articles to the MapToaster website.

Choosing a GPS
About datums and map projections
New Zealand Transverse Mercator (NZTM) projection

 Tagged: gps, mapping, nztm, projections      <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=164&subd=johnmccombs&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Added some new mapping articles to the MapToaster website.</p>
<ul>
<li>Choosing a <a href="http://www.maptoaster.com/maptoaster-topo-nz/articles/buying-a-gps/buying-a-gps.html" target="_blank">GPS</a></li>
<li>About <a href="http://www.maptoaster.com/maptoaster-topo-nz/articles/projection/datum-projection.html" target="_blank">datums and map projections</a></li>
<li><a title="NZTM projection" href="http://www.maptoaster.com/maptoaster-topo-nz/articles/nztm/nztm.html" target="_blank">New Zealand Transverse Mercator</a> (NZTM) projection</li>
</ul>
<br /> Tagged: gps, mapping, nztm, projections <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnmccombs.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnmccombs.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnmccombs.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnmccombs.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnmccombs.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnmccombs.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnmccombs.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnmccombs.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnmccombs.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnmccombs.wordpress.com/164/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnmccombs.inmap.net&blog=5220994&post=164&subd=johnmccombs&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://johnmccombs.inmap.net/2009/04/06/new_mapping_articles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">johnmccombs</media:title>
		</media:content>
	</item>
	</channel>
</rss>