<?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>Wayne and Layne</title>
	<atom:link href="http://wayneandlayne.com/linkblog/feed/" rel="self" type="application/rss+xml" />
	<link>http://wayneandlayne.com/linkblog</link>
	<description>Taking the blag out of blog</description>
	<lastBuildDate>Fri, 07 May 2010 15:11:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Firefox AdBlock Plus rules to neuter Facebook connect</title>
		<link>http://wayneandlayne.com/linkblog/2010/05/07/firefox-adblock-plus-rules-to-neuter-facebook-connect/</link>
		<comments>http://wayneandlayne.com/linkblog/2010/05/07/firefox-adblock-plus-rules-to-neuter-facebook-connect/#comments</comments>
		<pubDate>Fri, 07 May 2010 13:41:50 +0000</pubDate>
		<dc:creator>Layne</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[original-content]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://wayneandlayne.com/linkblog/?p=1590</guid>
		<description><![CDATA[Tired of the anti-privacy features that Facebook keeps rolling out? Getting a little worried about third-party websites silently installing applications to access all your personal information? Well then quit facebook, already! Just kidding, how would you ever stalk your friends, family, and random strangers you met a the bar if you quit facebook? As a [...]]]></description>
			<content:encoded><![CDATA[<p>Tired of the anti-privacy features that Facebook keeps rolling out? Getting a little worried about third-party websites silently installing applications to access all your personal information? Well then quit facebook, already!</p>
<p>Just kidding, how would you ever stalk your friends, family, and random strangers you met a the bar if you quit facebook? As a stop-gap measure, you can use the <a href="http://adblockplus.org/en/">AdBlock Plus</a> extension for Firefox to eliminate most of the cross-site facebook interactions.</p>
<p>1. Install <a href="http://adblockplus.org/en/">AdBlock Plus</a> in your Firefox browser.</p>
<p>2. Save this text into a file on your Desktop:<br />
<code>[Adblock Plus 1.1]<br />
||connect.facebook.net/<br />
||facebook.com/connect/<br />
||facebook.com/plugins/<br />
||facebook.com/ajax/connect/<br />
||facebook.com/connect.php/<br />
||api.facebook.com/restserver.php<br />
##img[src$="facebook_icon.png"]<br />
||fbcdn.net/connect$domain=~facebook.com|~fbcdn.net|~facebook.net|~fbcdn.com<br />
||fbcdn.net/rsrc.php$domain=~facebook.com|~fbcdn.net|~facebook.net|~fbcdn.com</code></p>
<p>3. Open up Firefox and the AdBlock Plus preferences. Click on &#8220;Filters&#8221; -> &#8220;Import Filters&#8230;&#8221; Select the file you just created.</p>
<p>4. When it asks, you probably want to say &#8220;Append&#8221; filter rules instead of replacing your current rules.</p>
<p>5. The new anti-facebook-connect rules should be displayed in the filter rule lists!</p>
<p>References:<br />
BoingBoing Article <a href="http://www.boingboing.net/2010/05/06/facebooks-new-instan.html#comment-780758">Facebook: New &#8216;social&#8217; features secretly install malware</a><br />
Make Magazine Blog:<a href="http://http://blog.makezine.com/archive/2010/05/how-to_avoid_facebook_malware.html">How-to: Avoid &#8216;Facebook malware&#8217;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wayneandlayne.com/linkblog/2010/05/07/firefox-adblock-plus-rules-to-neuter-facebook-connect/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fix &#8220;top&#8221; process watcher on OSX</title>
		<link>http://wayneandlayne.com/linkblog/2010/05/05/fix-top-process-watcher-on-osx/</link>
		<comments>http://wayneandlayne.com/linkblog/2010/05/05/fix-top-process-watcher-on-osx/#comments</comments>
		<pubDate>Wed, 05 May 2010 14:55:38 +0000</pubDate>
		<dc:creator>Layne</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[original-content]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://wayneandlayne.com/linkblog/?p=1581</guid>
		<description><![CDATA[Most Unix folks expect the top command to show a list of current processes, with the most CPU-intensive at the top. This is not the behavior of top on OSX, so here&#8217;s a way to fix that. Add the following line to your ~/.bash_profile or ~/.bashrc: alias top="top -o -cpu" This change will affect all [...]]]></description>
			<content:encoded><![CDATA[<p>Most Unix folks expect the <strong>top</strong> command to show a list of current processes, with the most CPU-intensive at the top. This is not the behavior of <strong>top</strong> on OSX, so here&#8217;s a way to fix that.</p>
<p>Add the following line to your ~/.bash_profile or ~/.bashrc:</p>
<p><code>alias top="top -o -cpu"</code></p>
<p>This change will affect all new terminal windows you open, but to update your current shell, you can do the following:</p>
<p><code>source ~/.bashrc</code><br />
or<br />
<code>source ~/.bash_profile</code></p>
]]></content:encoded>
			<wfw:commentRss>http://wayneandlayne.com/linkblog/2010/05/05/fix-top-process-watcher-on-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nomogram</title>
		<link>http://wayneandlayne.com/linkblog/2010/03/23/nomogram/</link>
		<comments>http://wayneandlayne.com/linkblog/2010/03/23/nomogram/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 12:02:50 +0000</pubDate>
		<dc:creator>Layne</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[electrical-engineering]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[plot]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[wikipedia]]></category>

		<guid isPermaLink="false">http://wayneandlayne.com/?p=1511</guid>
		<description><![CDATA[A nomogram, nomograph, or abac is a graphical calculating device, a two-dimensional diagram designed to allow the approximate graphical computation of a function: it uses a coordinate system other than Cartesian coordinates. Defining alternatively, a nomogram is a two-dimensionally plotted function with n parameter, from which, knowing n-1 parameters, the unknown one can be read, [...]]]></description>
			<content:encoded><![CDATA[<p>A <strong>nomogram</strong>, nomograph, or abac is a graphical calculating device, a two-dimensional diagram designed to allow the approximate graphical computation of a function: it uses a coordinate system other than Cartesian coordinates. Defining alternatively, a nomogram is a two-dimensionally plotted function with <em>n</em> parameter, from which, knowing <em>n-1</em> parameters, the unknown one can be read, or fixing some parameters, the relationship between the unfixed ones can be studied.</p>
<p><img src="http://wayneandlayne.com/linkblog/wp-content/uploads/2010/03/smith_chart-299x300.png" alt="" title="Smith Chart" width="299" height="300" class="aligncenter size-medium wp-image-1542" /></p>
<p>A <a href="http://en.wikipedia.org/wiki/Smith_chart">Smith Chart</a> is a type of nomogram</p>
<p>Like a slide rule, it is a graphical analog computation device; and, like the slide rule, its accuracy is limited by the precision with which physical markings can be drawn, reproduced, viewed, and aligned. Most nomograms are used in applications where an approximate answer is appropriate and useful. Otherwise, the nomogram may be used to check an answer obtained from an exact calculation method.</p>
<p>The slide rule is intended to be a general-purpose device. Nomograms are usually designed to perform a specific calculation, with tables of values effectively built in to the construction of the scales.</p>
<p>via <a href='http://en.wikipedia.org/wiki/Nomograph'>Nomogram &#8211; Wikipedia, the free encyclopedia</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://wayneandlayne.com/linkblog/2010/03/23/nomogram/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Caterpillar Club</title>
		<link>http://wayneandlayne.com/linkblog/2010/03/22/caterpillar-club/</link>
		<comments>http://wayneandlayne.com/linkblog/2010/03/22/caterpillar-club/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 11:45:00 +0000</pubDate>
		<dc:creator>Layne</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[aviation]]></category>
		<category><![CDATA[biology]]></category>
		<category><![CDATA[engineering]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[military]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[war]]></category>
		<category><![CDATA[wikipedia]]></category>

		<guid isPermaLink="false">http://wayneandlayne.com/?p=1509</guid>
		<description><![CDATA[The Caterpillar Club is an informal association of people who have successfully used a parachute to bail out of a disabled aircraft. After authentication by the parachute maker, applicants receive a membership certificate and a distinctive lapel pin. Before April 28, 1919, there was no way for a pilot to jump out of a plane [...]]]></description>
			<content:encoded><![CDATA[<p>The Caterpillar Club is an informal association of people who have successfully used a parachute to bail out of a disabled aircraft. After authentication by the parachute maker, applicants receive a membership certificate and a distinctive lapel pin.</p>
<p><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/CaterpillarClubPin.jpg/220px-CaterpillarClubPin.jpg" style="float: right; padding-left: 10px; width: 220px;" /></p>
<p>Before April 28, 1919, there was no way for a pilot to jump out of a plane and then to deploy a parachute. Parachutes were stored in a canister attached to the aircraft, and if the plane was spinning, the parachute could not deploy. Leslie Irvin developed a parachute that the pilot could deploy at will from a back-pack using a rip-cord. He joined the Army Air Service parachute research team, and in April 1919, he successfully tested his design, though he broke his ankle during the test. Irvin was the first person to make a premeditated free fall jump from an airplane. He went on to form the Irving Airchute Company which later became Irvin Aerospace.  An early brochure of the Irvin Parachute Company credits William O&#8217;Connor 24 August 1920 at McCook Field near Dayton, Ohio as the first person to be saved by an Irvin parachute, but this feat was unrecognised. On 20 October 1922, Lieutenant Harold R. Harris, chief of the McCook Field Flying Station, jumped from a disabled Loening W-2A monoplane fighter. Shortly after, two reporters from the Dayton Herald, realising that there would be more jumps in future, suggested that a club should be formed. &#8220;Caterpillar Club&#8221; was suggested because the parachute canopy was made of silk, and because caterpillars have to climb out of their cocoons and fly away. Harris became the first member, and from that time forward any person who jumped from a disabled aircraft with a parachute became a member of the Caterpillar Club. Other famous members include General James Doolittle, Charles Lindbergh and retired astronaut John Glenn.In 1922, Leslie Irvin agreed to give a gold pin to every person whose life was saved by one of his parachutes. By 1945, the number of members with the Irvin pins had grown to over 34,000. In addition to the Irvin Air Chute Company formerly Irvin Aerospace &#8211; now a brand of Airborne Systems, other parachute manufacturers have also issued caterpillar pins for successful jumps. Airborne Systems Canada formerly Irvin Aerospace Canada still provides pins to people who made their jump long ago and are just now applying for membership. Another of these is Switlik Parachute Company, which though it no longer makes parachutes, still issues pins.</p>
<p>via <a href='http://en.wikipedia.org/wiki/Caterpillar_Club'>Caterpillar Club &#8211; Wikipedia, the free encyclopedia</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://wayneandlayne.com/linkblog/2010/03/22/caterpillar-club/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Centennial Light</title>
		<link>http://wayneandlayne.com/linkblog/2010/03/21/centennial-light/</link>
		<comments>http://wayneandlayne.com/linkblog/2010/03/21/centennial-light/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 01:44:01 +0000</pubDate>
		<dc:creator>Layne</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[electrical-engineering]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[wikipedia]]></category>

		<guid isPermaLink="false">http://wayneandlayne.com/?p=1513</guid>
		<description><![CDATA[The Centennial Light is the world&#8217;s longest-lasting light bulb. It is at 4550 East Avenue, Livermore, California, and maintained by the Livermore-Pleasanton Fire Department. The fire department claims that the bulb is at least 109 years old and has been turned off only a handful of times. Due to its longevity, the bulb has been [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Bulb.JPG/220px-Bulb.JPG" alt="Centennial Light" style="float: right; width: 220px; padding-left: 10px;" /></p>
<p>The Centennial Light is the world&#8217;s longest-lasting light bulb. It is at 4550 East Avenue, Livermore, California, and maintained by the Livermore-Pleasanton Fire Department. The fire department claims that the bulb is at least 109 years old and has been turned off only a handful of times. Due to its longevity, the bulb has been noted by The Guinness Book of World Records, Ripley&#8217;s Believe It or Not!, and General Electric.</p>
<p><br style="clear: both;" /></p>
<p>via <a href='http://en.wikipedia.org/wiki/Centennial_Light'>Centennial Light &#8211; Wikipedia, the free encyclopedia</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://wayneandlayne.com/linkblog/2010/03/21/centennial-light/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Westinghouse Sign</title>
		<link>http://wayneandlayne.com/linkblog/2010/03/18/westinghouse-sign/</link>
		<comments>http://wayneandlayne.com/linkblog/2010/03/18/westinghouse-sign/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 21:09:32 +0000</pubDate>
		<dc:creator>Layne</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[electrical-engineering]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[pittsburgh]]></category>
		<category><![CDATA[wikipedia]]></category>

		<guid isPermaLink="false">http://wayneandlayne.com/?p=1529</guid>
		<description><![CDATA[The Westinghouse Sign was a large, animated, electric sign advertising the Westinghouse Electric company and located in Pittsburgh, Pennsylvania, U.S.A. The sign was best known for the huge number of combinations in which its individual elements could be illuminated. The sign was removed in 1998 when the building on which it was mounted was demolished [...]]]></description>
			<content:encoded><![CDATA[<p>The Westinghouse Sign was a large, animated, electric sign advertising the Westinghouse Electric company and located in Pittsburgh, Pennsylvania, U.S.A. The sign was best known for the huge number of combinations in which its individual elements could be illuminated. The sign was removed in 1998 when the building on which it was mounted was demolished to make way for the construction of PNC Park.</p>
<p>The various corporations which have carried the Westinghouse name have erected countless signs and other promotional devices during the past 140 years, including many in the corporate hometown of Pittsburgh. A cubic Westinghouse sign stood in downtown Pittsburgh for approximately thirty five years and was so familiar that it was allowed to remain in place until 2002, even after the building it marked the Westinghouse Tower was no longer owned or occupied by Westinghouse.</p>
<p><img src="http://upload.wikimedia.org/wikipedia/en/0/00/VirtualWestinghouseSign.gif" /></p>
<p>via <a href='http://en.wikipedia.org/wiki/Westinghouse_Sign'>Westinghouse Sign &#8211; Wikipedia, the free encyclopedia</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://wayneandlayne.com/linkblog/2010/03/18/westinghouse-sign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change in daylight per day</title>
		<link>http://wayneandlayne.com/linkblog/2010/03/15/change-in-daylight-per-day/</link>
		<comments>http://wayneandlayne.com/linkblog/2010/03/15/change-in-daylight-per-day/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 01:48:00 +0000</pubDate>
		<dc:creator>Layne</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[original-content]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[spreadsheet]]></category>
		<category><![CDATA[weather]]></category>

		<guid isPermaLink="false">http://wayneandlayne.com/?p=1515</guid>
		<description><![CDATA[Spring is rapidly approaching, or already here, depending on where you live. Every year it always seems to me that the length of daylight increases a little bit day by day, and then suddenly, one day, it&#8217;s light until 7:00 PM! I wanted to see if this was just a perceptual effect, or if there [...]]]></description>
			<content:encoded><![CDATA[<p>Spring is rapidly approaching, or already here, depending on where you live. Every year it always seems to me that the length of daylight increases a little bit day by day, and then suddenly, one day, it&#8217;s light until 7:00 PM! I wanted to see if this was just a perceptual effect, or if there was an actual increase in the amount of daylight change per day.</p>
<p>I obtained a table of sunrise and sunset times from the <a href="http://aa.usno.navy.mil/data/docs/RS_OneYear.php">US Naval Meteorology and Oceanography Command</a>, and plotted the data in <a href="http://projects.gnome.org/gnumeric/">Gnumeric</a>.</p>
<div id="attachment_1517" class="wp-caption aligncenter" style="width: 310px"><a href="http://wayneandlayne.com/linkblog/wp-content/uploads/2010/03/daylight.png"><img src="http://wayneandlayne.com/linkblog/wp-content/uploads/2010/03/daylight-300x177.png" alt="Daylight in Pittsburgh, PA" title="Daylight" width="300" height="177" class="size-medium wp-image-1517" /></a><p class="wp-caption-text">Daylight in Pittsburgh, PA</p></div>
<p>The pink and yellow lines show the sunrise and sunset times in minutes after midnight. The teal line shows their difference, the total sunlight per day in minutes. The dark blue plot shows the change in minutes of daylight, the first derivative of daylight. We see that during the spring, the change in daylight increases, slows, reaches zero at the summer solstice, and then descends into negative numbers for the fall. Very interesting.</p>
]]></content:encoded>
			<wfw:commentRss>http://wayneandlayne.com/linkblog/2010/03/15/change-in-daylight-per-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert M4A into MP3 with GNU/Linux, recursive and multithreaded</title>
		<link>http://wayneandlayne.com/linkblog/2010/03/09/convert-m4a-into-mp3-with-gnulinux-recursive-and-multithreaded/</link>
		<comments>http://wayneandlayne.com/linkblog/2010/03/09/convert-m4a-into-mp3-with-gnulinux-recursive-and-multithreaded/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 02:17:58 +0000</pubDate>
		<dc:creator>Layne</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[multithreading]]></category>
		<category><![CDATA[original-content]]></category>

		<guid isPermaLink="false">http://wayneandlayne.com/?p=1503</guid>
		<description><![CDATA[On a similar thread as an old post, Convert M4A into MP3 with GNU/Linux, I needed to convert a bunch of iTunes M4A unprotected audio files into standard MP3 files. With iTunes&#8217; fondness for sorting by artist first, then by album, I ended up with a ton of single-file folders, making any scripting a bit [...]]]></description>
			<content:encoded><![CDATA[<p>On a similar thread as an old post, <a href="http://wayneandlayne.com/2009/07/24/convert-m4a-into-mp3-with-gnulinux/">Convert M4A into MP3 with GNU/Linux</a>, I needed to convert a bunch of iTunes M4A unprotected audio files into standard MP3 files. With iTunes&#8217; fondness for sorting by artist first, then by album, I ended up with a ton of single-file folders, making any scripting a bit of a pain. Also, converting a bunch of M4A files to MP3 is something that should be done in parallel on a multi-core CPU.</p>
<p>Here&#8217;s a snippet using <strong>find</strong> and <strong>xargs</strong>&#8216; multi-threading support to recursively find all M4A files and convert them to MP3 with as many threads as you want.</p>
<p>First, here&#8217;s the <strong>convm4a</strong> script that is called from the find/xargs line. Call it with a single argument, the location of an M4A file. The script with change to that directory and convert the file to a similarly-named MP3 file. Put this somewhere on your PATH (possibly in ~/bin/) and be sure to <strong>chmod +x convm4a</strong>.<br />
<code>#!/bin/bash<br />
DIRNAME=`dirname "$1"`<br />
FILENAME=`basename "$1" .m4a`<br />
#echo "$DIRNAME"<br />
cd "$DIRNAME"<br />
faad -o - "${FILENAME}.m4a" | lame - "${FILENAME}.mp3" &#038;> /dev/null</code></p>
<p>Test out that script to make sure it works. Then, run this line from the top of the directory full of your M4A files:</p>
<p><code>find -name '*\.m4a' -type f -print0 | xargs -P 4 -n 1 -0 convm4a</code></p>
<p>The <strong>-P 4</strong> means to use four concurrent executions of <strong>convm4a</strong>, and the <strong>-n 1</strong> means to only pass one argument to each invocation of <strong>convm4a</strong>. Change the number 4 to reflect the number of threads you want to run. You probably don&#8217;t want to exceed the number of CPU cores in your computer.</p>
]]></content:encoded>
			<wfw:commentRss>http://wayneandlayne.com/linkblog/2010/03/09/convert-m4a-into-mp3-with-gnulinux-recursive-and-multithreaded/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Perl and CPAN</title>
		<link>http://wayneandlayne.com/linkblog/2010/01/28/perl-and-cpan/</link>
		<comments>http://wayneandlayne.com/linkblog/2010/01/28/perl-and-cpan/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 00:38:47 +0000</pubDate>
		<dc:creator>Layne</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://wayneandlayne.com/?p=1489</guid>
		<description><![CDATA[Perl is a scripting language. Some people really like it. I have my own feelings about it, but that&#8217;s for another day. Perl has a system to install add-on modules called CPAN, that competes and conflicts with the native package manager on a Linux install, but sometimes the only way to install a random package [...]]]></description>
			<content:encoded><![CDATA[<p>Perl is a scripting language. Some people really like it. I have my own feelings about it, but that&#8217;s for another day. Perl has a system to install add-on modules called CPAN, that competes and conflicts with the native package manager on a Linux install, but sometimes the only way to install a random package is to use CPAN. Here&#8217;s a quick little guide on how to do that. Standard disclaimers apply.</p>
<p><code><br />
sudo perl -MCPAN -e shell<br />
install Bundle:CPAN<br />
(press enter a bunch of times to allow CPAN to access the web and do updates)<br />
reload cpan<br />
install Module::Whatever<br />
</code></p>
<p>Repeat that last line for each package the perl script requires. Takes a lot of trial-and-error to find all the packages you need to install. Good luck.</p>
]]></content:encoded>
			<wfw:commentRss>http://wayneandlayne.com/linkblog/2010/01/28/perl-and-cpan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Palo Verde Nuclear Generating Station</title>
		<link>http://wayneandlayne.com/linkblog/2010/01/20/palo-verde-nuclear-generating-station/</link>
		<comments>http://wayneandlayne.com/linkblog/2010/01/20/palo-verde-nuclear-generating-station/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 11:20:40 +0000</pubDate>
		<dc:creator>Layne</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[engineering]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[wikipedia]]></category>

		<guid isPermaLink="false">http://wayneandlayne.com/?p=1217</guid>
		<description><![CDATA[The Palo Verde Nuclear Generating Station, commonly referred to as Palo Verde Power Plant, is a nuclear power plant located in Tonopah, Arizona, about 50 miles (80 km) west of central Phoenix, and is currently the largest nuclear generation facility in the United States, averaging over 3.2 gigawatts (GW) of electrical power production in 2003 [...]]]></description>
			<content:encoded><![CDATA[<p>The <strong>Palo Verde Nuclear Generating Station</strong>, commonly referred to as Palo Verde Power Plant, is a nuclear power plant located in Tonopah, Arizona, about 50 miles (80 km) west of central Phoenix, and is currently the largest nuclear generation facility in the United States, averaging over 3.2 gigawatts (GW) of electrical power production in 2003 to serve approximately 4 million people. Arizona Public Service (APS) owns the largest portion (29.1%) of the station and operates the facility. Other owners include Salt River Project (17.5%), El Paso Electric Co. (15.8%), Southern California Edison (15.8%), PNM Resources (10.2%), Southern California Public Power Authority (5.9%), and the Los Angeles Dept. of Water &#038; Power (5.7%).</p>
<p>Palo Verde is the only nuclear generating facility in the world that is not located adjacent to a large body of above-ground water. Instead, it evaporates water from the treated sewage of several nearby municipalities to meet its cooling needs. The water consumed by the Palo Verde Nuclear Generating Station represents about 25% of the annual overdraft of the Arizona Department of Water Resources Phoenix Active Management Area.</p>
<p>via <a href='http://en.wikipedia.org/wiki/Palo_Verde_Nuclear_Power_Plant'>Palo Verde Nuclear Generating Station &#8211; Wikipedia, the free encyclopedia</a>.</p>
<p><img src="http://upload.wikimedia.org/wikipedia/commons/b/b6/Palo_verde_NPP.jpg" width="250" height="186" alt="Palo Verde Nuclear Generating Station" /></p>
]]></content:encoded>
			<wfw:commentRss>http://wayneandlayne.com/linkblog/2010/01/20/palo-verde-nuclear-generating-station/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
