<?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>Jeff Kastner&#039;s Weblog</title>
	<atom:link href="http://www.jeffkastner.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jeffkastner.com</link>
	<description>Husband to the most beautiful wife in the world and father to the 2 sweetest kids ever created</description>
	<lastBuildDate>Sun, 21 Feb 2010 06:16:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Deliver and Install Applications Remotely With Only a Batch File</title>
		<link>http://www.jeffkastner.com/2010/02/deliver-and-install-applications-remotely-with-only-a-batch-file/</link>
		<comments>http://www.jeffkastner.com/2010/02/deliver-and-install-applications-remotely-with-only-a-batch-file/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 04:35:45 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[RSA]]></category>

		<guid isPermaLink="false">http://www.jeffkastner.com/?p=193</guid>
		<description><![CDATA[As a Remote Administrator for a software vendor, there’s a popular challenge I often have to overcome; I need to deliver a software package to a lot of computers without using the more popular technologies available. Why the restriction? I generally only maintain the servers that house the software my company builds. That being the case, I don’t get access to such tools as Group Policy, SMS or the latest, greatest SCCM that a lot of IT staffs will use to push out and deploy application installs.]]></description>
			<content:encoded><![CDATA[<p>As a Remote Administrator for a software vendor, there&#8217;s a popular challenge I often have to overcome; I need to deliver a software package to a lot of computers without using the more popular technologies available. Why the restriction? I generally only maintain the servers that house the software my company builds. That being the case, I don&#8217;t get access to such tools as Group Policy, SMS or the latest, greatest SCCM that a lot of IT staffs will use to push out and deploy application installs. You get the keys to a few locks, but they won&#8217;t give you the keys to the kingdom.</p>
<p>Recently, I was faced with a new challenge. I had a client that was needing to update over 50 workstations at the same time and the updates were starting to come in weekly. Citrix wasn&#8217;t an option for them. As a result, the client would have two people stay after work one night every week and walk to every machine (stretched out between 3 different buildings) and execute the new application install updates. After employing RDP, things went a little faster, as they could sit at their desk and login to every machine remotely. That&#8217;s still not a great option though.</p>
<p>The following is a batch file I wrote that allows an application to be delivered and installed to every computer on the domain by using nothing more than a text file with a list of the computer names. <span id="more-193"></span>To start, you&#8217;ll need to download <a href="http://technet.microsoft.com/en-us/sysinternals/bb897553.aspx" target="new">psexec</a>, an awesome telnet utility from SysInternals (now owned by Microsoft) that allows you to run remote commands on other computers without the need for logging in.  Just drop it in your C:\Windows directory on the server you&#8217;ll be running your batch file on.  No client software to install! </p>
<p>The batch file simply loops through twice.  Using a FOR /F loop, it loops through a text file (called computernames.txt in my example) and copies the install to every computer.  The second time it loops through, psexec executes a command to install.  With the -d option there, it doesn&#8217;t wait around to finish either.  It starts the install and moves right on to the next computer in the list.   Here&#8217;s my code:</p>
<div id="wpshdo_1" class="wp-synhighlighter-outer"><div id="wpshdt_1" class="wp-synhighlighter-collapsed"><table border="0" width="100%"><tr><td align="left" width="80%"><a name="#codesyntax_1"></a><a id="wpshat_1" class="wp-synhighlighter-title" href="#codesyntax_1"  onClick="javascript:wpsh_toggleBlock(1)" title="Click to show/hide code block">Code block</a></td><td align="right"><a href="#codesyntax_1" onClick="javascript:wpsh_code(1)" title="Show code only"><img border="0" style="border: 0 none" src="http://www.jeffkastner.com/wp-content/plugins/wp-synhighlight/themes/default/images/code.png" /></a>&nbsp;<a href="#codesyntax_1" onClick="javascript:wpsh_print(1)" title="Print code"><img border="0" style="border: 0 none" src="http://www.jeffkastner.com/wp-content/plugins/wp-synhighlight/themes/default/images/printer.png" /></a>&nbsp;<a href="#codesyntax_1" onClick="javascript:wpsh_about(1)" title="Show plugin information"><img border="0" style="border: 0 none" src="http://www.jeffkastner.com/wp-content/plugins/wp-synhighlight/themes/default/images/info.gif" /></a>&nbsp;</td></tr></table></div><div id="wpshdi_1" class="wp-synhighlighter-inner" style="display: none;"><pre class="winbatch" style="font-family:monospace;"><span class="sy0">@</span>REM <span class="sy0">--</span> COPY FILES FROM <span class="kw2">SERVER</span> <span class="kw1">TO</span> ALL WORKSTATIONS AND DEPLOY <span class="sy0">--</span>
<span class="sy0">@</span>echo <span class="kw2">off</span>
setlocal EnableDelayedExpansion
&nbsp;
<span class="kw1">FOR</span> <span class="sy0">/</span>F <span class="sy0">%%</span>N <span class="kw1">IN</span> <span class="br0">&#40;</span>computernames.txt<span class="br0">&#41;</span> DO <span class="br0">&#40;</span>
  set line=<span class="sy0">!</span>date<span class="sy0">!</span> <span class="sy0">!</span>time<span class="sy0">!</span> <span class="sy0">%%</span>N
  XCOPY \\servername\c<span class="sy0">$</span>\Jeff\installfolder \\<span class="sy0">%%</span>N\C<span class="sy0">$</span>\Install\ <span class="sy0">/</span>y <span class="sy0">/</span>O <span class="sy0">/</span>X <span class="sy0">/</span>E <span class="sy0">/</span>H <span class="sy0">/</span>K <span class="sy0">/</span>I <span class="sy0">/</span>S <span class="sy0">&gt;</span>nul 2<span class="sy0">&gt;&amp;</span>1 <span class="sy0">||</span> set line=<span class="sy0">!</span>line<span class="sy0">!</span> Error
  echo <span class="sy0">!</span>line<span class="sy0">!</span>
<span class="br0">&#41;</span> <span class="sy0">&gt;&gt;</span>copyresults.txt
&nbsp;
<span class="kw1">FOR</span> <span class="sy0">/</span>F <span class="sy0">%%</span>N <span class="kw1">IN</span> <span class="br0">&#40;</span>computernames.txt<span class="br0">&#41;</span> DO <span class="br0">&#40;</span>
  set line=<span class="sy0">!</span>date<span class="sy0">!</span> <span class="sy0">!</span>time<span class="sy0">!</span> <span class="sy0">%%</span>N
    psexec \\<span class="sy0">%%</span>N <span class="sy0">-</span>d <span class="sy0">-</span>s msiexec <span class="sy0">/</span>update <span class="st0">&quot;C:\Install\Update\MyProgramUpdate_01.1.12345.msp&quot;</span> <span class="sy0">/</span>qb
<span class="br0">&#41;</span></pre></div></div>So there it is, complete with an error checking log on the copy to every computer.  Since we&#8217;re using the -d paramater with psexec, we can&#8217;t use a log to see if psexec worked.  I find this the best way though, as you will otherwise need to wait for each computer to verify execution before moving on&#8230; and this took about a minute p/ computer.  With just a few short lines of code, I managed to give 2 employees the night off every week while I took on the task of installing the software to every workstation in a much shorter time frame.  The install time went from 4 hours (for 2 people) to 1 hour (for 1 person). </p>
<p>OK.. so that works.  But now, with nobody walking around to ensure the success of the installs, how to know if the machines really updated or if there was a problem?  Most programs write to a log of some sort.  I decided to simply use my loop again and go parse the &#8220;Install.log&#8221; file of each computer.  I created the following batch file to achieve this:<br />
<div id="wpshdo_2" class="wp-synhighlighter-outer"><div id="wpshdt_2" class="wp-synhighlighter-collapsed"><table border="0" width="100%"><tr><td align="left" width="80%"><a name="#codesyntax_2"></a><a id="wpshat_2" class="wp-synhighlighter-title" href="#codesyntax_2"  onClick="javascript:wpsh_toggleBlock(2)" title="Click to show/hide code block">Code block</a></td><td align="right"><a href="#codesyntax_2" onClick="javascript:wpsh_code(2)" title="Show code only"><img border="0" style="border: 0 none" src="http://www.jeffkastner.com/wp-content/plugins/wp-synhighlight/themes/default/images/code.png" /></a>&nbsp;<a href="#codesyntax_2" onClick="javascript:wpsh_print(2)" title="Print code"><img border="0" style="border: 0 none" src="http://www.jeffkastner.com/wp-content/plugins/wp-synhighlight/themes/default/images/printer.png" /></a>&nbsp;<a href="#codesyntax_2" onClick="javascript:wpsh_about(2)" title="Show plugin information"><img border="0" style="border: 0 none" src="http://www.jeffkastner.com/wp-content/plugins/wp-synhighlight/themes/default/images/info.gif" /></a>&nbsp;</td></tr></table></div><div id="wpshdi_2" class="wp-synhighlighter-inner" style="display: none;"><pre class="winbatch" style="font-family:monospace;"><span class="sy0">@</span>echo <span class="kw2">off</span>
setlocal EnableDelayedExpansion
<span class="kw1">FOR</span> <span class="sy0">/</span>F <span class="sy0">%%</span>N <span class="kw1">IN</span> <span class="br0">&#40;</span>computernames.txt<span class="br0">&#41;</span> DO <span class="br0">&#40;</span>
    <span class="kw1">For</span> <span class="sy0">/</span>F <span class="st0">&quot;tokens=1* delims=,&quot;</span> <span class="sy0">%%</span>A <span class="kw1">in</span> <span class="br0">&#40;</span><span class="st0">'find &quot;2010-02-17&quot;^&lt;\\%%N\C$\Program Files\MyProgram\Logs\Install.log'</span><span class="br0">&#41;</span> do <span class="br0">&#40;</span>
        <span class="sy0">&gt;&gt;</span>MASTERLOG.log echo <span class="sy0">%%</span>N <span class="sy0">%%</span>A
    <span class="br0">&#41;</span>
<span class="br0">&#41;</span></pre></div></div>
<p>This will list every computer that has a line in Install.log that begins with the current date (update the date before running it), which is how my install log gets written.  Change yours up accordingly.  If you want to include computers that haven&#8217;t got the log written to it yet, you could include the following after the double-quote at the end of your logfile path:  ^|^|echo ERROR</p>
<p>I was actually surprised how well this all worked when using it in a production environment.  It was faster than I even imagined it would be and my installs can now all be happening at the same time (nearly.. as psexec takes about 3 seconds to execute before going to the next name in the list) with no other user intervention needed.  I plan to streamline this even further in the coming weeks.  I&#8217;ve got a few ideas rolling around&#8230; </p>
<p>See why I love my job?  <img src='http://www.jeffkastner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   I love the opportunity to create solutions&#8230;.</p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.jeffkastner.com/2010/02/deliver-and-install-applications-remotely-with-only-a-batch-file/&amp;title=Deliver+and+Install+Applications+Remotely+With+Only+a+Batch+File" target="_blank" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.jeffkastner.com/2010/02/deliver-and-install-applications-remotely-with-only-a-batch-file/&amp;title=Deliver+and+Install+Applications+Remotely+With+Only+a+Batch+File" target="_blank" rel="nofollow" title="Digg this!">Digg this!</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.jeffkastner.com/2010/02/deliver-and-install-applications-remotely-with-only-a-batch-file/&amp;title=Deliver+and+Install+Applications+Remotely+With+Only+a+Batch+File" target="_blank" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.jeffkastner.com/2010/02/deliver-and-install-applications-remotely-with-only-a-batch-file/" target="_blank" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.jeffkastner.com/2010/02/deliver-and-install-applications-remotely-with-only-a-batch-file/&amp;amp;t=Deliver+and+Install+Applications+Remotely+With+Only+a+Batch+File" target="_blank" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.jeffkastner.com/2010/02/deliver-and-install-applications-remotely-with-only-a-batch-file/&amp;amp;t=Deliver+and+Install+Applications+Remotely+With+Only+a+Batch+File" target="_blank" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=+Deliver+and+Install+Applications+Remotely+With+Only+a+Batch+File+-+http://tinyurl.com/yhtcuby" target="_blank" rel="nofollow" title="Tweet This!">Tweet This!</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.jeffkastner.com/2010/02/deliver-and-install-applications-remotely-with-only-a-batch-file/&title=Deliver+and+Install+Applications+Remotely+With+Only+a+Batch+File&summary=As+a+Remote+Administrator+for+a+software+vendor%2C+there%27s+a+popular+challenge+I+often+have+to+overcome%3B+I+need+to+deliver+a+software+package+to+a+lot+of+computers+without+using+the+more+popular+technologies+available.+Why%5B..%5D&source=Jeff Kastner&#039;s Weblog" target="_blank" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.jeffkastner.com/2010/02/deliver-and-install-applications-remotely-with-only-a-batch-file/&amp;title=Deliver+and+Install+Applications+Remotely+With+Only+a+Batch+File" target="_blank" rel="nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.jeffkastner.com/2010/02/deliver-and-install-applications-remotely-with-only-a-batch-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Blat, Stunnel and Gmail Together</title>
		<link>http://www.jeffkastner.com/2010/01/blat-stunnel-and-gmail/</link>
		<comments>http://www.jeffkastner.com/2010/01/blat-stunnel-and-gmail/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 23:20:41 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[RSA]]></category>

		<guid isPermaLink="false">http://www.jeffkastner.com/?p=162</guid>
		<description><![CDATA[I was looking for a way to create quick reminders for myself.  After trying a few different programs, I looked to the command line to see what I could come up with.  It turns out that "command-line email" is perfect for my needs.  By combining Blat, Stunnel and Gmail, you can create a great reminder system for taking quick notes. [click to read more...]]]></description>
			<content:encoded><![CDATA[<p>I was looking for a way to create quick reminders for myself.  After trying a few different programs, I looked to the command line to see what I could come up with.  It turns out that &#8220;command-line email&#8221; is perfect for my needs.  By combining Blat, Stunnel and Gmail, you can create a great reminder system for taking quick notes. <span id="more-162"></span></p>
<p>I&#8217;ve been a long time fan of <a title="blat.exe" href="http://www.blat.net/" target="_blank">blat</a>, a command line utility that uses SMTP for sending quick messages.  The problem is that a SMTP Server isn&#8217;t always available to every computer.  For awhile, I was loading a separate SMTP Server program on any computer that I needed to use blat on.  I have since found a far easier method.  Enter Gmail.  The geniuses at Google have done it again, allowing the smtp protocol to be used by your Gmail account. </p>
<p>The first step is to download blat and extract the 3 files to your C:\WINDOWS folder.  Next.. download <a title="Stunnel" href="http://www.stunnel.org/" target="_blank">Stunnel</a> to your computer.  I was attempting to setup Gmail&#8217;s SMTP for quite a while before realizing that SSL is required and that&#8217;s why I couldn&#8217;t connect.  This is a good thing though.. as we are now assured the messages we send to Gmail from blat are completely secure.  Stunnel provides the tunnel.  After downloading and installing, you&#8217;ll need to edit your stunnel.conf file with the following settings (yes, just overwrite everything in the file with this):</p>
<blockquote><p># GLOBAL OPTIONS</p>
<p>client = yes<br />
output = stunnel-log.txt<br />
debug = 0<br />
taskbar = no</p>
<p># SERVICE-LEVEL OPTIONS</p>
<p>[SMTP Gmail]<br />
accept = 127.0.0.1:1099<br />
connect = smtp.gmail.com:465</p>
<p>[POP3 Gmail]<br />
accept = 127.0.0.1:1109<br />
connect = pop.gmail.com:995</p></blockquote>
<p>Now, start the service and then &#8216;Run Stunnel&#8217; (both options from Program Files).  Your secure tunnel is established.  (We&#8217;re not actually using POP3 settings since we&#8217;re just interested in creating outgoing (SMTP) mail, but if you setup an email client (Oulook, Thunderbird, etc..), you could enable POP3 in your gmail settings and take advantage of this also. )</p>
<p>Finally, run the <a title="blat command line options" href="http://www.blat.net/syntax/syntax.html" target="_blank">blat command line options</a> to install SMTP to your computer and run the batch file we create for our command line reminders.  Pull up a command prompt and this to install:  <span style="font-family: monospace;">blat -install smtp.gmail.com youremail@gmail.com -u gmailusername -pw gmailpassword &#8211; - gmailsmtp</span></p>
<p>This creates a registry entry with your smtp profile including a gmail encrypted username and password. Next up.. create the batch file that we&#8217;ll call when we type in the command line. It&#8217;s just as simple as this: <span style="font-family: monospace;">c:\windows\blat.exe -p gmailsmtp -to youremail@gmail.com -subject Note: -body %1 -server 127.0.0.1:1099</span></p>
<p>Name your file note.bat and drop it in C:\WINDOWS as well.  Now, pull up a command prompt and type:  note &#8220;here&#8217;s some text to send&#8221;</p>
<p>Check your email.. and there&#8217;s your new note.</p>
<p>Keep in mind that you can send your email to anyone, as you&#8217;re just using the SMTP protocol from a designated gmail account. You also have a huge amount of other options that you could include your batch file so check out the blat syntax. You&#8217;re only limited by what blat can&#8217;t do and blat can do a lot!</p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.jeffkastner.com/2010/01/blat-stunnel-and-gmail/&amp;title=Using+Blat%2C+Stunnel+and+Gmail+Together" target="_blank" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.jeffkastner.com/2010/01/blat-stunnel-and-gmail/&amp;title=Using+Blat%2C+Stunnel+and+Gmail+Together" target="_blank" rel="nofollow" title="Digg this!">Digg this!</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.jeffkastner.com/2010/01/blat-stunnel-and-gmail/&amp;title=Using+Blat%2C+Stunnel+and+Gmail+Together" target="_blank" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.jeffkastner.com/2010/01/blat-stunnel-and-gmail/" target="_blank" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.jeffkastner.com/2010/01/blat-stunnel-and-gmail/&amp;amp;t=Using+Blat%2C+Stunnel+and+Gmail+Together" target="_blank" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.jeffkastner.com/2010/01/blat-stunnel-and-gmail/&amp;amp;t=Using+Blat%2C+Stunnel+and+Gmail+Together" target="_blank" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=+Using+Blat%2C+Stunnel+and+Gmail+Together+-+http://tinyurl.com/yengmyh" target="_blank" rel="nofollow" title="Tweet This!">Tweet This!</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.jeffkastner.com/2010/01/blat-stunnel-and-gmail/&title=Using+Blat%2C+Stunnel+and+Gmail+Together&summary=I+was+looking+for+a+way+to+create+quick+reminders+for+myself.%C2%A0+After+trying+a+few+different+programs%2C+I+looked+to+the+command+line+to+see+what+I+could+come+up+with.%C2%A0+It+turns+out+that+%22command-line+email%22+is+perfect+fo%5B..%5D&source=Jeff Kastner&#039;s Weblog" target="_blank" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.jeffkastner.com/2010/01/blat-stunnel-and-gmail/&amp;title=Using+Blat%2C+Stunnel+and+Gmail+Together" target="_blank" rel="nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.jeffkastner.com/2010/01/blat-stunnel-and-gmail/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Ol&#8217; Blue Eyes</title>
		<link>http://www.jeffkastner.com/2009/05/ol-blue-eyes/</link>
		<comments>http://www.jeffkastner.com/2009/05/ol-blue-eyes/#comments</comments>
		<pubDate>Sun, 24 May 2009 19:48:59 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.jeffkastner.com/?p=113</guid>
		<description><![CDATA[Nothing makes me want to take pics more than my sweet little baby boy.  I just love those big blue eyes!

Share this on del.icio.usDigg this!Stumble upon something good? Share it on StumbleUponShare this on TechnoratiPost this to MySpaceShare this on FacebookTweet This!Share this on LinkedinSubmit this to Script &#38; Style]]></description>
			<content:encoded><![CDATA[<p>Nothing makes me want to take pics more than my sweet little baby boy.  I just love those big blue eyes!</p>
<p><img class="alignnone size-full wp-image-120" title="blueeyes5" src="http://www.jeffkastner.com/wp-content/uploads/2009/05/blueeyes5.jpg" alt="blueeyes5" width="972" height="648" /></p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.jeffkastner.com/2009/05/ol-blue-eyes/&amp;title=Ol%26%238217%3B+Blue+Eyes" target="_blank" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.jeffkastner.com/2009/05/ol-blue-eyes/&amp;title=Ol%26%238217%3B+Blue+Eyes" target="_blank" rel="nofollow" title="Digg this!">Digg this!</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.jeffkastner.com/2009/05/ol-blue-eyes/&amp;title=Ol%26%238217%3B+Blue+Eyes" target="_blank" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.jeffkastner.com/2009/05/ol-blue-eyes/" target="_blank" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.jeffkastner.com/2009/05/ol-blue-eyes/&amp;amp;t=Ol%26%238217%3B+Blue+Eyes" target="_blank" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.jeffkastner.com/2009/05/ol-blue-eyes/&amp;amp;t=Ol%26%238217%3B+Blue+Eyes" target="_blank" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=+Ol%26%238217%3B+Blue+Eyes+-+http://tinyurl.com/y9jtyt6" target="_blank" rel="nofollow" title="Tweet This!">Tweet This!</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.jeffkastner.com/2009/05/ol-blue-eyes/&title=Ol%26%238217%3B+Blue+Eyes&summary=Nothing+makes+me+want+to+take+pics+more+than+my+sweet+little+baby+boy.%C2%A0+I+just+love+those+big+blue+eyes%21%0D%0A%0D%0A&source=Jeff Kastner&#039;s Weblog" target="_blank" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.jeffkastner.com/2009/05/ol-blue-eyes/&amp;title=Ol%26%238217%3B+Blue+Eyes" target="_blank" rel="nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.jeffkastner.com/2009/05/ol-blue-eyes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Skeeball Championship, 2009</title>
		<link>http://www.jeffkastner.com/2009/02/skeeball-championship-2009/</link>
		<comments>http://www.jeffkastner.com/2009/02/skeeball-championship-2009/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 22:43:25 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[colton]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[skeeball]]></category>

		<guid isPermaLink="false">http://www.jeffkastner.com/?p=110</guid>
		<description><![CDATA[Well.. about 15 of us went to Incredible Pizza on Friday night, hogging a whole section of skeeball lanes to participate in the First Annual Skeeball Tournament.  This great American sport has spent too much time in the shadows of football and baseball.  We figured it was time it got it&#8217;s just due. [...]]]></description>
			<content:encoded><![CDATA[<p>Well.. about 15 of us went to Incredible Pizza on Friday night, hogging a whole section of skeeball lanes to participate in the First Annual Skeeball Tournament.  This great American sport has spent too much time in the shadows of football and baseball.  We figured it was time it got it&#8217;s just due.  So..  Christina organized the event, complete with scorecards and a rather nifty hand fashioned trophy.  You could feel the intensity of the competition grow, with every ball thrown.  Children, all around us, stopped playing their video games and looked on with a gleam in their eyes, as if to say, &#8220;that&#8217;s what I want to do with my life!&#8221;.  Indeed, I think we influenced a whole new generation.<br />
<p class="flickrTag_container"><a href="http://farm4.static.flickr.com/3618/3286925655_06f5b51ed5.jpg" class="flickr" title="Digital Camera &lt;a href=&quot;http://www.flickr.com/photos/15549727@N00/3286925655/&quot;&gt;view&amp;nbsp;on&amp;nbsp;flickr&amp;raquo;&lt;/a&gt;" rel="lightbox[970e610f392cf0a25c265c2ab3e5dc65]"><img src="http://farm4.static.flickr.com/3618/3286925655_06f5b51ed5_t.jpg" alt="The Big Winner" class="flickr square tag" style="padding: 1px;"/></a><a href="http://farm4.static.flickr.com/3184/3286925643_61dd8d71a4.jpg" class="flickr" title="Digital Camera &lt;a href=&quot;http://www.flickr.com/photos/15549727@N00/3286925643/&quot;&gt;view&amp;nbsp;on&amp;nbsp;flickr&amp;raquo;&lt;/a&gt;" rel="lightbox[970e610f392cf0a25c265c2ab3e5dc65]"><img src="http://farm4.static.flickr.com/3184/3286925643_61dd8d71a4_t.jpg" alt="Hogging the Lanes" class="flickr square tag" style="padding: 1px;"/></a><a href="http://farm4.static.flickr.com/3327/3286925649_e0be0eb747.jpg" class="flickr" title="Digital Camera &lt;a href=&quot;http://www.flickr.com/photos/15549727@N00/3286925649/&quot;&gt;view&amp;nbsp;on&amp;nbsp;flickr&amp;raquo;&lt;/a&gt;" rel="lightbox[970e610f392cf0a25c265c2ab3e5dc65]"><img src="http://farm4.static.flickr.com/3327/3286925649_e0be0eb747_t.jpg" alt="2009 Skeeball Champion, Dave" class="flickr square tag" style="padding: 1px;"/></a></p><br />
In the end, Dave claimed 2009 Skeeball Champion, but as Colton shows above, he thought he was the big winner.  The sweet little boy loves all those lights and sounds at Incredible Pizza.  Getting to watch him experience all his firsts, I&#8217;m pretty sure that I&#8217;m the big winner.  </p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.jeffkastner.com/2009/02/skeeball-championship-2009/&amp;title=Skeeball+Championship%2C+2009" target="_blank" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.jeffkastner.com/2009/02/skeeball-championship-2009/&amp;title=Skeeball+Championship%2C+2009" target="_blank" rel="nofollow" title="Digg this!">Digg this!</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.jeffkastner.com/2009/02/skeeball-championship-2009/&amp;title=Skeeball+Championship%2C+2009" target="_blank" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.jeffkastner.com/2009/02/skeeball-championship-2009/" target="_blank" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.jeffkastner.com/2009/02/skeeball-championship-2009/&amp;amp;t=Skeeball+Championship%2C+2009" target="_blank" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.jeffkastner.com/2009/02/skeeball-championship-2009/&amp;amp;t=Skeeball+Championship%2C+2009" target="_blank" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=+Skeeball+Championship%2C+2009+-+http://&#x27A1;.ws/鰱뤙" target="_blank" rel="nofollow" title="Tweet This!">Tweet This!</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.jeffkastner.com/2009/02/skeeball-championship-2009/&title=Skeeball+Championship%2C+2009&summary=Well..+about+15+of+us+went+to+Incredible+Pizza+on+Friday+night%2C+hogging+a+whole+section+of+skeeball+lanes+to+participate+in+the+First+Annual+Skeeball+Tournament.++This+great+American+sport+has+spent+too+much+time+in+the+%5B..%5D&source=Jeff Kastner&#039;s Weblog" target="_blank" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.jeffkastner.com/2009/02/skeeball-championship-2009/&amp;title=Skeeball+Championship%2C+2009" target="_blank" rel="nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.jeffkastner.com/2009/02/skeeball-championship-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just Married!</title>
		<link>http://www.jeffkastner.com/2009/02/just-married/</link>
		<comments>http://www.jeffkastner.com/2009/02/just-married/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 19:06:45 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[My Music]]></category>
		<category><![CDATA[amy]]></category>
		<category><![CDATA[colton]]></category>
		<category><![CDATA[wedding]]></category>

		<guid isPermaLink="false">http://www.jeffkastner.com/?p=50</guid>
		<description><![CDATA[Ok.. so it&#8217;s been a while since I&#8217;ve posted anything.  Actually, I just changed web hosts and updated my theme to allow for more space.  So now.. I have no more excuses for a while.  
Colton is now almost 8 months old.  It&#8217;s crazy how fast he&#8217;s growing and learning.  [...]]]></description>
			<content:encoded><![CDATA[<p>Ok.. so it&#8217;s been a while since I&#8217;ve posted anything.  Actually, I just changed web hosts and updated my theme to allow for more space.  So now.. I have no more excuses for a while.  <img src='http://www.jeffkastner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Colton is now almost 8 months old.  It&#8217;s crazy how fast he&#8217;s growing and learning.  I love watching it.  I look forward to his smile every day.  Seeing him light up at the smallest things just makes my day.<br />
Amy makes my day too.  So much so.. that I married her on Saturday.<br />
<p class="flickrTag_container"><a href="http://farm4.static.flickr.com/3370/3269407235_4c52389c1b.jpg" class="flickr" title=" &lt;a href=&quot;http://www.flickr.com/photos/15549727@N00/3269407235/&quot;&gt;view&amp;nbsp;on&amp;nbsp;flickr&amp;raquo;&lt;/a&gt;" rel="lightbox"><img src="http://farm4.static.flickr.com/3370/3269407235_4c52389c1b_m.jpg" alt="Array" class="flickr small photo" class="custom_size"/></a></p><br />
 We had a wonderful wedding.  It was small with just a few friends and family.  Truly, I am the luckiest guy on the planet.  I keep wondering when something is going to go wrong.. because my life is just too good right now!  But.. I am appreciative.  I look forward to a wonderful rest of my life with the most beautiful girl I&#8217;ve ever known.. and the best son a Father could ever ask for!<br />
I&#8217;m ready for March.. and the Honeymoon!  Look out Hawaii, here we come&#8230;.<br />
<p class="flickrTag_container"><a href="http://farm4.static.flickr.com/3083/3270227706_c871dddab2.jpg" class="flickr" title=" &lt;a href=&quot;http://www.flickr.com/photos/15549727@N00/3270227706/&quot;&gt;view&amp;nbsp;on&amp;nbsp;flickr&amp;raquo;&lt;/a&gt;" rel="lightbox"><img src="http://farm4.static.flickr.com/3083/3270227706_c871dddab2_m.jpg" alt="Array" class="flickr small photo" class="custom_size"/></a></p></p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.jeffkastner.com/2009/02/just-married/&amp;title=Just+Married%21" target="_blank" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.jeffkastner.com/2009/02/just-married/&amp;title=Just+Married%21" target="_blank" rel="nofollow" title="Digg this!">Digg this!</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.jeffkastner.com/2009/02/just-married/&amp;title=Just+Married%21" target="_blank" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.jeffkastner.com/2009/02/just-married/" target="_blank" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.jeffkastner.com/2009/02/just-married/&amp;amp;t=Just+Married%21" target="_blank" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.jeffkastner.com/2009/02/just-married/&amp;amp;t=Just+Married%21" target="_blank" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=+Just+Married%21+-+http://tinyurl.com/yg4a9g6" target="_blank" rel="nofollow" title="Tweet This!">Tweet This!</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.jeffkastner.com/2009/02/just-married/&title=Just+Married%21&summary=Ok..+so+it%27s+been+a+while+since+I%27ve+posted+anything.++Actually%2C+I+just+changed+web+hosts+and+updated+my+theme+to+allow+for+more+space.++So+now..+I+have+no+more+excuses+for+a+while.++%3A%29++%0D%0AColton+is+now+almost+8+months+o%5B..%5D&source=Jeff Kastner&#039;s Weblog" target="_blank" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.jeffkastner.com/2009/02/just-married/&amp;title=Just+Married%21" target="_blank" rel="nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.jeffkastner.com/2009/02/just-married/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>You Belong To Me</title>
		<link>http://www.jeffkastner.com/2008/08/you-belong-to-me/</link>
		<comments>http://www.jeffkastner.com/2008/08/you-belong-to-me/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 02:30:31 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[My Music]]></category>

		<guid isPermaLink="false">http://www.jeffkastner.com/?p=66</guid>
		<description><![CDATA[Normally a guitar song, I put this to piano.  This is just me playing and singing live&#8230;  

Share this on del.icio.usDigg this!Stumble upon something good? Share it on StumbleUponShare this on TechnoratiPost this to MySpaceShare this on FacebookTweet This!Share this on LinkedinSubmit this to Script &#38; Style]]></description>
			<content:encoded><![CDATA[<p>Normally a guitar song, I put this to piano.  This is just me playing and singing live&#8230;  </p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/Xx3A9Vrd0Z4&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Xx3A9Vrd0Z4&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.jeffkastner.com/2008/08/you-belong-to-me/&amp;title=You+Belong+To+Me" target="_blank" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.jeffkastner.com/2008/08/you-belong-to-me/&amp;title=You+Belong+To+Me" target="_blank" rel="nofollow" title="Digg this!">Digg this!</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.jeffkastner.com/2008/08/you-belong-to-me/&amp;title=You+Belong+To+Me" target="_blank" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.jeffkastner.com/2008/08/you-belong-to-me/" target="_blank" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.jeffkastner.com/2008/08/you-belong-to-me/&amp;amp;t=You+Belong+To+Me" target="_blank" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.jeffkastner.com/2008/08/you-belong-to-me/&amp;amp;t=You+Belong+To+Me" target="_blank" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=+You+Belong+To+Me+-+http://tinyurl.com/yll7q99" target="_blank" rel="nofollow" title="Tweet This!">Tweet This!</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.jeffkastner.com/2008/08/you-belong-to-me/&title=You+Belong+To+Me&summary=Normally+a+guitar+song%2C+I+put+this+to+piano.++This+is+just+me+playing+and+singing+live...++%0D%0A%0D%0A&source=Jeff Kastner&#039;s Weblog" target="_blank" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.jeffkastner.com/2008/08/you-belong-to-me/&amp;title=You+Belong+To+Me" target="_blank" rel="nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.jeffkastner.com/2008/08/you-belong-to-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I have a new baby boy!</title>
		<link>http://www.jeffkastner.com/2008/07/i-have-a-new-baby-boy/</link>
		<comments>http://www.jeffkastner.com/2008/07/i-have-a-new-baby-boy/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 20:58:07 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[amy]]></category>
		<category><![CDATA[colton]]></category>

		<guid isPermaLink="false">http://www.jeffkastner.com/?p=46</guid>
		<description><![CDATA[Well, it&#8217;s been a couple weeks now since I&#8217;ve been able to get on here and write&#8230; and that&#8217;s when I had my new, beautiful, sweet baby boy, Colton!  6 lbs and 11 ounces, 20 1/2 inches long and 3 weeks early on June 22nd, Colton arrived and spent the first couple weeks of [...]]]></description>
			<content:encoded><![CDATA[<p>Well, it&#8217;s been a couple weeks now since I&#8217;ve been able to get on here and write&#8230; and that&#8217;s when I had my new, beautiful, sweet baby boy, Colton!  6 lbs and 11 ounces, 20 1/2 inches long and 3 weeks early on June 22nd, Colton arrived and spent the first couple weeks of his life in Intensive Care Nursery.  He was having a few breathing irregularities, but it was more a &#8220;better safe than sorry&#8221; kind of thing, I do believe (though we didn&#8217;t really know that at the time!).</p>
<p>Colton is the new love of my life.  Everyone tells me it just gets better.. and it&#8217;s almost hard to believe.  He&#8217;s so wonderful.  I&#8217;ve turned into a complete sap.. and I&#8217;m OK with it!  I just can&#8217;t get enough of him.  I love him soooo much.</p>
<p>Mom (Amy) was in labor for a little less than 6 hours after her water broke at home.  She called to tell me.. and my heart was beating about twice as fast as normal all the way to the hospital.  She did an incredible job of staying calm and keeping everything in check throughout the delivery.  And now&#8230; I&#8217;m a Daddy.  I still can&#8217;t believe it at times.  I have the most wonderfully sweet boy I could have ever asked for.  Here&#8217;s the first of what will no doubt be many videos of my new son&#8230;  Colton Kastner.  <img src='http://www.jeffkastner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/K6wf7yYvI2A&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/K6wf7yYvI2A&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.jeffkastner.com/2008/07/i-have-a-new-baby-boy/&amp;title=I+have+a+new+baby+boy%21" target="_blank" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.jeffkastner.com/2008/07/i-have-a-new-baby-boy/&amp;title=I+have+a+new+baby+boy%21" target="_blank" rel="nofollow" title="Digg this!">Digg this!</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.jeffkastner.com/2008/07/i-have-a-new-baby-boy/&amp;title=I+have+a+new+baby+boy%21" target="_blank" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.jeffkastner.com/2008/07/i-have-a-new-baby-boy/" target="_blank" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.jeffkastner.com/2008/07/i-have-a-new-baby-boy/&amp;amp;t=I+have+a+new+baby+boy%21" target="_blank" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.jeffkastner.com/2008/07/i-have-a-new-baby-boy/&amp;amp;t=I+have+a+new+baby+boy%21" target="_blank" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=+I+have+a+new+baby+boy%21+-+http://tinyurl.com/yg9d5b7" target="_blank" rel="nofollow" title="Tweet This!">Tweet This!</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.jeffkastner.com/2008/07/i-have-a-new-baby-boy/&title=I+have+a+new+baby+boy%21&summary=Well%2C+it%27s+been+a+couple+weeks+now+since+I%27ve+been+able+to+get+on+here+and+write...+and+that%27s+when+I+had+my+new%2C+beautiful%2C+sweet+baby+boy%2C+Colton%21++6+lbs+and+11+ounces%2C+20+1%2F2+inches+long+and+3+weeks+early+on+June+22nd%5B..%5D&source=Jeff Kastner&#039;s Weblog" target="_blank" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.jeffkastner.com/2008/07/i-have-a-new-baby-boy/&amp;title=I+have+a+new+baby+boy%21" target="_blank" rel="nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.jeffkastner.com/2008/07/i-have-a-new-baby-boy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 cm and counting!&#8230;</title>
		<link>http://www.jeffkastner.com/2008/06/3-cm-and-counting/</link>
		<comments>http://www.jeffkastner.com/2008/06/3-cm-and-counting/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 13:14:23 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[amy]]></category>

		<guid isPermaLink="false">http://www.jeffkastner.com/?p=43</guid>
		<description><![CDATA[Amy is at 3 cm and 100% effaced (ah yes.. the new lingo I am learning these days!).  So, I am looking to be a new Dad very soon!  Amy is doing great and she looks as beautiful as ever.  Even more amazing has been her attitude through the whole pregnancy.  [...]]]></description>
			<content:encoded><![CDATA[<p>Amy is at 3 cm and 100% effaced (ah yes.. the new lingo I am learning these days!).  So, I am looking to be a new Dad very soon!  Amy is doing great and she looks as beautiful as ever.  Even more amazing has been her attitude through the whole pregnancy.  She&#8217;s definitely ready to have our baby though.  She thinks it will be sooner than later.  I still think it will by July 12th.  His due date is actually July 14th.. We shall know soon! </p>
<p class="flickrTag_container"><a href="http://farm4.static.flickr.com/3290/2593332926_039ee11644.jpg" class="flickr" title="This was a little walk down at Springfield Lake, just a couple weeks before the baby came.  I like this one because Amy's personality really comes through well... and she looks great for 8 months pregnant! &lt;a href=&quot;http://www.flickr.com/photos/15549727@N00/2593332926/&quot;&gt;view&amp;nbsp;on&amp;nbsp;flickr&amp;raquo;&lt;/a&gt;" rel="lightbox[57df27fbb6feb672974ba58960bb1620]"><img src="http://farm4.static.flickr.com/3290/2593332926_039ee11644_t.jpg" alt="Isn't She Adorable?!" class="flickr square tag" style="padding: 1px;"/></a><a href="http://farm4.static.flickr.com/3038/2596090986_be0ac24fed.jpg" class="flickr" title=" &lt;a href=&quot;http://www.flickr.com/photos/15549727@N00/2596090986/&quot;&gt;view&amp;nbsp;on&amp;nbsp;flickr&amp;raquo;&lt;/a&gt;" rel="lightbox[57df27fbb6feb672974ba58960bb1620]"><img src="http://farm4.static.flickr.com/3038/2596090986_be0ac24fed_t.jpg" alt="TheGang" class="flickr square tag" style="padding: 1px;"/></a><a href="http://farm4.static.flickr.com/3255/2561855789_d5293f3a6f.jpg" class="flickr" title=" &lt;a href=&quot;http://www.flickr.com/photos/15549727@N00/2561855789/&quot;&gt;view&amp;nbsp;on&amp;nbsp;flickr&amp;raquo;&lt;/a&gt;" rel="lightbox[57df27fbb6feb672974ba58960bb1620]"><img src="http://farm4.static.flickr.com/3255/2561855789_d5293f3a6f_t.jpg" alt="3" class="flickr square tag" style="padding: 1px;"/></a><a href="http://farm4.static.flickr.com/3102/2592948764_44bcd5d6e6.jpg" class="flickr" title=" &lt;a href=&quot;http://www.flickr.com/photos/15549727@N00/2592948764/&quot;&gt;view&amp;nbsp;on&amp;nbsp;flickr&amp;raquo;&lt;/a&gt;" rel="lightbox[57df27fbb6feb672974ba58960bb1620]"><img src="http://farm4.static.flickr.com/3102/2592948764_44bcd5d6e6_t.jpg" alt="Jeff&Amy" class="flickr square tag" style="padding: 1px;"/></a><a href="http://farm4.static.flickr.com/3116/2562689822_30e8d434ee.jpg" class="flickr" title=" &lt;a href=&quot;http://www.flickr.com/photos/15549727@N00/2562689822/&quot;&gt;view&amp;nbsp;on&amp;nbsp;flickr&amp;raquo;&lt;/a&gt;" rel="lightbox[57df27fbb6feb672974ba58960bb1620]"><img src="http://farm4.static.flickr.com/3116/2562689822_30e8d434ee_t.jpg" alt="7" class="flickr square tag" style="padding: 1px;"/></a><a href="http://farm4.static.flickr.com/3084/2561967511_6b2c325f48.jpg" class="flickr" title="June 8th, 2008 &lt;a href=&quot;http://www.flickr.com/photos/15549727@N00/2561967511/&quot;&gt;view&amp;nbsp;on&amp;nbsp;flickr&amp;raquo;&lt;/a&gt;" rel="lightbox[57df27fbb6feb672974ba58960bb1620]"><img src="http://farm4.static.flickr.com/3084/2561967511_6b2c325f48_t.jpg" alt="25" class="flickr square tag" style="padding: 1px;"/></a><a href="http://farm4.static.flickr.com/3054/2562714560_c23413fb8e.jpg" class="flickr" title=" &lt;a href=&quot;http://www.flickr.com/photos/15549727@N00/2562714560/&quot;&gt;view&amp;nbsp;on&amp;nbsp;flickr&amp;raquo;&lt;/a&gt;" rel="lightbox[57df27fbb6feb672974ba58960bb1620]"><img src="http://farm4.static.flickr.com/3054/2562714560_c23413fb8e_t.jpg" alt="10" class="flickr square tag" style="padding: 1px;"/></a><a href="http://farm4.static.flickr.com/3017/2562623179_47f2214ba0.jpg" class="flickr" title=" &lt;a href=&quot;http://www.flickr.com/photos/15549727@N00/2562623179/&quot;&gt;view&amp;nbsp;on&amp;nbsp;flickr&amp;raquo;&lt;/a&gt;" rel="lightbox[57df27fbb6feb672974ba58960bb1620]"><img src="http://farm4.static.flickr.com/3017/2562623179_47f2214ba0_t.jpg" alt="50" class="flickr square tag" style="padding: 1px;"/></a></p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.jeffkastner.com/2008/06/3-cm-and-counting/&amp;title=3+cm+and+counting%21%26%238230%3B" target="_blank" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.jeffkastner.com/2008/06/3-cm-and-counting/&amp;title=3+cm+and+counting%21%26%238230%3B" target="_blank" rel="nofollow" title="Digg this!">Digg this!</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.jeffkastner.com/2008/06/3-cm-and-counting/&amp;title=3+cm+and+counting%21%26%238230%3B" target="_blank" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.jeffkastner.com/2008/06/3-cm-and-counting/" target="_blank" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.jeffkastner.com/2008/06/3-cm-and-counting/&amp;amp;t=3+cm+and+counting%21%26%238230%3B" target="_blank" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.jeffkastner.com/2008/06/3-cm-and-counting/&amp;amp;t=3+cm+and+counting%21%26%238230%3B" target="_blank" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=+3+cm+and+counting%21%26%238230%3B+-+http://tinyurl.com/yj9e3sk" target="_blank" rel="nofollow" title="Tweet This!">Tweet This!</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.jeffkastner.com/2008/06/3-cm-and-counting/&title=3+cm+and+counting%21%26%238230%3B&summary=Amy+is+at+3+cm+and+100%25+effaced+%28ah+yes..+the+new+lingo+I+am+learning+these+days%21%29.++So%2C+I+am+looking+to+be+a+new+Dad+very+soon%21++Amy+is+doing+great+and+she+looks+as+beautiful+as+ever.++Even+more+amazing+has+been+her+att%5B..%5D&source=Jeff Kastner&#039;s Weblog" target="_blank" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.jeffkastner.com/2008/06/3-cm-and-counting/&amp;title=3+cm+and+counting%21%26%238230%3B" target="_blank" rel="nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.jeffkastner.com/2008/06/3-cm-and-counting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 More Weeks!!</title>
		<link>http://www.jeffkastner.com/2008/05/8-more-weeks/</link>
		<comments>http://www.jeffkastner.com/2008/05/8-more-weeks/#comments</comments>
		<pubDate>Thu, 15 May 2008 13:40:59 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[amy]]></category>
		<category><![CDATA[colton]]></category>
		<category><![CDATA[dad]]></category>

		<guid isPermaLink="false">http://www.jeffkastner.com/?p=40</guid>
		<description><![CDATA[Wow.. I can&#8217;t believe I&#8217;ll be a Dad in another 8 weeks!  Amy went to the doctor yesterday and everything is looking perfect.  She&#8217;s doing pretty well overall..well, for carrying around a 4lb person in her anyway!  I&#8217;m very thankful for the health of Mom and my son, Colton.  I am [...]]]></description>
			<content:encoded><![CDATA[<p>Wow.. I can&#8217;t believe I&#8217;ll be a Dad in another 8 weeks!  Amy went to the doctor yesterday and everything is looking perfect.  She&#8217;s doing pretty well overall..well, for carrying around a 4lb person in her anyway!  I&#8217;m very thankful for the health of Mom and my son, Colton.  I am super excited and can&#8217;t wait for him to get here!  There is so much I want to do with him..  <img src='http://www.jeffkastner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   </p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.jeffkastner.com/2008/05/8-more-weeks/&amp;title=8+More+Weeks%21%21" target="_blank" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.jeffkastner.com/2008/05/8-more-weeks/&amp;title=8+More+Weeks%21%21" target="_blank" rel="nofollow" title="Digg this!">Digg this!</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.jeffkastner.com/2008/05/8-more-weeks/&amp;title=8+More+Weeks%21%21" target="_blank" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.jeffkastner.com/2008/05/8-more-weeks/" target="_blank" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.jeffkastner.com/2008/05/8-more-weeks/&amp;amp;t=8+More+Weeks%21%21" target="_blank" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.jeffkastner.com/2008/05/8-more-weeks/&amp;amp;t=8+More+Weeks%21%21" target="_blank" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=+8+More+Weeks%21%21+-+http://tinyurl.com/ybzcsk4" target="_blank" rel="nofollow" title="Tweet This!">Tweet This!</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.jeffkastner.com/2008/05/8-more-weeks/&title=8+More+Weeks%21%21&summary=Wow..+I+can%27t+believe+I%27ll+be+a+Dad+in+another+8+weeks%21++Amy+went+to+the+doctor+yesterday+and+everything+is+looking+perfect.++She%27s+doing+pretty+well+overall..well%2C+for+carrying+around+a+4lb+person+in+her+anyway%21++I%27m+ve%5B..%5D&source=Jeff Kastner&#039;s Weblog" target="_blank" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.jeffkastner.com/2008/05/8-more-weeks/&amp;title=8+More+Weeks%21%21" target="_blank" rel="nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.jeffkastner.com/2008/05/8-more-weeks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check out my new website</title>
		<link>http://www.jeffkastner.com/2008/05/check-out-my-new-website/</link>
		<comments>http://www.jeffkastner.com/2008/05/check-out-my-new-website/#comments</comments>
		<pubDate>Thu, 15 May 2008 13:31:52 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[Nixa Soccer]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.jeffkastner.com/?p=38</guid>
		<description><![CDATA[I just got finished creating a new website for nixasoccerclub.org.  Check out the new site and for you Nixa folks.. get your kids enrolled and playing!     
Share this on del.icio.usDigg this!Stumble upon something good? Share it on StumbleUponShare this on TechnoratiPost this to MySpaceShare this on FacebookTweet This!Share this on [...]]]></description>
			<content:encoded><![CDATA[<p>I just got finished creating a new website for <a class="snap_shots" href="http://nixasoccerclub.org" target="_blank">nixasoccerclub.org</a>.  Check out the new site and for you Nixa folks.. get your kids enrolled and playing!  <img src='http://www.jeffkastner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   </p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.jeffkastner.com/2008/05/check-out-my-new-website/&amp;title=Check+out+my+new+website" target="_blank" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.jeffkastner.com/2008/05/check-out-my-new-website/&amp;title=Check+out+my+new+website" target="_blank" rel="nofollow" title="Digg this!">Digg this!</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.jeffkastner.com/2008/05/check-out-my-new-website/&amp;title=Check+out+my+new+website" target="_blank" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.jeffkastner.com/2008/05/check-out-my-new-website/" target="_blank" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.jeffkastner.com/2008/05/check-out-my-new-website/&amp;amp;t=Check+out+my+new+website" target="_blank" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.jeffkastner.com/2008/05/check-out-my-new-website/&amp;amp;t=Check+out+my+new+website" target="_blank" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=+Check+out+my+new+website+-+http://&#x27A1;.ws/曾럄" target="_blank" rel="nofollow" title="Tweet This!">Tweet This!</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.jeffkastner.com/2008/05/check-out-my-new-website/&title=Check+out+my+new+website&summary=I+just+got+finished+creating+a+new+website+for+nixasoccerclub.org.++Check+out+the+new+site+and+for+you+Nixa+folks..+get+your+kids+enrolled+and+pl%5B..%5D&source=Jeff Kastner&#039;s Weblog" target="_blank" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.jeffkastner.com/2008/05/check-out-my-new-website/&amp;title=Check+out+my+new+website" target="_blank" rel="nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.jeffkastner.com/2008/05/check-out-my-new-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
