<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>Tech Observer: Linux And Open Source</title>
    <link rel="alternate" type="text/html" href="http://kennethhunt.com/" />
    <link rel="self" type="application/atom+xml" href="http://kennethhunt.com/atom.xml" />
    <id>tag:kennethhunt.com,2007-10-01://1</id>
    <updated>2008-03-03T14:30:25Z</updated>
    <subtitle>Kenneth Hunt</subtitle>
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type Publishing Platform 4.01</generator>

<entry>
    <title>FreeBSD 7.0 Overview Of New Features</title>
    <link rel="alternate" type="text/html" href="http://kennethhunt.com/archives/002047.html" />
    <id>tag:kennethhunt.com,2008://1.2047</id>

    <published>2008-03-03T14:28:57Z</published>
    <updated>2008-03-03T14:30:25Z</updated>

    <summary>I have been working with freebsd for sometime, I am very interested in this article which goes indepth into the new changes that are made for the new version release: FreeBSD is back...</summary>
    <author>
        <name>klsh</name>
        <uri>http://kennethhunt.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://kennethhunt.com/">
        <![CDATA[<p>I have been working with freebsd for sometime, I am very interested in this article which goes indepth into the new changes that are made for the new version release:</p>

<blockquote>
FreeBSD is back to its incredible performance and now can take advantage of multi-core/CPUs systems very well... so well that some benchmarks on both Intel and AMD systems showed release 7.0 being faster than Linux 2.6 when running PostreSQL or MySQL.
</blockquote>]]>
        
    </content>
</entry>

<entry>
    <title>USB Serial Interface For Legacy Port Support Linux and Windows Console Access</title>
    <link rel="alternate" type="text/html" href="http://kennethhunt.com/archives/002046.html" />
    <id>tag:kennethhunt.com,2008://1.2046</id>

    <published>2008-02-27T18:53:36Z</published>
    <updated>2008-02-27T18:55:01Z</updated>

    <summary>I use this device all the time to console into routers and for serial operations on my Dell D410 Laptop and for both Linux and Windows XP OS&apos;s. Works Great!...</summary>
    <author>
        <name>klsh</name>
        <uri>http://kennethhunt.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://kennethhunt.com/">
        <![CDATA[<p>I use this device all the time to console into routers and for serial operations on my Dell D410 Laptop and for both Linux and Windows XP OS's. Works Great!</p>

<p><iframe src="http://rcm.amazon.com/e/cm?t=techobserver-20&o=1&p=8&l=as1&asins=B0000VYJRY&fc1=000000&IS2=1&lt1=_blank&lc1=0000FF&bc1=FFFFFF&bg1=FFFFFF&f=ifr&nou=1" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></p>]]>
        
    </content>
</entry>

<entry>
    <title>andLinux vs cygwin an alternate *nix on windows uses linux kernel port</title>
    <link rel="alternate" type="text/html" href="http://kennethhunt.com/archives/002045.html" />
    <id>tag:kennethhunt.com,2008://1.2045</id>

    <published>2008-02-19T00:24:26Z</published>
    <updated>2008-02-19T00:26:31Z</updated>

    <summary>ok so this is new to me, a supposed replacement for cygwin, since it is a true port of the kernel to windows. hmmmm. check it out. andlinux andLinux is a complete Ubuntu...</summary>
    <author>
        <name>klsh</name>
        <uri>http://kennethhunt.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://kennethhunt.com/">
        <![CDATA[<p>ok so this is new to me, a supposed replacement for cygwin, since it is a true port of the kernel to windows. hmmmm. check it out.</p>

<p><a href="http://www.andlinux.org/">andlinux</a><br />
<blockquote><br />
andLinux is a complete Ubuntu Linux system running seamlessly in Windows 2000 based systems (2000, XP, 2003, Vista [32-bit only]). This project was started for Dynamism for the GP2X community, but its userbase far exceeds its original design. andLinux is free and will remain so, but donations are greatly needed.<br />
</blockquote></p>]]>
        
    </content>
</entry>

<entry>
    <title>SSH tunneled connection to a MySQL server</title>
    <link rel="alternate" type="text/html" href="http://kennethhunt.com/archives/002043.html" />
    <id>tag:kennethhunt.com,2008://1.2043</id>

    <published>2008-02-18T13:49:24Z</published>
    <updated>2008-02-18T13:50:56Z</updated>

    <summary>Nice write up on MySQL and SSH, practically anything that you can connect to can be tunneled over SSH. Tunnelling MySQL Over SSH To set up a tunneled connection to a MySQL server...</summary>
    <author>
        <name>klsh</name>
        <uri>http://kennethhunt.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://kennethhunt.com/">
        <![CDATA[<p>Nice write up on MySQL and SSH, practically anything that you can connect to can be tunneled over SSH.</p>

<p><a href="http://chxo.com/be2/20040511_5667.html">Tunnelling MySQL Over SSH</a><br />
<blockquote><br />
To set up a tunneled connection to a MySQL server at remotehost.com, you can issue the following two commands on any client:</p>

<p>ssh -fNg -L 3307:127.0.0.1:3306 myuser@remotehost.com<br />
mysql -h 127.0.0.1 -P 3307 -u dbuser -p db</p>

<p>The first command tells ssh to log in to remotehost.com as myuser, go into the background (-f) and not execute any remote command (-N), and set up port-forwarding (-L localport:localhost:remoteport ). In this case, we forward port 3307 on localhost to port 3306 on remotehost.com.<br />
</blockquote></p>]]>
        
    </content>
</entry>

<entry>
    <title>Finding the inverse square root of a number with i = 0x5f3759df - (i&gt;&gt;1);</title>
    <link rel="alternate" type="text/html" href="http://kennethhunt.com/archives/002042.html" />
    <id>tag:kennethhunt.com,2008://1.2042</id>

    <published>2008-02-08T20:14:04Z</published>
    <updated>2008-02-08T20:16:46Z</updated>

    <summary>Nice bit of writing on some code archaeology. Not definite in it&apos;s answer, it provides some illumination of the thinking behind complex problem solving. float InvSqrt (float x){ float xhalf = 0.5f*x; int...</summary>
    <author>
        <name>klsh</name>
        <uri>http://kennethhunt.com</uri>
    </author>
    
    <category term="3d" label="3d" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="c" label="c" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="code" label="code" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="id" label="id" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="programming" label="programming" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://kennethhunt.com/">
        <![CDATA[<p>Nice bit of writing on some code archaeology. Not definite in it's answer, it provides some illumination of the thinking behind complex problem solving.</p>

<p><br />
<tt>float InvSqrt (float x){<br />
    float xhalf = 0.5f*x;<br />
    int i = *(int*)&x;<br />
    i = 0x5f3759df - (i>>1);<br />
    x = *(float*)&i;<br />
    x = x*(1.5f - xhalf*x*x);<br />
    return x;<br />
}</tt><br />
<blockquote><br />
Finding the inverse square root of a number has many applications in 3D graphics, not least of all the normalisation of 3D vectors. Without something like the nrm instruction in a modern fragment processor where you can get normalisation of an fp16 3-channel vector for free on certain NVIDIA hardware if you're (or the compiler is!) careful, or if you need to do it outside of a shader program for whatever reason, inverse square root is your friend.</blockquote></p>]]>
        
    </content>
</entry>

<entry>
    <title>Jawr rapid development of resources for Javascript and CSS</title>
    <link rel="alternate" type="text/html" href="http://kennethhunt.com/archives/002041.html" />
    <id>tag:kennethhunt.com,2008://1.2041</id>

    <published>2008-02-04T17:51:51Z</published>
    <updated>2008-02-04T17:53:41Z</updated>

    <summary> jawr Jawr is a tunable packaging solution for Javascript and CSS which allows for rapid development of resources in separate module files. Writing a simple descriptor properties file, and using a servlet...</summary>
    <author>
        <name>klsh</name>
        <uri>http://kennethhunt.com</uri>
    </author>
    
    <category term="css" label="css" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="javascript" label="javascript" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="programming" label="programming" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://kennethhunt.com/">
        <![CDATA[<p><br />
<a href="https://jawr.dev.java.net/">jawr</a><br />
<blockquote><br />
Jawr is a tunable packaging solution for Javascript and CSS which allows for rapid development of resources in separate module files. Writing a simple descriptor properties file, and using a servlet and a tag library are all the requirements to use it.<br />
[...]<br />
Jawr offers the best of both worlds, by combining a powerful bundling-minifying-compressing scheme for optimal service in production, with a rapid development mode for quick change-save-test cycles.<br />
</blockquote></p>]]>
        
    </content>
</entry>

<entry>
    <title>Skynet A Ruby Implementation of Google’s Map/Reduce</title>
    <link rel="alternate" type="text/html" href="http://kennethhunt.com/archives/002040.html" />
    <id>tag:kennethhunt.com,2008://1.2040</id>

    <published>2008-01-17T02:03:00Z</published>
    <updated>2008-01-17T02:09:09Z</updated>

    <summary>More ruby stuff, this is a ruby library implementing MapReduce which is a programming model and an associated implementation for processing and generating large data sets. Users specify a map function that processes...</summary>
    <author>
        <name>klsh</name>
        <uri>http://kennethhunt.com</uri>
    </author>
    
    <category term="programming" label="programming" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="ruby" label="ruby" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://kennethhunt.com/">
        <![CDATA[<p>More ruby stuff, this is a ruby library implementing MapReduce which is a programming model and an associated implementation for processing and generating large data sets. </p>

<p>Users specify a map function that processes a key/value pair to generate a set of intermediate key/value pairs, and a reduce function that merges all intermediate values associated with the same intermediate key.</p>

<p><a href="http://skynet.rubyforge.org/">skynet</a><br />
<blockquote><br />
Skynet is an open source Ruby implementation of Google’s Map/Reduce framework, created at Geni.com. With Skynet, one can easily convert a time-consuming serial task, such as a computationally expensive Rails migration, into a distributed program running on many computers.<br />
</blockquote></p>]]>
        
    </content>
</entry>

<entry>
    <title>The Fountain By Darren Aronofsky</title>
    <link rel="alternate" type="text/html" href="http://kennethhunt.com/archives/002039.html" />
    <id>tag:kennethhunt.com,2008://1.2039</id>

    <published>2008-01-14T18:55:36Z</published>
    <updated>2008-01-14T18:58:46Z</updated>

    <summary>Amazon has this right now for $7.99 new this is the lowest I&apos;ve seen it so far. The Fountain By Darren Aronofsky...</summary>
    <author>
        <name>klsh</name>
        <uri>http://kennethhunt.com</uri>
    </author>
    
    <category term="darrenaronofsky" label="Darren Aronofsky" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="dvd" label="DVD" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="thefountain" label="The Fountain" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://kennethhunt.com/">
        <![CDATA[<p>Amazon has this right now for $7.99 new this is the lowest I've seen it so far.<br />
<iframe src="http://rcm.amazon.com/e/cm?t=techobserver-20&o=1&p=8&l=st1&mode=dvd&search=B00005JPAR&fc1=000000&lt1=&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0" marginheight="0" width="120" height="240" border="0" frameborder="0" style="border:none;" scrolling="no"></iframe><br />
<a href="http://www.amazon.com/gp/search?ie=UTF8&keywords=B00005JPAR&tag=techobserver-20&index=blended&linkCode=ur2&camp=1789&creative=9325">The Fountain By Darren Aronofsky</a><img src="http://www.assoc-amazon.com/e/ir?t=techobserver-20&amp;l=ur2&amp;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>]]>
        
    </content>
</entry>

<entry>
    <title>Encode H.264 Video for the iPod Nano</title>
    <link rel="alternate" type="text/html" href="http://kennethhunt.com/archives/002038.html" />
    <id>tag:kennethhunt.com,2007://1.2038</id>

    <published>2007-12-14T12:29:40Z</published>
    <updated>2007-12-14T12:31:48Z</updated>

    <summary>I haven&apos;t tried this yet, though it looks like exactly what I need to move some video to the new iPod nano that supports video. Howto: Encode H.264 Video for the iPod using...</summary>
    <author>
        <name>klsh</name>
        <uri>http://kennethhunt.com</uri>
    </author>
    
    <category term="bash" label="bash" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="ipod" label="ipod" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="nano" label="nano" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="video" label="video" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://kennethhunt.com/">
        <![CDATA[<p>I haven't tried this yet, though it looks like exactly what I need to move some video to the new iPod nano that supports video.</p>

<blockquote>Howto: Encode H.264 Video for the iPod using ffmpeg
Homer's picture
Mon, 05/02/2007 - 6:57am — Homer

<p>Save this script somewhere, e.g. /usr/local/bin/podit, then chmod 755 /usr/local/bin/podit</p>

<p>#!/bin/sh<br />
# Name:    podit<br />
# Summary: iPod H264 640x480 video transcoder script. <br />
# Version: 1.1.1<br />
# Date:    2007.07.11<br />
# License: GPL Version 3 or Later<br />
# URL:     <a href="http://slated.org/howto_transcode_h264_for_ipod_with_ffmpeg">http://slated.org/howto_transcode_h264_for_ipod_with_ffmpeg</a><br />
</blockquote></p>]]>
        
    </content>
</entry>

<entry>
    <title>Bright and Shiny the All New Google Chart API</title>
    <link rel="alternate" type="text/html" href="http://kennethhunt.com/archives/002037.html" />
    <id>tag:kennethhunt.com,2007://1.2037</id>

    <published>2007-12-13T00:49:47Z</published>
    <updated>2007-12-13T17:01:02Z</updated>

    <summary>wow take a look at this tight little implementation! Nice concept, rapid return of the image and though it did not ship with sparklines support it will add it shortly... Google Chart API...</summary>
    <author>
        <name>klsh</name>
        <uri>http://kennethhunt.com</uri>
    </author>
    
    <category term="chart" label="chart" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="html" label="html" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="programming" label="programming" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="web" label="web" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://kennethhunt.com/">
        <![CDATA[<p>wow take a look at this tight little implementation! Nice concept, rapid return of the image and though it did not ship with sparklines support it will add it shortly...<br />
<a href="http://code.google.com/apis/chart/">Google Chart API</a><br />
<blockquote><br />
The Google Chart API returns a PNG-format image in response to a URL. Several types of image can be generated: line, bar, and pie charts for example. For each image type you can specify attributes such as size, colors, and labels.<br />
<a href="http://code.google.com/apis/chart/"><img src="http://chart.apis.google.com/chart?cht=lc&amp;chs=200x125&amp;chd=s:helloWorld&amp;chxt=x,y&amp;chxl=0:%7CMar%7CApr%7CMay%7CJune%7CJuly%7C1:%7C%7C50+Kb" alt="Yellow line chart with x-axis labelled with March, April, May, June, and July and y-axis with 50Kb" border="0"></a><br />
You can include a Chart API image in a webpage by embedding a URL within an <img> tag. When the webpage is displayed in a browser the Chart API renders the image within the page. <br />
</blockquote></p>]]>
        
    </content>
</entry>

<entry>
    <title>Canon Digital SLR Recommendation: More Storage, Nice Lens And Flash</title>
    <link rel="alternate" type="text/html" href="http://kennethhunt.com/archives/002036.html" />
    <id>tag:kennethhunt.com,2007://1.2036</id>

    <published>2007-12-02T16:24:25Z</published>
    <updated>2007-12-02T16:38:44Z</updated>

    <summary>I have a Canon 20D camera and I have used it extensibly since it came out. It is now superseded by the 40D. But I like it still, though I am shopping for...</summary>
    <author>
        <name>klsh</name>
        <uri>http://kennethhunt.com</uri>
    </author>
    
    <category term="20d" label="20D" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="camera" label="camera" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="flash" label="flash" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="photography" label="photography" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://kennethhunt.com/">
        <![CDATA[<p>I have a Canon 20D camera and I have used it extensibly since it came out. It is now superseded by the 40D. But I like it still, though I am shopping for some upgrades, browsing through amazon's site, I found out there is manufacturers instant rebate that brings some of the lens and flash down. I have always enjoyed reliable service from my Kingston CF cards for storage and 4Gb has never been cheaper.</p>

<p>I found out this is on sale:<br />
<iframe src="http://rcm.amazon.com/e/cm?t=techobserver-20&o=1&p=8&l=as1&asins=B00009XVCZ&fc1=000000&IS2=1&lt1=_blank&lc1=0000FF&bc1=000000&bg1=FFFFFF&f=ifr&nou=1" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe><br />
Canon EF 50mm f1.4 USM</p>

<p>The 4GB compact flash card is a good fit in digital cameras:<br />
<iframe src="http://rcm.amazon.com/e/cm?t=techobserver-20&o=1&p=8&l=as1&asins=B00062WV7C&fc1=000000&IS2=1&lt1=_blank&lc1=0000FF&bc1=000000&bg1=FFFFFF&f=ifr&nou=1" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe><br />
Kingston CF/4GB-S 4 GB ElitePro CompactFlash Card</p>

<p>I'm still on the fence about a flash... I've been relying on quality lens, and willing to loose a shot. But this flash is onsale as well:<br />
<iframe src="http://rcm.amazon.com/e/cm?t=techobserver-20&o=1&p=8&l=as1&asins=B000NP3DJW&fc1=000000&IS2=1&lt1=_blank&lc1=0000FF&bc1=000000&bg1=FFFFFF&f=ifr&nou=1" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe><br />
Canon Speedlite 580EX II Flash</p>

<p>Anyone else have a 20D???</p>]]>
        
    </content>
</entry>

<entry>
    <title>Excel Sparklines Theory and Practice with TinyGraphs</title>
    <link rel="alternate" type="text/html" href="http://kennethhunt.com/archives/002034.html" />
    <id>tag:kennethhunt.com,2007://1.2034</id>

    <published>2007-11-29T16:25:52Z</published>
    <updated>2007-11-29T16:31:56Z</updated>

    <summary>This a little open source plugin for excel to create sparklines. Works Ok. I experimented with MIN MAX to display a High LOW next to the last line. See also Ask E.T.: Sparklines:...</summary>
    <author>
        <name>klsh</name>
        <uri>http://kennethhunt.com</uri>
    </author>
    
    <category term="excel" label="Excel" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="sparklines" label="Sparklines" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="tinygraphs" label="TinyGraphs" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://kennethhunt.com/">
        <![CDATA[<p>This a little open source plugin for excel to create sparklines. Works Ok. I experimented with MIN MAX to display a High LOW next to the last line. See also <a href="http://www.edwardtufte.com/bboard/q-and-a-fetch-msg?msg_id=0001OR&topic_id=1">Ask E.T.: Sparklines: theory and practice</a></p>

<p><br />
<a href="http://www.spreadsheetml.com/products.html">TinyGraphs</a><br />
<blockquote><br />
TinyGraphs is an open source Excel add-in that creates sparklines, mini column graphs, and area graphs from a row of data. It generates beautiful tiny graphics that are as small as a cell and is useful for visualizing large quantities of data, such as stock prices and exchange rates.<br />
</blockquote></p>

<span class="mt-enclosure mt-enclosure-image"><a href="http://www.spreadsheetml.com/products.html"><img alt="sparklines-excel-plugin-graph.png" src="http://kennethhunt.com/archives/imajs/sparklines-excel-plugin-graph.png" width="332" height="397" class="mt-image-left" style="float: left; margin: 0 20px 20px 0;"/></a></span>]]>
        
    </content>
</entry>

<entry>
    <title>Build Your Own Ruby on Rails Web Applications</title>
    <link rel="alternate" type="text/html" href="http://kennethhunt.com/archives/002033.html" />
    <id>tag:kennethhunt.com,2007://1.2033</id>

    <published>2007-11-27T14:47:03Z</published>
    <updated>2007-11-27T14:48:17Z</updated>

    <summary> Patrick Lenz&apos;s incredible Ruby on Rails book is now FREE to Download! Build Your Own Ruby on Rails Web Applications That&apos;s right! No catches, no samples. For the next 60 days, a...</summary>
    <author>
        <name>klsh</name>
        <uri>http://kennethhunt.com</uri>
    </author>
    
    <category term="book" label="book" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="programming" label="programming" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="rails" label="rails" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="ruby" label="ruby" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://kennethhunt.com/">
        <![CDATA[<blockquote>
Patrick Lenz's incredible Ruby on Rails book is now FREE to Download!
<a href="http://www.sitepoint.com/books/rails1/freebook.php">Build Your Own Ruby on Rails Web Applications</a>
That's right! No catches, no samples. For the next 60 days, a COMPLETE COPY of Patrick Lenz's Ruby on Rails beginners' book is free to download.
</blockquote>]]>
        
    </content>
</entry>

<entry>
    <title>Intel D201GLY Powerful and Low Power Mini-ITX Development Platform</title>
    <link rel="alternate" type="text/html" href="http://kennethhunt.com/archives/002030.html" />
    <id>tag:kennethhunt.com,2007://1.2030</id>

    <published>2007-11-08T17:55:22Z</published>
    <updated>2007-11-08T18:03:57Z</updated>

    <summary>The Intel D201GLY Mini-ITX Motherboard according to this article by George Ou is the perfect low power platform for Mini-ITX experimentation, The only downside I see is One single ethernet port. Mini PC...</summary>
    <author>
        <name>klsh</name>
        <uri>http://kennethhunt.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://kennethhunt.com/">
        <![CDATA[<p>The <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&location=http%3A%2F%2Fwww.amazon.com%2FSIS662-MAX-1GB-DDR2-Uatx-Pci%2Fdp%2FB000RH3W88%2F&tag=d201glyl-20&linkCode=ur2&camp=1789&creative=9325">Intel D201GLY Mini-ITX Motherboard</a> according to this article by George Ou is the perfect low  power platform for Mini-ITX experimentation, The only downside I see is One single ethernet port.</p>

<p><a href="http://blogs.zdnet.com/Ou/?p=768">Mini PC cottage industry, is dead at 6</a><br />
<blockquote><br />
The Intel D201GLY is a PC motherboard that’s referred to as a MicroATX when it fact it’s the same size as Via’s popular Mini-ITX motherboard.  The product comes with a “Celeron” Model 215 1.33 GHz CPU with 27 watt TDP (Thermal Design Power) based on a single core version of the “Yonah” processor which is slightly better than a Pentium 4 2 GHz processor.<br />
</blockquote><br />
<img src="http://www.assoc-amazon.com/e/ir?t=d201glyl-20&amp;l=ur2&amp;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /><br />
</p>]]>
        
    </content>
</entry>

<entry>
    <title>Selecting a Wireless Sensor Development Platform | RF Designline</title>
    <link rel="alternate" type="text/html" href="http://kennethhunt.com/archives/002029.html" />
    <id>tag:kennethhunt.com,2007://1.2029</id>

    <published>2007-11-07T14:40:16Z</published>
    <updated>2007-11-07T14:45:52Z</updated>

    <summary>Here are a few quotes from this article on wireless design, note the link for zigbee and the tinyos link. Selecting a Wireless Sensor Development Platform This article will present the problems a...</summary>
    <author>
        <name>klsh</name>
        <uri>http://kennethhunt.com</uri>
    </author>
    
    <category term="embedded" label="embedded" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="programming" label="programming" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="wireless" label="wireless" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://kennethhunt.com/">
        <![CDATA[<p>Here are a few quotes from this article on wireless design, note the link for zigbee and the tinyos link.</p>

<p><a href="http://www.rfdesignline.com/howto/lowpowerrf/202602796">Selecting a Wireless Sensor Development Platform</a><br />
<br/><br/><blockquote>This article will present the problems a designer will face when implementing a wireless sensor network and the factors that are important in deciding which development platform to select. [...]<br />
One of the more interesting parts of the software layers in a wireless sensor network is the Zigbee software stack. Texas instrument offers a free version of the stack called Z-Stack. Z-Stack is compliant with the Zigbee 2006 specification and several platforms. A link to TI's offering is given here: <a href="http://focus.ti.com/docs/toolsw/folders/print/z-stack.html">http://focus.ti.com/docs/toolsw/folders/print/z-stack.html</a><br />
[...]<br />
In order to build support for TCP/IP, USB mass storage devices or provide parallel execution of software tasks one needs to resort to a RTOS. A good free one for sensor devices is Tiny OS. For more information the reader is encouraged to visit the following web sites: <a href="http://www.tinyos.net">www.tinyos.net</a>, and <a href="http://www.sensinode.com">www.sensinode.com</a>.<br />
</blockquote></p>]]>
        
    </content>
</entry>

</feed>
