<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>SectorFej</title>
	
	<link>http://www.sectorfej.net</link>
	<description>My tiny corner of the internet</description>
	<lastBuildDate>Sat, 24 Mar 2012 19:17:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/sectorfej" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="sectorfej" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Simple Web Server Availability Monitoring with cron, bash, and wget</title>
		<link>http://www.sectorfej.net/2012/03/24/simple-web-server-availability-monitoring-with-cron-bash-and-wget/</link>
		<comments>http://www.sectorfej.net/2012/03/24/simple-web-server-availability-monitoring-with-cron-bash-and-wget/#comments</comments>
		<pubDate>Sat, 24 Mar 2012 18:59:54 +0000</pubDate>
		<dc:creator>Jeff Rowberg</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[uptime]]></category>

		<guid isPermaLink="false">http://www.sectorfej.net/?p=1922</guid>
		<description><![CDATA[I recently needed a really, really simple remote monitoring agent to keep track of server availability. Actually, I didn&#8217;t even need a record of uptime or anything; I merely needed to be alerted if any of a few web servers had gone down unexpectedly. So, I wrote one. I know there are lots of other [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=a8e9b60d26c8b64f3b639961c76124ab&amp;default=http://use.perl.org/images/pix.gif' alt='No Gravatar' width=40 height=40/><p>I recently needed a really, <em>really</em> simple remote monitoring agent to keep track of server availability. Actually, I didn&#8217;t even need a record of uptime or anything; I merely needed to be alerted if any of a few web servers had gone down unexpectedly. So, I wrote one.</p>
<p>I know there are lots of other solutions for this problem, many of which are free. You can do this with Nagios, for example. But I don&#8217;t have an existing Nagios installation already setup, and I didn&#8217;t want to deploy monstrous beast of a platform of which I needed only 0.1% of the capabilities. There are also many web-based services that will do this for you, but most of these have a pretty large &#8220;check&#8221; interval, or else they cost money. I was feeling both cheap and picky, and I knew everything I needed to do could be accomplished using <strong>cron</strong>, <strong>bash</strong>, and <strong>wget</strong>. It works great, so I wanted to share what I came up with.</p>
<p>Here is a basic feature list:</p>
<ul>
<li>Requires bash, wget, and working &#8220;mail&#8221; command (sendmail, exim, postfix, etc.)</li>
<li>Monitors any HTTP or HTTPS URL, checking for &#8220;200&#8243; status returned</li>
<li>Checks request fulfillment time for slow responses, not just UP/DOWN</li>
<li>Sends email notification on state change (UP, SLOW, or DOWN)</li>
<li>Customizable To/From notification settings</li>
<li>Customizable SLOW latency threshold</li>
<li>Tracks previous state change and last update to avoid multiple notifications</li>
<li>Uses single text file for data storage, no DB necessary</li>
</ul>
<p>It&#8217;s pretty basic, but it works. Just save this script somewhere, modify the HOSTS and other settings to taste, and add a cron job definition to run it every five minutes or so. No Nagios or 3rd party solutions required. If this is what you&#8217;re looking for, then&#8230;awesome!</p>
<h3>Sample cron job definition</h3>
<pre><code>*/5 * * * * root /home/username/sitemonitor.sh</code></pre>
<h3>sitemonitor.sh script source</h3>
<pre><code>#!/bin/bash

# Simple HTTP/S availability notifications script v0.1
# March 20, 2012 by Jeff Rowberg - http://www.sectorfej.net

HOSTS=( \
    "http://www.yahoo.com" \
    "https://www.google.com" \
    "http://www.amazon.com" \
    )

NOTIFY_FROM_EMAIL="Site Monitoring &lt;monitoring@example.com&gt;"
NOTIFY_TO_EMAIL="Server Admin &lt;admin@example.com&gt;"

STATUS_FILE="/home/username/sitemonitor.status"

SLOW_THRESHOLD=10
OK_STATUSES=( "200" )

################################################################
#        NO MORE USERMOD STUFF BELOW THIS, MOST LIKELY         #
################################################################

# thanks to stackoverflow!
# stackoverflow.com/questions/3685970/bash-check-if-an-array-contains-a-value
function contains() {
    local n=$#
    local value=${!n}
    for ((i=1; i &lt; $#; i++)) {
        if [ "${!i}" == "${value}" ]; then
            echo "y"
            return 0
        fi
    }
    echo "n"
    return 1
}

rm -f /tmp/sitemonitor.status.tmp
for HOST in "${HOSTS[@]}"
do
    START=$(date +%s)
    RESPONSE=`wget $HOST --no-check-certificate -S -q -O - 2&gt;&amp;1 | \
                  awk '/^  HTTP/{print \$2}'`
    END=$(date +%s)
    DIFF=$(( $END - $START ))
    if [ -z "$RESPONSE" ]; then
        RESPONSE="0"
    fi
    if [ $(contains "${OK_STATUSES[@]}" "$RESPONSE") == "y" ]; then
        if [ "$DIFF" -lt "$SLOW_THRESHOLD" ]; then
            STATUS="UP"
        else
            STATUS="SLOW"
        fi
    else
        STATUS="DOWN"
    fi
    touch $STATUS_FILE
    STATUS_LINE=`grep $HOST $STATUS_FILE`
    STATUS_PARTS=($(echo $STATUS_LINE | tr " " "\n"))
    CHANGED=${STATUS_PARTS[2]}
    if [ "$STATUS" != "${STATUS_PARTS[5]}" ]; then
        #if [ -e "${STATUS_PARTS[5]}" ] || [ "$STATUS" != "UP" ]; then
            if [ -z "${STATUS_PARTS[5]}" ]; then
                STATUS_PARTS[5]="No record"
            fi
            TIME=`date -d @$END`
            echo "Time: $TIME" &gt; /tmp/sitemonitor.email.tmp
            echo "Host: $HOST" &gt;&gt; /tmp/sitemonitor.email.tmp
            echo "Status: $STATUS" &gt;&gt; /tmp/sitemonitor.email.tmp
            echo "Latency: $DIFF sec" &gt;&gt; /tmp/sitemonitor.email.tmp
            echo "Previous status: ${STATUS_PARTS[5]}" &gt;&gt; /tmp/sitemonitor.email.tmp
            if [ -z "${STATUS_PARTS[2]}" ]; then
                TIME="No record"
            else
                TIME=`date -d @${STATUS_PARTS[2]}`
            fi
            echo "Previous change: $TIME" &gt;&gt; /tmp/sitemonitor.email.tmp
            `mail -a "From: $NOTIFY_FROM_EMAIL" \
                  -s "SiteMonitor Notification: $HOST is $STATUS" \
                  "$NOTIFY_TO_EMAIL" &lt; /tmp/sitemonitor.email.tmp`
            rm -f /tmp/sitemonitor.email.tmp
        #else
             # first report, but host is up, so no need to notify
        #fi
        CHANGED="$END"
    fi
    echo $HOST $RESPONSE $CHANGED $END $DIFF $STATUS &gt;&gt; /tmp/sitemonitor.status.tmp
done

mv /tmp/sitemonitor.status.tmp $STATUS_FILE</code></pre>
<h3>Sample notification email</h3>
<pre>Time: Fri Mar 23 17:20:02 UTC 2012
Host: http://www.example.com
Status: UP
Latency: 0 sec
Previous status: DOWN
Previous change: Fri Mar 23 15:05:20 UTC 2012</pre>
<p>Pretty simple stuff, but it totally gets the job done, and you can have it check on any interval and as many servers as you want! That&#8217;s hard to beat at this level of simplicity and freedom.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sectorfej.net/2012/03/24/simple-web-server-availability-monitoring-with-cron-bash-and-wget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>52 Project 2012: Foundational Electronic Components #8 – Logic Gates</title>
		<link>http://www.sectorfej.net/2012/02/25/52-project-2012-foundational-electronic-components-8-logic-gates/</link>
		<comments>http://www.sectorfej.net/2012/02/25/52-project-2012-foundational-electronic-components-8-logic-gates/#comments</comments>
		<pubDate>Sun, 26 Feb 2012 03:12:09 +0000</pubDate>
		<dc:creator>Jeff Rowberg</dc:creator>
				<category><![CDATA[52 Project 2012]]></category>
		<category><![CDATA[gates]]></category>
		<category><![CDATA[logic]]></category>

		<guid isPermaLink="false">http://www.sectorfej.net/?p=1918</guid>
		<description><![CDATA[A <strong>logic gate</strong> is a simple semiconductor device that allows for specific conditional behavior control&#8212;namely, that the behavior of an output signal is dependent on the status of one or more input signals.]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=a8e9b60d26c8b64f3b639961c76124ab&amp;default=http://use.perl.org/images/pix.gif' alt='No Gravatar' width=40 height=40/><p><em>This is entry #8 of my <a href="http://www.sectorfej.net/2012/01/03/52-project-2012-foundational-electronic-components-crash-course/">52 Project 2012: Foundational Electronic Components Crash Course</a> series.</em></p>
<h3>What is a logic gate?</h3>
<p>A <strong>logic gate</strong> is a simple semiconductor device that allows for specific conditional behavior control&mdash;namely, that the behavior of an output signal is dependent on the status of one or more input signals.</p>
<h3>How does a logic gate work?</h3>
<p>There are a few different basic types of logic gates (<strong>NOT</strong>, <strong>AND</strong>, <strong>OR</strong>, and <strong>XOR</strong>), all of which are built simply by connecting transistors together in unique ways. By combining <strong>NOT</strong> gates with <strong>AND</strong>, <strong>OR</strong>, and <strong>XOR</strong> gates, these basic devices can be extended to a few more useful logic gates as well (<strong>NAND</strong>, <strong>NOR</strong>, and <strong>XNOR</strong>).</p>
<p>All of these devices work with electrical representations of logical <strong>TRUE/FALSE</strong> values, where <strong>TRUE</strong> is typically indicated by a positive voltage differential (e.g. +3v or +5v), and <strong>FALSE</strong> is typically indicated by zero voltage differential. The behavior of any logic gate can be clearly described by a <a href="http://en.wikipedia.org/wiki/Truth_table" target="_blank">truth table</a>: a simple table which shows all possible input values with corresponding output values.</p>
<p>Diodes alone may be used to construct <strong>AND</strong> and <strong>OR</strong> gates, but that is all. Without the addition of a <strong>NOT</strong> gate, other types of Boolean logic are not possible using only diodes, and complex combinations of multiple diode-logic gates are impractical because of the rapid voltage drop that comes of using many diodes in a series.</p>
<p>Instead, the most current technological implementation of Boolean logic circuitry relies on transistors, or specifically what is known as <a href="http://en.wikipedia.org/wiki/Transistor-transistor_logic" target="_blank">Transistor-Transistor Logic</a> (or TTL). By using transistors as the fundamental logic unit, extremely complex logical circuits can be created without loss, since transistors can also function as amplifiers. For a schematic of a TTL-based NAND gate (for a simple example), <a href="http://en.wikipedia.org/wiki/Transistor-transistor_logic#Fundamental_TTL_gate">go here</a>.</p>
<p>At a foundational level, a logic gate circuit has at least one input terminal, at least one output terminal, a FALSE (GND) reference terminal, and a TRUE (+V) reference terminal.</p>
<h3>NOT gates</h3>
<p>The <strong>NOT</strong> gate is the simplest of all of these, as it has only a single input terminal and a single output terminal. Its function is to output the logical opposite of whatever is applied to the input terminal. The truth table for a <strong>NOT</strong> gate is therefore as follows:</p>
<table>
<thead>
<tr>
<th>Input</th>
<th>Output</th>
</tr>
</thead>
<tbody>
<tr>
<td>FALSE</td>
<td>TRUE</td>
</tr>
<tr>
<td>TRUE</td>
<td>FALSE</td>
</tr>
</tbody>
</table>
<h3>AND gates</h3>
<p>The <strong>AND</strong> gate requires <em>both</em> inputs <em>A</em> and <em>B</em> to be TRUE to make the output TRUE. In all other cases, the output will be FALSE. The truth table for an <strong>AND</strong> gate is as follows:</p>
<table>
<thead>
<tr>
<th>A</th>
<th>B</th>
<th>Output</th>
</tr>
</thead>
<tbody>
<tr>
<td>FALSE</td>
<td>FALSE</td>
<td>FALSE</td>
</tr>
<tr>
<td>FALSE</td>
<td>TRUE</td>
<td>FALSE</td>
</tr>
<tr>
<td>TRUE</td>
<td>FALSE</td>
<td>FALSE</td>
</tr>
<tr>
<td>TRUE</td>
<td>TRUE</td>
<td>TRUE</td>
</tr>
</tbody>
</table>
<h3>OR gates</h3>
<p>The <strong>OR</strong> gate requires <em>either</em> of the inputs <em>A</em> or <em>B</em> to be TRUE to make the output TRUE. In both are FALSE, then the output will be FALSE. The truth table for an <strong>OR</strong> gate is as follows:</p>
<table>
<thead>
<tr>
<th>A</th>
<th>B</th>
<th>Output</th>
</tr>
</thead>
<tbody>
<tr>
<td>FALSE</td>
<td>FALSE</td>
<td>FALSE</td>
</tr>
<tr>
<td>FALSE</td>
<td>TRUE</td>
<td>TRUE</td>
</tr>
<tr>
<td>TRUE</td>
<td>FALSE</td>
<td>TRUE</td>
</tr>
<tr>
<td>TRUE</td>
<td>TRUE</td>
<td>TRUE</td>
</tr>
</tbody>
</table>
<h3>XOR gates</h3>
<p>The <strong>XOR</strong> (eXclusive-OR) gate requires that <em>only one</em> of the inputs <em>A</em> or <em>B</em> may be TRUE to make the output TRUE. If neither of them are TRUE, or both of them are TRUE, then the output will be FALSE. The truth table for an <strong>XOR</strong> gate is as follows:</p>
<table>
<thead>
<tr>
<th>A</th>
<th>B</th>
<th>Output</th>
</tr>
</thead>
<tbody>
<tr>
<td>FALSE</td>
<td>FALSE</td>
<td>FALSE</td>
</tr>
<tr>
<td>FALSE</td>
<td>TRUE</td>
<td>TRUE</td>
</tr>
<tr>
<td>TRUE</td>
<td>FALSE</td>
<td>TRUE</td>
</tr>
<tr>
<td>TRUE</td>
<td>TRUE</td>
<td>FALSE</td>
</tr>
</tbody>
</table>
<h3>NAND gates</h3>
<p>The <strong>NAND</strong> gate is the negated AND gate&mdash;the output is identical to an AND gate, but inverted. It produces a TRUE output unless <em>both</em> inputs are TRUE. Electrically, a NAND gate is merely an AND gate with a NOT gate on the output. The truth table for an <strong>AND</strong> gate is as follows:</p>
<table>
<thead>
<tr>
<th>A</th>
<th>B</th>
<th>Output</th>
</tr>
</thead>
<tbody>
<tr>
<td>FALSE</td>
<td>FALSE</td>
<td>TRUE</td>
</tr>
<tr>
<td>FALSE</td>
<td>TRUE</td>
<td>TRUE</td>
</tr>
<tr>
<td>TRUE</td>
<td>FALSE</td>
<td>TRUE</td>
</tr>
<tr>
<td>TRUE</td>
<td>TRUE</td>
<td>FALSE</td>
</tr>
</tbody>
</table>
<h3>NOR gates</h3>
<p>The <strong>NOR</strong> gate is the negated OR gate. It produces a TRUE output unless <em>either</em> input is TRUE. Electrically, a NOR gate is an OR gate with a NOT gate on the output. The truth table for a <strong>NOR</strong> gate is as follows:</p>
<table>
<thead>
<tr>
<th>A</th>
<th>B</th>
<th>Output</th>
</tr>
</thead>
<tbody>
<tr>
<td>FALSE</td>
<td>FALSE</td>
<td>TRUE</td>
</tr>
<tr>
<td>FALSE</td>
<td>TRUE</td>
<td>FALSE</td>
</tr>
<tr>
<td>TRUE</td>
<td>FALSE</td>
<td>FALSE</td>
</tr>
<tr>
<td>TRUE</td>
<td>TRUE</td>
<td>FALSE</td>
</tr>
</tbody>
</table>
<h3>XNOR gates</h3>
<p>The <strong>XNOR</strong> gate (eXclusive Not OR) is the negated XOR gate. It produces a TRUE output whenever both inputs are the same. Electrically, an XNOR gate is an XOR gate with a NOT gate on the output. The truth table for a <strong>NOR</strong> gate is as follows:</p>
<table>
<thead>
<tr>
<th>A</th>
<th>B</th>
<th>Output</th>
</tr>
</thead>
<tbody>
<tr>
<td>FALSE</td>
<td>FALSE</td>
<td>TRUE</td>
</tr>
<tr>
<td>FALSE</td>
<td>TRUE</td>
<td>FALSE</td>
</tr>
<tr>
<td>TRUE</td>
<td>FALSE</td>
<td>FALSE</td>
</tr>
<tr>
<td>TRUE</td>
<td>TRUE</td>
<td>TRUE</td>
</tr>
</tbody>
</table>
<p>By combining these gates, literally any logical decision tree may be represented by an electrical circuit. It is also possible to use one single type of gate (usually either NAND or NOR) to mimic the behavior of any other gate. Doing this is usually less electrically efficient by some tiny amount, but often more financially efficient since one single gate may be purchased and implemented in bulk.</p>
<p>If you&#8217;re interested, read <a href="http://en.wikipedia.org/wiki/Logic_gate">more information on logic gates</a> at Wikipedia, or at <a href="http://www.kpsec.freeuk.com/gates.htm">The Electronics Club</a>.</p>
<hr />
<p><em>For a description of this 52 Project series and links to the all existing entries, go to the <a href="http://www.sectorfej.net/2012/01/03/52-project-2012-foundational-electronic-components-crash-course/">52 Project 2012: Foundational Electronic Components Crash Course</a> page.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sectorfej.net/2012/02/25/52-project-2012-foundational-electronic-components-8-logic-gates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>52 Project 2012: Foundational Electronic Components #7 – LEDs</title>
		<link>http://www.sectorfej.net/2012/02/18/52-project-2012-foundational-electronic-components-7-leds/</link>
		<comments>http://www.sectorfej.net/2012/02/18/52-project-2012-foundational-electronic-components-7-leds/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 02:49:35 +0000</pubDate>
		<dc:creator>Jeff Rowberg</dc:creator>
				<category><![CDATA[52 Project 2012]]></category>
		<category><![CDATA[diodes]]></category>
		<category><![CDATA[leds]]></category>

		<guid isPermaLink="false">http://www.sectorfej.net/?p=1889</guid>
		<description><![CDATA[This is entry #7 of my 52 Project 2012: Foundational Electronic Components Crash Course series. What is an LED? A light-emitting diode (or &#8220;LED&#8221; for short) is a special kind of diode which converts some electrical energy into a particular wavelength of light. How does an LED work? Since we&#8217;ve already discovered how regular diodes [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=a8e9b60d26c8b64f3b639961c76124ab&amp;default=http://use.perl.org/images/pix.gif' alt='No Gravatar' width=40 height=40/><p><em>This is entry #7 of my <a href="http://www.sectorfej.net/2012/01/03/52-project-2012-foundational-electronic-components-crash-course/">52 Project 2012: Foundational Electronic Components Crash Course</a> series.</em></p>
<h3>What is an LED?</h3>
<p>A <strong>light-emitting diode</strong> (or &#8220;LED&#8221; for short) is a special kind of <a href="http://www.sectorfej.net/2012/01/28/52-project-2012-foundational-electronic-components-4-diodes/">diode</a> which converts some electrical energy into a particular wavelength of light.</p>
<h3>How does an LED work?</h3>
<p>Since we&#8217;ve already discovered how regular diodes work (using two oppositely doped semiconductor material layers back-to-back), not much extra explanation is necessary to discover the secrets of LEDs. Electrically, they function the same way that regular diodes do. They only allow current to flow in one direction, and they have a forward voltage drop and maximum power dissipation.</p>
<p>The flow of energy through a circuit has the potential to generate visible light at any time, based on the physical properties of the conducting (or semiconducting) material. Actually, one of the byproducts of the movement of electrons from one atom to another is that this tiny change in energy at an atomic level releases photons&mdash;the basic element of light. This actually happens all the time, but most of the time, we cannot see it. All diodes could therefore be called &#8220;light-emitting&#8221; diodes, but the light emitted by them is usually outside the visible light spectrum.</p>
<p>LEDs, on the other hand, are manufactured with a very specific elemental composition such that the exact change in energy due to the movement of electrons generates a very specific visible wavelength of light, such as red, green, blue, orange, etc. With the right kind of material, just about any desired kind of light can be generated. Most remote controls use an infrared LED to send different commands. This is again the exact same technology, just using a type of light we cannot see with the naked eye.</p>
<p>Due to advancing technology and a consistent drop in the cost of semiconductor material used to manufacture LEDs, today they are rapidly replacing traditional incandescent or fluorescent lighting in many areas. They are far more efficient and durable, and can deliver more light in a much smaller package. LEDs are one of the main reasons that TV displays, computer monitors, and smartphone screens have become so thin over the last decade.</p>
<h3>LED ratings</h3>
<p>Since LEDs are electrically the same as regular diodes, they have the same forward voltage drop and peak inverse voltage ratings.</p>
<p>Another new rating for LEDs is the wavelength of light generated, usually expressed in nanometers (nm). The <a href="http://en.wikipedia.org/wiki/Color#Physics">visible light spectrum</a> for humans is between about 390nm and 750nm. Typical red LEDs emit somewhere around 650nm light. Full-color computer and TV displays use thousands or millions of individual red, green, and blue LEDs and the technique of <a href="http://en.wikipedia.org/wiki/Additive_color">additive color</a> to create the perception of any imaginable color at any point on the display.</p>
<p>Due to their added function of converting energy to light and the nature of the special semiconductor material, LEDs also have an important <strong>maximum current</strong> rating. Typical small LEDs should not be run individually at more than about 15-20 milliamps, because a larger current will generate too much heat in the semiconducting material, causing it to burn up. This doesn&#8217;t usually create a fire hazard, but it permanently damages the LED.</p>
<p>You can check out more information on LED power consumption <a href="http://www.theledlight.com/LED101.html">here</a>.</p>
<p>If you&#8217;re interested, read <a href="http://en.wikipedia.org/wiki/Light-emitting_diode">more information on LEDs</a> at Wikipedia.</p>
<hr />
<p><em>For a description of this 52 Project series and links to the all existing entries, go to the <a href="http://www.sectorfej.net/2012/01/03/52-project-2012-foundational-electronic-components-crash-course/">52 Project 2012: Foundational Electronic Components Crash Course</a> page.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sectorfej.net/2012/02/18/52-project-2012-foundational-electronic-components-7-leds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>52 Project 2012: Foundational Electronic Components #6 – Thermistors</title>
		<link>http://www.sectorfej.net/2012/02/11/52-project-2012-foundational-electronic-components-6-thermistors/</link>
		<comments>http://www.sectorfej.net/2012/02/11/52-project-2012-foundational-electronic-components-6-thermistors/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 04:06:23 +0000</pubDate>
		<dc:creator>Jeff Rowberg</dc:creator>
				<category><![CDATA[52 Project 2012]]></category>
		<category><![CDATA[thermistors]]></category>

		<guid isPermaLink="false">http://www.sectorfej.net/?p=1885</guid>
		<description><![CDATA[This is entry #6 of my 52 Project 2012: Foundational Electronic Components Crash Course series. What is a thermistor? A thermistor is a resistor whose resistance changes based on temperature. How does a thermistor work? A thermistor is simple device made of a special kind of semiconductor material whose electrical properties (particularly resistance) changes either [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=a8e9b60d26c8b64f3b639961c76124ab&amp;default=http://use.perl.org/images/pix.gif' alt='No Gravatar' width=40 height=40/><p><em>This is entry #6 of my <a href="http://www.sectorfej.net/2012/01/03/52-project-2012-foundational-electronic-components-crash-course/">52 Project 2012: Foundational Electronic Components Crash Course</a> series.</em></p>
<h3>What is a thermistor?</h3>
<p>A <strong>thermistor</strong> is a <a href="http://www.sectorfej.net/2012/01/07/52-project-2012-foundational-electronic-components-1-resistors/">resistor</a> whose resistance changes based on temperature.</p>
<h3>How does a thermistor work?</h3>
<p>A thermistor is simple device made of a special kind of semiconductor material whose electrical properties (particularly resistance) changes either directly or inversely with changes to the temperature of the material. Thermistors are built with a negative temperature coefficient (NTC), or a positive temperature coefficient (PTC). NTC thermistors decrease resistance with increasing temperature, and PTC thermistors increase resistance with increasing temperature.</p>
<p>One obvious use of a properly calibrated thermistor is to detect the temperature of a device. By supplying the thermistor with a known voltage input and measuring the changed output voltage, you can calculate how hot or cold the thermistor is. Another common use for PTC thermistors is to create extra resistance in devices that are getting too hot, in order to prevent overheating. A PTC thermistor in the power supply of a circuit will automatically reduce power in the circuit as the temperature increases.</p>
<h3>Thermistor ratings</h3>
<p>Although thermistors have many detailed ratings, there are only a few main ones that are most commonly considered. One of these is the nominal <strong>resistance</strong> which may be anything from one ohm to many megohms, just like regular resistors. Of course, this is not a fixed value, since thermistors vary their resistance by design, but they are built to be centered around a specific value.</p>
<p>Another important rating is the <strong>temperature range</strong> in which they are designed to operate. Some have very wide temperature ranges (a few hundred degrees), while some are rated for a relatively small range&mdash;perhaps only 50 degrees. A thermistor with a large variance in its resistance but covering only a small temperature range can give more precise results over that range. Which ranges and nominal resistance values you want depends largely on your project and its intended environment.</p>
<p>Finally, similar to resistors, thermistors have a tolerance rating which indicates the expected margin of error. Thermistors often have tolerance ratings of 5% or 10% and can be bought very inexpensively at this level. More precise components, such as those used in thermostats which require very accurate temperature detection and control, go all the way down to 0.2% or even 0.1% tolerance, and cost much more (though still not usually more than a few dollars).</p>
<hr />
<p><em>For a description of this 52 Project series and links to the all existing entries, go to the <a href="http://www.sectorfej.net/2012/01/03/52-project-2012-foundational-electronic-components-crash-course/">52 Project 2012: Foundational Electronic Components Crash Course</a> page.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sectorfej.net/2012/02/11/52-project-2012-foundational-electronic-components-6-thermistors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>52 Project 2012: Foundational Electronic Components #5 – Transistors</title>
		<link>http://www.sectorfej.net/2012/02/04/52-project-2012-foundational-electronic-components-5-transistors/</link>
		<comments>http://www.sectorfej.net/2012/02/04/52-project-2012-foundational-electronic-components-5-transistors/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 04:38:24 +0000</pubDate>
		<dc:creator>Jeff Rowberg</dc:creator>
				<category><![CDATA[52 Project 2012]]></category>
		<category><![CDATA[transistors]]></category>

		<guid isPermaLink="false">http://www.sectorfej.net/?p=1873</guid>
		<description><![CDATA[This is entry #5 of my 52 Project 2012: Foundational Electronic Components Crash Course series. What is a transistor? A transistor is a semiconductor-based device that allows one electrical signal to logically control the behavior of another signal. How does a transistor work? Fundamentally, a transistor is just two NP-semiconductor diodes with the same type [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=a8e9b60d26c8b64f3b639961c76124ab&amp;default=http://use.perl.org/images/pix.gif' alt='No Gravatar' width=40 height=40/><p><em>This is entry #5 of my <a href="http://www.sectorfej.net/2012/01/03/52-project-2012-foundational-electronic-components-crash-course/">52 Project 2012: Foundational Electronic Components Crash Course</a> series.</em></p>
<h3>What is a transistor?</h3>
<p>A <strong>transistor</strong> is a semiconductor-based device that allows one electrical signal to logically control the behavior of another signal.</p>
<h3>How does a transistor work?</h3>
<p>Fundamentally, a transistor is just two NP-semiconductor <a href="http://www.sectorfej.net/2012/01/28/52-project-2012-foundational-electronic-components-4-diodes/">diodes</a> with the same type of semiconductor layers mashed together. If the two &#8220;N&#8221; layers are back-to-back, then transistor is called <em>PNP</em>, while if the two &#8220;P&#8221; layers are back-to-back, the transistor is called NPN. The center layer acts as a logical switch (requiring very little power to use) which toggles the flow of current between the other two layers. One of the outside layers is called the <em>collector</em>, the middle layer is called the <em>base</em>, and the other outside layer is called the <em>emitter</em>.</p>
<p>A transistor is one of the most influential electronic components in existence today. It is the basic building block of computers, allowing one electrical signal to control the behavior of another. Transistors provide logical behavior to be designed and implemented into machines. Multiple transistors can be combined to create what are called &#8220;logic gates&#8221; (allowing <em>AND</em>, <em>OR</em>, <em>XOR</em>, and other operations), and these can be further combined into more complex systems. As technology allowed transistors to be manufactured smaller and smaller, more could be combined into a single device. Some extremely powerful CPUs contain <a href="http://en.wikipedia.org/wiki/Transistor_count">over six billion transistors</a> all in one module. This is phenomenal.</p>
<p>In addition to logical switching, transistors can also amplify electrical signals. This amplification ability is what allowed widespread inexpensive transistor radios, and the replacement of old vacuum-tube amplifiers with cheaper and more reliable &#8220;solid-state&#8221; circuits, based on transistors. A very small current into the base can result in a much larger current between the collector and emitter.</p>
<p>Transistors, unlike first four components we&#8217;ve explored, have <em>three</em> terminals. One terminal is connected to the collector, one to the base, and one to the emitter.</p>
<h3>Transistor ratings</h3>
<p>Aside from the basic &#8220;PNP&#8221; or &#8220;NPN&#8221; classification, transistors have quite a few different ratings. Because the physical materials are based on the same technology that diodes use, two critical ratings are <em>power dissipation</em> and <em>reverse voltage</em> limits. Transistors also have maximum <em>collector current</em> rating.</p>
<p>Since transistors are in many cases intended to amplify, paying special attention to the maximum power dissipation is critical, since amplification circuits often require heatsinks and still get very hot.</p>
<hr />
<p><em>For a description of this 52 Project series and links to the all existing entries, go to the <a href="http://www.sectorfej.net/2012/01/03/52-project-2012-foundational-electronic-components-crash-course/">52 Project 2012: Foundational Electronic Components Crash Course</a> page.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sectorfej.net/2012/02/04/52-project-2012-foundational-electronic-components-5-transistors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>52 Project 2012: Foundational Electronic Components #4 – Diodes</title>
		<link>http://www.sectorfej.net/2012/01/28/52-project-2012-foundational-electronic-components-4-diodes/</link>
		<comments>http://www.sectorfej.net/2012/01/28/52-project-2012-foundational-electronic-components-4-diodes/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 03:25:18 +0000</pubDate>
		<dc:creator>Jeff Rowberg</dc:creator>
				<category><![CDATA[52 Project 2012]]></category>
		<category><![CDATA[diodes]]></category>

		<guid isPermaLink="false">http://www.sectorfej.net/?p=1876</guid>
		<description><![CDATA[This is entry #4 of my 52 Project 2012: Foundational Electronic Components Crash Course series. What is a diode? A diode is a simple device which allows energy to flow through it in only one direction. It is also the simplest type of semiconductor in existence, and is the foundation of the all-important transistor. How [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=a8e9b60d26c8b64f3b639961c76124ab&amp;default=http://use.perl.org/images/pix.gif' alt='No Gravatar' width=40 height=40/><p><em>This is entry #4 of my <a href="http://www.sectorfej.net/2012/01/03/52-project-2012-foundational-electronic-components-crash-course/">52 Project 2012: Foundational Electronic Components Crash Course</a> series.</em></p>
<h3>What is a diode?</h3>
<p>A <strong>diode</strong> is a simple device which allows energy to flow through it in only one direction. It is also the simplest type of <strong>semiconductor</strong> in existence, and is the foundation of the all-important transistor.</p>
<h3>How does a diode work?</h3>
<p>A diode is made by placing two layers of specifically <em>doped</em> materials together. Doped materials are substances that have intentionally been injected with impurities. In the case of diodes and many other semiconductors, a conductive material is injected into a non-conductive material, resulting in &#8220;semiconductive&#8221; substance. This substance may contain a surplus of electrons (known as &#8220;N-type&#8221; material), or it may contain a shortage of electrons (known as &#8220;P-type&#8221; material). &#8220;N&#8221; and &#8220;P&#8221; stand for negative and positive, respectively; since electrons have a negative charge, a surplus of them creates an overall negative charge in the material, and a shortage creates an overall positive charge.</p>
<p>A substance that has a perfect balance of protons and electrons is not conductive, since all particles are drawn to their counterbalancing partners. Such a substance is typically called an <em>insulator</em>. But if there is an imbalance, then some electrons (negatively charged particles) will be able to flow from a negatively charged area to a positively charged area. This property, the flow of electrons, is what makes conductive materials like wires able to carry electrical current. Diodes are built by bonding an N-type semiconductor to a P-type semiconductor and attaching one terminal to each layer.</p>
<p>When a negative source (for example, the negative terminal of a battery) is connected to the N-type layer and a positive source is connected to the P-type layer, then the current flows freely. The electrons are attracted through the N-type layer to the P-type layer, and vice-versa for the positively charged areas.</p>
<p>However, when the connection is reversed&mdash;a negative source is connected to the P-type layer and a positive source to the N-type layer&mdash; then a non-conductive gap is created in the center of the diode, where the two layers are joined together. The negatively charged particles from the source create a build-up of positively charged particles in the P-type layer, and the positively charged particles from the source create a build-up of negatively charge particles in the N-type layer, leaving what is called the <em>depletion zone</em> in between where no current flow can happen.</p>
<p>One common use of diodes is to provide protection against reversed power connections. If you put a diode in line with the power supply, then a backwards battery will not damage the circuit (though it still won&#8217;t work right until you fix the connection again).</p>
<h3>Diode ratings</h3>
<p>Although we have seen quantities for resistance, capacitance, and inductance, there is no directly equivalent &#8220;diodance.&#8221; Due to the simple function of diodes&mdash;unidirectional flow of energy&mdash;there are two main factors to consider.</p>
<p>First is a rating called &#8220;forward voltage drop.&#8221; Due to the nature of semiconductive material and the functionality of a diode, there is some reduction of voltage that occurs. This is often quite small (0.5 volts or so), but especially in low-voltage circuits, it is critical to know. (This demonstrates the same effect as a resistor, remember: current flow stays the same, but voltage drops some.)</p>
<p>Second is a rating known as &#8220;peak inverse voltage.&#8221; Diodes have a limitation by nature, in that if you apply a voltage big enough in the wrong direction, the depletion zone &#8220;barrier&#8221; breaks down, and current flows anyway. It is extremely important to know this rating as well. In low-voltage circuits, the PIV rating is usually much higher than any voltage that is designed to be used.</p>
<hr />
<p><em>For a description of this 52 Project series and links to the all existing entries, go to the <a href="http://www.sectorfej.net/2012/01/03/52-project-2012-foundational-electronic-components-crash-course/">52 Project 2012: Foundational Electronic Components Crash Course</a> page.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sectorfej.net/2012/01/28/52-project-2012-foundational-electronic-components-4-diodes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>52 Project 2012: Foundational Electronic Components #3 – Inductors</title>
		<link>http://www.sectorfej.net/2012/01/21/52-project-2012-foundational-electronic-components-3-inductors/</link>
		<comments>http://www.sectorfej.net/2012/01/21/52-project-2012-foundational-electronic-components-3-inductors/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 03:48:55 +0000</pubDate>
		<dc:creator>Jeff Rowberg</dc:creator>
				<category><![CDATA[52 Project 2012]]></category>
		<category><![CDATA[inductors]]></category>

		<guid isPermaLink="false">http://www.sectorfej.net/?p=1861</guid>
		<description><![CDATA[This is entry #3 of my 52 Project 2012: Foundational Electronic Components Crash Course series. What is an inductor? An inductor is basically just a coil of wire. It behaves differently from a regular wire because it is specifically coiled (often around a special material in the center), and this allows the electrical current to [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=a8e9b60d26c8b64f3b639961c76124ab&amp;default=http://use.perl.org/images/pix.gif' alt='No Gravatar' width=40 height=40/><p><em>This is entry #3 of my <a href="http://www.sectorfej.net/2012/01/03/52-project-2012-foundational-electronic-components-crash-course/">52 Project 2012: Foundational Electronic Components Crash Course</a> series.</em></p>
<h3>What is an inductor?</h3>
<p>An <strong>inductor</strong> is basically just a coil of wire. It behaves differently from a regular wire because it is specifically coiled (often around a special material in the center), and this allows the electrical current to build up a magnetic field. This magnetic field affects the flow of current through the inductor such that it <em>resists changes to the energy flowing through it</em>.</p>
<h3>How does an inductor work?</h3>
<p>Inductors, like resistors and capacitors, have two terminals. Remember that resistors reduce the energy flowing through them by converting some into heat, and capacitors store the energy flowing into them with metal plates and special dielectric materials. Inductors, by contrast, resist any change in the flow of energy through them.</p>
<p>For an analogy, consider a <a href="http://en.wikipedia.org/wiki/Flywheel" target="_blank">flywheel</a>. If the flywheel is not spinning, it takes effort to make it spin. If it&#8217;s already spinning quickly, it takes effort to make it stop. But whether the flywheel is stopped or spinning freely, it only takes effort to change its rotational speed (assuming a frictionless system, anyway). A flywheel stores rotational energy using momentum. Similarly, an inductor stores <em>electrical</em> energy in a <em>magnetic field</em>. Using the flywheel as an analogy, the inductor is &#8220;spinning&#8221; when it has built up a magnetic field, and it is &#8220;stopped&#8221; when there is no field.</p>
<p>When energy flows through the inductor, most of that energy goes into the creation of the magnetic field until it is fully charged. Once this happens, energy flows easily through the inductor as though it were a regular wire. Then, when the energy supply is cut off, the charged magnetic field is gradually converted back into electrical energy until the magnetic field is entirely gone.</p>
<p>So, to recap so far:</p>
<ol>
<li>A resistor reduces the flow of energy by converting it into heat.</li>
<li>A capacitor stores energy in an electric field.</li>
<li>An inductor stores energy in a magnetic field.</li>
</ol>
<p>The magnetic field is able to build up in an inductor because of the placement, coil spacing, cross-section size, and central material used in the inductor. Inductance increases with the number of coils, as well as with the use of certain materials (such as iron).</p>
<p>Inductors in electronic circuits are often very, very small. However, sometimes, they are much larger than you might expect. Traffic signals use large wire inductors built into the road. The large metal chassis of a car sitting over the wire loops change the inductance value, and this change is detected by the traffic signal system.</p>
<h3>Inductor ratings</h3>
<p>Inductance is measured in <a href="http://en.wikipedia.org/wiki/Henry_(unit)" target="_blank">henries</a>, or sometimes in millihenries or nanohenries. One henry is defined as a one-amp-per-second rate of change of current that generates one volt. A little complex, yes, but think of it this way: more inductance means a stronger magnetic field will be generated.</p>
<p>Inductors have a maximum current rating, which is the maximum safe current the inductor can take without any potential damage.</p>
<p>Inductors also have a tolerance rating, specified as a percentage. The tolerance indicates by how much the actual performance may differ from the rated performance (similar to resistors and capacitors).</p>
<hr />
<p><em>For a description of this 52 Project series and links to the all existing entries, go to the <a href="http://www.sectorfej.net/2012/01/03/52-project-2012-foundational-electronic-components-crash-course/">52 Project 2012: Foundational Electronic Components Crash Course</a> page.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sectorfej.net/2012/01/21/52-project-2012-foundational-electronic-components-3-inductors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>52 Project 2012: Foundational Electronic Components #2 – Capacitors</title>
		<link>http://www.sectorfej.net/2012/01/14/52-project-2012-foundational-electronic-components-2-capacitors/</link>
		<comments>http://www.sectorfej.net/2012/01/14/52-project-2012-foundational-electronic-components-2-capacitors/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 16:34:32 +0000</pubDate>
		<dc:creator>Jeff Rowberg</dc:creator>
				<category><![CDATA[52 Project 2012]]></category>
		<category><![CDATA[capacitors]]></category>

		<guid isPermaLink="false">http://www.sectorfej.net/?p=1857</guid>
		<description><![CDATA[This is entry #2 of my 52 Project 2012: Foundational Electronic Components Crash Course series. What is a capacitor? A capacitor another very basic type of component. A capacitor is a device used to store energy, kind of like a battery but on a much, much smaller scale. How does a capacitor work? Capacitors have [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=a8e9b60d26c8b64f3b639961c76124ab&amp;default=http://use.perl.org/images/pix.gif' alt='No Gravatar' width=40 height=40/><p><em>This is entry #2 of my <a href="http://www.sectorfej.net/2012/01/03/52-project-2012-foundational-electronic-components-crash-course/">52 Project 2012: Foundational Electronic Components Crash Course</a> series.</em></p>
<h3>What is a capacitor?</h3>
<p>A <strong>capacitor</strong> another very basic type of component. A capacitor is a device used to store energy, kind of like a battery but on a much, much smaller scale.</p>
<h3>How does a capacitor work?</h3>
<p>Capacitors have two terminals, like resistors. But instead of impeding the flow of energy like resistors do, capacitors are built to store energy, and&mdash;when necessary&mdash; to release that energy. Although this sounds fundamentally similar to the way a battery works, there is an important difference: batteries can generate their own charge between the two terminals through a chemical reaction, while capacitors can only store and release charge fed in from other sources.</p>
<p>A capacitor is made up of two thin metal plates separated by a non-conductive substance called a <strong> dielectric </strong>. The proximity and size of the metal plates type of dielectric used control how much charge the capacitor stores. Different kinds of dielectric also exhibit unique electrical properties in different circumstances, depending on the type and/or frequency (in the case of AC) of current running through the circuit.</p>
<p>A capacitor gathers charge until the stored charge reaches the voltage being used to charge it. Electrons flow through the circuit at a slower and slower rate until the charge is reached, at which time no more current flows. A capacitor connected straight across a battery will not hurt either the battery or the capacitor, because as soon as the capacitor is charged, the current stops flowing, and the battery will not use any more power.</p>
<p>In face, it is very common to see capacitors connected like this, from a higher voltage source straight to ground, or the negative terminal on a battery. Since capacitors take some time to charge, this smooths out the effects of power-on and power-off. The quick charge/discharge ability can also filter noise out of a power line, or to help in the conversion process from AC to DC.</p>
<h3>Capacitor ratings</h3>
<p>Capacitance is measured in farads, or more typically in microfarads, nanofarads, and picofarads. These smaller units are used because the full farad is a much larger capacitance rating than most common parts use&mdash;by a whole lot. 1 farad is defined as the capacitance to store one <a href="http://en.wikipedia.org/wiki/Coulomb">coulomb</a> of charge at 1 volt. (A coulomb is defined as the quantity of electrons carrying 1 amp of current for one second, which works out to be 6.25 * 10<sup>18</sup> electrons.) Common small capacitors have ratings at least five or six orders of magnitude smaller than this; 0.1 microfarads, 22 picofarads, etc.</p>
<p>Capacitors also have a maximum voltage rating, measured simply in volts; charging the capacitor with a voltage greater than this may damage it.</p>
<p>Finally, capacitors have a tolerance rating, specified as a percentage. The tolerance indicates by how much the actual performance may differ from the rated performance.</p>
<hr />
<p><em>For a description of this 52 Project series and links to the all existing entries, go to the <a href="http://www.sectorfej.net/2012/01/03/52-project-2012-foundational-electronic-components-crash-course/">52 Project 2012: Foundational Electronic Components Crash Course</a> page.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sectorfej.net/2012/01/14/52-project-2012-foundational-electronic-components-2-capacitors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Michael Farris, Homeschooling, and Ron Paul Redux</title>
		<link>http://www.sectorfej.net/2012/01/12/michael-farris-homeschooling-and-ron-paul-redux/</link>
		<comments>http://www.sectorfej.net/2012/01/12/michael-farris-homeschooling-and-ron-paul-redux/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 03:41:11 +0000</pubDate>
		<dc:creator>Jeff Rowberg</dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[ron paul]]></category>

		<guid isPermaLink="false">http://www.sectorfej.net/?p=1842</guid>
		<description><![CDATA[Research and argumentative challenges can do amazing things. As a result of writing my first rebuttal to Mr. Farris, I have learned quite a bit about Ron Paul, the Constitution, the Bill of Rights, and the Incorporation Doctrine. So, let me restate my argument according to what I now understand to be correct.]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=a8e9b60d26c8b64f3b639961c76124ab&amp;default=http://use.perl.org/images/pix.gif' alt='No Gravatar' width=40 height=40/><p>Research and argumentative challenges can do amazing things. As a result of writing <a href="http://www.sectorfej.net/2012/01/08/why-michael-farris-is-wrong-about-ron-paul-on-homeschooling/" target="_blank">my first rebuttal to Mr. Farris</a>, I have learned quite a bit about Ron Paul, the Constitution, the Bill of Rights, and the Incorporation Doctrine. I have even come to believe a couple of things that, even just a few days ago, I would have completely disagreed with (some of what I wrote in the original post demonstrates this). <strong>I am not afraid to admit when I am wrong, and I was definitely wrong about a couple of important things here.</strong> So, let me restate my argument according to what I now understand to be correct. I felt obligated to write this because I believe I misrepresented Dr. Paul&#8217;s positions on some critical points regarding constitutional authority. This was unintentional, but it&#8217;s still inaccurate, and I wanted to set the record straight.</p>
<p>Perhaps the biggest hurdle to overcome is to realize that <strong>the Bill of Rights was never intended to rewrite each individual state&#8217;s constitution</strong>. If it had been, the states never would have signed on in the first place, since in general they were <em>extremely</em> concerned with maintaining their own sovereignty. The Bill of Rights was crafted to make sure that the new federal government would not be able to exert its own control over the citizens of each state; it was not created as a universally applied set of rules which all states had to adopt themselves. If this had been the case, state constitutions would not need to include separate but similar provisions of their own, especially the states that joined the union after the Constitution was ratified. But it is easy to see that this is not what happened.</p>
<p>The rights recognized and protected by the Bill of Rights are important, and it would not be a bad thing if each state recognized and protected the same rights. The <a href="http://law2.umkc.edu/faculty/projects/ftrials/conlaw/incorp.htm" target="_blank">Incorporation Doctrine</a> has largely allowed this to happen, and Mr. Farris thinks this is a good thing. Dr. Paul sees it as a problem because the 14th Amendment doesn&#8217;t actually say what the Supreme Court has interpreted it to say, and this has opened up the door for arbitrary laws giving power to the federal government that it was never supposed to have. The 14th Amendment&#8217;s &#8220;due process&#8221; clause was one of the primary legal bases for the Roe v. Wade ruling, and it is one of the arguments used to allow birthright citizenship for children of illegal immigrants.</p>
<p>The main question is whether the due process required of the states by the 14th Amendment is merely procedural, as the wording indicates, or substantive, which includes a whole lot more than just ensuring equal protection and keeping within a common and unbiased legal system. The <a href="http://www.stanford.edu/group/psylawseminar/Substantive%20Due%20Process.htm" target="_blank">substantive due process</a> debate is pretty serious, and the answer has significant implications about the real scope of government power. Ron Paul virtually always tends toward the small government side of any argument, and the Incorporation Doctrine debate is no exception.</p>
<p>There are a number of core questions to answer here, and the simplest way to highlight the differences between Michael Farris and Ron Paul is to explore how each of them has answered these questions. The first half of the questions I&#8217;ve included below has to do with a philosophical ideals (largely irrelevant in the legal world, but important to understand their opinions), and the second half has to do with the actual legal authority. This &#8220;Should vs. Does&#8221; side-by-side comparison will demonstrate some rather critical differences in what each each of these two men believe about the optimal scope of government power.</p>
<ol>
<li><strong>Should the Bill of Rights in the US Constitution apply to the states?</strong>
<ul>
<li><strong><em>Farris:</em></strong> Yes. That&#8217;s one the primary uses of the 14th Amendment.</li>
<li><strong><em>Paul:</em></strong> Not as written, maintaining the correct view of separation of state and federal authority. That&#8217;s not what the states signed up for, and for the Supreme Court to use the 14th Amendment selectively as a lever to expand federal authority beyond what is clearly written (including the federal protection of some &#8220;rights&#8221; not recognized or specified anywhere in the Constitution) is a usurpation of power, even if the pragmatic outcome is favorable in some cases. &#8220;The ends justify the means&#8221; is a very dangerous line of reasoning to defend such actions.</li>
</ul>
</li>
<li><strong>Should the rights recognized and protected in the Bill of Rights also be recognized and protected in each individual state?</strong>
<ul>
<li><strong><em>Farris:</em></strong> Yes, and using federal power and Supreme Court precedents is a fine way to make sure that happens.</li>
<li><strong><em>Paul:</em></strong> Yes, but the states have their own constitutions and legal systems to bring this about. All of the rights recognized and protected in the US Constitution are good, and in many cases they are mirrored by individual state constitutions. But arbitrarily forcing federal restrictions onto state governments is outside of legitimate federal authority. If state constitutions are inadequate in some cases, they should be changed on a state-by-state basis. Alternatively, if the states wish to ratify a federal amendment that clearly applies some or all of the Bill of Rights as written to their own state governments, that is also fine. But using the 14th Amendment to this end is not safe or desirable.</li>
</ul>
</li>
<li><strong>Should homeschooling be a legal option for parents?</strong>
<ul>
<li><strong><em>Farris:</em></strong> Yes.</li>
<li><strong><em>Paul:</em></strong> Yes.</li>
</ul>
</li>
<li><strong>Should the federal government be able to specifically <em>prohibit</em> homeschooling?</strong>
<ul>
<li><strong><em>Farris:</em></strong> No.</li>
<li><strong><em>Paul:</em></strong> No.</li>
</ul>
</li>
<li><strong>Should the federal government be able to specifically <em>legalize</em> homeschooling?</strong>
<ul>
<li><strong><em>Farris:</em></strong> (Unknown. He may agree with Dr. Paul here, or he may believe the federal government has more authority that what Dr. Paul believes.)</li>
<li><strong><em>Paul:</em></strong> No, at least not without an amendment. The US Constitution is silent on the issue of education as-is, and therefore has no authority to pass laws explicitly focused on education. Any action not specifically prohibited by the Constitution is, at the federal level, already legal. To legalize homeschooling at the federal level in such a way that it has legitimate specific power over the states would require an amendment.</li>
</ul>
</li>
<li><strong>Should individual states be able to specifically <em>prohibit</em> homeschooling?</strong>
<ul>
<li><strong><em>Farris:</em></strong> Definitely not.</li>
<li><strong><em>Paul:</em></strong> Technically yes, but only if there is not sufficient protection against this (e.g. right to privacy) in their governing documents. If there is no such protection, this should be fixed with an amendment to the state constitution, effected by <em>the people of that state</em>, not through a power grab by the federal government. <em>[Note: this opinion directly contradicts something I wrote in my original post about Dr. Paul's application of the federal 4th Amendment.]</em></li>
</ul>
</li>
<li><strong>Should individual states be able to specifically <em>legalize</em> homeschooling?</strong>
<ul>
<li><strong><em>Farris:</em></strong> Yes. (Qualifiers not assumed; he may agree with Dr. Paul on this point.)</li>
<li><strong><em>Paul:</em></strong> Yes, provided that power is specified in their constitution and there is no legitimate federal control over the states in this area (which there currently is not). For states that have no authority over education specified in their governing documents, then such a ruling would be largely pointless&mdash;since the default assumption for any action not expressly prohibited is that it is legal&mdash;but it would also be an unconstitutional expansion of state authority.</li>
</ul>
</li>
<li><strong>Does the Bill of Rights in the US Constitution apply to the states?</strong>
<ul>
<li><strong><em>Farris:</em></strong> Most of it does, through the precedents established by the Incorporation Doctrine and the 14th Amendment, and this is good.</li>
<li><strong><em>Paul:</em></strong> Most of it does, through the precedents established by the Incorporation Doctrine and the 14th Amendment, but this is very dangerous because it is an arbitrary and selective expansion of federal power by means of Supreme Court rulings, which is not the correct way to change the scope of federal authority.</li>
</ul>
</li>
<li><strong>Does the federal government have the authority to specifically <em>prohibit</em> homeschooling nationally?</strong>
<ul>
<li><strong><em>Farris:</em></strong> No.</li>
<li><strong><em>Paul:</em></strong> No.</li>
</ul>
</li>
<li><strong>Does the federal government have the authority to specifically <em>legalize</em> homeschooling nationally?</strong>
<ul>
<li><strong><em>Farris:</em></strong> Yes, through clever applications of the 14th Amendment. (I believe this is an accurate representation of Mr. Farris&#8217; opinion, based on his post.)</li>
<li><strong><em>Paul:</em></strong> Legally yes, because of the precedents established by the Incorporation Doctrine. But this is unconstitutional and a bad interpretation of the 14th Amendment, and constitutionally this is still outside of federal jurisdiction. For or against, the federal government has no legitimate authority in the area of education.</li>
</ul>
</li>
<li><strong>Do individual states have the authority to specifically prohibit homeschooling?</strong>
<ul>
<li><strong><em>Farris:</em></strong> No, the 14th Amendment means this is not possible.</li>
<li><strong><em>Paul:</em></strong> Constitutionally yes, but practically no, due to the precedents set by the Incorporation Doctrine to fully incorporate the federal right to free speech and right to privacy to the states. If state and federal powers are separated according to the original intent, then if the state&#8217;s constitution gives them the power to control education in this way, they can do it&mdash;but not if there is no specific power given, or there is another state-level provision that more generally prohibits control of this kind. <em>[Note: this opinion partly contradicts something I wrote in my original post.]</em></li>
</ul>
</li>
<li><strong>Do individual states have the authority to specifically legalize homeschooling?</strong>
<ul>
<li><strong><em>Farris:</em></strong> Yes. (Qualifiers not assumed; he may agree with Dr. Paul on this point.)</li>
<li><strong><em>Paul:</em></strong> Yes, if such provisions for specifically controlling education exist in the state constitution.</li>
</ul>
</li>
</ol>
<p>So, let&#8217;s revisit the statements that Mr. Farris makes about Dr. Paul, and analyze them in light of these new clarifications.</p>
<blockquote><p>&#8220;Ron Paul is an enemy of the legal principles that the homeschooling movement has used successfully to defend our freedom to teach our own children.&#8221;</p></blockquote>
<p><strong>Analysis:</strong> Ron Paul believes that using the 14th Amendment to expand federal authority beyond what is written in the Constitution is the wrong approach, even if it has been done in the past to bring about the protection of things (like homeschooling) that he would like to see protected. Mr. Farris has used this very argument in his cases, so Dr. Paul&#8217;s view that it is technically an unconstitutional approach that actually opens the door to even bigger government does put him at odds with Mr. Farris. However, to say that Ron Paul is an enemy of <em>the legal principles</em> is disingenuous. He is in complete agreement with the desired outcome, but he is an enemy of an argumentative technique that by definition expands the scope of federal power beyond what was originally intended.</p>
<blockquote><p>&#8220;In the 1920s, the State of Oregon banned all private education. This Oregon law was challenged as a violation of the 14th Amendment. The Supreme Court ruled that the 14th Amendment&#8217;s Due Process Clause prohibited states from banning private education because this overrode parental rights in an unconstitutional fashion. If Ron Paul&#8217;s philosophy were applied to this case, then Oregon&#8217;s law would have prevailed under the 10th Amendment.&#8221;</p></blockquote>
<p><strong>Analysis:</strong> Ron Paul&#8217;s view of the US Constitution would indeed have prevented the 14th Amendment from overruling the 10th Amendment, and <em>based only on that argument</em>, the Oregon law would have remained intact. However, what&#8217;s to say that a different challenge based on the limited authority of the state government wouldn&#8217;t have succeeded? I am not a lawyer, but a cursory search through relevant sections of <a href="http://www.leg.state.or.us/orcons/orcons.html" target="_blank">Oregon&#8217;s state constitution</a> does not indicate that they have the right to impose such a law, particularly in light of the rights guaranteed by Sections 1, 3, 8, 9, and 20, which respectively guarantee natural rights of citizens over their government, freedom of religion and conscience, freedom of speech, privacy, and equal protection under the law. Are these really not enough? Is it truly necessary to run to the arbitrary and dubious expansion of federal authority to get what you want?</p>
<p>Mr. Farris lists two more examples of court cases that leveraged the 14th Amendment to protect homeschooling, one in Michigan and one in California. Although the state constitutions are different, the fundamental argument is the same. When something is going wrong within a particular state, the constitutional and safe long-term solution should not involve using arbitrary interpretations of a specific clause as a wedge to get <em>just</em> enough extra federal power to force the state to comply with rules that were originally written <em>specifically</em> for the federal government alone.</p>
<blockquote><p>&#8220;Home schooling would be legal in about 3 states in this country today if Ron Paul&#8217;s view of the Constitution was actually practiced by the Supreme Court.&#8221;</p></blockquote>
<p><strong>Analysis:</strong> Mr. Farris is engaging in blatant hyperbole. There is absolutely no way of knowing that what he predicts would happen, little evidence to suggest it, and a great many arguments to be made for the opposing view. A comprehensive understanding of Ron Paul&#8217;s view of the Constitution combined with his obvious desire to remove government from education wherever possible suggests that Mr. Farris&#8217; frightening hypothesis is, at best, extremely unlikely.</p>
<blockquote><p>&#8220;Do you agree with Ron Paul that the states have the exclusive authority over the legality of homeschooling and the 14th Amendment provides no constitutional right to homeschool?&#8221;</p></blockquote>
<p><strong>Analysis:</strong> Ron Paul does believe that the 14th Amendment provides no constitutional right to homeschool, or at least that it <em>shouldn&#8217;t</em>, since I&#8217;m sure he recognizes the legal precedents already in place along these lines. This much I will readily admit now, in stark contrast to what I wrote before. But on this topic, I cannot come to any other conclusion in light of a strict reading of the Constitution, combined with a firm belief in small government on all levels. <strong><em>However</em></strong>, Ron Paul does not automatically believe that the states have exclusive authority over the legality of homeschooling. He only believes that the <em>federal</em> government has <em>no</em> authority over it, for better or worse. It is simply outside of federal jurisdiction.</p>
<p>But just because the federal government <em>doesn&#8217;t</em> have the power to legalize (or prohibit) homeschooling, that doesn&#8217;t mean that states by definition <em>do</em> have that power. As in the case of Oregon, most states have their own significant list of rights recognized and protected within in their own constitutions. Whenever a legal issue arises concerning education in a particular state, <em>that</em> is where the battle should be fought.</p>
<p>Running to the federal government for protection <em>when doing so requires an inherent expansion of power</em> is the epitome of nanny-statism. This concept is diametrically opposed to Ron Paul&#8217;s entire platform.</p>
<blockquote><p>&#8220;How can you support a candidate who denies the very constitutional principle that our movement used to win our freedom?&#8221;</p></blockquote>
<p><strong>Analysis:</strong> if that candidate decries this &#8220;constitutional principle&#8221; on the grounds that <em>it&#8217;s not actually constitutional but is instead a dangerous move towards expansive federal power</em>, it&#8217;s actually not that difficult. Mr. Farris&#8217; position on this, right or wrong, is not a settled issue. Ron Paul&#8217;s argument against it is completely consistent with the rest of his views on the Constitution. He believes that the ends do not necessarily justify the means, and the means in this case are legitimately worrisome.</p>
<blockquote><p>&#8220;Supporting Ron Paul in the name of homeschooling is like supporting Barack Obama in the name of reducing the national debt.&#8221;</p></blockquote>
<p><strong>Analysis:</strong> that&#8217;s just low. Straw man, guilt by analogy, and invalid premise all in one sentence. It&#8217;s entirely unfair and he must know it. Obama has demonstrated very little desire, absolutely no ability, and no reasonable intent to reduce the national debt (though a tremendous ability to do the opposite).</p>
<p>On the other hand, Ron Paul clearly believes that homeschooling not only should be legal, but is actually desirable. He clearly believes that parents have the ultimate right and responsibility to train their children. He clearly believes that getting the government completely out of education, and parents back into it, is the best solution. But he also clearly believes that the government &#8220;solution&#8221; to any problem of this nature usually just makes a bigger problem, and looking to the federal government to solve a state problem is not only unconstitutional, but it is also dangerous. Mr. Farris does not hold this view, and seems content to manipulate a vague federal law to exercise authority over states&mdash;as long as the argument agrees with his morality, anyway. I&#8217;m sure he is not happy that the same line of reasoning was used to allow abortion on a federal level.</p>
<p>Michael Farris is still wrong about Ron Paul.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sectorfej.net/2012/01/12/michael-farris-homeschooling-and-ron-paul-redux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why Michael Farris is Wrong about Ron Paul on Homeschooling</title>
		<link>http://www.sectorfej.net/2012/01/08/why-michael-farris-is-wrong-about-ron-paul-on-homeschooling/</link>
		<comments>http://www.sectorfej.net/2012/01/08/why-michael-farris-is-wrong-about-ron-paul-on-homeschooling/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 04:50:25 +0000</pubDate>
		<dc:creator>Jeff Rowberg</dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[ron paul]]></category>

		<guid isPermaLink="false">http://www.sectorfej.net/?p=1821</guid>
		<description><![CDATA[I just came across an anti-Paul Facebook post from Michael Ferris of the Home School Legal Defense Association (HSLDA) and Patrick Henry College. He has either twisted or misunderstood what Ron Paul actually believes and clearly says.]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=a8e9b60d26c8b64f3b639961c76124ab&amp;default=http://use.perl.org/images/pix.gif' alt='No Gravatar' width=40 height=40/><p>I just came across <a href="https://www.facebook.com/permalink.php?story_fbid=10150676931144622&#038;id=535184621" target="_blank">this particular Facebook post</a> from Michael Farris of the Home School Legal Defense Association (HSLDA) and Patrick Henry College. It doesn&#8217;t surprise me at all given his previous posts regarding his belief that Ron Paul is dangerous and unsuitable for the presidency. While he has done great things for home schooling in this country, Farris is someone who believes that Lincoln was justified in his position and actions against the southern states before and during the Civil War (which seems difficult to comprehend in light of the way Lincoln trashed the Constitution, judicial system, due process, and the 10th Amendment during his presidency). I say this based on personal correspondence that my dad had with him a few years back, along with his own published writings.</p>
<p><strong><em>[1/12/2012 @ 10:45pm: I have learned some new things about Ron Paul, the Constitution, and my arguments over the last 72 hours. If I were to write this article right now, I would change some of it in a few significant ways. But since a couple thousand people have already read this and many have linked to it, it wouldn't be fair to simply modify the article, even if I no longer agree with everything I wrote. So, for the most complete view of my argument along with its history, feel free to read this including the two updates at the bottom, but please also read the revised analysis and rebuttal, <a href="http://www.sectorfej.net/2012/01/12/michael-farris-homeschooling-and-ron-paul-redux/">Michael Farris, Homeschooling, and Ron Paul Redux</a>. It is more thorough and deals with other underlying legal issues. I do still believe Michael Farris is wrong about Ron Paul on Homeschooling.]</em></strong></p>
<p>Now, I am admittedly a <a href="http://sectorfej.net/2011/12/09/a-personal-endorsement-for-ron-paul-2012/" target="_blank">very big fan of Ron Paul</a>, and I think he is <a href="http://ronpaulflowchart.com" target="_blank">consistent, honest, and full of integrity</a>. But lest you think I am blindly biased or only trying to kill the messenger, let&#8217;s look thoroughly at Mr. Farris&#8217; argument.</p>
<p>The core of Dr. Paul&#8217;s supposed heresy is this:</p>
<blockquote><p>&#8220;Ron Paul is an enemy of the legal principles that the homeschooling movement has used successfully to defend our freedom to teach our own children. He recently said that he does not believe that the 14th Amendment trumps the 10th Amendment. He said this is an abortion context (which proves that he is not politically pro-life) but, let&#8217;s examine what this means in a homechooling context.&#8221;</p></blockquote>
<p>He then explains that this means that Dr. Paul believes that the 10th Amendment gives states the right to prohibit or regulate homeschooling, by virtue of the fact that Farris has leveraged the 14th amendment to win some of his cases:</p>
<blockquote><p>&#8220;The case I won before the Supreme Court of Michigan for homeschooling freedom was based on the 14th Amendment. The federal constitutional principles of religious freedom and parental rights overrode the power of Michigan to require homeschoolers to all be certified teachers.&#8221;</p></blockquote>
<p>Then, he makes this patently false claim, presumably to scare us:</p>
<blockquote><p>&#8220;Home schooling would be legal in about 3 states in this country today if Ron Paul&#8217;s view of the Constitution was actually practiced by the Supreme Court.&#8221;</p></blockquote>
<p>And finally, he asks this very loaded question, which sums up the straw-man argument:</p>
<blockquote><p>&#8220;Do you agree with Ron Paul that the states have the exclusive authority over the legality of homeschooling and the 14th Amendment provides no constitutional right to homeschool?&#8221;</p></blockquote>
<p>Yikes. How could any self-respecting homeschooler, or any advocate of civil liberties for that matter, support such a horrific concept? (I say &#8220;loaded question&#8221; in this case because the wording only allows him to be correct, and he&#8217;s actually asking us whether or not we are misguided idiots.)</p>
<p>The problem is that he has either twisted or misunderstood what Ron Paul actually believes and clearly says. First, let&#8217;s examine the particular part of the 14th Amendment in question, known as the &#8220;due process&#8221; clause:</p>
<blockquote><p>&#8220;No state shall deprive any person of life, liberty, or property, without due process of law; nor deny to any person within its jurisdiction the equal protection of the laws.&#8221;</p></blockquote>
<p>And here&#8217;s the full text of the short and sweet 10th Amendment:</p>
<blockquote><p>&#8220;The powers not delegated to the United States by the Constitution, nor prohibited by it to the States, are reserved to the States respectively, or to the people.&#8221;</p></blockquote>
<p>And now, Dr. Paul&#8217;s 10th vs. 14th Amendment quote that serves as the basis for the argument:</p>
<blockquote><p>&#8220;The Fourteenth Amendment was never intended to cancel out the Tenth Amendment. This means that I can&#8217;t agree that the Fourteenth Amendment has a role to play here, or otherwise we would end up with a &#8216;Federal Department of Abortion.&#8217; &#8230; We should allow our republican system of government to function as our founders designed it to: protect rights at the federal level, enforce laws against violence at the state level.&#8221;</p></blockquote>
<p>This was a written statement offering clarification, included as an addendum to his recent signature of the Personhood Pledge. It was clearly written with respect to abortion and not homeschooling, though at least Farris does admit that much. Ron Paul clearly believes that life begins at conception and therefore that abortion is killing a child. The individual rights of the unborn are no different from the individual rights of any other person. Abortion ought to be subject to the exact same laws that &#8220;regular&#8221; killing is, and these laws are written and enforced on a state level. However, the federal government DOES exist, as he stated, to protect rights, including the right to life. Therefore, no state can make a law that allows murder.</p>
<p>Farris would have us believe that Ron Paul thinks the choice for whether to allow homeschooling should be left up to the states. Nothing could be further from the truth. Here&#8217;s <a href="http://www.ronpaul2012.com/the-issues/homeschooling" target="_blank">Dr. Paul&#8217;s official position</a>.</p>
<p>Notable excerpts:</p>
<blockquote><p>&#8220;Ron Paul believes no nation can remain free when the state has greater influence over the knowledge and values transmitted to children than the family does. &#8230; Congressman Paul wants parents to have the freedom to choose the best educational options for their children, and his commitment to ensuring homeschooling remains a practical alternative for American families is unmatched by any other Presidential candidate. As President, he will veto any legislation that encroaches on homeschooling parents’ rights. Returning control of education to parents and teachers on the local level is the centerpiece of Ron Paul’s education agenda.&#8221;</p></blockquote>
<p>This is consistent with the volume of material written and spoken by Dr. Paul. Remember that he wants to (and has always wanted to) completely shut down the Department of Education, without delegating any of its roles to the states (as he would do with some other federal departments).</p>
<p>In Ron Paul&#8217;s view of the Constitution, contrary to what Farris says, any attempt whatsoever by either the state governments or the federal government to try to limit or otherwise control the legality of homeschooling is a clear violation not of the 14th Amendment, but of the 4th Amendment: the right to privacy. While the 14th Amendment is not bad, the 4th Amendment makes it mostly irrelevant in the case of homeschooling. The Constitution provides absolutely zero authority for the federal government to affect education. Presumably, individual state constitutions do not either, but if they do, that is a separate issue to be addressed as that would put states in violation of the 4th Amendment as well.</p>
<p>The 4th Amendment provides a strong foundation for keeping government entirely out of our personal lives until and unless we violate the rights of someone else (which, as Dr. Paul states, it is the role of the federal government to prohibit nationally and of the state government to punish locally).</p>
<p>Simply stated, with respect to homeschooling, the 14th Amendment says this:</p>
<blockquote><p>&#8220;We can&#8217;t tell you not to teach your kids at home unless we do it in a way that maintains equality under the law.&#8221;</p></blockquote>
<p>&#8230;while the 4th Amendment says this:</p>
<blockquote><p>&#8220;We can&#8217;t tell you not to teach your kids at home.&#8221;</p></blockquote>
<p>Which one is more reassuring?</p>
<p>As to Farris&#8217; claim that, with Dr. Paul&#8217;s interpretation, homeschooling &#8220;would be legal in about 3 states,&#8221; it is easy to see that with Dr. Paul&#8217;s interpretation homeschooling would be legal in <em>every</em> state, with zero government restrictions. The 4th Amendment is <em>extremely</em> important to Ron Paul.</p>
<p>And as for his final question:</p>
<blockquote><p>&#8220;Do you agree with Ron Paul that the states have the exclusive authority over the legality of homeschooling and the 14th Amendment provides no constitutional right to homeschool?&#8221;</p></blockquote>
<p>Ron Paul clearly does not believe that the states have any authority, let alone exclusive authority, over the legality of homeschooling. And, strictly speaking, the 14th Amendment provides no such right to homeschool. That&#8217;s what the 4th Amendment does, combined with the utter absence of educational authority specified in Article 1, Section 8. The 14th Amendment, on the other hand, merely says they can&#8217;t take away any rights without due process. <em>[Note: see Updates #1 and #2 below for further discussion of this point, which I would clarify differently, having done more research.]</em></p>
<p>However, I believe that Mike Farris also opposes Ron Paul on his drug policies, which indicates that perhaps he does not appreciate such a comprehensive, all-encompassing understanding of the 4th Amendment in the first place.</p>
<hr />
<p>For some additional arguments and perspectives, check out these posts from others:</p>
<ul>
<li><a href="https://www.facebook.com/mary.pride/posts/271266206269832" target="_blank">Mary Pride&#8217;s response to Mr. Farris</a></li>
<li><a href="https://www.facebook.com/permalink.php?story_fbid=2462290405162&#038;id=1489266176" target="_blank">Bojidar Marinov&#8217;s excellent rebuttal to Mr. Farris</a>
<li><a href="https://www.facebook.com/permalink.php?story_fbid=2464269774645&#038;id=1489266176" target="_blank">Bojidar Marinov&#8217;s follow-up response to Mr. Farris</a></li>
<li><a href="https://www.facebook.com/permalink.php?story_fbid=10150571818483383&#038;id=786858382" target="_blank">Nathaniel Darnell&#8217;s response to Mr. Farris</a></li>
<li><a href="http://www.ronpaul2012.com/2012/01/07/ron-paul-campaign-names-new-%E2%80%98homeschoolers-for-ron-paul%E2%80%99-nationwide-coalition-members/" target="_blank">Ron Paul Campaign Names New &#8216;Homeschoolers for Ron Paul&#8217; Nationwide Coalition Members</a></li>
</ul>
<hr />
<h3><em>Update #1 &#8211; 1/9/2012 @ 8:30am</em></h3>
<p>Michael Farris makes the following argument against using the 4th Amendment:</p>
<blockquote><p>&#8220;The 4th Amendment prevents unreasonable searches and seizures. It is the 4th Amendment that we use to stop social service agencies from invading people&#8217;s homes. <strong>But, like the rest of the Bill of Rights, the 4th Amendment does not apply directly to the states. It only applies through the 14th Amendment.</strong> Anyone who claims that the 4th Amendment will protect homeschooling against state governments but that it is improper to use the 14th Amendment is simply and totally wrong and demonstrates that they know absolutely nothing about this area of law. Moreover, the 4th Amendment has nothing to say to any level of government about issues arising from compulsory attendance laws. That is straight up 14th Amendment issues with a bit of 1st Amendment thrown in on the side.&#8221;</p></blockquote>
<p>This is misleading, particularly with respect to homeschooling. The 4th Amendment has indeed been incorporated against the states. Much, but not all, of the Bill of Rights are forced against the states via the <a href="http://en.wikipedia.org/wiki/Incorporation_of_the_Bill_of_Rights#Amendment_IV" target="_blank">Incorporation Doctrine</a>. This is not the same as using the 14th Amendment as a legal basis (let alone the <em>only</em> legal basis) for applying the 4th Amendment to the states. From the linked page about the Incorporation Doctrine:</p>
<blockquote><p>Rep. John Bingham, the principal framer of the Fourteenth Amendment, advocated that the Fourteenth applied the first eight Amendments of the Bill of Rights to the States. The U.S. Supreme Court subsequently declined to interpret it that way. Until the 1947 case of Adamson v. California, Supreme Court Justice Hugo Black argued in his dissent that the framers&#8217; intent should control the Court&#8217;s interpretation of the 14th Amendment, and he attached a lengthy appendix that quoted extensively from Bingham&#8217;s congressional testimony. Although the Adamson Court declined to adopt Black&#8217;s interpretation, the Court during the following twenty-five years employed a doctrine of selective incorporation that succeeded in extending to the States almost of all of the protections in the Bill of Rights, as well as other, unenumerated rights.</p></blockquote>
<p>This is not at odds with Ron Paul&#8217;s position on the 4th, 10th, and 14th Amendments with respect to either homeschooling or abortion. However, it is at odds with Mr. Farris&#8217; position on the 14th Amendment.</p>
<p>However, it is admittedly true that a plain, logical reading of the 4th Amendment does not indicate anything about compulsory attendance. This is a separate issue. The federal government has no Constitutional authority in the realm of education, and so cannot force you to attend school any more legitimately than they can force you to purchase health insurance. However, there may be room in this area for individual state constitutions to require some kind of compulsory public education, <em>as long as</em> that is clearly specified as part of that state&#8217;s authority. They still may not <em>prohibit</em> homeschooling (the core of the argument here), but if the state does include compulsory public education as part of their governing document, then it is up to the citizens of that state to change that legally, or move to a different state where there is no such requirement.</p>
<p>On a different note, Mr. Farris has said that he is pursuing a possible debate/discussion directly with Dr. Paul, which is an excellent way to resolve (or at least clarify) this whole thing. I hope they actually do it.</p>
<h3><em>Update #2 &#8211; 1/9/2012 @ 1:15pm</em></h3>
<p>I am continuing to learn here, and I have to be up-front with what I have discovered about the previously mentioned Incorporation Doctrine. Ron Paul apparently <a href="http://www.ronpaulforums.com/showthread.php?59547-Why-does-Ron-Paul-oppose-the-incorporation-doctrine">does not believe this is a wise approach to expanding federal power</a>, even though in many cases it has been used in ways where I (and he) would agree in principle with the outcome. If individual rights (life, liberty, property ownership, free speech, privacy, etc.) are universal and unalienable, then it seems like a good thing to enforce them universally. But doing so by reinterpreting the federal Bill of Rights so as to apply them to the states, which the states clearly did not sign up for in the beginning, may not be the right way to do it. It is still an expansion of federal authority beyond what was written, effected by the Supreme Court. I believe this is not allowed, given logically and thoroughly consistent reading of the Constitution as written.</p>
<p>It seems that many of the states have their own equivalent Bill-of-Rights-style language in their governing documents, and this is where the true authority is. The federal government has limitations on itself, while it has virtual no limitations on the states from a strict literal reading. The Incorporation Doctrine is a bit dangerous in this light, since it allows for an expansion of federal powers beyond what was written&mdash;even if, in many cases, this has been used in an arguably good way.</p>
<p>This does not change the constitutionality of federal interference in education, but it does affect the scope of what individual states can theoretically do (depending on their own respective state constitutions). My argument is largely the same, but leaves more potential for fighting battles on the state level. Federal legislation regulating, allowing, or prohibiting homeschooling still has no constitutional authority.</p>
<p>This is largely a moot point at this time, since the Incorporation Doctrine is alive and well&mdash;whether or not it should be from my or Ron Paul&#8217;s perspective. But it is important to note that this doctrine will not be used as a central part of a Ron Paul administration, at least not if he has anything to do with it. Given his strong pro-homeschooling perspective, the precedents that already exist, his desire to eliminate the Department of Education, and the growing social acceptance in general of homeschooling, I don&#8217;t believe this will be a significant problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sectorfej.net/2012/01/08/why-michael-farris-is-wrong-about-ron-paul-on-homeschooling/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

