<?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>MightyOhm</title>
	<atom:link href="http://mightyohm.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://mightyohm.com/blog</link>
	<description>Join the resistance.</description>
	<lastBuildDate>Thu, 02 Sep 2010 20:11:18 +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>Video: Staver Electromechanical Vane Display</title>
		<link>http://mightyohm.com/blog/2010/09/video-staver-electromechanical-vane-display/</link>
		<comments>http://mightyohm.com/blog/2010/09/video-staver-electromechanical-vane-display/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 20:02:09 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Electronics]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://mightyohm.com/blog/?p=3054</guid>
		<description><![CDATA[Here&#8217;s another neat video from Brian Stuckey of ineedcaffeine.com.
If anyone knows where to find more of these displays, I would love to get my hands on some!

Staver Electromechanical Vane / Flip 7 Segment Display from Brian Stuckey on Vimeo.


Related posts:Macro video of a hard drive in use



Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/08/macro-video-of-hard-drive-in-use/' rel='bookmark' title='Permanent Link: Macro video of a hard drive in use'>Macro video of a hard drive in use</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s another neat video from <a href="http://vimeo.com/brianstuckey">Brian Stuckey</a> of <a href="http://www.ineedcaffeine.com">ineedcaffeine.com</a>.</p>
<p>If anyone knows where to find more of these displays, I would love to get my hands on some!</p>
<p><iframe src="http://player.vimeo.com/video/14378093?byline=0&amp;portrait=0&amp;color=ff000d" width="500" height="281" frameborder="0"></iframe></p>
<p><a href="http://vimeo.com/14378093">Staver Electromechanical Vane / Flip 7 Segment Display</a> from <a href="http://vimeo.com/brianstuckey">Brian Stuckey</a> on <a href="http://vimeo.com">Vimeo</a>.</p>


<p>Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/08/macro-video-of-hard-drive-in-use/' rel='bookmark' title='Permanent Link: Macro video of a hard drive in use'>Macro video of a hard drive in use</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://mightyohm.com/blog/2010/09/video-staver-electromechanical-vane-display/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix for broken avr-size in Ubuntu 10.04 (Lucid Lynx)</title>
		<link>http://mightyohm.com/blog/2010/08/fix-for-broken-avr-size-in-ubuntu-10-04-lucid/</link>
		<comments>http://mightyohm.com/blog/2010/08/fix-for-broken-avr-size-in-ubuntu-10-04-lucid/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 03:17:29 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Microcontrollers]]></category>
		<category><![CDATA[AVR]]></category>
		<category><![CDATA[avr-gcc]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mightyohm.com/blog/?p=3045</guid>
		<description><![CDATA[If you have never used it before, avr-size is a very useful command that does a relatively simple thing &#8211; it tells you how large your compiled avr-gcc programs are.  This is very useful knowledge when you are trying to fit as much code as possible into a part with only a few K of flash memory. [...]


Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/03/run-avrdude-without-root-privs-in-ubuntu/' rel='bookmark' title='Permanent Link: Run avrdude on Ubuntu without root'>Run avrdude on Ubuntu without root</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>If you have never used it before, <a href="http://ccrma.stanford.edu/planetccrma/man/man1/avr-size.1.html">avr-size</a> is a very useful command that does a relatively simple thing &#8211; it tells you how large your compiled avr-gcc programs are.  This is very useful knowledge when you are trying to fit as much code as possible into a part with only a few K of flash memory.  Additionally, the actual flash footprint of an AVR program is not something you can easily distill from a .hex file.  Hex files are usually much larger than the actual compiled code due to the overhead of that file format.</p>
<p>avr-size comes with the binutils-avr package in Ubuntu (and is installed as part of WinAVR and CrossPack on Windows and OSX, respectively).  Unfortunately, Ubuntu 10.04 (Lucid Lynx) ships with a broken version of avr-size that doesn&#8217;t include the necessary patches to support the AVR.</p>
<p>To see if your avr-size is working, open a Terminal in Lucid and try executing this command on a compiled avr-gcc .elf file of your choice:</p>
<p><code><strong>avr-size -C --mcu=attiny2313 main.elf</strong></code></p>
<p>You&#8217;ll probably see something like this:</p>
<p><code>avr-size: invalid option -- 'C'<br />
Usage: avr-size [option(s)] [file(s)]<br />
Displays the sizes of sections inside binary files<br />
If no input file(s) are specified, a.out is assumed<br />
The options are:<br />
-A|-B     --format={sysv|berkeley}  Select output style (default is berkeley)<br />
-o|-d|-x  --radix={8|10|16}         Display numbers in octal, decimal or hex<br />
-t        --totals                  Display the total sizes (Berkeley only)<br />
--common                  Display total size for *COM* syms<br />
--target=&lt;bfdname&gt;        Set the binary file format<br />
@&lt;file&gt;                   Read options from &lt;file&gt;<br />
-h        --help                    Display this information<br />
-v        --version                 Display the program's version<br />
avr-size: supported targets: elf32-avr elf32-little elf32-big srec symbolsrec verilog tekhex binary ihex<br />
</code></p>
<p>Bad news, but it&#8217;s not surprising.  You have the broken version of avr-size that comes with binutils-avr for Lucid.</p>
<h3>The solution:</h3>
<p>I was able to fix this issue by installing the binutils-avr package for Debian Squeeze, an approach I learned about from <a href="https://bugs.launchpad.net/ubuntu/+source/binutils-avr/+bug/576676">this Ubuntu bug report</a>.</p>
<p>To download the Debian binutils-avr package, either go to the <a href="http://packages.debian.org/squeeze/amd64/binutils-avr/download">Debian package repository</a> or execute this command:</p>
<p><code><strong>wget "http://ftp.us.debian.org/debian/pool/main/b/binutils-avr/binutils-avr_2.20.1-1_amd64.deb"</strong></code></p>
<p>Now install the package by double clicking on it or executing:</p>
<p><code><strong>sudo dpkg -i binutils-avr_2.20.1-1_amd64.deb</strong></code></p>
<p>If you tell Ubuntu to &#8220;hold&#8221; the package you just installed, it should stop trying to revert to the broken version in the Lucid repository every time you run a system update:</p>
<p><code><strong>echo "binutils-avr hold" | sudo dpkg --set-selections</strong></code></p>
<p>You can check the hold status by running</p>
<p><code><strong>sudo dpkg --get-selections | grep binutils-avr<br />
</strong></code></p>
<p>The status should be shown as &#8220;hold&#8221; (not &#8220;install&#8221;).</p>
<p>Now if you run avr-size, you should see the special AVR option &#8216;-C&#8217; is now present.</p>
<p><code>jkeyzer@atom:~$<strong> avr-size --help</strong></code></p>
<p><code>Usage: avr-size [option(s)] [file(s)]<br />
Displays the sizes of sections inside binary files<br />
If no input file(s) are specified, a.out is assumed<br />
The options are:<br />
-A|-B|-C  --format={sysv|berkeley|avr}  Select output style (default is berkeley)<br />
--mcu=&lt;avrmcu&gt;            MCU name for AVR format only<br />
-o|-d|-x  --radix={8|10|16}         Display numbers in octal, decimal or hex<br />
-t        --totals                  Display the total sizes (Berkeley only)<br />
--common                  Display total size for *COM* syms<br />
--target=&lt;bfdname&gt;        Set the binary file format<br />
@&lt;file&gt;                   Read options from &lt;file&gt;<br />
-h        --help                    Display this information<br />
-v        --version                 Display the program's version<br />
avr-size: supported targets: elf32-avr coff-avr coff-ext-avr elf32-little elf32-big srec symbolsrec verilog tekhex binary ihex</code></p>
<p><code> </code></p>
<p><code>Report bugs to &lt;http://www.sourceware.org/bugzilla/&gt;</code></p>
<p>You can also test it out on a compiled .elf file:</p>
<p><code><strong><span style="font-weight: normal;">jkeyzer@atom:~$</span> avr-size -C --mcu=attiny2313 main.elf</strong></code></p>
<p><code>AVR Memory Usage<br />
----------------<br />
Device: attiny2313</code></p>
<p><code> </code></p>
<p><code>Program:    2008 bytes (98.0% Full)<br />
(.text + .data + .bootloader)</code></p>
<p><code> </code></p>
<p><code>Data:         23 bytes (18.0% Full)<br />
(.data + .bss + .noinit)</code></p>
<p>It works!  You now have a working avr-size command for Ubuntu.</p>
<p>There is a good chance this package will eventually be fixed in the Lucid repository, but based on the bug report above, it could be a while (2012?) before we see an update.  Until then, installing the Debian package seems to be a good solution.</p>
<p>If anyone reading this is close to the Ubuntu package maintainers, can you please kick them about this issue?</p>


<p>Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/03/run-avrdude-without-root-privs-in-ubuntu/' rel='bookmark' title='Permanent Link: Run avrdude on Ubuntu without root'>Run avrdude on Ubuntu without root</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://mightyohm.com/blog/2010/08/fix-for-broken-avr-size-in-ubuntu-10-04-lucid/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Ahh, that&#8217;s better!</title>
		<link>http://mightyohm.com/blog/2010/08/ahh-thats-better/</link>
		<comments>http://mightyohm.com/blog/2010/08/ahh-thats-better/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 16:34:01 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[austin]]></category>
		<category><![CDATA[ISP]]></category>
		<category><![CDATA[roadrunner]]></category>
		<category><![CDATA[speedtest]]></category>
		<category><![CDATA[timewarner]]></category>

		<guid isPermaLink="false">http://mightyohm.com/blog/?p=3040</guid>
		<description><![CDATA[About a month ago, I complained about Time Warner&#8217;s anemic upstream bandwidth cap on home cable modem service.  (512k!  Oh, the humanity!)
Well, a phone call to Time Warner and $10 a month later, my cap has been increased to 2 Mb.  They call this their &#8220;Turbo&#8221; plan.  (Turbo == fast, right?)
The asymmetry of my speedtest result [...]


Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/08/measuring-network-performance-with-iperf/' rel='bookmark' title='Permanent Link: Measuring network performance with iperf'>Measuring network performance with iperf</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>About a month ago, <a href="http://mightyohm.com/blog/2010/08/getting-settled-in-austin/">I complained</a> about Time Warner&#8217;s anemic upstream bandwidth cap on home cable modem service.  (512k!  Oh, the humanity!)</p>
<p>Well, a phone call to Time Warner and $10 a month later, my cap has been increased to 2 Mb.  They call this their &#8220;Turbo&#8221; plan.  (Turbo == fast, right?)</p>
<p>The asymmetry of my speedtest result below is still laughable, but the improvement in upstream AND downstream performance is <em>very </em>noticeable.  Now my uploads to Flickr don&#8217;t completely saturate the connection and more than one person can actually use the network without hosing everyone else.</p>
<p>I still suspect that my upstream bandwidth puts a cap on the actual download performance I can achieve.  I haven&#8217;t been able to find a rule of thumb to calculate how much upstream bandwidth is required to support a 20+ Mb/s download.</p>
<p>Surely there is a relationship between data coming down the pipe and the acknowledgements (or other handshaking packets) that are sent back?</p>
<p><a class="tt-flickr tt-flickr-Original" title="Ahh, that's better." href="http://www.flickr.com/photos/mightyohm/4930354680/"><img class="alignnone" src="http://farm5.static.flickr.com/4079/4930354680_e021600ef6_o.png" alt="Ahh, that's better." width="300" height="135" /></a></p>


<p>Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/08/measuring-network-performance-with-iperf/' rel='bookmark' title='Permanent Link: Measuring network performance with iperf'>Measuring network performance with iperf</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://mightyohm.com/blog/2010/08/ahh-thats-better/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Macro video of a hard drive in use</title>
		<link>http://mightyohm.com/blog/2010/08/macro-video-of-hard-drive-in-use/</link>
		<comments>http://mightyohm.com/blog/2010/08/macro-video-of-hard-drive-in-use/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 21:13:07 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Electronics]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://mightyohm.com/blog/?p=3033</guid>
		<description><![CDATA[
2.5 Inch Hard Drive Macro HD Video from Brian Stuckey on Vimeo.
An exposed hard drive in operation.  See more here:
Hard Drive In Use Video
Sadly, there is no sound, but the video is amazing.  Check out Brian&#8217;s other videos on Vimeo or at his website ineedcaffeine.com.


Related posts:The Tech Junkies Build a Wifi Radio (Video)



Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/05/the-tech-junkies-build-a-wifi-radio-video/' rel='bookmark' title='Permanent Link: The Tech Junkies Build a Wifi Radio (Video)'>The Tech Junkies Build a Wifi Radio (Video)</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/7931176?byline=0&amp;portrait=0" width="500" height="281" frameborder="0"></iframe></p>
<p><a href="http://vimeo.com/7931176">2.5 Inch Hard Drive Macro HD Video</a> from <a href="http://vimeo.com/brianstuckey">Brian Stuckey</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>An exposed hard drive in operation.  See more here:<br />
<a href="http://www.ineedcaffeine.com/content/2009/12/hard-drive-in-use-video/">Hard Drive In Use Video</a></p>
<p>Sadly, there is no sound, but the video is amazing.  Check out Brian&#8217;s other videos on Vimeo or at his website <a href="http://www.ineedcaffeine.com/content/">ineedcaffeine.com</a>.</p>


<p>Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/05/the-tech-junkies-build-a-wifi-radio-video/' rel='bookmark' title='Permanent Link: The Tech Junkies Build a Wifi Radio (Video)'>The Tech Junkies Build a Wifi Radio (Video)</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://mightyohm.com/blog/2010/08/macro-video-of-hard-drive-in-use/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>The &#8216;original&#8217; oscilloscope Tetris</title>
		<link>http://mightyohm.com/blog/2010/08/the-original-oscilloscope-tetris/</link>
		<comments>http://mightyohm.com/blog/2010/08/the-original-oscilloscope-tetris/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 16:24:40 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Agilent]]></category>
		<category><![CDATA[oscilloscope]]></category>
		<category><![CDATA[tetris]]></category>

		<guid isPermaLink="false">http://mightyohm.com/blog/?p=3029</guid>
		<description><![CDATA[

One of my electronics labs in college had a few of these scopes (Agilent 54600B).  I can&#8217;t remember who originally showed me how to access the game, but it was a great way to show off to the undergrads.  You hold down two unlabeled buttons in the System/Utility menu and the game starts [...]


Related posts:<ol><li><a href='http://mightyohm.com/blog/2009/11/agilent-dso1000-firmware-update-confirms-rigol-connection/' rel='bookmark' title='Permanent Link: Agilent firmware update confirms Rigol connection'>Agilent firmware update confirms Rigol connection</a></li>
<li><a href='http://mightyohm.com/blog/2009/10/guess-the-cable-length-to-win-stickers/' rel='bookmark' title='Permanent Link: Guess the cable length to win stickers!'>Guess the cable length to win stickers!</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/Y08Gd-lC5cE?fs=1&amp;hl=en_US&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Y08Gd-lC5cE?fs=1&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/dCrefzlt7IQ?fs=1&amp;hl=en_US&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/dCrefzlt7IQ?fs=1&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p>One of my electronics labs in college had a few of these scopes (Agilent 54600B).  I can&#8217;t remember who originally showed me how to access the game, but it was a great way to show off to the undergrads.  You hold down two unlabeled buttons in the System/Utility menu and the game starts up.</p>
<p>Alas, I don&#8217;t think my DSO1014A has such a feature&#8230;</p>


<p>Related posts:<ol><li><a href='http://mightyohm.com/blog/2009/11/agilent-dso1000-firmware-update-confirms-rigol-connection/' rel='bookmark' title='Permanent Link: Agilent firmware update confirms Rigol connection'>Agilent firmware update confirms Rigol connection</a></li>
<li><a href='http://mightyohm.com/blog/2009/10/guess-the-cable-length-to-win-stickers/' rel='bookmark' title='Permanent Link: Guess the cable length to win stickers!'>Guess the cable length to win stickers!</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://mightyohm.com/blog/2010/08/the-original-oscilloscope-tetris/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>AVR HV Rescue Shield Code Update 1.2</title>
		<link>http://mightyohm.com/blog/2010/08/avr-hv-rescue-shield-code-update-1-2/</link>
		<comments>http://mightyohm.com/blog/2010/08/avr-hv-rescue-shield-code-update-1-2/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 07:03:24 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Microcontrollers]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[AVR]]></category>
		<category><![CDATA[kits]]></category>
		<category><![CDATA[rescue shield]]></category>

		<guid isPermaLink="false">http://mightyohm.com/blog/?p=3027</guid>
		<description><![CDATA[Version 1.2 of the Arduino sketch that powers the AVR HV Rescue Shield is now available for download.
The revised sketch now displays the target AVR&#8217;s existing fuse settings before asking you for new ones.
I also cleaned up and reworked the code in a couple places, but these changes shouldn&#8217;t affect the existing functionality.
If you have [...]


Related posts:<ol><li><a href='http://mightyohm.com/blog/2009/09/looking-for-feedback-on-the-avr-hv-rescue-shield/' rel='bookmark' title='Permanent Link: Looking for feedback on the AVR HV Rescue Shield'>Looking for feedback on the AVR HV Rescue Shield</a></li>
<li><a href='http://mightyohm.com/blog/2009/11/minor-updates-to-avr-hv-rescue-shield/' rel='bookmark' title='Permanent Link: Minor updates to the AVR HV Rescue Shield'>Minor updates to the AVR HV Rescue Shield</a></li>
<li><a href='http://mightyohm.com/blog/2009/09/avr-hv-rescue-shield-kits-back-in-stock-new-lower-pricing/' rel='bookmark' title='Permanent Link: AVR HV Rescue Shield kits back in stock, new lower pricing!'>AVR HV Rescue Shield kits back in stock, new lower pricing!</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>Version 1.2 of the Arduino sketch that powers the <a href="http://mightyohm.com/blog/products/avr-hv-rescue-shield/">AVR HV Rescue Shield</a> is now <a href="http://mightyohm.com/blog/products/avr-hv-rescue-shield/source-code/">available for download</a>.</p>
<p>The revised sketch now displays the target AVR&#8217;s existing fuse settings before asking you for new ones.</p>
<p>I also cleaned up and reworked the code in a couple places, but these changes shouldn&#8217;t affect the existing functionality.</p>
<p>If you have any issues or questions about the new code, post them in the <a href="http://mightyohm.com/forum/viewforum.php?f=7">support forum</a> or <a href="http://mightyohm.com/blog/contact/">contact me directly</a>.</p>


<p>Related posts:<ol><li><a href='http://mightyohm.com/blog/2009/09/looking-for-feedback-on-the-avr-hv-rescue-shield/' rel='bookmark' title='Permanent Link: Looking for feedback on the AVR HV Rescue Shield'>Looking for feedback on the AVR HV Rescue Shield</a></li>
<li><a href='http://mightyohm.com/blog/2009/11/minor-updates-to-avr-hv-rescue-shield/' rel='bookmark' title='Permanent Link: Minor updates to the AVR HV Rescue Shield'>Minor updates to the AVR HV Rescue Shield</a></li>
<li><a href='http://mightyohm.com/blog/2009/09/avr-hv-rescue-shield-kits-back-in-stock-new-lower-pricing/' rel='bookmark' title='Permanent Link: AVR HV Rescue Shield kits back in stock, new lower pricing!'>AVR HV Rescue Shield kits back in stock, new lower pricing!</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://mightyohm.com/blog/2010/08/avr-hv-rescue-shield-code-update-1-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Measuring network performance with iperf</title>
		<link>http://mightyohm.com/blog/2010/08/measuring-network-performance-with-iperf/</link>
		<comments>http://mightyohm.com/blog/2010/08/measuring-network-performance-with-iperf/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 16:41:15 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[ethernet]]></category>
		<category><![CDATA[iperf]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[Wifi]]></category>

		<guid isPermaLink="false">http://mightyohm.com/blog/?p=3016</guid>
		<description><![CDATA[My new place in Austin came with a huge perk for a tech geek like me &#8211; it came pre-wired for ethernet in every room.  (Well, technically not every room is wired.  The laundry room, bathrooms, and garage are not, an understandable oversight.)
After installing a new D-Link Gigabit Ethernet Switch, I wanted to check the [...]]]></description>
			<content:encoded><![CDATA[<p>My new place in Austin came with a huge perk for a tech geek like me &#8211; it came pre-wired for ethernet in every room.  (Well, technically not <em>every</em> room is wired.  The laundry room, bathrooms, and garage are not, an understandable oversight.)</p>
<p>After installing a new <a href="http://www.anrdoezrs.net/click-3238164-10440897?url=http%3A%2F%2Fwww.newegg.com%2FProduct%2FProduct.aspx%3FItem%3DN82E16833127082%26nm_mc%3DAFC-C8Junction%26cm_mmc%3DAFC-C8Junction-_-Network%2B-%2BSwitches-_-D-Link-_-33127082&amp;cjsku=N82E16833127082" target="_top">D-Link Gigabit Ethernet Switch</a><img src="http://www.ftjcfx.com/image-3238164-10440897" border="0" alt="" width="1" height="1" />, I wanted to check the throughput to see if I was actually getting gigabit speeds &#8211; particularly because the house is wired with CAT-5e cable (and not the recommended <a href="http://en.wikipedia.org/wiki/Category_6_cable">CAT-6</a>).</p>
<p>There are many ways to measure network throughput.  In the past I have usually copied a file across the network and used a stopwatch to get a relative sense of speed.  However, due to file sharing protocol overhead I always got disappointing results and never knew maximum capability of my network.</p>
<p>This time, based on the advice of a more network-savvy friend, I decided to use a command-line tool called <a href="http://sourceforge.net/projects/iperf/">iperf</a>.</p>
<p>iperf is a command-line tool to measure network performance.  It is very powerful, but also easy to use for simple tests.  For a more complete overview of what iperf is and what it can be used for, check out <a href="http://openmaniak.com/iperf.php">this tutorial</a> or <a href="http://en.wikipedia.org/wiki/Iperf">the iperf page on Wikipedia</a>.  iperf has a lot of options, and I won&#8217;t cover the majority of them here.  For more usage information, consult the <a href="http://manpages.ubuntu.com/manpages/lucid/en/man1/iperf.1.html">iperf manual</a>.</p>
<p>If you run Debian or Ubuntu (Linux), iperf can be installed by executing</p>
<pre><strong>sudo apt-get install iperf</strong></pre>
<p>I did these tests with OS X on the Mac since both of my Macs have gigabit ethernet ports and my older PCs don&#8217;t.  A package for iperf is conveniently available from <a href="http://www.macports.org/">Macports</a>.  It can be installed via the graphical package manager <a href="http://porticus.alittledrop.com/">Porticus</a> or opening a Terminal window and typing</p>
<pre><strong>sudo port install iperf</strong></pre>
<p>In my case, all I wanted was a quick test of TCP/IP network performance.  This is easy to do, but it requires two computers, a client and a server, both connected to the network under test.  Ideally, there should be no other network traffic during the test, as this will affect the results.</p>
<p>On the first computer, launch the iperf server by executing</p>
<pre><strong>iperf -s</strong></pre>
<p>You should see something like this:</p>
<pre>------------------------------------------------------------
Server listening on TCP port 5001
TCP window size: 64.0 KByte (default)
------------------------------------------------------------</pre>
<p>On the 2nd computer (the client), open a Terminal window and run</p>
<pre><strong>iperf -c </strong>&lt;IP address or hostname of server&gt;<strong> -i 1</strong></pre>
<p>Within a few seconds, you should start to see reports coming in on both the client and server terminal windows:</p>
<pre>------------------------------------------------------------
Client connecting to mini.home, TCP port 5001
TCP window size:   129 KByte (default)
------------------------------------------------------------
[  3] local 192.168.24.135 port 65142 connected with 192.168.24.77 port 5001
[ ID] Interval       Transfer     Bandwidth
[  3]  0.0- 1.0 sec    110 MBytes    924 Mbits/sec
[ ID] Interval       Transfer     Bandwidth
[  3]  1.0- 2.0 sec    101 MBytes    850 Mbits/sec
[ ID] Interval       Transfer     Bandwidth
[  3]  2.0- 3.0 sec    109 MBytes    914 Mbits/sec
[ ID] Interval       Transfer     Bandwidth
[  3]  3.0- 4.0 sec    100 MBytes    841 Mbits/sec
[ ID] Interval       Transfer     Bandwidth
[  3]  4.0- 5.0 sec    111 MBytes    927 Mbits/sec
[ ID] Interval       Transfer     Bandwidth
[  3]  5.0- 6.0 sec    102 MBytes    853 Mbits/sec
[ ID] Interval       Transfer     Bandwidth
[  3]  6.0- 7.0 sec    110 MBytes    923 Mbits/sec
[ ID] Interval       Transfer     Bandwidth
[  3]  7.0- 8.0 sec    102 MBytes    858 Mbits/sec
[ ID] Interval       Transfer     Bandwidth
[  3]  8.0- 9.0 sec  79.4 MBytes    666 Mbits/sec
[ ID] Interval       Transfer     Bandwidth
[  3]  9.0-10.0 sec  93.6 MBytes    785 Mbits/sec
[ ID] Interval       Transfer     Bandwidth
[  3]  0.0-10.0 sec  1018 MBytes    854 Mbits/sec</pre>
<p>The last report (for the interval 0.0-10.0 sec) is the average throughput for the entire test.  I&#8217;m more than happy with 854 Mbits (927 Mbits/sec peak!) given my fairly long runs of CAT-5e cable and other machines using the network.   Contrast this with my results over 802.11g wireless:</p>
<pre>[ ID] Interval       Transfer     Bandwidth
[  3]  0.0-10.0 sec  24.9 MBytes  20.9 Mbits/sec</pre>
<div>Ouch.</div>
]]></content:encoded>
			<wfw:commentRss>http://mightyohm.com/blog/2010/08/measuring-network-performance-with-iperf/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bluetooth Headset inside a [toy] Handgun</title>
		<link>http://mightyohm.com/blog/2010/08/bluetooth-headset-handgun/</link>
		<comments>http://mightyohm.com/blog/2010/08/bluetooth-headset-handgun/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 13:30:33 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[DIY]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[bluetooth]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[handset]]></category>
		<category><![CDATA[makezine]]></category>

		<guid isPermaLink="false">http://mightyohm.com/blog/?p=3005</guid>
		<description><![CDATA[
MayorMike, inspired by the article I wrote for Make vol. 20 (Retro Wireless Handset), stuck a bluetooth headset in a plastic toy gun to create his Handgun Bluetooth Earpiece Project.  The best part &#8211; the earphone is located at the end of the barrel, so to answer a call, you stick it up to your ear.  Genius.
The [...]


Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/01/samsung-wep470-bluetooth-headset-pics/' rel='bookmark' title='Permanent Link: Samsung WEP470 Bluetooth Headset Pics'>Samsung WEP470 Bluetooth Headset Pics</a></li>
<li><a href='http://mightyohm.com/blog/2010/01/3-bluetooth-headset-on-woot/' rel='bookmark' title='Permanent Link: $3 Bluetooth Headset on Woot'>$3 Bluetooth Headset on Woot</a></li>
<li><a href='http://mightyohm.com/blog/2010/06/maker-faire-retro-bluetooth-handset-talk-on-ustream/' rel='bookmark' title='Permanent Link: Maker Faire Retro Bluetooth Handset Talk on Ustream'>Maker Faire Retro Bluetooth Handset Talk on Ustream</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><a href="http://fromthedeskofthemayor.blogspot.com/2010/08/handgun-bluetooth-earpiece-project.html"><img class="alignnone size-full wp-image-3007" title="Bluetooth Handgun - Mike Haeg" src="http://mightyohm.com/blog/wp-content/uploads/2010/08/bluetooth-handgun-mike-haeg.jpg" alt="" width="400" height="266" /></a></p>
<p><a href="http://fromthedeskofthemayor.blogspot.com/">MayorMike</a>, inspired by the article I wrote for Make vol. 20 (<a href="http://mightyohm.com/blog/2009/10/retro-wireless-handset-in-make-magazine/">Retro Wireless Handset</a>), stuck a bluetooth headset in a plastic toy gun to create his <a href="http://fromthedeskofthemayor.blogspot.com/2010/08/handgun-bluetooth-earpiece-project.html">Handgun Bluetooth Earpiece Project</a>.  The best part &#8211; the earphone is located at the end of the barrel, so to answer a call, you stick it up to your ear.  Genius.</p>
<p>The innards are shown below.</p>
<p><a href="http://fromthedeskofthemayor.blogspot.com/2010/08/handgun-bluetooth-earpiece-project.html"><img class="alignnone size-full wp-image-3006" title="Bluetooth Handgun Inside - Mike Haeg" src="http://mightyohm.com/blog/wp-content/uploads/2010/08/bluetooth-handgun-inside-mike-haeg.jpg" alt="" width="400" height="225" /></a></p>
<p>Nice work, MayorMike!  May I suggest that you pair this with a <a href="http://www.flickr.com/photos/openfly/sets/72157612174831216/">Hand Grenade MP3 Player</a>?</p>
<p>via <a href="http://www.boingboing.net/2010/08/02/handgun-bluetooth-ea.html">BoingBoing</a></p>


<p>Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/01/samsung-wep470-bluetooth-headset-pics/' rel='bookmark' title='Permanent Link: Samsung WEP470 Bluetooth Headset Pics'>Samsung WEP470 Bluetooth Headset Pics</a></li>
<li><a href='http://mightyohm.com/blog/2010/01/3-bluetooth-headset-on-woot/' rel='bookmark' title='Permanent Link: $3 Bluetooth Headset on Woot'>$3 Bluetooth Headset on Woot</a></li>
<li><a href='http://mightyohm.com/blog/2010/06/maker-faire-retro-bluetooth-handset-talk-on-ustream/' rel='bookmark' title='Permanent Link: Maker Faire Retro Bluetooth Handset Talk on Ustream'>Maker Faire Retro Bluetooth Handset Talk on Ustream</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://mightyohm.com/blog/2010/08/bluetooth-headset-handgun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting settled in Austin</title>
		<link>http://mightyohm.com/blog/2010/08/getting-settled-in-austin/</link>
		<comments>http://mightyohm.com/blog/2010/08/getting-settled-in-austin/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 18:39:49 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[austin]]></category>

		<guid isPermaLink="false">http://mightyohm.com/blog/?p=2997</guid>
		<description><![CDATA[
We made it!  Driving a moving truck almost 2000 miles across America was no picnic (it gets HOT in Arizona) but ~4 days of travel were relatively uneventful (only one flat tire!). Pretty much everything made it intact, including a few hundred pounds of lab benches and equipment.  (Note to self, next time get twice [...]


Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/03/austin-hackerspace-pics/' rel='bookmark' title='Permanent Link: Austin Hackerspace Pics'>Austin Hackerspace Pics</a></li>
<li><a href='http://mightyohm.com/blog/2010/06/mightyohm-is-moving/' rel='bookmark' title='Permanent Link: MightyOhm is moving!'>MightyOhm is moving!</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><a class="tt-flickr tt-flickr-Medium" title="Welcome to Texas" href="http://www.flickr.com/photos/mightyohm/4854209166/"><img class="alignnone" src="http://farm5.static.flickr.com/4073/4854209166_17010d5b41.jpg" alt="Welcome to Texas" width="500" height="281" /></a></p>
<p>We made it!  Driving a moving truck almost 2000 miles across America was no picnic (it gets HOT in Arizona) but ~4 days of travel were relatively uneventful (only one flat tire!). Pretty much everything made it intact, including a few hundred pounds of lab benches and equipment.  (Note to self, next time get twice as many moving pads as seems necessary!)</p>
<p>My wife and I have been getting acquainted with our new city.  One of the interesting/unique things about Austin is the local trailer food scene.  One example, shown below, is <a href="http://oddduckfarmtotrailer.com/">odd duck</a>, where you can purchase local, sustainable, gourmet wood fired food out of a trailer in South Austin.  <em>Yum.</em></p>
<p><a class="tt-flickr tt-flickr-Medium" title="odd duck" href="http://www.flickr.com/photos/mightyohm/4853607901/"><img class="alignnone" src="http://farm5.static.flickr.com/4121/4853607901_f133c737d1.jpg" alt="odd duck" width="500" height="374" /></a></p>
<p>The biggest downside to Austin I have found so far (aside from the lack of In-n-Out and Trader Joe&#8217;s) has been the pitiful upstream bandwidth that Time Warner provides with their Roadrunner internet service.   Check out these Speedtest results:</p>
<p><a class="tt-flickr tt-flickr-Original" title="Time Warner Austin 8/2/10" href="http://www.flickr.com/photos/mightyohm/4854248436/"><img class="alignnone" src="http://farm5.static.flickr.com/4135/4854248436_c4cc9019fe_o.png" alt="Time Warner Austin 8/2/10" width="300" height="135" /></a></p>
<p>Holy asymmetric internet access, Batman!</p>
<p>Compare those results with this test I ran before I packed up my computer in San Francisco:</p>
<p><a class="tt-flickr tt-flickr-Original" title="Comcast San Francisco 6/30/10" href="http://www.flickr.com/photos/mightyohm/4854248394/"><img class="alignnone" src="http://farm5.static.flickr.com/4099/4854248394_175e032a9b_o.png" alt="Comcast San Francisco 6/30/10" width="300" height="135" /></a></p>
<p><a class="tt-flickr tt-flickr-Original" title="Comcast San Francisco 6/30/10" href="http://www.flickr.com/photos/mightyohm/4854248394/"></a> Over 4 megabits!  If only I knew how lucky I was on Comcast when I could upload entire Flickr albums and HD videos in minutes!</p>
<p>Time Warner &#8211; 512K?  Really?</p>
<p><img title="Really?" src="http://mightyohm.com/blog/wp-content/uploads/2010/08/really.jpg" alt="" width="272" height="140" /></p>
<p>Ok, that&#8217;s enough for now &#8211; time to unpack the power supplies and oscilloscope.</p>
<p>PS. I almost forgot.  There are <a href="http://www.flickr.com/photos/mightyohm/sets/72157624599380776/">a few pictures of the move on Flickr</a>.</p>


<p>Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/03/austin-hackerspace-pics/' rel='bookmark' title='Permanent Link: Austin Hackerspace Pics'>Austin Hackerspace Pics</a></li>
<li><a href='http://mightyohm.com/blog/2010/06/mightyohm-is-moving/' rel='bookmark' title='Permanent Link: MightyOhm is moving!'>MightyOhm is moving!</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://mightyohm.com/blog/2010/08/getting-settled-in-austin/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>MightyOhm is moving!</title>
		<link>http://mightyohm.com/blog/2010/06/mightyohm-is-moving/</link>
		<comments>http://mightyohm.com/blog/2010/06/mightyohm-is-moving/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 19:20:32 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[austin]]></category>

		<guid isPermaLink="false">http://mightyohm.com/blog/?p=2980</guid>
		<description><![CDATA[
I apologize for the slow updates as of late, but I have some big news that I would like to share with you:
MightyOhm is moving to Austin, Texas!
While the move should be pretty much transparent to anyone reading the blog, there will be a lot going on behind the scenes in the next few weeks. [...]


Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/03/austin-hackerspace-pics/' rel='bookmark' title='Permanent Link: Austin Hackerspace Pics'>Austin Hackerspace Pics</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><a class="tt-flickr tt-flickr-Medium" title="Austin, here we come!" href="http://www.flickr.com/photos/mightyohm/4749842466/"><img class="alignnone" src="http://farm5.static.flickr.com/4096/4749842466_16140ebc06.jpg" alt="Austin, here we come!" width="500" height="281" /></a></p>
<p>I apologize for the slow updates as of late, but I have some big news that I would like to share with you:</p>
<p>MightyOhm is moving to <a href="http://en.wikipedia.org/wiki/Austin,_Texas">Austin, Texas</a>!</p>
<p>While the move should be pretty much transparent to anyone reading the blog, there will be a lot going on behind the scenes in the next few weeks.  Most significantly, orders placed after July 9th will not be shipped before August 1st. The move will continue to take time away from the blog as I figure out how to move an electronics lab across three states.  Don&#8217;t expect too many posts in the next few weeks!</p>
<p>I am sad to be leaving San Francisco (and the many friends I have made in this wonderful city), but I&#8217;m eager to explore a new city, meet new friends, and make Austin my home.  Once I get settled, I would really like to meet some other electronics geeks in the area.  If anyone who reads the blog lives in or near Austin, please <a href="http://mightyohm.com/blog/contact">send me an e-mail</a> or comment below to say hello!</p>
<p>That reminds me: Does anyone know where to find surplus electronic parts in Austin?  If you do, please post a comment here or <a href="http://mightyohm.com/wiki/resources:surplus#austin">add it to the wiki</a>.  As soon as I unpack, I&#8217;ll be looking for local substitutes for Silicon Valley&#8217;s <a href="http://www.halted.com">HSC</a> and <a href="http://weirdstuff.com/">Weird Stuff</a>.</p>
<p>That&#8217;s all for now.  Time to pack up my soldering iron and oscilloscope!</p>


<p>Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/03/austin-hackerspace-pics/' rel='bookmark' title='Permanent Link: Austin Hackerspace Pics'>Austin Hackerspace Pics</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://mightyohm.com/blog/2010/06/mightyohm-is-moving/feed/</wfw:commentRss>
		<slash:comments>30</slash:comments>
		</item>
		<item>
		<title>Sale: 20% off AVR HV Rescue Shield</title>
		<link>http://mightyohm.com/blog/2010/06/hv-rescue-shield-sale/</link>
		<comments>http://mightyohm.com/blog/2010/06/hv-rescue-shield-sale/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 15:49:39 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[DIY]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Microcontrollers]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Atmel]]></category>
		<category><![CDATA[AVR]]></category>
		<category><![CDATA[kits]]></category>
		<category><![CDATA[open source hardware]]></category>

		<guid isPermaLink="false">http://mightyohm.com/blog/?p=2966</guid>
		<description><![CDATA[
Now through July 9th, order an AVR HV Rescue Shield kit and get 20% off!
AVR HV Rescue Shield Kit &#8211; $19.95


Related posts:AVR HV Rescue Shield kits back in stock, new lower pricing!
Minor updates to the AVR HV Rescue Shield
Looking for feedback on the AVR HV Rescue Shield



Related posts:<ol><li><a href='http://mightyohm.com/blog/2009/09/avr-hv-rescue-shield-kits-back-in-stock-new-lower-pricing/' rel='bookmark' title='Permanent Link: AVR HV Rescue Shield kits back in stock, new lower pricing!'>AVR HV Rescue Shield kits back in stock, new lower pricing!</a></li>
<li><a href='http://mightyohm.com/blog/2009/11/minor-updates-to-avr-hv-rescue-shield/' rel='bookmark' title='Permanent Link: Minor updates to the AVR HV Rescue Shield'>Minor updates to the AVR HV Rescue Shield</a></li>
<li><a href='http://mightyohm.com/blog/2009/09/looking-for-feedback-on-the-avr-hv-rescue-shield/' rel='bookmark' title='Permanent Link: Looking for feedback on the AVR HV Rescue Shield'>Looking for feedback on the AVR HV Rescue Shield</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><a href="http://mightyohm.com/avr_rescue"><img class="alignnone size-medium wp-image-1441" title="AVR HV Rescue Shield " src="http://mightyohm.com/blog/wp-content/uploads/2009/03/rescue-shield-with-atmega2_scaled-500x375.jpg" alt="" width="500" height="375" /></a></p>
<p>Now through July 9th, order an <a href="http://mightyohm.com/avr_rescue">AVR HV Rescue Shield</a> kit and get<strong> 20% off</strong>!</p>
<p><a href="http://mightyohm.com/avr_rescue">AVR HV Rescue Shield Kit &#8211; $19.95</a></p>


<p>Related posts:<ol><li><a href='http://mightyohm.com/blog/2009/09/avr-hv-rescue-shield-kits-back-in-stock-new-lower-pricing/' rel='bookmark' title='Permanent Link: AVR HV Rescue Shield kits back in stock, new lower pricing!'>AVR HV Rescue Shield kits back in stock, new lower pricing!</a></li>
<li><a href='http://mightyohm.com/blog/2009/11/minor-updates-to-avr-hv-rescue-shield/' rel='bookmark' title='Permanent Link: Minor updates to the AVR HV Rescue Shield'>Minor updates to the AVR HV Rescue Shield</a></li>
<li><a href='http://mightyohm.com/blog/2009/09/looking-for-feedback-on-the-avr-hv-rescue-shield/' rel='bookmark' title='Permanent Link: Looking for feedback on the AVR HV Rescue Shield'>Looking for feedback on the AVR HV Rescue Shield</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://mightyohm.com/blog/2010/06/hv-rescue-shield-sale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maker Faire Retro Bluetooth Handset Talk on Ustream</title>
		<link>http://mightyohm.com/blog/2010/06/maker-faire-retro-bluetooth-handset-talk-on-ustream/</link>
		<comments>http://mightyohm.com/blog/2010/06/maker-faire-retro-bluetooth-handset-talk-on-ustream/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 05:37:17 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[DIY]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[bluetooth]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[maker faire]]></category>
		<category><![CDATA[makezine]]></category>
		<category><![CDATA[ustream]]></category>

		<guid isPermaLink="false">http://mightyohm.com/blog/?p=2960</guid>
		<description><![CDATA[
I didn&#8217;t know at the time that I was being recorded, but here&#8217;s a somewhat low quality video of the Retro Bluetooth Handset talk I gave on Sunday of the 2010 Bay Area Maker Faire.
The talk starts about 7 minutes into the video, so skip ahead unless you want to watch John Edgar Park of [...]


Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/01/retro-wireless-handset-featured-as-make-weekend-project/' rel='bookmark' title='Permanent Link: Retro Wireless Handset featured as Make: Weekend Project'>Retro Wireless Handset featured as Make: Weekend Project</a></li>
<li><a href='http://mightyohm.com/blog/2009/10/retro-wireless-handset-in-make-magazine/' rel='bookmark' title='Permanent Link: Retro Wireless Handset in Make: Magazine'>Retro Wireless Handset in Make: Magazine</a></li>
<li><a href='http://mightyohm.com/blog/2010/05/maker-faire-bay-area-2010/' rel='bookmark' title='Permanent Link: Maker Faire Bay Area 2010'>Maker Faire Bay Area 2010</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><object id="utv961515" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="386" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="utv_n_267325" /><param name="flashvars" value="loc=%2F&amp;autoplay=false&amp;vid=7160763&amp;locale=en_US" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.ustream.tv/flash/video/7160763" /><embed id="utv961515" type="application/x-shockwave-flash" width="480" height="386" src="http://www.ustream.tv/flash/video/7160763" allowscriptaccess="always" allowfullscreen="true" flashvars="loc=%2F&amp;autoplay=false&amp;vid=7160763&amp;locale=en_US" name="utv_n_267325"></embed></object></p>
<p>I didn&#8217;t know at the time that I was being recorded, but here&#8217;s a somewhat low quality video of the Retro Bluetooth Handset talk I gave on Sunday of the 2010 Bay Area Maker Faire.</p>
<p>The talk starts about 7 minutes into the video, so skip ahead unless you want to watch <a href="http://makezine.com/pub/au/John_Edgar_Park">John Edgar Park</a> of <a href="http://makezine.com/tv/">Make: television</a> greet his fans.</p>
<p>Enjoy!</p>


<p>Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/01/retro-wireless-handset-featured-as-make-weekend-project/' rel='bookmark' title='Permanent Link: Retro Wireless Handset featured as Make: Weekend Project'>Retro Wireless Handset featured as Make: Weekend Project</a></li>
<li><a href='http://mightyohm.com/blog/2009/10/retro-wireless-handset-in-make-magazine/' rel='bookmark' title='Permanent Link: Retro Wireless Handset in Make: Magazine'>Retro Wireless Handset in Make: Magazine</a></li>
<li><a href='http://mightyohm.com/blog/2010/05/maker-faire-bay-area-2010/' rel='bookmark' title='Permanent Link: Maker Faire Bay Area 2010'>Maker Faire Bay Area 2010</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://mightyohm.com/blog/2010/06/maker-faire-retro-bluetooth-handset-talk-on-ustream/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Tech Junkies Build a Wifi Radio (Video)</title>
		<link>http://mightyohm.com/blog/2010/05/the-tech-junkies-build-a-wifi-radio-video/</link>
		<comments>http://mightyohm.com/blog/2010/05/the-tech-junkies-build-a-wifi-radio-video/#comments</comments>
		<pubDate>Wed, 26 May 2010 18:57:43 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[DIY]]></category>
		<category><![CDATA[wifiradio]]></category>

		<guid isPermaLink="false">http://mightyohm.com/blog/?p=2952</guid>
		<description><![CDATA[
In this episode of The Tech Junkies, Ben and Eric show how to hack an Asus WL-520gu wireless router into a music playback device. By loading the OpenWRT firmware onto the router and adding a USB sound card, it is possible to convert this cheap/powerful router into a streaming box to be placed anywhere your [...]


Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/01/garys-wifi-radio-project/' rel='bookmark' title='Permanent Link: Gary&#8217;s Wifi Radio Project'>Gary&#8217;s Wifi Radio Project</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="375" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=12003768&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="500" height="375" src="http://vimeo.com/moogaloop.swf?clip_id=12003768&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<blockquote><p>In this episode of <a href="http://ttjcrew.com/">The Tech Junkies</a>, Ben and Eric show how to hack an Asus WL-520gu wireless router into a music playback device. By loading the OpenWRT firmware onto the router and adding a USB sound card, it is possible to convert this cheap/powerful router into a streaming box to be placed anywhere your WiFi is in range. Now you can build your own shoutcast/icecast receiver for cheap and get music wirelessly to any room in your home.</p></blockquote>
<p>Pretty cool video based on my original <a href="http://mightyohm.com/wifiradio">Wifi Radio tutorial</a>.</p>
<p>To leave comments or download the video, visit <a title="Permanent Link to The Tech Junkies Episode #6" rel="bookmark" href="http://ttjcrew.com/?p=109">The Tech Junkies Episode #6</a>.</p>


<p>Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/01/garys-wifi-radio-project/' rel='bookmark' title='Permanent Link: Gary&#8217;s Wifi Radio Project'>Gary&#8217;s Wifi Radio Project</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://mightyohm.com/blog/2010/05/the-tech-junkies-build-a-wifi-radio-video/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Maker Faire Bay Area 2010</title>
		<link>http://mightyohm.com/blog/2010/05/maker-faire-bay-area-2010/</link>
		<comments>http://mightyohm.com/blog/2010/05/maker-faire-bay-area-2010/#comments</comments>
		<pubDate>Tue, 11 May 2010 23:35:57 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[maker faire]]></category>
		<category><![CDATA[makezine]]></category>

		<guid isPermaLink="false">http://mightyohm.com/blog/?p=2946</guid>
		<description><![CDATA[
The Maker Faire Bay Area 2010 is less than two weeks away!
I&#8217;ll be giving two short talks about my Bluetooth Handset Hack over the weekend.  Look for me on stage near the Make: booth.
I would love to meet some readers of the blog.  If you spot me at the Faire, please say hello!
Update: I&#8217;ll be [...]


Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/06/maker-faire-retro-bluetooth-handset-talk-on-ustream/' rel='bookmark' title='Permanent Link: Maker Faire Retro Bluetooth Handset Talk on Ustream'>Maker Faire Retro Bluetooth Handset Talk on Ustream</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.makezine.com/go/makerfaire"><img src="http://makezine.com/images/makerfaire/ads/300X250.jpg" border="0" alt="Maker Faire." width="300" height="250" /></a></p>
<p>The <a href="http://www.makerfaire.com/">Maker Faire Bay Area 2010</a> is less than two weeks away!</p>
<p>I&#8217;ll be giving two short talks about my <a href="http://mightyohm.com/retro_handset/">Bluetooth Handset Hack</a> over the weekend.  Look for me on stage near the <a href="http://makezine.com">Make:</a> booth.</p>
<p>I would love to meet some readers of the blog.  If you spot me at the Faire, please say hello!</p>
<p><strong>Update:</strong> I&#8217;ll be presenting on the Make: stage in Expo Hall at 12:30pm both days.</p>


<p>Related posts:<ol><li><a href='http://mightyohm.com/blog/2010/06/maker-faire-retro-bluetooth-handset-talk-on-ustream/' rel='bookmark' title='Permanent Link: Maker Faire Retro Bluetooth Handset Talk on Ustream'>Maker Faire Retro Bluetooth Handset Talk on Ustream</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://mightyohm.com/blog/2010/05/maker-faire-bay-area-2010/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Photo Tour of Sutro Tower</title>
		<link>http://mightyohm.com/blog/2010/04/photo-tour-of-sutro-tower/</link>
		<comments>http://mightyohm.com/blog/2010/04/photo-tour-of-sutro-tower/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 03:30:41 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Electronics]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[san francisco]]></category>
		<category><![CDATA[Sutro Tower]]></category>

		<guid isPermaLink="false">http://mightyohm.com/blog/?p=2940</guid>
		<description><![CDATA[


David July, who runs sutrotower.org, posted a fascinating set of pictures documenting his tour of San Francisco&#8217;s Sutro Tower.


Related posts:Sutro Tower Construction Updates, Photos, Links



Related posts:<ol><li><a href='http://mightyohm.com/blog/2009/09/sutro-tower-updates-photos-links/' rel='bookmark' title='Permanent Link: Sutro Tower Construction Updates, Photos, Links'>Sutro Tower Construction Updates, Photos, Links</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/mountsutro/4104715295/in/set-72157622805760774/"><img class="alignnone size-full wp-image-2941" title="Looking straight up from the center underneath Sutro Tower." src="http://mightyohm.com/blog/wp-content/uploads/2010/04/sutro1.jpg" alt="" width="500" height="375" /></a></p>
<p><a href="http://www.flickr.com/photos/mountsutro/4104696319/in/set-72157622805760774/"><img class="alignnone size-full wp-image-2942" title="Looking straight up inside the western leg of Sutro Tower." src="http://mightyohm.com/blog/wp-content/uploads/2010/04/sutro2.jpg" alt="" width="500" height="375" /></a></p>
<p><a href="http://www.flickr.com/photos/mountsutro/4104766223/in/set-72157622805760774/"><img class="alignnone size-full wp-image-2943" title="A Sutro Tower hard hat in the office." src="http://mightyohm.com/blog/wp-content/uploads/2010/04/sutro3.jpg" alt="" width="500" height="375" /></a></p>
<p>David July, who runs <a href="http://sutrotower.org">sutrotower.org</a>, posted a <a href="http://www.flickr.com/photos/mountsutro/sets/72157622805760774/">fascinating set of pictures</a> documenting his tour of San Francisco&#8217;s <a href="http://sutrotower.com">Sutro Tower</a>.</p>


<p>Related posts:<ol><li><a href='http://mightyohm.com/blog/2009/09/sutro-tower-updates-photos-links/' rel='bookmark' title='Permanent Link: Sutro Tower Construction Updates, Photos, Links'>Sutro Tower Construction Updates, Photos, Links</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://mightyohm.com/blog/2010/04/photo-tour-of-sutro-tower/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
