<?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>Beginnercode.com &#187; ^Lestat</title>
	<atom:link href="http://www.beginnercode.com/author/lestat/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.beginnercode.com</link>
	<description>The adventures of an amateur coder</description>
	<lastBuildDate>Wed, 27 Apr 2011 20:07:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
  <link>http://www.beginnercode.com</link>
  <url>http://www.beginnercode.com/wp-content/themes/neuron/favicon.ico</url>
  <title>Beginnercode.com</title>
</image>
		<item>
		<title>Adding a second argument to CI form_validation callbacks</title>
		<link>http://www.beginnercode.com/2011/04/27/adding-a-second-argument-to-ci-form_validation-callbacks/</link>
		<comments>http://www.beginnercode.com/2011/04/27/adding-a-second-argument-to-ci-form_validation-callbacks/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 20:07:54 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=333</guid>
		<description><![CDATA[About a month ago I started working with the CodeIgniter framework. It&#8217;s the first framework I have worked with and frankly, I love it!
So I was looking to add a second parameter to a form_validation callback. Here&#8217;s what I found:

$this-&#62;form_validation('user_name', 'name', &#34;callback_test_name[$param2]&#34;);

and the callback:

test_name($name, $param2){
    ..// some logic to return
}

The form_validation class [...]]]></description>
			<content:encoded><![CDATA[<p>About a month ago I started working with the CodeIgniter framework. It&#8217;s the first framework I have worked with and frankly, I love it!</p>
<p>So I was looking to add a second parameter to a form_validation callback. Here&#8217;s what I found:</p>
<pre class="brush: php;">
$this-&gt;form_validation('user_name', 'name', &quot;callback_test_name[$param2]&quot;);
</pre>
<p>and the callback:</p>
<pre class="brush: php;">
test_name($name, $param2){
    ..// some logic to return
}
</pre>
<p>The form_validation class uses the form value as the first parameter, and you can pass the second parameter in the arguments as you would with any other rule references. (First snippet)</p>
<p>At first I was calling 2 validations. First the standard type of validation, <strong>then another validation on the same input</strong>. * BAD IDEA * </p>
<p>There were some issues with order of operations. I found it best to chain the whole lot together. Like so:</p>
<pre class="brush: php;">
$this-&gt;form_validation('user_name', 'name', &quot;required|min_length[10]|callback_test_name[$param2]&quot;);
</pre>
<p>I hope that helps anybody with the same question.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2011/04/27/adding-a-second-argument-to-ci-form_validation-callbacks/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>REGEX For common courier tracking numbers</title>
		<link>http://www.beginnercode.com/2010/11/09/regex-for-common-courier-tracking-numbers/</link>
		<comments>http://www.beginnercode.com/2010/11/09/regex-for-common-courier-tracking-numbers/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 22:37:40 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=322</guid>
		<description><![CDATA[I was on the hunt not only to find the different variations each courier had for their tracking numbers but also a regex to match. Most of the google fu I found was outdated. Fedex &#8220;recently&#8221; (months? years? days?) changed from a 12 digit to 15 digit system. And NO, tracking numbers are not totally [...]]]></description>
			<content:encoded><![CDATA[<p>I was on the hunt not only to find the different variations each courier had for their tracking numbers but also a regex to match. Most of the google fu I found was outdated. Fedex &#8220;recently&#8221; (months? years? days?) changed from a 12 digit to 15 digit system. And NO, tracking numbers are not totally random. There is usually a space separation on the printed labels you see. Each of the spaced out subsets have a meaning to the courier as well as a checksum. Checksum being, a pre selected sequence of particular number positions added together then divided by a pre selected number. That you can search up yourself if you like. I didn&#8217;t find all too much on that matter either.</p>
<p>I am not very good with regex so if there are any suggestions by l33t coderz, they are more than welcome. On with the codes:</p>
<pre class="brush: php;">

/****
[ UPS ]
9 digits, or 1Z+whatever digits
The quick brown fox 1Z9999W99999999999 jumps over the lazy dog.
*/
$ups = '/(\b\d{9}\b)|(\b1Z\d+\b)/';

/****
[ Fedex ]
12 digits, 15 digits, or '96'+ 20 digits
The quick brown fox 999999999999 jumps over the lazy dog.
*/
$fedex = '/(\b96\d{20}\b)|(\b\d{15}\b)|(\b\d{12}\b)/';

/***
[ USPS ]
30 digits, '91'+20 digits, 20 digits (untested)
&lt; TOTALLY UNTESTED BY ME AT THIS TIME &gt;
*/
$usps = '/(\b\d{30}\b)|(\b91\d+\b)|(\b\d{20}\b)/';
</pre>
<p>I did get the common characters per courier from <a href="http://www.packagetrackr.com/help/carriers">Packagetrackr</a>. I don&#8217;t know how much of it is accurate, but from what I could tell from my experience with FedEx and UPS it seemed to be in line. I was unable to find an all inclusive source.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2010/11/09/regex-for-common-courier-tracking-numbers/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>20100914 MKE PHP Meetup Live blogging</title>
		<link>http://www.beginnercode.com/2010/09/14/20100914-mke-php-meetup-live-blogging/</link>
		<comments>http://www.beginnercode.com/2010/09/14/20100914-mke-php-meetup-live-blogging/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 23:26:36 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[General Site Maint]]></category>
		<category><![CDATA[meetup]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=309</guid>
		<description><![CDATA[6:20 Intro, and new people introducing themselves to the group.
6:27 Aaron talked about his car, and introduced Kevin Schroeder, Zend Technolgies tech evangelist.
6:30 Kevin tells us of his background (cool nerdy stuff)
A book he wrote
Kevin offered $100 off zendcon in our group, as well as a drawing for a free ticket (1,400 value).
Drawing for a [...]]]></description>
			<content:encoded><![CDATA[<p>6:20 Intro, and new people introducing themselves to the group.</p>
<p>6:27 Aaron talked about his car, and introduced Kevin Schroeder, Zend Technolgies tech evangelist.</p>
<p>6:30 Kevin tells us of his background (cool nerdy stuff)</p>
<p><a href="http://www.amazon.com/You-Want-Do-What-PHP/dp/1583470999">A book he wrote</a></p>
<p>Kevin offered $100 off zendcon in our group, as well as a drawing for a free ticket (1,400 value).</p>
<p>Drawing for a free version of Zend studio at tonights meeting.</p>
<p>In my opinion live blogging is very distracting to me&#8230;</p>
<p>Kevin is going into the framework now and it will take about an hour. Im done bloggin for now&#8230;</p>
<p>Zend Studio is pretty cool. Especially code tracing.</p>
<p>7:20 break time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2010/09/14/20100914-mke-php-meetup-live-blogging/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Using ui autocomplete as a dropdown, with type in</title>
		<link>http://www.beginnercode.com/2010/04/01/using-ui-autocomplete-as-a-dropdown-with-type-in/</link>
		<comments>http://www.beginnercode.com/2010/04/01/using-ui-autocomplete-as-a-dropdown-with-type-in/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 15:25:46 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=298</guid>
		<description><![CDATA[I had been using an autocomplete plugin by bassistance. 2 months later jQuery UI added autocomplete to their list of widgets. Like many plugins out there I was unable to find an autocomplete that was easy to use for my purposes. The closest I recently came to was the sexy combo plugin. I cant remember [...]]]></description>
			<content:encoded><![CDATA[<p>I had been using an autocomplete plugin by <a href="http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/">bassistance</a>. 2 months later jQuery UI added autocomplete to their list of widgets. Like many plugins out there I was unable to find an autocomplete that was easy to use for my purposes. The closest I recently came to was the <a href="http://code.google.com/p/sexy-combo/">sexy combo plugin</a>. I cant remember why but it was just a tad short of what I wanted to do, and I&#8217;m still quite a javascript novice.</p>
<p>I came up with a way to use the jQuery UI autocomplete widget as a &lt;select&gt; that you could also type in something if the choices in the dropdown didn&#8217;t fit your needs.</p>
<p><img src="http://www.beginnercode.com/wp-content/imgupload/2010/04/ui-autocomplete-dropdown.jpg" alt="ui-autocomplete-dropdown" title="ui-autocomplete-dropdown" width="431" height="229" class="aligncenter size-full wp-image-304" /></p>
<p>This example uses a local data source, but you can come up with creative ways to use remote JSON sources if you like.</p>
<div style="margin:10px 0 20px 0;text-align:center;"><a href="http://www.library.beginnercode.com/jQuery/ui/autocomplete.php" target="_blank">Click here for the demo</a></div>
<pre class="brush: php;">
&lt;script type=&quot;text/javascript&quot;&gt;
	$(document).ready(function() {

		// dropdown/ auto suggest
		$(&quot;.ui_dropdown&quot;).autocomplete({
			minLength: 0,
			delay: 0
		});

		$(&quot;.ui_dropdown&quot;).click(function(){

			var input = $(this);
			var inputID = input.attr('id');

			// close if already visible
			if (input.autocomplete(&quot;widget&quot;).is(&quot;:visible&quot;)) {
				input.autocomplete(&quot;close&quot;);
				return false;
			}

			// set source(s)
			var myData = '';
			if(inputID == 'input1'){
				myData = [&quot;foo&quot;,&quot;bar&quot;,&quot;hello&quot;,&quot;world&quot;];
			} else {
				myData = [&quot;1&quot;,&quot;2&quot;,&quot;3&quot;,&quot;4&quot;];
			}

			// load source
			input.autocomplete({
				source: myData
			});

			// fire search event
			input.autocomplete(&quot;search&quot;, &quot;&quot;);
			input.focus();
			return false;
		});		

	});
&lt;/script&gt;
</pre>
<p>In this script I am using the input id&#8217;s to define the data source.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2010/04/01/using-ui-autocomplete-as-a-dropdown-with-type-in/feed/</wfw:commentRss>
		<slash:comments>40</slash:comments>
		</item>
		<item>
		<title>Cloning table rows and jQuery UI Datepicker()</title>
		<link>http://www.beginnercode.com/2009/12/17/cloning-table-rows-and-jquery-ui-datepicker/</link>
		<comments>http://www.beginnercode.com/2009/12/17/cloning-table-rows-and-jquery-ui-datepicker/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 18:22:49 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=254</guid>
		<description><![CDATA[I&#8217;m rather new to both javascript and jQuery. I ran into an issue while cloning table rows that had inputs, and jQuery UI datepicker.
The cloned datepicker input would insert the picked date into the original inputs rather than the cloned row.

The inputs in my table rows had no ID&#8217;s. So what I found was either [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m rather new to both javascript and jQuery. I ran into an issue while cloning table rows that had inputs, and jQuery UI datepicker.</p>
<p>The cloned datepicker input would insert the picked date into the original inputs rather than the cloned row.<br />
<img src="http://www.beginnercode.com/wp-content/imgupload/2009/12/cloneDatepicker.jpg" alt="cloneDatepicker" title="cloneDatepicker" width="379" height="302" class="aligncenter size-full wp-image-276" /></p>
<p>The inputs in my table rows had no ID&#8217;s. So what I found was either jQuery or UI was dynamically creating it&#8217;s own DOM id&#8217;s for the inputs in the table rows that had the datepicker call. Datepicker also was dynamically inserting a class &#8220;hasDatepicker&#8221; into the inputs that had the datepicker call.</p>
<p>I resolved this by:<br />
1. Looping through the cloned rows inputs looking for any inputs with the class &#8220;hasDatepicker&#8221;.<br />
2. Removing the hasDatepicker class from any inputs with that class.<br />
3. Getting that inputs current id, incrementing it by 1, and reassigning it.<br />
4. Re-initializing the datepicker call.</p>
<div style="margin:10px 0 20px 0;text-align:center;"><a href="http://www.library.beginnercode.com/jQuery/inputs_on_the_fly/cloneDatepicker.php" target="_blank">Click here for the demo</a></div>
<pre class="brush: php;">
&lt;script type=&quot;text/javascript&quot;&gt;

$(document).ready(function(){

  // -- Clone table rows
  $(&quot;.cloneTableRows&quot;).live('click', function(){
    // do the cloning...

    // new rows datepicker need to be re-initialized
    $(newRow).find(&quot;input&quot;).each(function(){

      // if the current input has the hasDatpicker class
      if($(this).hasClass(&quot;hasDatepicker&quot;)){
        var this_id = $(this).attr(&quot;id&quot;); // current inputs id
        var new_id = this_id +1; // a new id
        $(this).attr(&quot;id&quot;, new_id); // change to new id
        $(this).removeClass('hasDatepicker'); // remove hasDatepicker class
        $(this).datepicker(); // re-init datepicker
      }

    });

  });

});

&lt;/script&gt;
</pre>
<p>Whats really neat about this particular js, is that you can call it from any table that has an id.</p>
<p><b>The only thing I have yet to figure out is how to reset the cloned datepicker to use the default class called date format. </b></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2009/12/17/cloning-table-rows-and-jquery-ui-datepicker/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Free DVD Software through October 31</title>
		<link>http://www.beginnercode.com/2009/10/20/free-dvd-software-through-october-31/</link>
		<comments>http://www.beginnercode.com/2009/10/20/free-dvd-software-through-october-31/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 21:17:38 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=236</guid>
		<description><![CDATA[winxdvd.com is giving away DVD Authoring, and DVD ripping software between now and October 31, 2009.
I downloaded and installed as soon as darkmoon told me about it. Thanks for the tip. They installed smoothly on my system, and at the price of FREE you can&#8217;t go wrong. Go grab your copies!
DVD Authoring: here 
DVD Ripping/ [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.beginnercode.com/wp-content/imgupload/2009/10/ripper.jpg" alt="ripper" title="ripper" width="150" height="187" class="alignleft size-full wp-image-238"  style="float:left;" />winxdvd.com is giving away DVD Authoring, and DVD ripping software between now and October 31, 2009.</p>
<p>I downloaded and installed as soon as <a href="http://life.firelace.com/">darkmoon</a> told me about it. Thanks for the tip. They installed smoothly on my system, and at the price of FREE you can&#8217;t go wrong. Go grab your copies!</p>
<p>DVD Authoring:<a href="http://www.winxdvd.com/specialoffer/oct09.htm"> here </a><br />
DVD Ripping/ Converting: <a href="http://www.winxdvd.com/specialoffer/sep0902.htm"> here </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2009/10/20/free-dvd-software-through-october-31/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Javascript: Focus() on a textbox</title>
		<link>http://www.beginnercode.com/2009/08/12/javascript-focus-on-a-textbox/</link>
		<comments>http://www.beginnercode.com/2009/08/12/javascript-focus-on-a-textbox/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 19:09:47 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[General Site Maint]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=233</guid>
		<description><![CDATA[A dirty way to run js script inline and bring focus to an element:

&#60;html&#62;
&#60;body&#62;

    &#60;form method=&#34;post&#34; action=&#34;index.php&#34; id=&#34;myForm&#34;&#62;
        &#60;p&#62; Login: &#60;input type=&#34;text&#34; name=&#34;pwd&#34; id=&#34;pwd&#34; /&#62;  &#60;/p&#62;
    &#60;/form&#62;

    &#60;script type=&#34;text/javascript&#34;&#62;document.myForm.pwd.focus();&#60;/script&#62;

&#60;/body&#62;
&#60;/html&#62;

Notice that both the form and form element have an [...]]]></description>
			<content:encoded><![CDATA[<p>A dirty way to run js script inline and bring focus to an element:</p>
<pre class="brush: xml;">
&lt;html&gt;
&lt;body&gt;

    &lt;form method=&quot;post&quot; action=&quot;index.php&quot; id=&quot;myForm&quot;&gt;
        &lt;p&gt; Login: &lt;input type=&quot;text&quot; name=&quot;pwd&quot; id=&quot;pwd&quot; /&gt;  &lt;/p&gt;
    &lt;/form&gt;

    &lt;script type=&quot;text/javascript&quot;&gt;document.myForm.pwd.focus();&lt;/script&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>Notice that both the form and form element have an ID</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2009/08/12/javascript-focus-on-a-textbox/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Backup your Notepad++ FTP items</title>
		<link>http://www.beginnercode.com/2009/08/04/backup-your-notepad-ftp-items/</link>
		<comments>http://www.beginnercode.com/2009/08/04/backup-your-notepad-ftp-items/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 15:02:08 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=202</guid>
		<description><![CDATA[So in addition to reformatting friends and relatives computers, about every 2 years I clean out my own. Each time I have, I&#8217;ve lost my Notepad++ FTP synchronize settings.
In Vista they can be found in:
C:\Users\AppData\Roaming\Notepad++\plugins\config\FTP_synchronize.ini

Copy them to backup and replace. In case an update gets hosed, or you are re-installing.
]]></description>
			<content:encoded><![CDATA[<p>So in addition to reformatting friends and relatives computers, about every 2 years I clean out my own. Each time I have, I&#8217;ve lost my Notepad++ FTP synchronize settings.</p>
<p>In Vista they can be found in:<br />
<strong>C:\Users\AppData\Roaming\Notepad++\plugins\config\FTP_synchronize.ini</strong></p>
<p><a href="http://www.beginnercode.com/wp-content/imgupload/2009/08/notepadFTPBackup.jpg"><img src="http://www.beginnercode.com/wp-content/imgupload/2009/08/notepadFTPBackup.jpg" alt="notepadFTPBackup" title="notepadFTPBackup" width="425" height="320" class="aligncenter size-full wp-image-204" /></a></p>
<p>Copy them to backup and replace. In case an update gets hosed, or you are re-installing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2009/08/04/backup-your-notepad-ftp-items/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Get Acrobat Reader WITHOUT Adobe Update manager</title>
		<link>http://www.beginnercode.com/2009/07/30/get-acrobat-reader-without-adobe-update-manager/</link>
		<comments>http://www.beginnercode.com/2009/07/30/get-acrobat-reader-without-adobe-update-manager/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 13:16:50 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=198</guid>
		<description><![CDATA[Recently I&#8217;ve been helping out friends and relations reformat a few computers. They are older, but are speedy enough for their basic needs. One of the sick system hogs (I&#8217;ve found) is the adobe update manager.
Most browsers come with update managers, so I feel the update manager is bloated and not necessary. It likes to [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve been helping out friends and relations reformat a few computers. They are older, but are speedy enough for their basic needs. One of the sick system hogs (I&#8217;ve found) is the adobe update manager.</p>
<p>Most browsers come with update managers, so I feel the update manager is bloated and not necessary. It likes to place its services in the startup causing unneeded processing power. </p>
<p>When it came to reformatting my own laptop, there was no way I was going to install acrobat reader from adobe using their typical download page. Which incidentally, if your not careful will also install a toolbar. You need to uncheck that option.</p>
<p>Adobe does have a page where you can download directly without the ridiculous manager. Hat tip to <a href="http://www.walkernews.net/2007/06/21/all-version-adobe-reader-direct-download/">Walker News</a>, who provided me with the adobe direct download link. (<a href="http://get.adobe.com/reader/otherversions/">http://get.adobe.com/reader/otherversions/</a>).</p>
<p><b>UPDATE: </b> This no longer works. I now run older versions from old version.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2009/07/30/get-acrobat-reader-without-adobe-update-manager/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Despite rampant bailouts, decency and self responsibility still live.</title>
		<link>http://www.beginnercode.com/2008/11/17/despite-rampant-bailouts-decency-and-self-responsibility-still-live/</link>
		<comments>http://www.beginnercode.com/2008/11/17/despite-rampant-bailouts-decency-and-self-responsibility-still-live/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 19:04:49 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[General Interest]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/index.php/2008/11/17/despite-rampant-bailouts-decency-and-self-responsibility-still-live/</guid>
		<description><![CDATA[ 
So enraged at the bailouts I bought myself a nifty yardsign from cafepress. I&#8217;ve had several passerby&#8217;s knock on my door and ask where I got it. Even a few cars stopped and inquired.
Last Friday night we had just crawled into bed (was a rough week), and there was a knock at the door. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.beginnercode.com/wp-content/imgupload/2008/11/bailoutsign.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="164" alt="bailoutSign" src="http://www.beginnercode.com/wp-content/imgupload/2008/11/bailoutsign-thumb.jpg" width="244" align="left" border="0" /></a> </p>
<p>So enraged at the bailouts I bought myself a <a href="http://signs.cafepress.com/item/wheres-my-bailout-yard-sign/307378698">nifty yardsign from cafepress.</a> I&#8217;ve had several passerby&#8217;s knock on my door and ask where I got it. Even a few cars stopped and inquired.</p>
<p>Last Friday night we had just crawled into bed (was a rough week), and there was a knock at the door. It was one of those &quot;Are you kidding me?&quot; moments. Anyhow I went to the door. As I approached it I heard my next door neighbor lady giving a scolding. Now I was curious.</p>
<p>I turned on the porch lights and found her surrounded by 4 teenage boys, and she was still ripping them a new one. She spotted a strange vehicle parked along the road and had observed the teens yanking and ripping my sign from the ground. She basically arrested them, and brought them to my door. Most of them had a &quot;ruh-roh&quot; look in their eyes. She had asked them if they knew what &quot;restitution&quot; meant. One of them who seemed to care less what happened to them attempted to answer. </p>
<p>Then it dawned on me. It was getting colder, and the leaves on my silver maples finally fell, and I have been incredibly busy with life lately. Perfect! I suggested to the young men that 1/2 hour of raking from each of them would cover the expense as well as the inconvenience. However, it was late at night. My neighbor reminded the boys that she got their license plate. I asked them to return the next day on their honor to come and rake. Don&#8217;t get me wrong, I&#8217;ve had my share of mischief in my youth. So in a way I was thinking &quot;awww you are sooo busted&quot;. Then I thought about the $30 the sign cost me, and how I don&#8217;t work for someone else to throw my work away. So then I was getting upset, especially since the sign was specifically about bailouts.</p>
<p>Much to my surprise 3 of the 4 showed up while I was at work. My wife handed them all rakes and away they went. I just want to say how proud I am of the young <strong>men</strong> who showed for their correction. These boys will go far in life if they continue to abide by such morals (which certainly means they don&#8217;t fit the bill for a congress person). </p>
<p>My wife gave them all bottled water. My toddler even went out and talked with them. One of them was aspiring to be a dentist. Funny how it struck me. At first I could care less.&#160; After the whole thing was finished I realized it worked out exactly how it was supposed to. No bailouts for them, no grudges on both parties. Just facing the music, like men, and moving on. </p>
<p>As for the one that had no spine&#8230; I&#8217;m quite sure that he will someday be forced to grow one, but it&#8217;s too bad that it will probably be in a much severe way later in life. If he doesn&#8217;t learn life lessons now, <strike>he&#8217;ll end up in congress</strike>.</p>
<p>I&#8217;m so glad there are people like my neighbors and that there are young men like this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2008/11/17/despite-rampant-bailouts-decency-and-self-responsibility-still-live/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

