<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Seabright Technology</title>
	<atom:link href="http://seabright.co.nz/feed/" rel="self" type="application/rss+xml" />
	<link>http://seabright.co.nz</link>
	<description>Good Software Engineering</description>
	<lastBuildDate>Sun, 15 Aug 2010 23:49:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Coworking in Christchurch</title>
		<link>http://seabright.co.nz/2010/08/16/coworking-in-christchurch/</link>
		<comments>http://seabright.co.nz/2010/08/16/coworking-in-christchurch/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 23:49:22 +0000</pubDate>
		<dc:creator>michaelh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://seabright.co.nz/?p=135</guid>
		<description><![CDATA[I&#8217;m quite keen on the coworking idea &#8211; small businesses sharing space with others working in similar areas.  Great if you want someone to talk to or bounce ideas off.
Two different ones have popped up on mailing lists recently:

Epicentre for ~$350 a desk
Clarus for ~$500/10 m^2

The Canterbury Innovation Incubator is along similar lines.
One on [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m quite keen on the coworking idea &#8211; small businesses sharing space with others working in similar areas.  Great if you want someone to talk to or bounce ideas off.</p>
<p>Two different ones have popped up on mailing lists recently:</p>
<ul>
<li><a href="http://epicentre.co.nz/">Epicentre</a> for ~$350 a desk
<li><a href="http://www.clarus.co.nz/index.php/serviced-office-space.html">Clarus</a> for ~$500/10 m^2
</ul>
<p>The <a href="http://www.cii.co.nz/">Canterbury Innovation Incubator</a> is along similar lines.</p>
<p>One on the Riccarton side of town would be nice.  I wonder if <a href="http://www.nzi3.com/">NZi3</a> have anything&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://seabright.co.nz/2010/08/16/coworking-in-christchurch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ARM performance</title>
		<link>http://seabright.co.nz/2010/07/04/arm-performance/</link>
		<comments>http://seabright.co.nz/2010/07/04/arm-performance/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 08:59:28 +0000</pubDate>
		<dc:creator>michaelh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://seabright.co.nz/?p=124</guid>
		<description><![CDATA[I recently purchased a couple of KwikByte KBOC_BB2 OMAP3530 based development boards.  I was a bit surprised how slow it was to do a native build of FFmpeg but, after a bit of reflection, it does all add up.
The following tests are for a sample size of one, and therefore aren&#8217;t very scientific, but [...]]]></description>
			<content:encoded><![CDATA[<p>I recently purchased a couple of <a href="http://kwikbyte.com/">KwikByte</a> <a href="http://kwikbyte.com/KBOC_BB2.html">KBOC_BB2</a> OMAP3530 based development boards.  I was a bit surprised how slow it was to do a native build of <a href="http://ffmpeg.org/">FFmpeg</a> but, after a bit of reflection, it does all add up.</p>
<p>The following tests are for a sample size of one, and therefore aren&#8217;t very scientific, but here goes:</p>
<table>
<tr>
<th>Test</th>
<th>Host</th>
<th>Device</th>
<th>Host&#8217;s relative performance</th>
<th>Normalised</th>
</tr>
<tr>
<td>Compile ffmpeg</td>
<td>140 s</td>
<td>2690 s</td>
<td>19.2 x (9.6 x per core)</td>
<td>2.9 x</td>
</tr>
<tr>
<td>BogoMips</td>
<td>4787</td>
<td>494</td>
<td>9.8 x</td>
<td>2.9 x</td>
</tr>
<tr>
<td>Python looper</td>
<td>12.3 million/s</td>
<td>1.32 million/s</td>
<td>9.3 x</td>
<td>2.8 x</td>
</tr>
</table>
<p>The normalised column is corrected for the 3.33 times difference in MHz.  Incidentally, <a href="http://distcc.samba.org/">distcc</a> did a great job of speeding up the ffmpeg build.  Sharing the build across two boards brought the compilation down to 1493 s for a 1.8 x improvement.</p>
<p>The configuration was:</p>
<ul>
<li>The host is a Lenovo R500 laptop with a 2.4 GHz P8600 Core 2 Duo
<li>The device is a KwikByte with a 720 MHz OMAP3530
<li>Ubuntu 10.04 LTS on both
<li>gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5)
<li>Python 2.6.5-0ubuntu1
<li>ffmpeg 0.6
</ul>
<p>The &#8216;Compile ffmpeg&#8217; test involves compiling ffmpeg using the default target configuration.  This may have lead to more or less code being compiled between the two machines.  The host build involved a &#8216;make -sj4&#8242; to keep both cores taxed.  The device involved a &#8216;make -sj3&#8242; to keep the CPU busy.</p>
<p>The &#8216;BogoMips&#8217; test is the BogoMips value reported by the Linux kernel at startup.</p>
<p>The &#8216;Python looper&#8217; test is a simple &#8216;for i in range(500000) &#8230;&#8217; test that counts the number of loops performed in 10 s.</p>
<p>I&#8217;m fairly sure the tests were CPU bound.  Note that the TDP of the P8600 is 25 W and the OMAP3530 is (as best as I can tell) 1.5 W.  The 2.9 x drop in performance is made up for by a 16.7 x drop in power.  I wonder how much power the host was actually using?</p>
<p><b>Update:</b> I had a quick go with the same tests using <a href="http://meego.gitorious.org/qemu-maemo">qemu-maemo</a> to simulate a Cortex-A8 based board.  My P8600 does 0.54 million loops/s while a triple-core AMD Phenom 8650 achieved 0.35.  Running a qemu instance on each core on both machines gives me the equivalent of a 1.2 GHz board, which isn&#8217;t really worth the effort.</p>
<p><b>Update:</b> I had a go with the Python test on a Atom N450 1.66 GHz machine in 64 bit mode.  It scored 3.48 million loops/s or 2.45 x slower per clock than the host.  On this (very poor) benchmark, the Atom is 1.14 x faster per clock than the ARM.  Not surprising when you consider that the Python test probably has poor memory locality and the Atom has a 512 k cache vs the ARMs 32 k.</p>
]]></content:encoded>
			<wfw:commentRss>http://seabright.co.nz/2010/07/04/arm-performance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Announcing wrdk</title>
		<link>http://seabright.co.nz/2010/06/01/announcing-wrdk/</link>
		<comments>http://seabright.co.nz/2010/06/01/announcing-wrdk/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 08:13:20 +0000</pubDate>
		<dc:creator>michaelh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://seabright.co.nz/?p=120</guid>
		<description><![CDATA[I&#8217;m happy to announce wrdk, a development kit for the WikiReader.
wrdk is a pre-built toolchain, libraries, set of examples, and simple
serial loader that makes developing applications for the Openmoko
WikiReader a little bit easier.  Included is fairly high level access
to most of the hardware including the file system, LCD, buttons, and
touch screen.
The development cycle is [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m happy to announce wrdk, a development kit for the WikiReader.</p>
<p>wrdk is a pre-built toolchain, libraries, set of examples, and simple<br />
serial loader that makes developing applications for the Openmoko<br />
WikiReader a little bit easier.  Included is fairly high level access<br />
to most of the hardware including the file system, LCD, buttons, and<br />
touch screen.</p>
<p>The development cycle is pretty easy: write your app, build it, copy<br />
it over to a SD card, and pick the icon off a menu to run it.  The<br />
serial loader, along with a modified WikiReader and custom cable,<br />
speeds this up by letting you reset the device and load a new program<br />
straight from your desktop machine.</p>
<p>Binaries are available for Linux and Windows.  See</p>
<p><a href="http://wrdk.seabright.co.nz/">http://wrdk.seabright.co.nz/</a></p>
<p>for more.</p>
<p>I&#8217;m tempted to offer a pre-modified WikiReader and download cable to<br />
help those who aren&#8217;t electronically inclined.  Please contact me if<br />
you&#8217;d be interested.</p>
]]></content:encoded>
			<wfw:commentRss>http://seabright.co.nz/2010/06/01/announcing-wrdk/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Pong on the WikiReader</title>
		<link>http://seabright.co.nz/2010/05/22/pong-on-the-wikireader/</link>
		<comments>http://seabright.co.nz/2010/05/22/pong-on-the-wikireader/#comments</comments>
		<pubDate>Sat, 22 May 2010 09:26:49 +0000</pubDate>
		<dc:creator>michaelh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://seabright.co.nz/?p=117</guid>
		<description><![CDATA[I&#8217;ve been working on a simple development kit for the Openmoko WikiReader.  I&#8217;d like to get a win32 build up and going before releasing it, but here&#8217;s a bit of a teaser until then:

My son and I made this in a couple of hours.  There&#8217;s a blitting glitch when the ball hits the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on a simple development kit for the Openmoko <a href="http://www.thewikireader.com/">WikiReader</a>.  I&#8217;d like to get a win32 build up and going before releasing it, but here&#8217;s a bit of a teaser until then:</p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/aLd8vXZSAOY&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/aLd8vXZSAOY&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p>My son and I made this in a couple of hours.  There&#8217;s a blitting glitch when the ball hits the right bumper but apart from that it&#8217;s looking pretty good.</p>
]]></content:encoded>
			<wfw:commentRss>http://seabright.co.nz/2010/05/22/pong-on-the-wikireader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bouncing a ball on the WikiReader</title>
		<link>http://seabright.co.nz/2010/04/25/bouncing-a-ball-on-the-wikireader/</link>
		<comments>http://seabright.co.nz/2010/04/25/bouncing-a-ball-on-the-wikireader/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 10:04:56 +0000</pubDate>
		<dc:creator>michaelh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://seabright.co.nz/?p=106</guid>
		<description><![CDATA[One of my standard &#8216;hello world&#8217; applications is bouncing a ball around the screen.  Here&#8217;s a video of the WikiReader version:

The rig at the top is a 3.3 V serial level converter that hooks into the debug connector.  The WikiReader boots a small serial loader from the SD card so that I can [...]]]></description>
			<content:encoded><![CDATA[<p>One of my standard &#8216;hello world&#8217; applications is bouncing a ball around the screen.  Here&#8217;s a video of the WikiReader version:</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/q2krqsawNOk&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/q2krqsawNOk&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>The rig at the top is a 3.3 V serial level converter that hooks into the debug connector.  The WikiReader boots a small serial loader from the SD card so that I can quickly load apps in from the development machine.  The ball starts life as a three colour PNG that is split out into an image and mask.  The mask lets you draw images on top of each other without destroying the one underneath.</p>
<p>Next step is to turn the image drawing code into a more generic blit and have a look at the performance.</p>
]]></content:encoded>
			<wfw:commentRss>http://seabright.co.nz/2010/04/25/bouncing-a-ball-on-the-wikireader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cracking the WikiReader open</title>
		<link>http://seabright.co.nz/2010/04/20/cracking-the-wikireader-open/</link>
		<comments>http://seabright.co.nz/2010/04/20/cracking-the-wikireader-open/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 09:31:03 +0000</pubDate>
		<dc:creator>michaelh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://seabright.co.nz/?p=102</guid>
		<description><![CDATA[Pictures of a cracked-open WikiReader are (suitably) on the wiki
]]></description>
			<content:encoded><![CDATA[<p>Pictures of a cracked-open WikiReader are (suitably) <a href="http://wiki.seabright.co.nz/wiki/WikiReader.html">on the wiki</a></p>
]]></content:encoded>
			<wfw:commentRss>http://seabright.co.nz/2010/04/20/cracking-the-wikireader-open/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First steps on the WikiReader</title>
		<link>http://seabright.co.nz/2010/04/18/first-steps-on-the-wikireader/</link>
		<comments>http://seabright.co.nz/2010/04/18/first-steps-on-the-wikireader/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 05:02:58 +0000</pubDate>
		<dc:creator>michaelh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://seabright.co.nz/?p=98</guid>
		<description><![CDATA[It&#8217;s a small achievement, but I got my first application running on the Openmoko WikiReader.  It&#8217;s a hacked version of their application that only displays a image and single line of text but, still, it&#8217;s a start:

I can think of a range of uses for the device so far:

A scrollable map with details on [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a small achievement, but I got my first application running on the <a href="http://www.thewikireader.com/">Openmoko WikiReader</a>.  It&#8217;s a hacked version of their application that only displays a image and single line of text but, still, it&#8217;s a start:</p>
<p><a href="http://seabright.co.nz/wp-content/uploads/2010/04/WikiReader-First-Small.jpg"><img src="http://seabright.co.nz/wp-content/uploads/2010/04/WikiReader-First-Small.jpg" alt="" title="WikiReader running a simple custom app" width="500" height="434" class="aligncenter size-full wp-image-99" /></a></p>
<p>I can think of a range of uses for the device so far:</p>
<ul>
<li>A scrollable map with details on the towns for when we&#8217;re travelling with the kids
<li>The display for a ATMEGA based simple multimeter and oscilloscope
<li>Sunlight viewable training tool for a friend who rows
</ul>
<p>&#8230;and anything really that needs a nice, small, portable display.</p>
<p>The next step is to figure out how to open the case and hook into the debug header.  Swapping an SD card in and out is acceptable, but spending some time making the tools better is always worthwhile.</p>
]]></content:encoded>
			<wfw:commentRss>http://seabright.co.nz/2010/04/18/first-steps-on-the-wikireader/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Exercising a battery</title>
		<link>http://seabright.co.nz/2010/04/13/exercising-a-battery/</link>
		<comments>http://seabright.co.nz/2010/04/13/exercising-a-battery/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 03:54:00 +0000</pubDate>
		<dc:creator>michaelh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://seabright.co.nz/?p=93</guid>
		<description><![CDATA[I&#8217;ve had an enjoyable time today exercising a new Lithium Polymer (LiPo) battery for a client.  The enjoyable part was how well the tools came together and how little effort was involved in the end.
The battery is a single cell 3.7 V with a 3500 mAh capacity.  I charged it at 1 A [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had an enjoyable time today exercising a new Lithium Polymer (LiPo) battery for a client.  The enjoyable part was how well the tools came together and how little effort was involved in the end.</p>
<p>The battery is a single cell 3.7 V with a 3500 mAh capacity.  I charged it at 1 A using a <a href="http://www.e-fliterc.com/Products/Default.aspx?ProdID=EFLC3000">Celectra EFLC3000</a> peak detect charger and then discharged it through a simple 1.95 Ohm resistive load.  LiPo batteries have a very flat discharge curve so I&#8217;d expect to see a constant supply of power.</p>
<p>Power is V^2 / R so the load should be sinking about 6.6 W.  It&#8217;s surprising how hot things get even at such a low power.</p>
<p>The data was captured using a <a href="http://www.syscompdesign.com/">Syscomp</a> <a href="http://www.syscompdesign.com/CGR101.html">CGR-101</a> PC based oscilloscope.  The scope software has a special data recorder mode that records the current screen worth of data off to a CSV file every &#8216;n&#8217; seconds.  A quick Python script gathered the files, converted the timestamps, and calcuated the mean of each file.  A quick <a href="http://matplotlib.sourceforge.net/">matplotlib</a> script then turned this into a nice looking graph:</p>
<p><a href="http://seabright.co.nz/wp-content/uploads/2010/04/Discharge-2.png"><img src="http://seabright.co.nz/wp-content/uploads/2010/04/Discharge-2.png" alt="Battery discharge curve" title="Discharge 2" width="815" height="615" class="aligncenter size-full wp-image-94" /></a></p>
<p>A bit more scripting gives the instantaneous power:</p>
<p><a href="http://seabright.co.nz/wp-content/uploads/2010/04/Power-2.png"><img src="http://seabright.co.nz/wp-content/uploads/2010/04/Power-2.png" alt="" title="Power 2" width="815" height="615" class="aligncenter size-full wp-image-95" /></a></p>
<p>Rectangular integration shows that the battery delivered 42703 J or 11.9 Wh.  It&#8217;s rated at 3500 mAh@3.7 V or 13.0 Wh.  Similar and probably within the limits of the experiment.</p>
<p>I&#8217;m worried about the load though.  Resistance increases with temperature and the load gets quite hot.  I measured 2.5 Ohms shortly after starting the second run which suggests the actual capacity is more like 9.6 Wh.  I may also have been discharging the battery too fast as the effective capacity drops off with discharge rate.</p>
]]></content:encoded>
			<wfw:commentRss>http://seabright.co.nz/2010/04/13/exercising-a-battery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jobs available</title>
		<link>http://seabright.co.nz/2010/04/04/positions-available/</link>
		<comments>http://seabright.co.nz/2010/04/04/positions-available/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 08:57:43 +0000</pubDate>
		<dc:creator>michaelh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://seabright.co.nz/?p=90</guid>
		<description><![CDATA[A Christchurch based client is interested in hiring an embedded engineer and a C# desktop application engineer.  Please contact me if you&#8217;re interested.  Python or control system knowledge is a plus.
]]></description>
			<content:encoded><![CDATA[<p>A Christchurch based client is interested in hiring an embedded engineer and a C# desktop application engineer.  Please contact me if you&#8217;re interested.  Python or control system knowledge is a plus.</p>
]]></content:encoded>
			<wfw:commentRss>http://seabright.co.nz/2010/04/04/positions-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Ben NanoNote and open hardware</title>
		<link>http://seabright.co.nz/2010/03/18/the-ben-nanonote-and-open-hardware/</link>
		<comments>http://seabright.co.nz/2010/03/18/the-ben-nanonote-and-open-hardware/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 06:07:55 +0000</pubDate>
		<dc:creator>michaelh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://seabright.co.nz/?p=85</guid>
		<description><![CDATA[Update: I got a nice email from Wolfgang at sharism about running Debian on the NanoNote.  See here for more.  It seems that OpenWRT is still the platform of choice but you can opt for Debian when trying out new ideas.
Qi Hardware have an interesting new product called the
Ben NanoNote.  While the [...]]]></description>
			<content:encoded><![CDATA[<p><b>Update:</b> I got a nice email from Wolfgang at sharism about running Debian on the NanoNote.  See <a href="http://sharism.cc/2010/05/02/along-comes-debian/">here</a> for more.  It seems that OpenWRT is still the platform of choice but you can opt for Debian when trying out new ideas.</p>
<p><a href="http://en.qi-hardware.com/wiki/Main_Page">Qi Hardware</a> have an interesting new product called the<br />
<a href="http://sharism.cc/products/ben-nanonote/">Ben NanoNote</a>.  While the <a href="http://en.qi-hardware.com/wiki/Hardware-Ben">specifications</a> (366 MHz <a href="http://www.ingenic.cn/">Ingenic</a> MIPS clone, 32 MB RAM, 2 GB flash, 3&#8243; screen) aren&#8217;t special, the price is interesting ($99 US + ~$17 for shipping to NZ), and the whole concept of open hardware that you could potentially enhance and reproduce is very good. With this chip and software stack you also stand a chance of modifying everything from the bootloader up.</p>
<p>It&#8217;s great to have the schematics but I don&#8217;t think it would be feasible to build a one off version.  The <a href="http://www.arduino.cc/">Arduino</a> succeeds with a open hardware design as the ATMEGA already has everything you need &#8211; hook up some power and you&#8217;re almost done.</p>
<p>There&#8217;s quite a few commercially available projects out there these days that publish schematics:</p>
<ul>
<li>The <a href="http://en.qi-hardware.com/wiki/Schematic">Ben itself</a>
<li>The <a href="http://downloads.openmoko.org/developer/schematics/">OpenMoko GTA01 and GTA02</a>
<li>The <a href="http://wiki.chumby.com/mediawiki/index.php/Hacking_hardware_for_chumby">Chumby One</a> and original Chumby
<li>The <a href="http://www.gumstix.net/Hardware/cat/Schematics/112.html">Gumstix range</a>
<li><b>Update:</b> The <a href="http://code.google.com/p/hawkboard/downloads/list">Hawkboard</a> including schematics and PCB layout
</ul>
<p>This is nice from a hardware engineer point of view as it shows what others consider good style and good design.  We software people have it easy regarding freely available examples of both the good and bad was of writing software.</p>
<p>I don&#8217;t think I&#8217;ll get a NanoNote though.  The price is great but the lack of Wifi and the minimalistic software is a problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://seabright.co.nz/2010/03/18/the-ben-nanonote-and-open-hardware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
