


<?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>Chris Meyer - Mentions</title>
	<atom:link href="http://chrismeyer.org/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://chrismeyer.org/wordpress</link>
	<description></description>
	<lastBuildDate>Sun, 18 Jul 2010 17:16:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Dreamhost How to Use Cronjobs to Email Backup MySQL Databases</title>
		<link>http://chrismeyer.org/wordpress/2010/07/dreamhost-how-to-use-cronjobs-to-email-backup-mysql-databases/</link>
		<comments>http://chrismeyer.org/wordpress/2010/07/dreamhost-how-to-use-cronjobs-to-email-backup-mysql-databases/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 17:16:06 +0000</pubDate>
		<dc:creator>Waterppk</dc:creator>
				<category><![CDATA[Webdevelopment]]></category>

		<guid isPermaLink="false">http://chrismeyer.org/wordpress/?p=325</guid>
		<description><![CDATA[I&#8217;ve been using Dreamhost for a while (works great btw), I had been backing things up manually but I thought it was about time to start automated mysql backups. Looking around online I found these instructions but they simply say to modify the instructions and add this mutt command mutt you@domain.com -a /home/username/backups/archives/mysql_backup.$suffix.tar -s "MySQL [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using Dreamhost for a while (works great btw), I had been backing things up manually but I thought it was about time to start automated mysql backups.  Looking around online I <a href="http://wiki.dreamhost.com/index.php/Automatic_Backup#Mysql_Database_Backup">found these instructions</a> but they simply say to modify the instructions and add this mutt command</p>
<p><code>mutt you@domain.com -a /home/username/backups/archives/mysql_backup.$suffix.tar -s "MySQL Backup"</code></p>
<p>to get e-mail backups working.  In reality, this command will merely open up mutt and create a new message but it will not automatically send it without additional input.  Buried online I found someone else who said to simply:</p>
<p><code>mutt you@domain.com -s "MySQL Backup" &lt; /home/username/backups/archives/mysql_backup.$suffix.tar</code></p>
<p>which does automatically e-mail you, but it just dumps the file into the e-mail body without attaching it as a document.  What that statement is really doing is piping in body text and completing the e-mail prompts magically, which isn&#8217;t what I wanted to do.  The solution is to:</p>
<p><code>mutt you@domain.com -a /home/username/backups/archives/mysql_backup.$suffix.tar -s "MySQL Backup" &lt; emailbody.txt</code></p>
<p>What this gives you is an attachment of your file, and then it pipes in an e-mail body (put it in the same location that this script is running from) and sends the message.  You would also use echo statements to &#8220;type&#8221; whatever additional input you wanted in mutt and script the rest of the message completion [untested but it conceptually should work, YMMV]</p>
<p>Full Script:<br />
<code><br />
#!/bin/bash<br />
cd /home/username/backups/<br />
mkdir mysql<br />
suffix=$(date +%y%m%d)<br />
mysqldump --opt -uUser -ppass -h mysqlA.domain.com db_nameA &gt; mysql/db_nameA.$suffix.sql<br />
mysqldump --opt -uUser -ppass -h mysqlB.domain.com db_nameB &gt; mysql/db_nameB.$suffix.sql<br />
tar -cf archives/mysql_backup.$suffix.tar mysql/*<br />
mutt you@domain.com -a /home/username/backups/archives/mysql_backup.$suffix.tar -s "MySQL Backup" &lt; emailbody.txt<br />
rm -r mysql/<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://chrismeyer.org/wordpress/2010/07/dreamhost-how-to-use-cronjobs-to-email-backup-mysql-databases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RepRap is Alive!</title>
		<link>http://chrismeyer.org/wordpress/2010/06/reprap-is-alive/</link>
		<comments>http://chrismeyer.org/wordpress/2010/06/reprap-is-alive/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 04:22:11 +0000</pubDate>
		<dc:creator>Waterppk</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[College]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Mechanical Engineering]]></category>
		<category><![CDATA[CNC]]></category>
		<category><![CDATA[Makerbot]]></category>
		<category><![CDATA[RepRap]]></category>
		<category><![CDATA[RepStrap]]></category>

		<guid isPermaLink="false">http://chrismeyer.org/wordpress/?p=315</guid>
		<description><![CDATA[I&#8217;ve been wrenching for a few weeks to machine enough pieces to create a CNC plastic extruder (RepRap / Makerbot). I&#8217;ve got the CNC part done, now I have to get the extruder and heated bed up and running so I can start RPing parts. Sector67 Forum Thread I&#8217;ve gotten a few questions as to [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been wrenching for a few weeks to machine enough pieces to create a CNC plastic extruder (RepRap / Makerbot).  I&#8217;ve got the CNC part done, now I have to get the extruder and heated bed up and running so I can start <a href="http://www.google.com/images?q=rapid prototyping">RPing</a> parts.</p>
<p><a href="http://forum.sector67.org/viewtopic.php?f=10&amp;t=9">Sector67 Forum Thread</a></p>
<p><a href="http://chrismeyer.org/wordpress/wp-content/uploads/2010/06/DSC09734.jpg" rel="lightbox[315]"><img class="aligncenter size-medium wp-image-316" title="RepRap ISO" src="http://chrismeyer.org/wordpress/wp-content/uploads/2010/06/DSC09734-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p><embed type="application/x-shockwave-flash" src="http://picasaweb.google.com/s/c/bin/slideshow.swf" width="400" height="267" flashvars="host=picasaweb.google.com&#038;captions=1&#038;hl=en_US&#038;feat=flashalbum&#038;RGB=0x000000&#038;feed=http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2Fwaterppk%2Falbumid%2F5488038332490551409%3Falt%3Drss%26kind%3Dphoto%26hl%3Den_US" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></p>
<p>I&#8217;ve gotten a few questions as to what you&#8217;re looking at, if you&#8217;re completely unfamiliar a <a href="http://en.wikipedia.org/wiki/RepRap_Project">visit to Wikipedia</a> should <a href="http://wiki.makerbot.com/">clear things up</a>.</p>
<p>It&#8217;s made out of 2&#8243; x 2&#8243; extruded aluminum channel, the railed looking stuff that makes up the top of the arm and the drop for the spindle (dremel) is called <a href="http://www.8020.net/">80/20</a>, it&#8217;s fairly expensive but is very precise and saves a lot of time for some projects.</p>
<p>The Z axis is the classic over constrained parallel rods, I pulled the rods out of a pair of identical printers and then drilled and reamed to size the end blocks and the slider block, which is just a chunk of delrin plastic.  The bad part about using a plastic block for a sliding surface is that you have a drill/ream it over significantly to get it the right size, which in my case just means it&#8217;s sloppy and will be replaced by linear bearing when it becomes the weakest link in the machine for precision or stiffness.</p>
<p>The bottom end X-Y axes are THK precision linear bearing.  I picked this out of discarded equipment at the university, which I understand it not available to &#8220;normal people&#8221;.  I found out a few years after I picked it up that it&#8217;s $0.43/millimeter (yep, that&#8217;s a half of a dollar per the thickness of your fingernail, it&#8217;s expensive).  The bearing carriages are ~$130/each.  I was fortunate enough to find a pair of 18&#8243; linear track and a pair of bearings still in their well oiled bags!  They do have lash in them and should certainly be run in parallel or with a precision guide track for stiffness/rigidity but for my application (milling light plastics and depositing plastic in an additive process) it&#8217;s not a major concern this early in the project.</p>
<p>The other common question is how much does this thing cost.  So far I have $199 for the full generation 3 Makerbot electronics (thanks Zach et al., they work great!) and $4.11 for 3 x 1&#8243; long 1/4-20 nuts that are used on each of the axes (True Value).  The rest has been collected or given to me by others.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismeyer.org/wordpress/2010/06/reprap-is-alive/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Water Skiing!</title>
		<link>http://chrismeyer.org/wordpress/2010/06/water-skiing/</link>
		<comments>http://chrismeyer.org/wordpress/2010/06/water-skiing/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 03:50:03 +0000</pubDate>
		<dc:creator>Waterppk</dc:creator>
				<category><![CDATA[College]]></category>
		<category><![CDATA[Random Thoughts]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Water skiing]]></category>

		<guid isPermaLink="false">http://chrismeyer.org/wordpress/?p=312</guid>
		<description><![CDATA[Yes, abnormal delay between posts, I&#8217;ve been very busy. . . Got to go out water skiing on the PerBlue corporate yacht, for my first time I wasn&#8217;t too bad:]]></description>
			<content:encoded><![CDATA[<p>Yes, abnormal delay between posts, I&#8217;ve been very busy. . .</p>
<p>Got to go out water skiing on the PerBlue corporate yacht, for my first time I wasn&#8217;t too bad:</p>
<p><embed type="application/x-shockwave-flash" src="http://picasaweb.google.com/s/c/bin/slideshow.swf" width="400" height="267" flashvars="host=picasaweb.google.com&#038;captions=1&#038;hl=en_US&#038;feat=flashalbum&#038;RGB=0x000000&#038;feed=http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2Fwaterppk%2Falbumid%2F5488036711751473697%3Falt%3Drss%26kind%3Dphoto%26hl%3Den_US" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://chrismeyer.org/wordpress/2010/06/water-skiing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>These are a few of my favorite stores. . .</title>
		<link>http://chrismeyer.org/wordpress/2010/03/these-are-a-few-of-my-favorite-stores/</link>
		<comments>http://chrismeyer.org/wordpress/2010/03/these-are-a-few-of-my-favorite-stores/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 01:19:15 +0000</pubDate>
		<dc:creator>Waterppk</dc:creator>
				<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Mechanical]]></category>
		<category><![CDATA[Cheap Junk]]></category>
		<category><![CDATA[College Budget]]></category>

		<guid isPermaLink="false">http://chrismeyer.org/wordpress/?p=304</guid>
		<description><![CDATA[I&#8217;ve been meaning to post this for a while now Electronics vendors: Digikey (Excellent search function, expensive but very good pictures, lots of products too) Mouser (lots of what digikey has but no pictures! Great for Delphi / Amphenol connectors) Newark (bigger weirder stuff, careful some stuff ships from Farnell in the UK) Jameco (Search [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been meaning to post this for a while now <img src='http://chrismeyer.org/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><strong>Electronics vendors:</strong><br />
<a href="http://www.digikey.com/">Digikey</a> (Excellent search function, expensive but very good pictures, lots of products too)<br />
<a href="http://mouser.com/">Mouser</a> (lots of what digikey has but no pictures!  Great for Delphi / Amphenol connectors)<br />
<a href="http://www.newark.com/">Newark</a> (bigger weirder stuff, careful some stuff ships from Farnell in the UK)<br />
<a href="http://www.jameco.com">Jameco</a> (Search is terrible, but if you can&#8217;t find it anywhere else. . .)<br />
<a href="http://www.alliedelec.com/">Allied Electronics</a> (Cheap amphenol. . .)<br />
<a href="http://waytekwire.com">Waytek</a> (cheap for bulk connectors and wire, next day shipping)</p>
<p><strong>Arduino:</strong><br />
<a href="http://adafruit.com/">Adafruit</a> (cheap and usually has what I need, I&#8217;d rather pay a little more to support a still growing startup)<br />
<a href="http://www.sparkfun.com">Sparkfun</a> (expensive but a good one-stop-shop)</p>
<p><strong>Electronics Surplus:</strong><br />
<a href="http://allelectronics.com/">All Electronics</a></p>
<p><strong>China Direct Electronics:</strong><br />
<a href="http://futurlec.com/">Futurlec</a> (Cheap, good customer support, responsive, shipping takes a while &#8211; as indicated up front)<br />
<a href="http://www.dealextreme.com/">Deal Extreme</a> (holy cheap, lots of people on eBay/discount stores are buying and drop shipping from them)<br />
<a href="http://www.sureelectronics.net/">Sure Electronics</a> (Lots of great cheap parts, you have to add them to your cart and check shipping after each item though, they&#8217;re making up some of their costs by charging shipping for each item &#8211; I received everything 3rd day after I ordered it though, which is amazing)</p>
<p><strong>Materials:</strong><br />
<a href="http://www.mcmaster.com/">McMaster-Carr</a> (Expensive, ships quick, stocks a lot, great pictures/details on products, search rocks)<br />
<a href="http://www.grainger.com/">Grainger</a> (Search sucks, plumbing stuff/etc much cheaper than McMaster, if you can find anything. . .)<br />
<a href="http://www.mscdirect.com">MSC Direct</a> (Tooling, industrial consumables)</p>
<p><strong>Tools</strong><br />
<a href="http://www.harborfreight.com/">Harbor Freight</a> (If you&#8217;re on a budget you can&#8217;t get better than HF tools, but <a href="http://hfreviews.com" target="_Blank">make sure you read the reviews</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismeyer.org/wordpress/2010/03/these-are-a-few-of-my-favorite-stores/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thanks Brothers Brick :-)</title>
		<link>http://chrismeyer.org/wordpress/2010/02/thanks-brothers-brick/</link>
		<comments>http://chrismeyer.org/wordpress/2010/02/thanks-brothers-brick/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 00:53:06 +0000</pubDate>
		<dc:creator>Waterppk</dc:creator>
				<category><![CDATA[Random Thoughts]]></category>
		<category><![CDATA[9V Conversion]]></category>
		<category><![CDATA[Lego Tracks]]></category>

		<guid isPermaLink="false">http://chrismeyer.org/wordpress/?p=298</guid>
		<description><![CDATA[I was checking my web traffic today to notice a massive surge in traffic, I immediately feared for the worst and figured I got hacked. . . Turns out The Brothers Brick finally found my post on converting plastic/modern Lego tracks into the 9V tracks that I posted about a while ago.  Thanks for the [...]]]></description>
			<content:encoded><![CDATA[<p>I was checking my web traffic today to notice a massive surge in traffic, I immediately feared for the worst and figured I got hacked. . .</p>
<p><a href="http://chrismeyer.org/wordpress/wp-content/uploads/2010/02/Web-Traffic.png" rel="lightbox[298]"><img class="aligncenter size-full wp-image-299" title="Web Traffic Spike" src="http://chrismeyer.org/wordpress/wp-content/uploads/2010/02/Web-Traffic.png" alt="Web Traffic Spike" width="295" height="231" /></a></p>
<p>Turns out <a href="http://www.brothers-brick.com/">The Brothers Brick</a> finally found my post on <a href="http://chrismeyer.org/projects/lego-train-track/">converting plastic/modern Lego tracks into the 9V tracks</a> that I posted about a while ago.  Thanks for the traffic and enjoy your stay <img src='http://chrismeyer.org/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://chrismeyer.org/wordpress/2010/02/thanks-brothers-brick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Program Sparkfun Arduino Pro Mini</title>
		<link>http://chrismeyer.org/wordpress/2010/02/how-to-program-sparkfun-arduino-pro-mini/</link>
		<comments>http://chrismeyer.org/wordpress/2010/02/how-to-program-sparkfun-arduino-pro-mini/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 18:57:09 +0000</pubDate>
		<dc:creator>Waterppk</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Arduino Pro Mini]]></category>
		<category><![CDATA[Sparkfun]]></category>

		<guid isPermaLink="false">http://chrismeyer.org/wordpress/?p=294</guid>
		<description><![CDATA[I just picked up a Sparkfun Arduino Pro Mini board for a project.  It&#8217;s a really nice really compact board with almost all of the pins broken out on it.  If you already own a Duemilanove you can easily program it using the Arduino software, just pull the Atmega chip off the Duemilanove and then [...]]]></description>
			<content:encoded><![CDATA[<p>I just picked up a <a href="http://arduino.cc/en/Main/ArduinoBoardProMini">Sparkfun Arduino Pro Mini</a> board for a project.  It&#8217;s a really nice really compact board with almost all of the pins broken out on it.  If you already own a <a href="http://arduino.cc/en/Main/ArduinoBoardDuemilanove">Duemilanove</a> you can easily program it using the Arduino software, just pull the Atmega chip off the Duemilanove and then using the shortest side of the board&#8217;s contacts, wire:</p>
<p>reset &#8211; grn<br />
tx<br />
rx<br />
vcc<br />
gnd<br />
blank &#8211; blk</p>
<p>The words grn and blk are silkscreened on the board to denote which pins are which.  You could of course use a RS232-&gt;TLL converter to program this as well, but using the Duemilanove is really convenient as it pulls the reset pin low for you.</p>
<p>On the topic of this Pro Mini board, I had a few e-mails back and forth with Sparkfun trying to figure out what the actual maximum input voltage for the board is, <a href="http://www.sparkfun.com/commerce/product_info.php?products_id=9218">Sparkfun&#8217;s Website</a> lists it at 12VDC max, the EagleCAD schematics list it as 16VDC, and the datasheet for the voltage regulator list it as operational maximum 16VDC, with an absolute maximum of +/-20VDC before damage occurs.</p>
<p>Also noted is that the oscillator on this board is absolute crap, I have a timing critical application that I intended to use this board on, using a stopwatch and a Duemilanove and this board, both running identical software and hardware configurations:</p>
<p>15hours 37 minutes elapses, the Duemilanove is exactly in sync with the stopwatch still, the Pro Mini has gained 1 minute and 1 second.  I ran this test several more times with identical results, the stop watch and the Duemilanove are in sync, with the Pro Mini gaining time each time, always about 20 second per 5 hours elapsed time, which is not acceptable in my application.</p>
<p>I swapped the Sparkfun crystal/resonator for one of my own resonators and ended up with the same crappy timing.  I finally switched out the resonator for a crystal and a pair of capacitors tied to ground and was able to clean up the timing mostly, it&#8217;s still gaining a second for every 40 minutes it runs for, it was previously 15 so it&#8217;s improved, but not ideal.  I&#8217;m going to ditch using the Sparkfun board for my own layout on the next iteration.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismeyer.org/wordpress/2010/02/how-to-program-sparkfun-arduino-pro-mini/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>National Instruments DIAdem Text @@ Commands</title>
		<link>http://chrismeyer.org/wordpress/2010/02/national-instruments-diadem-text-commands/</link>
		<comments>http://chrismeyer.org/wordpress/2010/02/national-instruments-diadem-text-commands/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 22:11:15 +0000</pubDate>
		<dc:creator>Waterppk</dc:creator>
				<category><![CDATA[College]]></category>
		<category><![CDATA[LabVIEW]]></category>
		<category><![CDATA[DIAdem]]></category>
		<category><![CDATA[National Instruments]]></category>
		<category><![CDATA[Program Variables]]></category>
		<category><![CDATA[Special Variables]]></category>

		<guid isPermaLink="false">http://chrismeyer.org/wordpress/?p=286</guid>
		<description><![CDATA[If you&#8217;ve ever used NI&#8217;s DIAdem for data analysis you know how useful it is for looking at and analyzing large datasets.  What you may or may not have discovered is the @@&#8212;&#8212;@@ commands that can be used to display channel related texts anywhere in the program. DIAdem helpfully gives you a list of available [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve ever used NI&#8217;s DIAdem for data analysis you know how useful it is for looking at and analyzing large datasets.  What you may or may not have discovered is the @@&#8212;&#8212;@@ commands that can be used to display channel related texts anywhere in the program.</p>
<p>DIAdem helpfully gives you a list of available commands, but doesn&#8217;t tell you what they display or how to use them.<br />
Program Command: @@ChnPropGet(No,Property name)@@<br />
Formatting: @@ChnPropGet(1,&#8221;Description&#8221;)@@<br />
Output: The 1st channel&#8217;s Description, other input could be Name, Unit, etc<br />
Notes: Make sure to use quotes around the Property name and remember that the channels are counted from the very first channel onwards and found as &#8220;Number&#8221; in the channel information.</p>
<p>Command: @@CD()@@<br />
Formatting: @@CD(1)@@<br />
Output: The 1st channel&#8217;s Units</p>
<p>Command: @@ChD(Line,No)@@<br />
Formatting: @@ChD(2,1)@@<br />
Output: The 1st channel&#8217;s second data point value</p>
<p>Command: @@CL(No)@@<br />
Formatting: @@CL(1)@@<br />
Output: The 1st channel&#8217;s number of points (length)</p>
<p>Command: @@CNoXGet(Channel group number,No)@@<br />
Formatting: @@CNoXGet(2,1)@@<br />
Output: Finds the 2nd group&#8217;s first channel and returns it&#8217;s channel number (counting from the first channel.<br />
Notes: Could be considered translating from relative position of a channel (in a group) to absolute position in the list of channels.</p>
<p>Couple of general notes, you can&#8217;t nest lookups (at least not in the text boxes, so it would be invalid to:</p>
<p><code>@@ChnPropGet(794,"Description")@@</code></p>
<p>and turn it into a lookup:<br />
<code>@@ChnPropGet(@@CNoXGet(15,1)@@,"Description")@@</code></p>
<p>Otherwise it&#8217;s pretty helpful to use these when labeling graphs/etc so you don&#8217;t have to constantly correct things.  DIAdem also builds in lots of string functions like trim/etc, so you can clean things up if necessary!</p>
<p>&lt;WordPress&gt;  &#8211; I had all these formatted nicely in a table but WordPress ate itself trying to render it, hence the oddball list, sorry. &lt;/WordPress&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismeyer.org/wordpress/2010/02/national-instruments-diadem-text-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MAX6675 Thermocouple Amplifier EagleCAD</title>
		<link>http://chrismeyer.org/wordpress/2010/02/max6675-thermocouple-amplifier-eaglecad/</link>
		<comments>http://chrismeyer.org/wordpress/2010/02/max6675-thermocouple-amplifier-eaglecad/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 21:44:26 +0000</pubDate>
		<dc:creator>Waterppk</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Amplifier]]></category>
		<category><![CDATA[EagleCAD]]></category>
		<category><![CDATA[Interface Board]]></category>
		<category><![CDATA[K-Type]]></category>
		<category><![CDATA[TC]]></category>

		<guid isPermaLink="false">http://chrismeyer.org/wordpress/?p=282</guid>
		<description><![CDATA[I created a little SMT board for the MAX6675 thermocouple amplifier in EagleCAD if anyone out there is in need of a board.  It&#8217;s very simple layout but it is a bit noisy, definitely expect to average samples coming from this chip (/board?).  Other improvements would be adding a thermistor as the CJC (cold junction [...]]]></description>
			<content:encoded><![CDATA[<p>I created a little SMT board for the MAX6675 thermocouple amplifier in EagleCAD if anyone out there is in need of a board.  It&#8217;s very simple layout but it is a bit noisy, definitely expect to average samples coming from this chip (/board?).  Other improvements would be adding a thermistor as the CJC (cold junction compensation) on the board so you can accurately offset the junctions at the board where you break the thermocouple wire and transition over to copper (which creates another TC junction unintentionally so you must compensate for it).</p>
<p><a href="http://chrismeyer.org/wordpress/wp-content/uploads/2010/02/TC-Amp.png" rel="lightbox[282]"><img class="aligncenter size-medium wp-image-284" title="MAX6675 TC Amplifier Board and Schematic" src="http://chrismeyer.org/wordpress/wp-content/uploads/2010/02/TC-Amp-300x100.png" alt="MAX6675 TC Amplifier Board and Schematic" width="300" height="100" /></a></p>
<p><a href="http://chrismeyer.org/wordpress/wp-content/uploads/2010/02/MAX6675-TC-Board.zip">MAX6675 TC Board Schematic and Board (and Panelized)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://chrismeyer.org/wordpress/2010/02/max6675-thermocouple-amplifier-eaglecad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Argonne National Lab</title>
		<link>http://chrismeyer.org/wordpress/2010/01/argonne-national-lab/</link>
		<comments>http://chrismeyer.org/wordpress/2010/01/argonne-national-lab/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 04:38:51 +0000</pubDate>
		<dc:creator>Waterppk</dc:creator>
				<category><![CDATA[College]]></category>
		<category><![CDATA[Advanced Photon Source]]></category>
		<category><![CDATA[ANL]]></category>
		<category><![CDATA[Argonne National Lab]]></category>
		<category><![CDATA[Beamline]]></category>
		<category><![CDATA[National Lab]]></category>
		<category><![CDATA[X-Rays]]></category>

		<guid isPermaLink="false">http://chrismeyer.org/wordpress/?p=273</guid>
		<description><![CDATA[I took a field trip with work down to Argonne National Lab to see their engine labs. We also stopped by their photon source (used to generate x-rays). While we were walking through a storage area they pointed out a real version of the Hunt for Red October&#8217;s caterpillar drive, in reality called a &#8220;Magentohydrodynamic [...]]]></description>
			<content:encoded><![CDATA[<p>I took a field trip with work down to <a href="http://www.anl.gov/">Argonne National Lab</a> to see their engine labs.  We also stopped by their <a href="http://www.aps.anl.gov/" target="_Blank">photon source</a> (used to generate x-rays).</p>
<p>While we were walking through a storage area they pointed out a real version of the Hunt for Red October&#8217;s caterpillar drive, in reality called a &#8220;<a href="http://en.wikipedia.org/wiki/Magnetohydrodynamic_drive" target="_Blank">Magentohydrodynamic drive</a>&#8221; which uses massive magnetic fields to induce flow in water.</p>
<p><a href="http://chrismeyer.org/wordpress/wp-content/uploads/2010/01/DSC09384.jpg" rel="lightbox[273]"><img class="aligncenter size-medium wp-image-274" title="Magnetohydrodynamic Drive" src="http://chrismeyer.org/wordpress/wp-content/uploads/2010/01/DSC09384-300x225.jpg" alt="Magnetohydrodynamic Drive" width="300" height="225" /></a></p>
<p>Pictures of the advanced beamline that they put materials/experiments in the way of to blast them with x-rays:</p>
<p><a href="http://chrismeyer.org/wordpress/wp-content/uploads/2010/01/DSC09386.jpg" rel="lightbox[273]"><img class="aligncenter size-medium wp-image-275" title="Advanced Photon Source" src="http://chrismeyer.org/wordpress/wp-content/uploads/2010/01/DSC09386-300x225.jpg" alt="Advanced Photon Source" width="300" height="225" /></a></p>
<p><a href="http://chrismeyer.org/wordpress/wp-content/uploads/2010/01/DSC09386.jpg" rel="lightbox[273]"></a><a href="http://chrismeyer.org/wordpress/wp-content/uploads/2010/01/DSC09392.jpg" rel="lightbox[273]"><img class="aligncenter size-medium wp-image-276" title="Advanced Photon Source" src="http://chrismeyer.org/wordpress/wp-content/uploads/2010/01/DSC09392-225x300.jpg" alt="Advanced Photon Source" width="225" height="300" /></a></p>
<p><a href="http://chrismeyer.org/wordpress/wp-content/uploads/2010/01/DSC09397.jpg" rel="lightbox[273]"><img class="aligncenter size-medium wp-image-277" title="Advanced Photon Source" src="http://chrismeyer.org/wordpress/wp-content/uploads/2010/01/DSC09397-300x225.jpg" alt="Advanced Photon Source" width="300" height="225" /></a></p>
<p>Here&#8217;s a picture of the accelerator used to get the photons up to warp speed. (99+% c )</p>
<p><a href="http://chrismeyer.org/wordpress/wp-content/uploads/2010/01/DSC09405.jpg" rel="lightbox[273]"><img class="aligncenter size-medium wp-image-278" title="Advanced Photon Source Accelerator" src="http://chrismeyer.org/wordpress/wp-content/uploads/2010/01/DSC09405-225x300.jpg" alt="Advanced Photon Source Accelerator" width="225" height="300" /></a></p>
<p>And I managed to find evidence of the infamous government&#8217;s Sector 7 as noted on this bicycle:</p>
<p><a href="http://chrismeyer.org/wordpress/wp-content/uploads/2010/01/DSC09402.jpg" rel="lightbox[273]"><img class="aligncenter size-medium wp-image-279" title="Proof of Sector 7" src="http://chrismeyer.org/wordpress/wp-content/uploads/2010/01/DSC09402-225x300.jpg" alt="Proof of Sector 7" width="225" height="300" /></a></p>
<p>Finally, for being one of the most advanced research facilities in the world, they sure managed to keep things looking fresh out of WWII on the exterior, here we can see some of the outdoor exposed infrastructure leaking like a sieve, good thing it&#8217;s just steam:</p>
<p><a href="http://chrismeyer.org/wordpress/wp-content/uploads/2010/01/DSC09406.jpg" rel="lightbox[273]"><img class="aligncenter size-medium wp-image-280" title="Argonne National Lab Aging Infrastructure" src="http://chrismeyer.org/wordpress/wp-content/uploads/2010/01/DSC09406-300x225.jpg" alt="Argonne National Lab Aging Infrastructure" width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://chrismeyer.org/wordpress/2010/01/argonne-national-lab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HP 3325B Function Generator</title>
		<link>http://chrismeyer.org/wordpress/2010/01/hp-3325b-function-generator/</link>
		<comments>http://chrismeyer.org/wordpress/2010/01/hp-3325b-function-generator/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 19:38:47 +0000</pubDate>
		<dc:creator>Waterppk</dc:creator>
				<category><![CDATA[College]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Repair]]></category>
		<category><![CDATA[HP 3325B]]></category>
		<category><![CDATA[HP3325B]]></category>
		<category><![CDATA[Test Equipment]]></category>

		<guid isPermaLink="false">http://chrismeyer.org/wordpress/?p=269</guid>
		<description><![CDATA[I saved a HP3325B from the trash almost 6 months ago which is an awesome score.  When I had first powered it up it threw a FAIL 023 error, I put it under my desk and decided to get it out and patch it up today. First key bit of information is that HP / [...]]]></description>
			<content:encoded><![CDATA[<p>I saved a HP3325B from the trash almost 6 months ago which is an awesome score.  When I had first powered it up it threw a FAIL 023 error, I put it under my desk and decided to get it out and patch it up today.</p>
<p>First key bit of information is that HP / Agilent are absolutely spectacular companies for providing service manuals, product manuals, and datasheets well beyond the retail life of their instruments.  <a href="http://www.home.agilent.com/agilent/facet.jspx?k=3325B&amp;neighborhood=ETM&amp;kt=1&amp;cc=US&amp;lc=eng&amp;homesearch=Search&amp;searchbtn=Search" target="_blank">You can still pick up documentation directly from Agilent here.</a></p>
<p>In digging through the datasheet you can see that a FAIL 023 means we&#8217;re having a problem with the dc offset, so I printed off the relevant service information (groups K,J) and prepared for the worst.  After powering the machine on at my desk I was again met with the FAIL 023 when requesting a sine wave, and a new error was a FAIL021 when requesting a square wave.  I then out of chance cycled through the other 3 settings (triangle, etc) and returned to the square wave and sine waves to discover that the errors had went away!  It&#8217;s likely that I had a stuck/hung up relay and switching away from square and sine waves cycled something into place again.  We&#8217;ll see how long it lasts but hopefully I&#8217;ve just picked up a nice piece of equipment.</p>
<p>Additionally while I was reassembling the covers, turning the instrument from side to side resulted in a nice pinball sound, I swung it back in forth until I was greeted with 3 washers on my desk, I can&#8217;t imagine that these were helping with things but they&#8217;re out now.  Looks like they came off the main power transformer which someone had helpfully duct-taped into place at some point.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismeyer.org/wordpress/2010/01/hp-3325b-function-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
