<?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>Nerdy By Nature</title>
	<atom:link href="http://www.nerdybynature.com/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nerdybynature.com</link>
	<description>Pull up your high-water pants, strap on your suspenders and push your glasses up the bridge of your nose...</description>
	<lastBuildDate>Tue, 22 Nov 2011 20:10:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Hangmanduino Update</title>
		<link>http://www.nerdybynature.com/index.php/2011/11/hangmanduino-update/</link>
		<comments>http://www.nerdybynature.com/index.php/2011/11/hangmanduino-update/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 20:10:15 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[electronics]]></category>

		<guid isPermaLink="false">http://www.nerdybynature.com/?p=349</guid>
		<description><![CDATA[I tried compiling Hangmanduino (see original post here) again using v 0021 of the Arduino IDE and found out quickly that things had changed. So I began troubleshooting and found that the WString library I was using was obsolete in the new IDE. Long story short, I was able to make a few adjustments to [...]]]></description>
			<content:encoded><![CDATA[<p>I tried compiling Hangmanduino (<a href="http://www.nerdybynature.com/index.php/2009/08/hangmanduino/" target="_blank">see original post here</a>) again using v 0021 of the Arduino IDE and found out quickly that things had changed. So I began troubleshooting and found that the WString library I was using was obsolete in the new IDE. Long story short, I was able to make a few adjustments to the code and got it up and running. Get the new code <a href="http://www.nerdybynature.com/wp-content/uploads/2011/11/hangmanduino.zip" target="_blank">here</a> (no need to download any additional libraries).</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nerdybynature.com/index.php/2011/11/hangmanduino-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Powershell &#8211; Check Exchange Log LUN Size</title>
		<link>http://www.nerdybynature.com/index.php/2011/10/powershell-check-exchange-log-lun-size/</link>
		<comments>http://www.nerdybynature.com/index.php/2011/10/powershell-check-exchange-log-lun-size/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 18:49:04 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[powershell]]></category>

		<guid isPermaLink="false">http://www.nerdybynature.com/?p=343</guid>
		<description><![CDATA[So I haven&#8217;t been completely truthful with everyone up until this point. The truth is, my day job consist of a lot of corporate-like tasks since I&#8217;m a Systems Administrator. One of my many responsibilities is administration of an Exchange 2010 environment. I&#8217;m constantly being thrown curve balls and tasks that cause me to think [...]]]></description>
			<content:encoded><![CDATA[<p>So I haven&#8217;t been completely truthful with everyone up until this point. The truth is, my day job consist of a lot of corporate-like tasks since I&#8217;m a Systems Administrator. One of my many responsibilities is administration of an Exchange 2010 environment. I&#8217;m constantly being thrown curve balls and tasks that cause me to think outside of the Microsoft box. I&#8217;ve decided to branch out and share some of the problems and (more importantly) solutions that I&#8217;ve come up with. Hopefully these will help someone out there.</p>
<p>This is a problem we&#8217;ve been dealing with since day 1 with our Exchange environment. We have separate partitions dedicated to each database&#8217;s logs. Once and a while a client or end device burps and causes the logs to grow out of control and cause major problems for the database. We have a monitoring solution, however, that is even prone to issues once and while. The cure was a 2nd layer of protection in the form of the following powershell script. This script runs every 5 mins and reports the percent of free space remaining of each of the log partitions (luckily we named the partitions appropriately so filtering VolumeName for &#8220;LOG&#8221; was a quick fix). If the free space remaining is less than the configured threshold (20% in my case), an email/page is sent. Nothing too fancy, but definitely a handy little life saver. And without further ado &#8211; the code:</p>
<blockquote><p>$mbxs = &#8220;[mailboxserver1]&#8220;, &#8220;[mailboxserver2]&#8220;, &#8220;[mailboxserver3]&#8221;<br />
$maxthreshold = 20  # disk remaining percentage threshold.<br />
$email_to = &#8220;[email_to_address]&#8220;  # where you want the alert email sent<br />
$email_from = &#8220;[email_from_address]&#8220;  # where you want the alert email to come from<br />
$email_smtp_server = &#8220;[your_smtp_server]&#8220;  # smtp server used to send alert email<br />
$email_subject = &#8220;EXCHANGE LOG LUN SPACE ISSUE!&#8221;  # subject of the alert email<br />
$email_body = &#8220;&#8221;</p>
<p>for ($i = 0; $i -lt $mbxs.Length; $i++){<br />
Get-WMIObject Win32_LogicalDisk -Computer $mbxs[$i] | where {$_.VolumeName -match &#8220;LOG&#8221;} | foreach{<br />
$server = $mbxs[$i];<br />
$volname = $_.VolumeName;<br />
$freegbs = [math]::round($_.FreeSpace / 1GB, 0);<br />
$sizegbs = [math]::round($_.Size/ 1GB, 0);<br />
$percentfree = [math]::round(($freegbs / $sizegbs) * 100, 0);</p>
<p>if ($percentfree -le $maxthreshold){<br />
$email_body = &#8220;Server: &#8221; + $mbxs[$i] + &#8220;`r Volume Name: &#8221; + $volname + &#8220;`r Disk Size: &#8221; + $sizegbs + &#8220;GB `r Space Remaining: &#8221; + $freegbs + &#8220;GB `r Percent Remaining: &#8221; + $percentfree + &#8220;%&#8221;<br />
Send-MailMessage -To $email_to -SmtpServer $email_smtp_server -Subject $email_subject -From $email_from -Body $email_body<br />
}<br />
}<br />
}</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.nerdybynature.com/index.php/2011/10/powershell-check-exchange-log-lun-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arduino IDE Crashing on Windows 7 (64-bit)</title>
		<link>http://www.nerdybynature.com/index.php/2011/10/arduino-ide-crashing-on-windows-7-64-bit/</link>
		<comments>http://www.nerdybynature.com/index.php/2011/10/arduino-ide-crashing-on-windows-7-64-bit/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 02:02:43 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[electronics]]></category>

		<guid isPermaLink="false">http://www.nerdybynature.com/?p=338</guid>
		<description><![CDATA[I just spent the last 3 days (on and off) troubleshooting why my Arduino IDE wouldn&#8217;t open properly on my Windows 7 64-bit machine. I thought I&#8217;d share the fix with the rest of the world as my Google searches returned nothing in the way of useful answers to my issue. For my issue, I&#8217;d [...]]]></description>
			<content:encoded><![CDATA[<p>I just spent the last 3 days (on and off) troubleshooting why my Arduino IDE wouldn&#8217;t open properly on my Windows 7 64-bit machine. I thought I&#8217;d share the fix with the rest of the world as my Google searches returned nothing in the way of useful answers to my issue. For my issue, I&#8217;d click on arduino.exe and the splash screen would display, shortly afterwards, it would disappear along with the arduino.exe process that was running in the background. I had tried debugging the java launcher, that looked fine. I had checked permissions on the folder, flipped the compatability mode of the exe, you name it. In the end I needed to check the &#8220;disable visual themes&#8221; checkbox on the exe (see screenshot).</p>
<p>Full path to change this checkbox: C:\path_to_arduino\arduino.exe &gt; right-click &gt;compatibility tab &gt; check &#8220;disable visual themes&#8221;  (not a bad idea to check &#8220;Run as Administrator&#8221; while you&#8217;re in here) &gt; OK</p>
<p>Hopefully this helps someone else out there as they desperately scour the interwebs for a solution to get back into the IDE.</p>
<p><img class="alignnone size-medium wp-image-340" title="arduino_exe_screen" src="http://www.nerdybynature.com/wp-content/uploads/2011/10/arduino_exe_screen-210x300.png" alt="arduino_exe_screen" width="210" height="300" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nerdybynature.com/index.php/2011/10/arduino-ide-crashing-on-windows-7-64-bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Br-r-r-r-r-ing&#8230;It&#8217;s your Arduino</title>
		<link>http://www.nerdybynature.com/index.php/2010/09/br-r-r-r-r-ing-its-your-arduino/</link>
		<comments>http://www.nerdybynature.com/index.php/2010/09/br-r-r-r-r-ing-its-your-arduino/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 01:55:34 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Asterisk]]></category>
		<category><![CDATA[electronics]]></category>
		<category><![CDATA[alarm system]]></category>
		<category><![CDATA[call]]></category>
		<category><![CDATA[doorbell]]></category>
		<category><![CDATA[sip]]></category>

		<guid isPermaLink="false">http://www.nerdybynature.com/?p=324</guid>
		<description><![CDATA[A recent comment by the009 got me thinking&#8230;I&#8217;ve been able to get Asterisk grab info about sensors connected to an ethernet-enabled Arduino, but how about the other way around? What if you could allow your Arduino to make outbound calls through your Asterisk system to make a make-shift alarm system, or over-powered doorbell? Well, wait [...]]]></description>
			<content:encoded><![CDATA[<p>A recent comment by <a href="http://www.the009.net/" target="_blank">the009</a> got me thinking&#8230;I&#8217;ve been able to get Asterisk grab info about sensors connected to an ethernet-enabled Arduino, but how about the other way around? What if you could allow your Arduino to make outbound calls through your Asterisk system to make a make-shift alarm system, or over-powered doorbell? Well, wait no longer! Here&#8217;s how it works:</p>
<p>Asterisk: A php script lives on your Asterisk server (hosted up by apache) that, when it&#8217;s accessed, checks to make sure the client accessing it matches a pre-defined IP of your Arduino. If so, it creates a call file with the criteria that you configure to call a number of your choice and drops it in the Asterisk outgoing queue directory, triggering Asterisk to make a call. (I would highly suggest you only set this up on a server that doesn&#8217;t have port 80 open to the world!)</p>
<p>Arduino: The sketch code is easy&#8230;simply trigger a client connection to the Asterisk server when a button is pushed, motion sensor tripped, or ultra sonic range finder measures a particular distance (that part is up to you). As long as the Arduino&#8217;s IP matches the allowed IP configured in the php script, your phone should ring!</p>
<p>Make it happen:</p>
<ol>
<li>To get started, <a href="http://www.nerdybynature.com/wp-content/uploads/2010/09/arduino_call.zip" target="_blank">download the code</a> and extract the files.</li>
<li>scp arduino_call.php into your web directory on your asterisk server.</li>
<li>Next, add the lines from extensions_custom.conf (zip package) to /etc/asterisk/extensions_custom.conf</li>
<li>Edit the variables at the top of arduino_call.php to match your configuration.</li>
<li>Upload the sketch to your arduino, customizing to your configuration (of course!).</li>
<li>Adapt it to your project!</li>
</ol>
<p>Feel free to edit and manipulate this script to fit your needs, I just ask that you add a comment to this page explaining how you used it. Videos / pictures are always welcomed as well!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" 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://www.youtube.com/v/h6KHTLB5a-g&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/h6KHTLB5a-g&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nerdybynature.com/index.php/2010/09/br-r-r-r-r-ing-its-your-arduino/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Hibernation&#8230;</title>
		<link>http://www.nerdybynature.com/index.php/2010/03/hibernation/</link>
		<comments>http://www.nerdybynature.com/index.php/2010/03/hibernation/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 02:51:33 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.nerdybynature.com/?p=322</guid>
		<description><![CDATA[The cold is leaving my workspace, and the heat is returning to my soldering iron. It shouldn&#8217;t be long before I have more fun projects to share with you. I&#8217;ve been focusing my efforts towards my music, noise-making / manipulating projects and staying warm. Effects pedals, bent instruments and analog fun are all in the [...]]]></description>
			<content:encoded><![CDATA[<p>The cold is leaving my workspace, and the heat is returning to my soldering iron. It shouldn&#8217;t be long before I have more fun projects to share with you. I&#8217;ve been focusing my efforts towards my music, noise-making / manipulating projects and staying warm. Effects pedals, bent instruments and analog fun are all in the works. I&#8217;ll try to find some time to finish at least one of the projects on my bench in the near future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nerdybynature.com/index.php/2010/03/hibernation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Arduino&#8217;s love spans 80 characters</title>
		<link>http://www.nerdybynature.com/index.php/2009/12/my_arduinos_love_spans_80_characters/</link>
		<comments>http://www.nerdybynature.com/index.php/2009/12/my_arduinos_love_spans_80_characters/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 14:38:39 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.nerdybynature.com/?p=316</guid>
		<description><![CDATA[A good friend of mine is quite a bit like me in that he loves salvaging electronics. He works at a local cable provider that was throwing away a bunch of devices that had these nice 80 character (40 x 2) LCDs in them. He snagged them and generously gave three to me. This morning [...]]]></description>
			<content:encoded><![CDATA[<p>A good friend of mine is quite a bit like me in that he loves salvaging electronics. He works at a local cable provider that was throwing away a bunch of devices that had these nice 80 character (40 x 2) LCDs in them. He snagged them and generously gave three to me. This morning I decided to figure out if they used Hitachi HD44780 drivers as I suspected (16-pin interface). First I soldered up some pin header, snipped and wired the included ribbon cable and made this handy little breadboard adapter for easy prototyping. I had to make a few changes in my LiquidCrystal calls to make sure the library knew I was using a 40 x 2 LCD, and voila! Thanks again Yaffe for these awesome toys!</p>

<a href='http://www.nerdybynature.com/index.php/2009/12/my_arduinos_love_spans_80_characters/img_6560-large/' title='IMG_6560 (Large)'><img width="150" height="150" src="http://www.nerdybynature.com/wp-content/uploads/2009/12/IMG_6560-Large-150x150.jpg" class="attachment-thumbnail" alt="" title="IMG_6560 (Large)" /></a>
<a href='http://www.nerdybynature.com/index.php/2009/12/my_arduinos_love_spans_80_characters/img_6563-large/' title='IMG_6563 (Large)'><img width="150" height="150" src="http://www.nerdybynature.com/wp-content/uploads/2009/12/IMG_6563-Large-150x150.jpg" class="attachment-thumbnail" alt="" title="IMG_6563 (Large)" /></a>

<p><img src="file:///C:/Users/Dan/Desktop/Pictures/Arduino/IMG_6563.JPG" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nerdybynature.com/index.php/2009/12/my_arduinos_love_spans_80_characters/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Woot! Shirt</title>
		<link>http://www.nerdybynature.com/index.php/2009/12/woot_shirt/</link>
		<comments>http://www.nerdybynature.com/index.php/2009/12/woot_shirt/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 13:18:07 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.nerdybynature.com/?p=310</guid>
		<description><![CDATA[Check out the shirt on shirt.woot.com today. I almost fell out of my chair:

]]></description>
			<content:encoded><![CDATA[<p>Check out the shirt on shirt.woot.com today. I almost fell out of my chair:</p>
<p><img class="alignnone size-full wp-image-311" title="Nerdish_by_Natureh1cStandard" src="http://www.nerdybynature.com/wp-content/uploads/2009/12/Nerdish_by_Natureh1cStandard.png" alt="Nerdish_by_Natureh1cStandard" width="456" height="342" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nerdybynature.com/index.php/2009/12/woot_shirt/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Bent SK-1</title>
		<link>http://www.nerdybynature.com/index.php/2009/11/bent-sk-1/</link>
		<comments>http://www.nerdybynature.com/index.php/2009/11/bent-sk-1/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 01:11:48 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Noise]]></category>
		<category><![CDATA[circuit bending]]></category>
		<category><![CDATA[electronics]]></category>
		<category><![CDATA[bent instrument]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[SK-1]]></category>

		<guid isPermaLink="false">http://www.nerdybynature.com/?p=297</guid>
		<description><![CDATA[I wanted to share my nearly-completed SK-1 project. It still needs a back panel and some finishing touches, but it sounds amazing. I can easily get lost for a couple of hours just jamming on this little guy. It features an 18-point bend patch bay, 4 ground points, patchable potentiometer, joystick, and LFO, 8 additional [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to share my nearly-completed SK-1 project. It still needs a back panel and some finishing touches, but it sounds amazing. I can easily get lost for a couple of hours just jamming on this little guy. It features an 18-point bend patch bay, 4 ground points, patchable potentiometer, joystick, and LFO, 8 additional hard-wired bend switches, drum kill mod, soft/hard reset, and a pitch bend (mounted on keyboard) with on/off switch. Now if only I could muster up some ambition to finish it&#8230;</p>

<a href='http://www.nerdybynature.com/index.php/2009/11/bent-sk-1/img_6450-large/' title='SK1_5'><img width="150" height="150" src="http://www.nerdybynature.com/wp-content/uploads/2009/11/img_6450-large-150x150.jpg" class="attachment-thumbnail" alt="" title="SK1_5" /></a>
<a href='http://www.nerdybynature.com/index.php/2009/11/bent-sk-1/img_6444-large/' title='SK1_6'><img width="150" height="150" src="http://www.nerdybynature.com/wp-content/uploads/2009/11/img_6444-large-150x150.jpg" class="attachment-thumbnail" alt="" title="SK1_6" /></a>
<a href='http://www.nerdybynature.com/index.php/2009/11/bent-sk-1/img_6541-large/' title='SK1_4'><img width="150" height="150" src="http://www.nerdybynature.com/wp-content/uploads/2009/11/img_6541-large-150x150.jpg" class="attachment-thumbnail" alt="" title="SK1_4" /></a>
<a href='http://www.nerdybynature.com/index.php/2009/11/bent-sk-1/img_6534-large/' title='SK1_2'><img width="150" height="150" src="http://www.nerdybynature.com/wp-content/uploads/2009/11/img_6534-large-150x150.jpg" class="attachment-thumbnail" alt="" title="SK1_2" /></a>
<a href='http://www.nerdybynature.com/index.php/2009/11/bent-sk-1/img_6538-large/' title='SK1_1'><img width="150" height="150" src="http://www.nerdybynature.com/wp-content/uploads/2009/11/img_6538-large-150x150.jpg" class="attachment-thumbnail" alt="" title="SK1_1" /></a>
<a href='http://www.nerdybynature.com/index.php/2009/11/bent-sk-1/img_6533-large/' title='SK1_3'><img width="150" height="150" src="http://www.nerdybynature.com/wp-content/uploads/2009/11/img_6533-large-150x150.jpg" class="attachment-thumbnail" alt="" title="SK1_3" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.nerdybynature.com/index.php/2009/11/bent-sk-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Glitch LFO</title>
		<link>http://www.nerdybynature.com/index.php/2009/10/glitch-lfo/</link>
		<comments>http://www.nerdybynature.com/index.php/2009/10/glitch-lfo/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 01:39:57 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[circuit bending]]></category>
		<category><![CDATA[electronics]]></category>

		<guid isPermaLink="false">http://www.nerdybynature.com/?p=285</guid>
		<description><![CDATA[I&#8217;ve been wanting to get into circuit bending for a while now, but due to a jam-packed project notebook, it has taken the back seat&#8230;until now.
Music is my passion. I&#8217;ve played various instruments throughout my life and have always loved strange and exciting sounds and instruments. That being said, I&#8217;ve decided to focus my attention [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been wanting to get into circuit bending for a while now, but due to a jam-packed project notebook, it has taken the back seat&#8230;until now.</p>
<p>Music is my passion. I&#8217;ve played various instruments throughout my life and have always loved strange and exciting sounds and instruments. That being said, I&#8217;ve decided to focus my attention on music-making instruments / bends / circuits for a while. There&#8217;s something euphoric about mixing my love for music with my love for electronics&#8230;it&#8217;s hard to explain.</p>
<p>Seeing as I&#8217;m still a n00b at bending, I thought it proper to start with a staple bent instrument and see what I can do&#8230;enter garage sale find #1: Casio SK-1. As I started scouring the internet for ideas of bend points, and various different things people have done with the SK-1, I came across <a href="http://www.mikmo.dk/cblfo.html" target="_blank">this really handy LFO circuit </a>based on a LM555. I had all of the components in my parts bin, so I built it and started playing. The circuit itself is nice, but when applying it to any bend points, there was something missing. One of the changes I tried out was applying a PNP transistor to the trigger, so it acts as a switch that is being turned on and off to the speed of the timer. When I applied the bend points to either end of this switch, the results were very satisfying. I decided that for my bent SK-1 it would only be right to etch a PCB, so I made a quick change to the etch template and wanted to share that with everyone. I&#8217;ve also attached a few pics and a video of me playing with my SK-1 with this &#8220;glitch LFO&#8221;. I hope someone else gets some use out of it!</p>
<p><a href="http://www.nerdybynature.com/wp-content/uploads/2009/10/lfo_w_trig_pcb.zip" target="_blank">Download etchable circuit drawing here.</a></p>
<p><a href="http://www.nerdybynature.com/wp-content/uploads/2009/10/lfo_trigger_components.jpg"><img class="alignnone size-medium wp-image-289" title="lfo_trigger_components" src="http://www.nerdybynature.com/wp-content/uploads/2009/10/lfo_trigger_components-300x182.jpg" alt="" width="300" height="182" /></a></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" 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://www.youtube.com/v/NKQ-D68mlDI&amp;hl=en&amp;fs=1&amp;" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/NKQ-D68mlDI&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nerdybynature.com/index.php/2009/10/glitch-lfo/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Hangmanduino</title>
		<link>http://www.nerdybynature.com/index.php/2009/08/hangmanduino/</link>
		<comments>http://www.nerdybynature.com/index.php/2009/08/hangmanduino/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 03:00:00 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[electronics]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[hangman]]></category>

		<guid isPermaLink="false">http://www.nerdybynature.com/?p=254</guid>
		<description><![CDATA[Hangmanduino is complete! A word is selected at random from a list of 10 words. This could be set higher, but for demonstration purposes, it&#8217;s 10. The user scrolls through the alphabet to select a letter using the potentiometer on the front of the case. To select a letter, the user pushes down on the [...]]]></description>
			<content:encoded><![CDATA[<p>Hangmanduino is complete! A word is selected at random from a list of 10 words. This could be set higher, but for demonstration purposes, it&#8217;s 10. The user scrolls through the alphabet to select a letter using the potentiometer on the front of the case. To select a letter, the user pushes down on the potentiometer. Schematics, pictures of the build and demo video can be found below&#8230;<a href="http://www.nerdybynature.com/wp-content/uploads/2009/08/hangmanduino.zip" target="_blank">click here</a> to download the source code, but keep in mind you will need to <a href="http://arduino.cc/en/uploads/Tutorial/String.zip" target="_blank">download the string library</a> as well to compile this code.</p>

<a href='http://www.nerdybynature.com/index.php/2009/08/hangmanduino/img_6119-large/' title='hangmanduino_1'><img width="150" height="150" src="http://www.nerdybynature.com/wp-content/uploads/2009/08/img_6119-large-150x150.jpg" class="attachment-thumbnail" alt="" title="hangmanduino_1" /></a>
<a href='http://www.nerdybynature.com/index.php/2009/08/hangmanduino/img_6124-large/' title='hangmanduino_2'><img width="150" height="150" src="http://www.nerdybynature.com/wp-content/uploads/2009/08/img_6124-large-150x150.jpg" class="attachment-thumbnail" alt="" title="hangmanduino_2" /></a>
<a href='http://www.nerdybynature.com/index.php/2009/08/hangmanduino/img_6128-large/' title='hangmanduino_3'><img width="150" height="150" src="http://www.nerdybynature.com/wp-content/uploads/2009/08/img_6128-large-150x150.jpg" class="attachment-thumbnail" alt="" title="hangmanduino_3" /></a>
<a href='http://www.nerdybynature.com/index.php/2009/08/hangmanduino/img_6129-large/' title='hangmanduino_4'><img width="150" height="150" src="http://www.nerdybynature.com/wp-content/uploads/2009/08/img_6129-large-150x150.jpg" class="attachment-thumbnail" alt="" title="hangmanduino_4" /></a>
<a href='http://www.nerdybynature.com/index.php/2009/08/hangmanduino/img_6132-large/' title='hangmanduino_5'><img width="150" height="150" src="http://www.nerdybynature.com/wp-content/uploads/2009/08/img_6132-large-150x150.jpg" class="attachment-thumbnail" alt="" title="hangmanduino_5" /></a>
<a href='http://www.nerdybynature.com/index.php/2009/08/hangmanduino/img_6133-large/' title='hangmanduino_6'><img width="150" height="150" src="http://www.nerdybynature.com/wp-content/uploads/2009/08/img_6133-large-150x150.jpg" class="attachment-thumbnail" alt="" title="hangmanduino_6" /></a>
<a href='http://www.nerdybynature.com/index.php/2009/08/hangmanduino/hangman_schematic/' title='hangman_schematic'><img width="150" height="150" src="http://www.nerdybynature.com/wp-content/uploads/2009/08/hangman_schematic-150x150.png" class="attachment-thumbnail" alt="" title="hangman_schematic" /></a>

<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" 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://www.youtube.com/v/hCa8F8fbHLQ&amp;hl=en&amp;fs=1&amp;" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/hCa8F8fbHLQ&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nerdybynature.com/index.php/2009/08/hangmanduino/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
	</channel>
</rss>

