<?xml version="1.0" encoding="utf-8" ?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns="http://purl.org/rss/1.0/">




    



<channel rdf:about="http://noisygecko.com/noisygecko-1/RSS">
  <title>NoisyGecko</title>
  <link>http://noisygecko.com</link>

  <description>
    
      
    
  </description>

  

  
            <syn:updatePeriod>daily</syn:updatePeriod>
            <syn:updateFrequency>1</syn:updateFrequency>
            <syn:updateBase>2011-03-26T15:46:45Z</syn:updateBase>
        

  <image rdf:resource="http://noisygecko.com/logo.png"/>

  <items>
    <rdf:Seq>
      
        <rdf:li rdf:resource="http://noisygecko.com/tech/mounting-windows-share-drives-at-login-in-ubuntu"/>
      
      
        <rdf:li rdf:resource="http://noisygecko.com/tech/using-gmail-as-mail-host-with-postfix-webmin"/>
      
      
        <rdf:li rdf:resource="http://noisygecko.com/tech/ubuntu-11.04-natty-tweaks"/>
      
      
        <rdf:li rdf:resource="http://noisygecko.com/tech/create-a-plone-4-blog-site"/>
      
      
        <rdf:li rdf:resource="http://noisygecko.com/simeon-david-harbert-sim"/>
      
      
        <rdf:li rdf:resource="http://noisygecko.com/tech/miata-genie-garage-door-opener-button-mod"/>
      
      
        <rdf:li rdf:resource="http://noisygecko.com/tech/2008-miata-mx-5-stereo-head-unit-removal"/>
      
      
        <rdf:li rdf:resource="http://noisygecko.com/sim/sims-childhood"/>
      
      
        <rdf:li rdf:resource="http://noisygecko.com/sim/info-about-sim.."/>
      
    </rdf:Seq>
  </items>

</channel>


  <item rdf:about="http://noisygecko.com/tech/mounting-windows-share-drives-at-login-in-ubuntu">
    <title>Mounting Windows Share Drives at Login in Ubuntu</title>
    <link>http://noisygecko.com/tech/mounting-windows-share-drives-at-login-in-ubuntu</link>
    <description>This document contains instructions for mounting Windows share drives/folders at login in Ubuntu using the pam_mount package. The instructions for for Ubuntu, but probably should work in other Linux flavors.</description>
    <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>First make sure that the proper packages are installed:</p>
<pre class="literal-block">sudo apt-get -y install libpam-mount smbfs
</pre>
<p>Then edit the global configuration file to allow for user config files:</p>
<pre class="literal-block">sudo gedit /etc/security/pam_mount.conf.xml

# Make sure the line with &lt;luserconf is uncommented.
# Make sure &lt;mntoptions allow=”*” /&gt; is uncommented.
# Turn on debugging: &lt;debug enable="1" /&gt;
</pre>
<p>Now create a file called “$HOME/.pam_mount.conf.xml” for the user, substituting your user ID for myuser and changing various other settings to match your Windows share setup:</p>
<pre class="literal-block">gedit ~/.pam_mount.conf.xml
</pre>
<p>Add this to the file (change user specific elements):</p>
<pre class="literal-block">&lt;pam_mount&gt;
&lt;volume
    user="*" fstype="smbfs" server="serveraddress.com"
    path="folderpath" mountpoint="~/mountpath"
    options="nodev,nosuid,iocharset=utf8,noperm,user=myuser,domain=MYDOMAIN"
    /&gt;
&lt;/pam_mount&gt;
</pre>
<p>Keep in mind that your Ubuntu user ID does not have to match the Windows login ID (that is specified in the config file), but <em>your Ubuntu password does have to be the same as the password for the Windows login ID</em>.</p>
<p>You will have to log off and back on to test it out. Errors should go to the "/var/log/auth.log" file:</p>
<pre class="literal-block">tail -f /var/log/auth.log
</pre>
<p>Once things are set up you will probably want to turn off debugging or you will see logs of PAM debugging output in odd places:</p>
<pre class="literal-block">sudo gedit /etc/security/pam_mount.conf.xml
# Turn off debugging: &lt;debug enable="0" /&gt;</pre>]]></content:encoded>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>sim</dc:creator>
    <dc:rights></dc:rights>
    
      <dc:subject>windows</dc:subject>
    
    
      <dc:subject>ubuntu</dc:subject>
    
    <dc:date>2011-11-22T16:53:53Z</dc:date>
    <dc:type>Page</dc:type>
  </item>


  <item rdf:about="http://noisygecko.com/tech/using-gmail-as-mail-host-with-postfix-webmin">
    <title>Using Gmail as Mail Host with Postfix (Webmin)</title>
    <link>http://noisygecko.com/tech/using-gmail-as-mail-host-with-postfix-webmin</link>
    <description>Instructions on how to use a Gmail account to relay email from Ubuntu/Postfix.  It was intended to all be done in Webmin, but that doesn't seem to be possible, so there is some command line work.</description>
    <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>These instructions are based on what was found at <a class="external reference" href="http://www.lucidlynx.com/how-to-install-postfix-to-relay-mail-through-gmail-in-ubuntu/">http://www.lucidlynx.com/how-to-install-postfix-to-relay-mail-through-gmail-in-ubuntu/</a> but have been converted to using Webmin. The only confusing part was how to add/edit the 'generic' table since that is called 'virtual' in Postfix parlance.</p>
<p>This assumes the user has webmin installed and understands how to log in and use it. (Usually bring it up in a browser at <a class="external reference" href="https://localhost:10000">https://localhost:10000</a> )</p>
<ul>
<li>
<p class="first">Make sure that postfix is installed. In Webmin this is done by going to "System", "Software Packages" then clicking on "Package from APT" and entering "postfix". And you may want to install "mailutils" to test the mail system out.</p>
<p>OR, from the command line:</p>
<pre class="literal-block">sudo apt-get install postfix mailutils
# Choose the SMTP server mode when configuring.
</pre>
<p>If Postfix was already installed, then make sure it is installed as an SMTP (not local) mail server. That appears to be the default when installed from Webmin:</p>
<pre class="literal-block">sudo dpkg-reconfigure postfix
</pre>
<p>Click on Webmin "Refresh Modules" to get Postfix to show up.</p>
</li>
<li>
<p class="first">In Webmin click on "Servers", "Postfix Mail Server", "SMTP Authentication And Encryption".</p>
<p>[screenshot 1]</p>
<p>Enter "[smtp.gmail.com]:587 in the "Send outgoing email via host" entry box.</p>
<p>Check "Login as" and enter your Gmail user name and password.</p>
</li>
<li>
<p class="first">Return to Postfix main page and click on "Virtual Domains". Add a lookup table by clicking on the "..." next to "Map specifications".</p>
<p>Check and enter a "Mapping file" of "/etc/postfix/generic", then click "Save". Click "Save and Apply".</p>
<p>Now go to the "Virtual Domains" page again and click "Add a new mapping.". Enter the local address to remote address mapping, for example "<a class="external reference" href="mailto:root@localhost">root@localhost</a>" to "<a class="external reference" href="mailto:my_user@gmail.com">my_user@gmail.com</a>". An entry should be added for each user that is expected to send mail.</p>
</li>
<li>
<p class="first">Since I never figured out how to set these through Webmin, just add the following manually to the "main.cf" file.</p>
<p>Click on "Edit Config Files". It should be editing "/etc/postfix/mail.cf" by default. Add this line above "smtp_sasl_password_maps=..." (order of entries seems to matter):</p>
<pre class="literal-block">smtp_sasl_auth_enable=yes
</pre>
<p>Add this to the bottom of the "main.cf" file and click "Save" (make sure there is a new-line at the end):</p>
<pre class="literal-block">##### client TLS parameters #####
smtp_tls_loglevel=1
smtp_tls_security_level=encrypt
smtp_sasl_security_options = noanonymous
smtp_generic_maps = hash:/etc/postfix/generic
</pre>
</li>
<li>
<p class="first">The easiest way to test sending email is to use the 'mail' program:</p>
<pre class="literal-block">sudo apt-get install mailutils
echo "test" | mail -s 'Test 1' user@testaddress.com
# Then check the logs to see if it bounced or had a problem
tail /var/log/mail.log</pre>
</li>
</ul>]]></content:encoded>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>sim</dc:creator>
    <dc:rights></dc:rights>
    
      <dc:subject>postfix</dc:subject>
    
    
      <dc:subject>webmin</dc:subject>
    
    
      <dc:subject>ubuntu</dc:subject>
    
    
      <dc:subject>gmail</dc:subject>
    
    <dc:date>2011-11-22T16:15:00Z</dc:date>
    <dc:type>Page</dc:type>
  </item>


  <item rdf:about="http://noisygecko.com/tech/ubuntu-11.04-natty-tweaks">
    <title>Ubuntu 11.04 Natty Tweaks</title>
    <link>http://noisygecko.com/tech/ubuntu-11.04-natty-tweaks</link>
    <description>Here are some tweaks I have come up with after installing Ubuntu 11.04 with the new Unity window manager.  For the most part I like Unity, although it seems kind of incomplete</description>
    <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p><img alt="Screenshot" class="image-right" src="Ubuntu1104screenshot.png/image_mini" /> I recently installed Ubuntu 11.04 and am growing to like the Unity interface pretty well.  It is similar to the Mac "dock" both in how it works and how confusing it is for someone old-school like me to configure.</p>
<p>Here are a couple of issues I have run into, along with my fixes:</p>
<h3>Missing Tray Status Icons</h3>
<p>Tray icons for things like Dropbox, Google Desktop Search, and Cisco AnyConnect don't appear in the new Unity interface.  I thought maybe they weren't supported because of some new way they are supposed to interface with the system.  But it turns out there is a way to "whitelist" any old-style app.</p>
<p>I decided to just "whitelist" <i>all</i> apps using the technique found here:</p>
<p>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<a href="http://www.webupd8.org/2011/04/how-to-re-enable-notification-area.html">http://www.webupd8.org/2011/04/how-to-re-enable-notification-area.html</a></p>
<p>What I did was to just run the following to bring up 'dconf-editor':</p>
<pre>sudo apt-get install dconf-tools<br />dconf-editor</pre>
<p>Then, in the editor, I went to "desktop", "unity", "panel" and change the value for 'systray-whitelist' to be ['all'] from the default of ['JavaEmbeddedFrame', 'Mumble', 'Wine', 'Skype', 'hp-systray', 'scp-dbus-service']</p>
<h3>Eclipse IDE Missing Menus</h3>
<p>It looks look Eclipse doesn't handle its menus the way Unity wants, so by default you end up with no menubar in the Eclipse window itself, and no menubar at in the top bar of the screen either.  Creating an environment variable assignment in the shell of UBUNTU_MENUPROXY=0 will make the menubar show up in the Eclipse window.  I found the best way to make sure it runs is to add it to the shell script that starts up Eclipse.  Just add the following to the top of the shell script:</p>
<pre>export UBUNTU_MENUPROXY=0</pre>
<h3>Startup Bar Tweaking</h3>
<p>One of the things that is kind of annoying about Unity is that the icon bar on the side for starting apps is severely lacking in ways to configure it.  It works very well out of the box, but I would like to be able to add custom launchers and I have not found a way to do that.</p>
<p>To keep items in the bar even after they run, right click on them and select "Keep in Launcher".  To move items around, drag the icon away from the bar and then back to it where you want it.</p>
<h3>Weird Overlay Scrollbars</h3>
<p>To remove the dynamic overlay scrollbars that are mostly just confusing to me:</p>
<pre>sudo apt-get remove overlay-scrollbar</pre>
<p>Source: <a href="http://ubuntu4beginners.blogspot.com/2011/04/disable-overlay-scrollbars-in-ubuntu.html">http://ubuntu4beginners.blogspot.com/2011/04/disable-overlay-scrollbars-in-ubuntu.html</a></p>]]></content:encoded>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>sim</dc:creator>
    <dc:rights></dc:rights>
    
      <dc:subject>ubuntu</dc:subject>
    
    <dc:date>2011-05-04T23:15:00Z</dc:date>
    <dc:type>Page</dc:type>
  </item>


  <item rdf:about="http://noisygecko.com/tech/create-a-plone-4-blog-site">
    <title>Create a Plone 4 Blog Site</title>
    <link>http://noisygecko.com/tech/create-a-plone-4-blog-site</link>
    <description>These are the steps I have used to create a simple Plone 4 based blogging site.</description>
    <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>I followed the normal install of a Plone 4 site and then performed the following customizations to get a basic blogging site.  I am not looking for a complicated setup, so I am just using the basic Blogging product for Plone.</p>
<p>Added Blogging eggs to buildout:</p>
<pre id="_mcePaste">collective.blogging<br />collective.bloggingmaps</pre>
<div id="_mcePaste"></div>
<div id="_mcePaste">Then I created a "Collection" that lists the pages on the site since those are the blog entries for me.  I set that as the default view</div>
<div id="_mcePaste">for the front page.</div>
<div>I changed the navigation to only display folders in top-level tabs by going to the navigation section of the control panel and unchecking "Generate tabs for items other than folders.":</div>
<p>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
</p>
<div id="_mcePaste">http://localhost:8181/noisygecko/@@navigation-controlpanel</div>
<div>The I retracted the "welcome" page, "News", "Events" and "Users".</div>
<div id="_mcePaste"></div>
<div id="_mcePaste">I removed footers by hiding viewlets at the bottom:</div>
<div id="_mcePaste">http://localhost:8181/noisygecko/@@manage-viewlets</div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>]]></content:encoded>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>sim</dc:creator>
    <dc:rights></dc:rights>
    
      <dc:subject>plone</dc:subject>
    
    <dc:date>2011-03-27T01:55:00Z</dc:date>
    <dc:type>Page</dc:type>
  </item>


  <item rdf:about="http://noisygecko.com/simeon-david-harbert-sim">
    <title>Simeon David Harbert (Sim)</title>
    <link>http://noisygecko.com/simeon-david-harbert-sim</link>
    <description></description>
    <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p align="center">Simeon David Harbert (Sim)<br />779 Medlock Road<br />Decatur, GA 30033-5512<br /><span class="gc-cs-link" id="gc-number-0" title="Call with Google Voice">404.939.4356</span><br /><a href="mailto:sim@noisygecko.com" rel="noreferrer" style="padding-left: 16px; "><span style="text-decoration: underline;">sim@noisygecko.com</span></a></p>
<h3>Education</h3>
<p>Georgia Institute of Technology, Atlanta, GA<br />M.S., Electrical Engineering, June 1991<br />3.3 GPA, honors<br />General Electric Foundation Graduate Fellowship, 1988-89</p>
<p>Davidson College, Davidson, NC<br />B.S., Physics, May 1988<br />3.5 GPA<br />Charles A. Dana Academic Scholarship, 1985-88</p>
<h3>Technical Summary</h3>
<ul style="padding-left: 0px; list-style-type: square; ">
<li>
<p>Extensive experience with software design and development in Python, C++, C, Perl, SQL, Ada, Fortran, LISP, Tcl/Tk, AWK, Bourne shell, sed.</p>
</li>
<li>
<p>Software development and many administration/maintenance tasks on Linux and Microsoft Windows (also Solaris, SunOS, AIX systems).</p>
</li>
<li>
<p>Revision control and software maintenance/testing with Subversion, CVS, RCS, Python's PyUnit and Doctest, Perl's Test/Harness.</p>
</li>
<li>
<p>Experience with popular software packages and API's including C++ Boost Libraries, Zope/Plone web application server, XML-RPC, Apache (mod_proxy, mod_rewrite, StrongHold), X Windows API, OpenGL API, Microsoft Office suite, and Python/Tkinter GUI framework.</p>
</li>
<li>
<p>Co-organizer of Python Atlanta monthly user group meetings, including hosting the meetings and making presentations.</p>
</li>
</ul>
<h3>Experience</h3>
<h4>Georgia Tech Research Institute<br />Software Engineer December 2001 to present<br />DoD SECRET clearance since 1988</h4>
<ul style="padding-left: 0px; list-style-type: square; ">
<li>
<p>Technical lead on poultry industry worker safety evaluation system project integrating software and electronics of human arm/body motion tracking and EMG sensors into a wireless data collection system.</p>
</li>
<li>
<p>Project director for 2 years on State of Georgia funded &gt;$200k project researching the use of laser projection technologies as an augmented reality human interaction system in industrial settings.</p>
</li>
<li>
<p>Created Plone/Zope based customized on-line poultry industry information systems survey and presented results at US Poultry &amp; Egg Association Information Systems annual seminar for three years.</p>
</li>
<li>
<p>Ported MS Visual Basic guided munitions simulation to a new C++ simulation framework.</p>
</li>
<li>
<p>Designed and implemented system to automatically parsed static code to generate new C++ software that evolved genetic algorithms of embedded missile warning receiver software.</p>
</li>
<li>
<p>Created Python/Tkinter based GUI on Linux for ray-trace rendering software written in Fortran. This included interfacing with extensive flat file database system, and creating a complex input script for the rendering software.</p>
</li>
<li>
<p>Wrote an easy-to-use spreadsheet-like GUI front-end in Python/Tkinter on Windows 2000 that ran a MathCAD model of an Active Protection System for a US Army TACOM project.</p>
</li>
</ul>
<h4>ZapMedia, Inc.<br />Internet Software Developer, October 2000 to August 2001</h4>
<ul style="padding-left: 0px; list-style-type: square; ">
<li>
<p>Designed and developed Internet applications (Zope ZClass and Python-based products) targeted for interaction with convergence multimedia device, including coding maintenance system for large-scale image database.</p>
</li>
<li>
<p>Dramatically improved product performance by designing and developing caching system to integrate with Zope Catalog internals.</p>
</li>
<li>
<p>Engineered and led web development group's platform shift to Zope Presentation Templates to improve web designer UI/logic integration.</p>
</li>
<li>
<p>Enhanced product through diverse system tasks, including writing Apache Rewrite/Proxy rules, benchmarking Zope performance, building testing and productivity tools.</p>
</li>
<li>
<p>Attended Zope track of SPAM9 Python Conference in Long Beach California representing ZapMedia.</p>
</li>
</ul>
<h4>Cox Interactive Media<br />Internet Software Developer, December 1998 to October 2000</h4>
<ul style="padding-left: 0px; list-style-type: square; ">
<li>
<p>Managed group of 7 developers as Developer Manager from July October 2000, reporting to CTO. Handled coordination of developer resources with Project Manager</p>
</li>
<li>
<p>Key developer handling evaluation and initial development effort using Zope Open Source web application server. Helped Digital Creations develop Zope based free classifieds ad software for CIM sites and create example site software for stress testing.</p>
</li>
<li>
<p>Principle developer on search system which consolidated search results for all CIM sites; Written in Perl, this system used LWP and exec'ing CGI's to gather the search results from LookSmart, Verity and other databases and used templates to present the results.</p>
</li>
<li>
<p>Designed and developed efficient system for handling user site customization using Apache mod_rewrite rules to parse cookie information.</p>
</li>
<li>
<p>Modified system for handling news feeds which included AP Online; Perl code processed stories and inserted them into Informix (using DBD/DBI SQL interface) and into Verity.</p>
</li>
<li>
<p>Maintained and modified many software systems such as data feed processors, user login/authentication system, in-house designed and built content production system, and many CGI's to handle such things as postcards and polls.</p>
</li>
</ul>
<h4>Georgia Tech Research Institute<br />Software Engineer October 1991 to December 1998<br />DoD SECRET clearance since 1988</h4>
<ul style="padding-left: 0px; list-style-type: square; ">
<li>
<p>Principal developer of graphical user interface architecture (Xgtsims) and data management system for EO/IR threat/sensor simulation environment (GTSIMS) using Tcl/Tk and SQL.</p>
</li>
<li>
<p>Principal developer in transition of Xgtsims to Tcl/Tk and porting to seven different Unix platforms.</p>
</li>
<li>
<p>Installed and customized a problem report management system (PRMS) for GTSIMS, including web-based access in secure and publicly accessible areas.</p>
</li>
<li>
<p>Member of laboratory software engineering process group that lead a process improvement effort toward a CMM (Capability Maturity Model) level-2 rating.</p>
</li>
<li>
<p>Integrated GTSIMS legacy Fortran data generation and conversion programs into GUI by automating with C programs and Tcl scripts.</p>
</li>
<li>
<p>Developed three-dimensional interactive visualization tools with C, Tcl/Tk and Open GL.</p>
</li>
<li>
<p>Director of $45k project to develop GTSIMS IR models of the C-17 for McDonnell-Douglas</p>
</li>
<li>
<p>Developed web based email browsing and mailing system using OO Perl CGI scripts.</p>
</li>
<li>
<p>Developed large number of in-house tools and utilities and maintained Apache web server for laboratory official web pages and employee pages.</p>
</li>
</ul>
<h4>Georgia Tech Research Institute<br />Systems Analyst, Graduate Research Assistant 1988 to October 1991</h4>
<ul style="padding-left: 0px; list-style-type: square; ">
<li>
<p>Developed FORTRAN and C code for modeling of three-dimensional objects in IR.</p>
</li>
<li>
<p>Developed C code to generate three-dimensional models of botanical trees using recursive botanical growth based algorithm.</p>
</li>
</ul>]]></content:encoded>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>sim</dc:creator>
    <dc:rights></dc:rights>
    
      <dc:subject>curriculum vitae</dc:subject>
    
    
      <dc:subject>resume</dc:subject>
    
    <dc:date>2009-07-09T04:00:00Z</dc:date>
    <dc:type>Page</dc:type>
  </item>


  <item rdf:about="http://noisygecko.com/tech/miata-genie-garage-door-opener-button-mod">
    <title>Miata Genie Garage Door Opener Button Mod</title>
    <link>http://noisygecko.com/tech/miata-genie-garage-door-opener-button-mod</link>
    <description>Not something most people would do, but I decided to install a garage door opener button the dash of my 2008 Miata.</description>
    <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p><img alt="geniemod1.JPG" class="image-right" src="geniemod1.JPG/image_mini" />While out shopping for yet another strange battery for my Genie garage door opener, I realized that it was a 12 volt battery.  Not wanting to waste money on one of those expensive batteries when my car provides lots of 12v power, I decided to hardwire it to my car.  While doing that I realized I could also hard wire the button itself so I don't have to have to search for the remote in some cubby hole in my car.</p>
<p>I first opened up the remote and soldered wires into onto the PC board.  Here you can see the two black wires connected to the main open/close switch, the black single wire connected to the negative, and the red conected to the positive.  After soldering these in place I cloased things back up and screwed the single screw in place on the back.</p>
<p>After doing this, I checked in the car and found a fuse for an always-on circuit.  I believe it is the stereo circuit, according to a forum posting I saw.  I have not been able to find out what fuses are what in the fuse box.</p>
<p><img alt="geniemod2.JPG" class="image-right" src="geniemod2.JPG/image_mini" />This picture shows the add-a-circuit system I installed to get the power for the circuit.</p>
<p><img alt="geniemod3.JPG" class="image-right" src="geniemod3.JPG/image_mini" />The next picture shows the point where I got the negative connection using a splice connector (is that what they are called?).  The splice connecter is red and connected to one of the black wires going together with all the other black wires that are ground wires.</p>
<p> </p>
<p> </p>
<p> </p>
<p><img alt="geniemod4.JPG" class="image-right" src="geniemod4.JPG/image_mini" /></p>
<p><img alt="geniemod5.jpg" class="image-right" src="geniemod5.jpg" />I removed one of the plastic place holders for a DSC switch or some other option that I didn't get in my car.  There are three spots for switches to the left of the steering wheel.  One has the passenger air-bag disable switch, and the others are blank in my car.  I remove the left most one by prying it out with a screw driver from below.  Not exactly elegant, but I am not sure if there is a better way to remove it.</p>
<p><img alt="copy_of_geniemod6.jpg" class="image-right" src="copy_of_geniemod6.jpg" />I then drilled a hole in it and reamed it out with a rasp till my pushbutton switch would mount inside the hole.  All in all it came out looking pretty good for a switch I happened to have around the house.  I soldered a wire and some connectors so I can disconnect things if I need to.</p>
<p> </p>
<p> </p>
<p>I mounted the switch plate back into the dash and connected everything up.  I checked to see if it worked again.</p>
<p> </p>
<p> </p>
<p> </p>
<p><img alt="geniemod7.jpg" class="image-right" src="geniemod7.jpg" /></p>
<p><img alt="geniemod9.jpg" class="image-right" src="geniemod9.jpg" /></p>
<p>Then I stuffed the remote up in with all the other wires in the panel.  Not sure yet if the reception will be good where it is since all my tests so far have been inside the garage.</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>]]></content:encoded>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>sim</dc:creator>
    <dc:rights></dc:rights>
    
      <dc:subject>auto</dc:subject>
    
    
      <dc:subject>miata</dc:subject>
    
    <dc:date>2008-08-26T04:00:00Z</dc:date>
    <dc:type>Page</dc:type>
  </item>


  <item rdf:about="http://noisygecko.com/tech/2008-miata-mx-5-stereo-head-unit-removal">
    <title>2008 Miata MX-5 Stereo Head Unit Removal</title>
    <link>http://noisygecko.com/tech/2008-miata-mx-5-stereo-head-unit-removal</link>
    <description>My HowTo for removing the stock Sound by Bose head unit in my 2008 Mazda Miata MX-5.</description>
    <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>Here are the steps I took to remove the HU.  The main difference between my instructions and others I saw is that I use a very simple way to remove the side panels and that there appears to be no internal bolt to remove from inside the dash in my car.  Here is where the instructions are that include info on the bolt removal and a lot of other stuff:</p>
<p><a class="external-link" href="http://www.mx-5.com/Community/forums/ShowThread.aspx?PostID=6195">http://www.mx-5.com/Community/forums/ShowThread.aspx?PostID=6195</a></p>
<p><img alt="Removing triangle side panel" class="image-inline image-right" src="http://noisygecko.com/tech/copy_of_P1000733.JPG/image_mini" style="float: right; " /></p>
<p>The first step is to remove the triangle side panels. Do this by putting the flat part of a screw driver against the point of the side panel that is toward the front of the car.  Pull directly toward the back of the car and it pops off.</p>
<p>Do the same thing for the other side panel.</p>
<p><img alt="Screw on side of head unit" class="image-inline image-right" src="http://noisygecko.com/tech/P1000734.JPG/image_mini" style="float: right; " /></p>
<p>Next remove each screw on the side of the head unit exposed by removal of the side panels.</p>
<p>Once that is done, put a towel down on the center console if you don't like scratching up all the plastic in your car.</p>
<p>Then grab the two sides of the head unit and pull toward the back of the car.  It should move backward pretty easily, but don't pull it back too far since there are cables that aren't very long connected to the back.</p>
<p>The next part was the hardest for me.  Remove the connector at the bottom of the panel that is goes to the climate controls.  I did it by pressing in the tab on the bottom and prying on the sides of the connector with a screwdriver.</p>
<p>Then reach in and cut the tape that bundles the wires behind the head unit.  Once that is done the head unit can be pulled out quite a way without unplugging the main connector for the head unit and the antenna connector.   Although the antenna connector probably got pulled out in the initial pull on the head unit, so plug it back in if you like FM or AM radio.</p>
<p><img alt="Back of head unit" class="image-inline image-right" src="http://noisygecko.com/tech/P1000735.JPG/image_mini" style="float: right; " />This picture shows the back of the head unit with the climate control plug removed from the bottom plug.  The satellite plug is the white one on the top right next to the antenna plug.</p>]]></content:encoded>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>sim</dc:creator>
    <dc:rights></dc:rights>
    
      <dc:subject>personal</dc:subject>
    
    
      <dc:subject>auto</dc:subject>
    
    
      <dc:subject>miata</dc:subject>
    
    <dc:date>2008-08-21T04:00:00Z</dc:date>
    <dc:type>Page</dc:type>
  </item>


  <item rdf:about="http://noisygecko.com/sim/sims-childhood">
    <title>Sim's Childhood</title>
    <link>http://noisygecko.com/sim/sims-childhood</link>
    <description></description>
    <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p><img alt="simtheartist.jpg" class="image-left" src="simtheartist.jpg/image_mini" />I was born in Atlanta, GA at Georgia Baptist Hospital, which is now Atlanta Medical Center.  That was the same hospital where my older brother, Jon, was born.  When I was two years old my parents moved to Indonesia to be missionaries.  We lived on the island of Sumatra in Palembang, Indonesia for a while and my younger brother, Harold, was born there.  After that we moved to Jambi, where we owned a monkey.</p>
<p><img alt="siminred.jpg" class="image-left" src="siminred.jpg/image_mini" />We moved back to the US for almost a year and lived in Lawrence, Kansas.  After our furlough in the US we returned to Indonesia and lived in Lahat, which is on the island of Sumatra as well.  While there I attended Indonesian schools till the third grade in the mornings, and my Mom taught me through correspondence coursesin the afternoons.  I read a lot, and tried to keep up with whatever my older brother was doing.</p>
<p>We did another year in the US in Tucker, GA, a suburb of Atlanta, GA.  There I attended the fourth grade where I was prolific at drawing horses heads that the girls all liked.</p>
<p>We then moved back to the big city of Medan on North Sumatra.  I attended the Medan International School, an American style school that no Indonesians were allowed to attend.  It was a great school for me and I learned a lot in the small classrooms from the great teachers.</p>
<p><img alt="siminbw.jpg" class="image-left" src="siminbw.jpg/image_mini" />After five years in Medan we moved back to the Atlanta area and lived in Decatur, GA.  I attended Decatur High School, which was a bit of a change.  Classes in general were pretty easy and it was hard to get used to the fact that most people had not travelled around the world -- many had never left the US.  But I survived.</p>]]></content:encoded>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>sim</dc:creator>
    <dc:rights></dc:rights>
    <dc:date>2008-07-09T04:00:00Z</dc:date>
    <dc:type>Page</dc:type>
  </item>


  <item rdf:about="http://noisygecko.com/sim/info-about-sim..">
    <title>Info about Sim...</title>
    <link>http://noisygecko.com/sim/info-about-sim..</link>
    <description></description>
    <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>I mostly wanted to post my resume so people can find it:</p>
<ul style="padding-left: 0px; list-style-type: square; ">
<li><a class="internal-link" href="http://noisygecko.com/simeon-david-harbert-sim" title="Simeon David Harbert (Sim)">Sim Harbert's resume</a></li>
</ul>
<h3>Highlights:</h3>
<ul style="padding-left: 0px; list-style-type: square; ">
<li><a class="internal-link" href="sims-childhood" title="Sim's Childhood">Grew up</a> in Indonesia from 2 to 14 years old.</li>
<li>Attended Decatur High School, in Decatur, GA</li>
<li>Physics B.S from Davidson College in Davidson, NC.</li>
<li>Masters degree in Electrical Engineering from Georgia Institute of Technology in Atlanta, GA.</li>
<li>Worked at Georgia Tech for many years in at GTRI (Georgia Tech Research Institute).</li>
<li>Currently work at GTRI again in the Food Processing Technology Division.</li>
</ul>
<p>Other Info:</p>
<ul style="padding-left: 0px; list-style-type: square; ">
<li><a class="internal-link" href="sims-childhood" title="Sim's Childhood">Sim's Childhood</a></li>
</ul>]]></content:encoded>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>sim</dc:creator>
    <dc:rights></dc:rights>
    <dc:date>2008-07-09T04:00:00Z</dc:date>
    <dc:type>Page</dc:type>
  </item>





</rdf:RDF>

