<?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>Casey Wise</title>
	<atom:link href="http://caseywise.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://caseywise.com/blog</link>
	<description>projects and web archive/sandbox</description>
	<lastBuildDate>Sat, 04 Sep 2010 13:57:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Due date today</title>
		<link>http://caseywise.com/blog/?p=501</link>
		<comments>http://caseywise.com/blog/?p=501#comments</comments>
		<pubDate>Sat, 04 Sep 2010 13:57:13 +0000</pubDate>
		<dc:creator>Casey Wise</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://caseywise.com/blog/?p=501</guid>
		<description><![CDATA[Due date today, things are happening.  We're currently kicking it at Denny's.  Contractions started yesterday mornings and something appears afoot.  This morning Amber indicated that the pain level with her contractions is greater than it was yesterday and she's just updated me that their frequency is increasing.  I'm gonna go out on a limb and [...]]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://caseywise.com/blog/wp-content/uploads/2010/09/wpid-wp-1283608343963.jpg" /></p>
<p>Due date today, things are happening.  We're currently kicking it at Denny's.  Contractions started yesterday mornings and something appears afoot.  This morning Amber indicated that the pain level with her contractions is greater than it was yesterday and she's just updated me that their frequency is increasing.  I'm gonna go out on a limb and wager that this will be the last time we come to Denny's requesting a table for 2 <img src='http://caseywise.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://caseywise.com/blog/?feed=rss2&amp;p=501</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Contentlet Relating in dotCMS</title>
		<link>http://caseywise.com/blog/?p=496</link>
		<comments>http://caseywise.com/blog/?p=496#comments</comments>
		<pubDate>Thu, 02 Sep 2010 13:53:48 +0000</pubDate>
		<dc:creator>Casey Wise</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[dotCMS]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[contentlet]]></category>
		<category><![CDATA[dotcms]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[relationships]]></category>

		<guid isPermaLink="false">http://caseywise.com/blog/?p=496</guid>
		<description><![CDATA[Pretty straight forward here. ?View Code JAVA/** * This method create a relationship between two contentlets * @param parent the parent of the relationship * @param child the child of the relationship * @param relationship the relationship that will link the two contentlets * @param treePosition if there are more than one child, we have [...]]]></description>
			<content:encoded><![CDATA[<p>Pretty straight forward here.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p496code2'); return false;">View Code</a> JAVA</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p4962"><td class="code" id="p496code2"><pre class="java" style="font-family:monospace;"><span style="color: #008000; font-style: italic; font-weight: bold;">/**
* This method create a relationship between two contentlets
* @param parent the parent of the relationship
* @param child the child of the relationship
* @param relationship the relationship that will link the two contentlets
* @param treePosition if there are more than one child, we have to set the position of this relation 
* @return the new Tree instance that represent the relationship between both contentlets
*/</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">public</span> Tree relateContent<span style="color: #009900;">&#40;</span>Contentlet parent, Contentlet child, Relationship relationship,<span style="color: #000066; font-weight: bold;">int</span> treePosition<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #666666; font-style: italic;">//Check if there is another relation between those two entries with the same relationship</span>
	Tree tree <span style="color: #339933;">=</span> TreeFactory.<span style="color: #006633;">getTree</span><span style="color: #009900;">&#40;</span>parent.<span style="color: #006633;">getIdentifier</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>, child.<span style="color: #006633;">getIdentifier</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>, relationship.<span style="color: #006633;">getRelationTypeValue</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">//if the tree doesn't exist, we create a new one</span>
	<span style="color: #000000; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>tree.<span style="color: #006633;">getParent</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&lt;</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #666666; font-style: italic;">//Create the new instance of the relationship</span>
		tree <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Tree<span style="color: #009900;">&#40;</span>parent.<span style="color: #006633;">getIdentifier</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>, child.<span style="color: #006633;">getIdentifier</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>, relationship.<span style="color: #006633;">getRelationTypeValue</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>, treePosition<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #000000; font-weight: bold;">return</span> tree<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://caseywise.com/blog/?feed=rss2&amp;p=496</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My very first bash shell script</title>
		<link>http://caseywise.com/blog/?p=481</link>
		<comments>http://caseywise.com/blog/?p=481#comments</comments>
		<pubDate>Tue, 31 Aug 2010 14:35:33 +0000</pubDate>
		<dc:creator>Casey Wise</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[dotCMS]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[dotcms]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://caseywise.com/blog/?p=481</guid>
		<description><![CDATA[So at work, I do some "glue" work. I'm learning all sorts of things at once. At any time during the day, I'm confident with what I'm doing or a humiliated greenhorn. Often times, where I fall short in my lack of knowledge, I shore up with a different area where I'm less dumber.  It [...]]]></description>
			<content:encoded><![CDATA[<p>So at work, I do some "glue" work.  I'm learning all sorts of things at once.  At any time during the day, I'm confident with what I'm doing or a humiliated greenhorn.  Often times, where I fall short in my lack of knowledge, I shore up with a different area where I'm less dumber.  It definitely makes for a rainbow of emotions.</p>
<p>Today I wrote my first bash shell script and it felt really good.  The code is below, but here's what it does:</p>
<ol>
<li>Queries our dotCMS database to find where we have outstanding records (that's my Java greenhorns creating those records)</li>
<li>If records are found:
<ol>
<li>SQL dumps the 2 tables to my local Ubuntu desktop</li>
<li>Restores the data into my local data base</li>
<li>Sends mail making use of the "mailx" software to myself and our sysadmin, notifying him to access some PHP generated SQL to run against our production dotCMS database</li>
</ol>
</li>
</ol>
<p>The PHP was generated a while ago which parses pipe-delimited data in to an ad-hoc SQL query.  This script runs hourly as a cron job.</p>
<p>Here's the code:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p481code4'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p4814"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
</pre></td><td class="code" id="p481code4"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/sh</span>
&nbsp;
<span style="color: #007800;">to</span>=<span style="color: #ff0000;">&quot;test@test.com&quot;</span>
&nbsp;
<span style="color: #007800;">dbh</span>=<span style="color: #ff0000;">&quot;database host path&quot;</span>
<span style="color: #007800;">dbu</span>=<span style="color: #ff0000;">&quot;database user&quot;</span>
<span style="color: #007800;">dpw</span>=<span style="color: #ff0000;">&quot;database password&quot;</span>
<span style="color: #007800;">dbn</span>=<span style="color: #ff0000;">&quot;database name&quot;</span>
&nbsp;
<span style="color: #007800;">ldbh</span>=<span style="color: #ff0000;">&quot;local database host&quot;</span>
<span style="color: #007800;">ldbu</span>=<span style="color: #ff0000;">&quot;local database user&quot;</span>
<span style="color: #007800;">lpw</span>=<span style="color: #ff0000;">&quot;local database password&quot;</span>
<span style="color: #007800;">ldb</span>=<span style="color: #ff0000;">&quot;local database name&quot;</span>
&nbsp;
mysql <span style="color: #660033;">-N</span> <span style="color: #660033;">-h</span> <span style="color: #007800;">$ldbh</span> <span style="color: #660033;">-u</span> <span style="color: #007800;">$ldbu</span> -p<span style="color: #007800;">$lpw</span> <span style="color: #007800;">$ldb</span> <span style="color: #000000; font-weight: bold;">&lt;&lt;</span> EOT <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>t<span style="color: #007800;">$$</span>
<span style="color: #000000; font-weight: bold;">select</span> blah blah from blah blah where blah blah = blah blah blah
EOT
&nbsp;
<span style="color: #007800;">VAR</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">cat</span> <span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>t<span style="color: #007800;">$$</span><span style="color: #000000; font-weight: bold;">`</span>
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$VAR</span>&quot;</span> <span style="color: #000000; font-weight: bold;">!</span>= <span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>
        <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;yes, we have unreported records<span style="color: #000099; font-weight: bold;">\r</span><span style="color: #000099; font-weight: bold;">\n</span><span style="color: #007800;">$VAR</span>&quot;</span>
        mysqldump <span style="color: #660033;">--single-transaction</span> <span style="color: #660033;">-u</span> <span style="color: #007800;">$dbu</span> -p<span style="color: #007800;">$dpw</span> <span style="color: #660033;">-h</span> <span style="color: #007800;">$dbh</span> <span style="color: #007800;">$dbn</span> table1 table2  <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>tmp.sql
        mysql <span style="color: #660033;">-u</span> <span style="color: #007800;">$ldbu</span> <span style="color: #007800;">$lbu</span> -p<span style="color: #007800;">$lpw</span> <span style="color: #007800;">$ldb</span> <span style="color: #000000; font-weight: bold;">&amp;</span>lt; <span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>tmp.sql
        <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Sysadmin, we have unreported records:<span style="color: #000099; font-weight: bold;">\n</span><span style="color: #007800;">$VAR</span><span style="color: #000099; font-weight: bold;">\n</span><span style="color: #000099; font-weight: bold;">\n</span>Can you please run the following SQL against the prod dotCMS db?<span style="color: #000099; font-weight: bold;">\n</span>http://xxxx/xxxx.php&quot;</span> <span style="color: #000000; font-weight: bold;">|</span> mailx <span style="color: #660033;">-s</span> <span style="color: #ff0000;">&quot;Unreported Records&quot;</span> <span style="color: #007800;">$to</span>
<span style="color: #000000; font-weight: bold;">fi</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://caseywise.com/blog/?feed=rss2&amp;p=481</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Voice Actions in Android 2.2 (Froyo) Change the Game</title>
		<link>http://caseywise.com/blog/?p=460</link>
		<comments>http://caseywise.com/blog/?p=460#comments</comments>
		<pubDate>Mon, 16 Aug 2010 19:13:50 +0000</pubDate>
		<dc:creator>Casey Wise</dc:creator>
				<category><![CDATA[mobile]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[froyo]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[voice actions]]></category>

		<guid isPermaLink="false">http://caseywise.com/blog/?p=460</guid>
		<description><![CDATA[With Google's inclusion of Voice Actions in the latest Android OS update (2.2), Froyo goes from good to great.  A majority of the device's functions can now be controlled with voice commands.  And it works, like most Google software, as advertised. My daily commute is 50 minutes each way in good and uneventful traffic.  My [...]]]></description>
			<content:encoded><![CDATA[<p>With Google's inclusion of <a href="http://www.google.com/mobile/voice-actions/" target="_blank">Voice Actions</a> in the latest Android OS update (2.2), Froyo goes from good to great.  A majority of the device's functions can now be controlled with voice commands.  And it works, like most Google software, as advertised.</p>
<p>My daily commute is 50 minutes each way in good and uneventful traffic.  My mobile too greatly divides my attention and I gotta kid on the way.  With voice actions, I can fire up GPS, text, or call anyone in my contact list or off Google Maps without pushing more than a button or two.  Seems like the voice recognition is even faster and more accurate since the 2.2 update.</p>
<p>This video lays it out beautifully.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="545" height="335" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/gGbYVvU0Z5s&amp;color1=0xb1b1b1&amp;color2=0xd0d0d0&amp;hl=en_us&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="545" height="335" src="http://www.youtube.com/v/gGbYVvU0Z5s&amp;color1=0xb1b1b1&amp;color2=0xd0d0d0&amp;hl=en_us&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>A little nugget I've already found not mentioned in the video is the <em>directions</em> Voice Action.  As a previous iPhone user I like making use of the more familiar <em>directions</em> versus <em>navigation</em> in Android.  <em>Navigation</em> takes control of the phone and is a tad bit obtrusive when I'm trying to do more than merely get from point "a" to point "b."   <em>Directions</em> is a more standard/common implementation of Google Maps based GPS and easier to mix in with other stuff whilst multitasking.</p>
<p>To make use of <em>directions</em>, give this one a whirl:<br />
<em>"directions to the Canton Akron Airport Ohio"</em></p>
<p>For those of you who are hip to the QR codes, see below.  <a href="http://market.android.com/search?q=pname:com.google.android.voicesearch">Here's a direct download link to this most excellent application</a> (for Android powered devices only) in the Android Marketplace.</p>
<p><img src="http://chart.apis.google.com/chart?cht=qr&amp;chl=http%3A%2F%2Fmarket.android.com%2Fsearch%3Fq%3Dpname%3Acom.google.android.voicesearch&amp;chs=125x125" alt="Android Marketplace Download for Enhanced Voice Search" width="125" height="125" /></p>
]]></content:encoded>
			<wfw:commentRss>http://caseywise.com/blog/?feed=rss2&amp;p=460</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protected: dotCMS Contentlet API &#8212; Relating Content</title>
		<link>http://caseywise.com/blog/?p=452</link>
		<comments>http://caseywise.com/blog/?p=452#comments</comments>
		<pubDate>Wed, 28 Jul 2010 17:49:09 +0000</pubDate>
		<dc:creator>Casey Wise</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[dotCMS]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[relationships]]></category>

		<guid isPermaLink="false">http://caseywise.com/blog/?p=452</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://caseywise.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-452">Password:<br />
<input name="post_password" id="pwbox-452" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://caseywise.com/blog/?feed=rss2&amp;p=452</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Messing with Feedburner, Following Brother&#8217;s Adventure, Helping Mom Follow Brother with Feedburner</title>
		<link>http://caseywise.com/blog/?p=433</link>
		<comments>http://caseywise.com/blog/?p=433#comments</comments>
		<pubDate>Thu, 15 Jul 2010 15:06:47 +0000</pubDate>
		<dc:creator>Casey Wise</dc:creator>
				<category><![CDATA[family]]></category>

		<guid isPermaLink="false">http://caseywise.com/blog/?p=433</guid>
		<description><![CDATA[I'm attempting to knock out 3 birds with one stone here: I've been wanting to mess with FeedBurner for a while.  Not entirely sure what this is all about yet. My brother is on an epic motorcycle journey (EMJ) across the United States.  He doing a round trip from Ohio to Vancouver BC. He's regularly [...]]]></description>
			<content:encoded><![CDATA[<p>I'm attempting to knock out 3 birds with one stone here:</p>
<ol>
<li>I've been wanting to mess with FeedBurner for a while.  Not entirely sure what this is all about yet.</li>
<li>My brother is on an epic motorcycle journey (EMJ) across the United States.  He doing a round trip from Ohio to Vancouver BC.  He's <a href="http://twitter.com/naradawise" targer="_blank">regularly tweeting</a> and got Google Latitude activated.</li>
<li>My mother wants to follow along, but is what we'll call "technically pure"  She doesn't quite get the whole twitter thing yet and really wants to follow along on the EMJ.</li>
</ol>
<p>I'm looking to combine 1 &amp; 2 to accomplish 3:</p>
<form style="border: 1px solid #ccc; padding: 3px; text-align: center;" action="http://feedburner.google.com/fb/a/mailverify" method="post">Enter your email address to be notified of Craig's EMJ updates:<br /><br />
<input style="width: 140px;" name="email" type="text" />
<input name="uri" type="hidden" value="Twitter/Naradawise" />
<input name="loc" type="hidden" value="en_US" />
<input type="submit" value="Sign Up for EMJ Notifications" /> </form>
]]></content:encoded>
			<wfw:commentRss>http://caseywise.com/blog/?feed=rss2&amp;p=433</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evo = Flashlight. LED Light from Picolyl</title>
		<link>http://caseywise.com/blog/?p=421</link>
		<comments>http://caseywise.com/blog/?p=421#comments</comments>
		<pubDate>Wed, 14 Jul 2010 18:34:53 +0000</pubDate>
		<dc:creator>Casey Wise</dc:creator>
				<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://caseywise.com/blog/?p=421</guid>
		<description><![CDATA[Boy am I an even happier Evo owner now!  Just found the Android app LED Light from Picolyl.  I want my smartphone to be as many things as possible and adding the "flashlight" functionality is huge!]]></description>
			<content:encoded><![CDATA[<p>Boy am I an even happier Evo owner now!  Just found the Android app <a href="http://www.appbrain.com/app/jp.picolyl.led_light">LED Light from Picolyl</a>.  I want my smartphone to be as many things as possible and adding the "flashlight" functionality is huge!</p>
<p><img src="http://qrcode.kaywa.com/img.php?s=6&amp;d=market%3A%2F%2Fsearch%3Fq%3Dpname%3Ajp.picolyl.led_light&quot;" alt="" width="210" height="210" /></p>
]]></content:encoded>
			<wfw:commentRss>http://caseywise.com/blog/?feed=rss2&amp;p=421</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Arrival of Noah Ryan Morris</title>
		<link>http://caseywise.com/blog/?p=417</link>
		<comments>http://caseywise.com/blog/?p=417#comments</comments>
		<pubDate>Tue, 06 Jul 2010 01:15:47 +0000</pubDate>
		<dc:creator>Casey Wise</dc:creator>
				<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://caseywise.com/blog/?p=417</guid>
		<description><![CDATA[Amber and I were able to join mother Jess Morris and the recently arrived, Noah Ryan today at the hospital for a quick meet and greet. I'm proud to report that he's doing very well!]]></description>
			<content:encoded><![CDATA[<p>Amber and I were able to join mother Jess Morris and the recently arrived, Noah Ryan today at the hospital for a quick meet and greet.  I'm proud to report that he's doing very well!</p>

<div class="ngg-galleryoverview" id="ngg-gallery-6-417">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-55" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/dsc_0877.jpg" title=" " rel="lightbox[set_6]" >
								<img title="dsc_0877" alt="dsc_0877" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_dsc_0877.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-56" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/dsc_0878.jpg" title=" " rel="lightbox[set_6]" >
								<img title="dsc_0878" alt="dsc_0878" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_dsc_0878.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-57" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/dsc_0879.jpg" title=" " rel="lightbox[set_6]" >
								<img title="dsc_0879" alt="dsc_0879" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_dsc_0879.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-58" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/dsc_0880.jpg" title=" " rel="lightbox[set_6]" >
								<img title="dsc_0880" alt="dsc_0880" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_dsc_0880.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-59" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/dsc_0881.jpg" title=" " rel="lightbox[set_6]" >
								<img title="dsc_0881" alt="dsc_0881" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_dsc_0881.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-60" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/dsc_0882.jpg" title=" " rel="lightbox[set_6]" >
								<img title="dsc_0882" alt="dsc_0882" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_dsc_0882.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-61" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/dsc_0883.jpg" title=" " rel="lightbox[set_6]" >
								<img title="dsc_0883" alt="dsc_0883" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_dsc_0883.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-62" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/dsc_0884.jpg" title=" " rel="lightbox[set_6]" >
								<img title="dsc_0884" alt="dsc_0884" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_dsc_0884.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-63" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/dsc_0885.jpg" title=" " rel="lightbox[set_6]" >
								<img title="dsc_0885" alt="dsc_0885" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_dsc_0885.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-64" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/dsc_0886.jpg" title=" " rel="lightbox[set_6]" >
								<img title="dsc_0886" alt="dsc_0886" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_dsc_0886.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-65" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/dsc_0887.jpg" title=" " rel="lightbox[set_6]" >
								<img title="dsc_0887" alt="dsc_0887" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_dsc_0887.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-66" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/dsc_0888.jpg" title=" " rel="lightbox[set_6]" >
								<img title="dsc_0888" alt="dsc_0888" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_dsc_0888.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-67" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/dsc_0889.jpg" title=" " rel="lightbox[set_6]" >
								<img title="dsc_0889" alt="dsc_0889" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_dsc_0889.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-68" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/dsc_0890.jpg" title=" " rel="lightbox[set_6]" >
								<img title="dsc_0890" alt="dsc_0890" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_dsc_0890.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-69" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/dsc_0891.jpg" title=" " rel="lightbox[set_6]" >
								<img title="dsc_0891" alt="dsc_0891" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_dsc_0891.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-70" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/imag0107.jpg" title=" " rel="lightbox[set_6]" >
								<img title="imag0107" alt="imag0107" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_imag0107.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-71" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/imag0108.jpg" title=" " rel="lightbox[set_6]" >
								<img title="imag0108" alt="imag0108" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_imag0108.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-72" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/imag0109.jpg" title=" " rel="lightbox[set_6]" >
								<img title="imag0109" alt="imag0109" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_imag0109.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-73" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/imag0110.jpg" title=" " rel="lightbox[set_6]" >
								<img title="imag0110" alt="imag0110" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_imag0110.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-74" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/imag0111.jpg" title=" " rel="lightbox[set_6]" >
								<img title="imag0111" alt="imag0111" src="http://caseywise.com/blog/wp-content/gallery/arrival-of-noah-ryan-morris/thumbs/thumbs_imag0111.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-navigation'><span>1</span><a class="page-numbers" href="http://caseywise.com/blog/?p=417&amp;nggpage=2">2</a><a class="next" id="ngg-next-2" href="http://caseywise.com/blog/?p=417&amp;nggpage=2">&#9658;</a></div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://caseywise.com/blog/?feed=rss2&amp;p=417</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Protected: dotCMS SQL, multiple live contentlets and their associated unique data</title>
		<link>http://caseywise.com/blog/?p=409</link>
		<comments>http://caseywise.com/blog/?p=409#comments</comments>
		<pubDate>Wed, 30 Jun 2010 12:47:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[dotCMS]]></category>

		<guid isPermaLink="false">http://caseywise.com/blog/?p=409</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://caseywise.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-409">Password:<br />
<input name="post_password" id="pwbox-409" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://caseywise.com/blog/?feed=rss2&amp;p=409</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Paws for Golf Registration Form</title>
		<link>http://caseywise.com/blog/?p=405</link>
		<comments>http://caseywise.com/blog/?p=405#comments</comments>
		<pubDate>Sat, 19 Jun 2010 19:23:19 +0000</pubDate>
		<dc:creator>Casey Wise</dc:creator>
				<category><![CDATA[web work]]></category>

		<guid isPermaLink="false">http://caseywise.com/blog/?p=405</guid>
		<description><![CDATA[Portage Animal Protective League was in need of a new registration form for their 3rd annual golf fundraiser. Using my most favoritest web-based form building tool, JotForm, I came up with the following in just over an hour. What a killer tool. Take a look at them if you get a minute, it ties in [...]]]></description>
			<content:encoded><![CDATA[<p>Portage Animal Protective League was in need of a new registration form for their 3rd annual golf fundraiser.  Using my most favoritest web-based form building tool, <a href="http://www.jotform.com">JotForm</a>, I came up with the following in just over an hour.  What a killer tool.  Take a look at them if you get a minute, it ties in with all sorts of tools, very powerful, these guys that built this tool really know how to program.</p>
<p><script src="http://www.jotform.com/jsform/1695451923"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://caseywise.com/blog/?feed=rss2&amp;p=405</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
