<?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>Curtis Holland</title>
	<atom:link href="http://www.curtisholland.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.curtisholland.com</link>
	<description>Random topics that I find interesting.</description>
	<lastBuildDate>Tue, 17 Jan 2012 22:48:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Asterisk 3-way calling</title>
		<link>http://www.curtisholland.com/asterisk-3-way-calling</link>
		<comments>http://www.curtisholland.com/asterisk-3-way-calling#comments</comments>
		<pubDate>Tue, 17 Jan 2012 22:48:07 +0000</pubDate>
		<dc:creator>Curtis Holland</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.curtisholland.com/?p=282</guid>
		<description><![CDATA[Asterisk is a very powerful, completely free Phone System for anyone who wants to use it.  I am using Asterisk...]]></description>
			<content:encoded><![CDATA[<p>Asterisk is a very powerful, completely free Phone System for anyone who wants to use it.  I am using Asterisk at my home, allowing me to, when I move, keep the same home number (yes, I still have a home phone number) where ever I go, all that is required is the internet.  Today I wanted to add 3-way calling to this great PBX, because I didn&#8217;t buy a phone that has this capability already, so I had to add some code to the PBX to do so.  To get this functionality to work, I had to <span id="more-282"></span>add some lines of code to the below files.</p>
<p><strong>in the /etc/asterisk/extensions_custom.conf file</strong><br />
[dynamic-nway]<br />
exten =&gt; _X.,1,noop(dynamic-nway)<br />
exten =&gt; _X.,2,Answer<br />
exten =&gt; _X.,n,Set(CONFNO=${EXTEN})<br />
exten =&gt; _X.,n,Set(MEETME_EXIT_CONTEXT=dynamic-nway-invite)<br />
exten =&gt; _X.,n,Set(DYNAMIC_FEATURES=)<br />
exten =&gt; _X.,n,MeetMe(${CONFNO},1pdMXq)<br />
exten =&gt; _X.,n,Hangup<br />
exten =&gt; _1NXXNXXXXXX,1,Macro(outisbusy,)<br />
exten =&gt; h,1,noop(dynamic-nway-end)<br />
exten =&gt; h,n,Hangup</p>
<p>[dynamic-nway-invite]<br />
exten =&gt; s,1,noop(dynamic-nway-invite)<br />
exten =&gt; n,n,Hangup<br />
exten =&gt; h,1,noop(dynamic-nway-invite-end)</p>
<p>[dynamic-nway-dest]<br />
exten =&gt; _NXXNXXXXXX,1,noop(dynamic-nway-dest)<br />
exten =&gt; _NXXNXXXXXX,2,Macro(user-callerid,SKIPTTL,)<br />
exten =&gt; _NXXNXXXXXX,n,Set(_NODEST=)<br />
exten =&gt; _NXXNXXXXXX,n,Macro(record-enable,${AMPUSER},OUT,)<br />
exten =&gt; _NXXNXXXXXX,n,Macro(dialout-trunk,4,${EXTEN},,)<br />
exten =&gt; _NXXNXXXXXX,n,Macro(dialout-trunk,12,${EXTEN},,)<br />
exten =&gt; _NXXNXXXXXX,n,Macro(dialout-trunk,6,${EXTEN},,)<br />
exten =&gt; _NXXNXXXXXX,n,Macro(dialout-trunk,5,${EXTEN},,)<br />
exten =&gt; _NXXNXXXXXX,n,Macro(outisbusy,)<br />
exten =&gt; _1NXXNXXXXXX,1,noop(dynamic-nway-dest)<br />
exten =&gt; _1NXXNXXXXXX,2,Macro(user-callerid,SKIPTTL,)<br />
exten =&gt; _1NXXNXXXXXX,n,Set(_NODEST=)<br />
exten =&gt; _1NXXNXXXXXX,n,Macro(record-enable,${AMPUSER},OUT,)<br />
exten =&gt; _1NXXNXXXXXX,n,Macro(dialout-trunk,4,${EXTEN},,)<br />
exten =&gt; _1NXXNXXXXXX,n,Macro(dialout-trunk,12,${EXTEN},,)<br />
exten =&gt; _1NXXNXXXXXX,n,Macro(dialout-trunk,6,${EXTEN},,)<br />
exten =&gt; _1NXXNXXXXXX,n,Macro(dialout-trunk,5,${EXTEN},,)<br />
exten =&gt; _1NXXNXXXXXX,n,Macro(outisbusy,)</p>
<p>[macro-nway-start]<br />
exten =&gt; s,1,noop(macro-nway-start)<br />
exten =&gt; s,n,Set(CONFID=0)<br />
exten =&gt; s,n(add),Set(CONFID=$[${CONFID} 1])<br />
exten =&gt; s,n,MeetMeCount(${CALLERID(num)}${CONFID},count)<br />
exten =&gt; s,n,Gotoif($[${count} &gt;0 ]?add)<br />
exten =&gt; s,n,Set(CONFNO=${CALLERID(num)}${CONFID})<br />
exten =&gt; s,n,ChannelRedirect(${BRIDGEPEER},dynamic-nway,${CONFNO},1)<br />
exten =&gt; s,n,Playback(pbx-transfer)<br />
exten =&gt; s,n,Read(DEST,dial,11,i,,3)<br />
exten =&gt; s,n,Set(DYNAMIC_FEATURES=nway-inv#nway-noinv)<br />
exten =&gt; s,n,noop(DIALING Local ${DEST})<br />
exten =&gt; s,n,Dial(SIP/NetSpk/${DEST},,g)<br />
exten =&gt; s,n,Set(DYNAMIC_FEATURES=)<br />
exten =&gt; s,n,noop(end of macro-nway-start)<br />
exten =&gt; s,n,Playback(en/beep)<br />
exten =&gt; s,n,ChannelRedirect(${CHANNEL},dynamic-nway,${CONFNO},1)</p>
<p>[macro-nway-ok]<br />
exten =&gt; s,1,noop(macro-nway-ok conf number ${CONFNO})<br />
exten =&gt; s,2,ChannelRedirect(${BRIDGEPEER},dynamic-nway,${CONFNO},1)<br />
exten =&gt; h,1,noop(macro-nway-ok-end)</p>
<p>[macro-nway-notok]<br />
exten =&gt; s,1,noop(macro-nway-notok)<br />
exten =&gt; s,2,SoftHangup(${BRIDGEPEER})<br />
exten =&gt; h,1,noop(macro-nway-notok-end)</p>
<p><strong>in the /etc/asterisk/features_applicationmap_custom.conf file, this defines the in call commands</strong><br />
nway-start =&gt; *0,caller,Macro,nway-start<br />
nway-inv =&gt; **,caller,Macro,nway-ok<br />
nway-noinv =&gt; *#,caller,Macro,nway-notok</p>
<p><strong>in the /etc/asterisk/globals_custom.conf file, this makes the *0 work on ALL CALLS</strong><br />
DYNAMIC_FEATURES=nway-start</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curtisholland.com/asterisk-3-way-calling/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1 Postfix; Multiple Domains</title>
		<link>http://www.curtisholland.com/1-postfix-multiple-domains</link>
		<comments>http://www.curtisholland.com/1-postfix-multiple-domains#comments</comments>
		<pubDate>Tue, 06 Sep 2011 14:40:48 +0000</pubDate>
		<dc:creator>Curtis Holland</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.curtisholland.com/?p=269</guid>
		<description><![CDATA[For Setting up ip/domain personalities (a domain name that is tied to an ip address, and is on a postfix...]]></description>
			<content:encoded><![CDATA[<p>For Setting up ip/domain personalities (a domain name that is tied to an ip address, and is on a postfix server that serves multiple domains) I had to configure 3 files.<span id="more-269"></span></p>
<p>For <em><strong>OUTBOUND</strong></em> traffic to come from different IP addresses but the same domain, I had to do the following:</p>
<p>1. Edit the sdd_transport_maps.regexp in the /etc/postfix directory, and set up the regexp as if it was in the &lt;FROM&gt; header.  The log of postfix contained</p>
<pre>From=&lt;root&gt;</pre>
<p>When I put the regexp to match that, it worked successfully.  The line that I put in the sdd_transport_maps.regexp file was as follows:</p>
<pre>/root/     domain:</pre>
<p>Where <strong>/root/</strong> is what we&#8217;re matching on and the <strong>domain:</strong> is the alias we&#8217;re assigning it.  Please note the : at the end needs to be there.  This is saying &#8220;we&#8217;re assigning it this alias, but the port stays the same&#8221;, because it&#8217;s blank.</p>
<p>I then, in the master.cf file, set up the alias of &#8220;domain&#8221;, and bound the IP address with the following command:</p>
<pre>domain   unix   -   -   n   -   -   smtp
-o smtp_bind_address=xx.xx.xx.xx   #which will bind postfix to the IP address of xx.xx.xx.xx
-o syslog_name=domain   #(for logging purposes)</pre>
<p>This will say that any email that is from &#8220;root&#8221; (matched exactly) will have the transport alias of domain and be sent from the bound ip address of xx.xx.xx.xx.  Also, in the log file, you will see reference to domain.</p>
<p>For <em><strong>INBOUND</strong></em> traffic, I added the interface that the client will be connecting on in the master.cf file.  In said file, I added the following:</p>
<pre>xx.xx.xx.xx:smtp      inet  n       -       n       -       -       smtpd -o myhostname=domain.com</pre>
<p>This will change the welcome banner for connections on xx.xx.xx.xx.</p>
<p>Note that the xx.xx.xx.xx interface MUST be configured on the machine.  If it&#8217;s not, it won&#8217;t hurt anything, but it will be time lost as the steps above will not do anything.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curtisholland.com/1-postfix-multiple-domains/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello 911, can you hear me now?</title>
		<link>http://www.curtisholland.com/hello-911-can-you-hear-me-now</link>
		<comments>http://www.curtisholland.com/hello-911-can-you-hear-me-now#comments</comments>
		<pubDate>Wed, 23 Feb 2011 16:11:21 +0000</pubDate>
		<dc:creator>Curtis Holland</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Verizon Wireless]]></category>

		<guid isPermaLink="false">http://www.curtisholland.com/?p=264</guid>
		<description><![CDATA[As a CPR / AED instructor, I tell my students &#8220;when in doubt, call 911&#8243;.  Of course this is relating...]]></description>
			<content:encoded><![CDATA[<p>As a CPR / AED instructor, I tell my students &#8220;when in doubt, call 911&#8243;.  Of course this is relating to any kind of emergency where 911 could be called.</p>
<p>I received an IM from Charley the other day regarding a <a title="Gizmodo Article" href="http://www.engadget.com/2011/02/22/verizon-dropped-10-000-emergency-calls-during-january-snowstorm/" target="_blank">Gizmodo article</a> that states that Verizon Communication and Verizon Wireless had a total of about 10,000 calls to 9-1-1 that weren&#8217;t connected to<span id="more-264"></span> the 9-1-1 dispatch.  To make it even better, the FCC is now requiring that Verizon explain themselves.  Apparently verizon told the 9-1-1 dispatch that the slow response time of the PBX&#8217;s (Private Branch Exchange) was what caused the calles to be dropped.   In the letter to Verizon Communications, the FCC states that &#8220;The slow response of the PBX&#8217;s does not appear to be the cause of the failures.&#8221;, which shows me that the FCC knows what the heck is going on, and is really interesting.</p>
<p>The 9-1-1 dispatch has something like 14 trunks from Verizon Communications and about 85% of them were disabled by verizon.</p>
<p>Way to go VZW&#8230; Meanwhile all of the ATT customers reported full bars!</p>
<p><a title="FCC Letter" href="http://www.fcc.gov/Daily_Releases/Daily_Business/2011/db0218/DA-11-328A1.pdf" target="_blank">Read the FCC letter here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.curtisholland.com/hello-911-can-you-hear-me-now/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Christmas Party &#8211; New Photo</title>
		<link>http://www.curtisholland.com/christmas-party-new-photo</link>
		<comments>http://www.curtisholland.com/christmas-party-new-photo#comments</comments>
		<pubDate>Sun, 26 Dec 2010 20:40:35 +0000</pubDate>
		<dc:creator>Curtis Holland</dc:creator>
				<category><![CDATA[Hobbys]]></category>

		<guid isPermaLink="false">http://www.curtisholland.com/?p=259</guid>
		<description><![CDATA[In the process of having a good time on Christmas day, I noticed, out of the corner of my eye,...]]></description>
			<content:encoded><![CDATA[<p>In the process of having a good time on Christmas day, I noticed, out of the corner of my eye, a reflection on my friends iPhone.  Thought it was a good photo so I snapped it.  Please tell me what you think, looking for feedback on this one!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curtisholland.com/christmas-party-new-photo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firework!</title>
		<link>http://www.curtisholland.com/firework</link>
		<comments>http://www.curtisholland.com/firework#comments</comments>
		<pubDate>Fri, 10 Dec 2010 15:24:12 +0000</pubDate>
		<dc:creator>Curtis Holland</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Amazing]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://www.curtisholland.com/?p=248</guid>
		<description><![CDATA[I&#8217;m not a HUGE Katy Perry fan, however this song touched me.  I liked the beat, but when I cam...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not a HUGE Katy Perry fan, however this song touched me.  I liked the beat, but when I cam across the video, it warmed my heart.  As an inspired [wanna-be] photographer, the photos (I think) are incredible.   The way she get&#8217;s her message across with just photos, and no video is a very interesting way to have a music video, since all the music videos I&#8217;ve ever seen were actually videos.  I&#8217;m not ragging at all, this video is amazing, and you should watch it.  It is below!</p>
<p><strong>EDIT:</strong><br />
Apparently, I was mistaken with the video I posted.  I found the actual video, and it&#8217;s even better than the previous video.  I like how the fireworks start in the chest when they&#8217;re going to do something great!  I still like the photos tho.  The actual video is posted below.</p>
<p><span id="more-248"></span></p>
<p><span class="youtube">
<object width="640" height="505">
<param name="movie" value="http://www.youtube.com/v/QGJuMBdaqIw?color1=&amp;color2=&amp;border=0&amp;fs=1&amp;hl=en&amp;modestbranding=1&amp;loop=&amp;showsearch=0&amp;rel=0" />
<param name="allowFullScreen" value="true" />
<embed wmode="opaque" src="http://www.youtube.com/v/QGJuMBdaqIw?color1=&amp;color2=&amp;border=0&amp;fs=1&amp;hl=en&amp;modestbranding=1&amp;loop=&amp;showsearch=0&amp;rel=0" type="application/x-shockwave-flash" allowfullscreen="true" width="640" height="505"></embed>
<param name="wmode" value="opaque" />
</object>
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.curtisholland.com/firework/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Favorite Photo</title>
		<link>http://www.curtisholland.com/new-favorite-photo</link>
		<comments>http://www.curtisholland.com/new-favorite-photo#comments</comments>
		<pubDate>Tue, 23 Nov 2010 17:39:39 +0000</pubDate>
		<dc:creator>Curtis Holland</dc:creator>
				<category><![CDATA[Activities]]></category>
		<category><![CDATA[Hobbys]]></category>
		<category><![CDATA[Amazing]]></category>
		<category><![CDATA[Camera]]></category>

		<guid isPermaLink="false">http://www.curtisholland.com/?p=241</guid>
		<description><![CDATA[I have an ex-coworker who is into photography as much as I am.  I asked if we could go out...]]></description>
			<content:encoded><![CDATA[<p>I have an ex-coworker who is into photography as much as I am.  I asked if we could go out and shoot some time, because I didn&#8217;t have any idea where a good place to shoot was, and he&#8217;d been shooting for a couple years now.  Well Matt and I went into the flats in down town cleveland and took some shots down there.  Here, he showed me what the white balance was all about, and different shooting techniques.  I think I learned a lot in just one visit, but we plan go more.  I&#8217;m really excited.</p>
<p>I added a watermark to the photo this time because I think it&#8217;s a photo that could be used elsewhere, and I don&#8217;t want it stolen.  I&#8217;m not saying my work is amazing and everyone is going to try to steal from me, I&#8217;m simply saying this photo could be taken and used elsewhere.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curtisholland.com/new-favorite-photo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OBX Trip &#8211; Day 2</title>
		<link>http://www.curtisholland.com/obx-trip-day-2</link>
		<comments>http://www.curtisholland.com/obx-trip-day-2#comments</comments>
		<pubDate>Sun, 10 Oct 2010 03:41:28 +0000</pubDate>
		<dc:creator>Curtis Holland</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Friends]]></category>
		<category><![CDATA[Vacation]]></category>

		<guid isPermaLink="false">http://www.curtisholland.com/?p=236</guid>
		<description><![CDATA[Was a continuation of the driving.  We drove another boring 6 hours, finally arriving at the rental office at 5:40...]]></description>
			<content:encoded><![CDATA[<p>Was a continuation of the driving.  We drove another boring 6 hours, finally arriving at the rental office at 5:40 PM (10 minutes after they closed), after leaving the hotel at 11:00 AM, to retrieve the keys.  Now we have the keys, we didn&#8217;t know where to find the house.  We drove down the road, up the road and found out that the house we were looking for was right across the street from the rental office.  I don&#8217;t know if that&#8217;s a good thing, or a bad thing, but we&#8217;re going to find out.  <span id="more-236"></span></p>
<p>Once we get into the house, we bring our stuff inside, and relax finally from driving.  I&#8217;ll have photos of the house up soon.  I&#8217;ll probably edit this post and add them to the end.  Anyway, we decided that we should get some food now, and get a list of things we need for the house tomorrow.  We went out, bought some pizza and bought some supplies for a camp fire.  We returned to the house, ate, and decided to go for a dip in the hot tub.  Enjoying the heat of the hot tub, and with a drop of sweat running down my brow, we took a jump in the &#8220;closed&#8221; pool.  With the water freezing (according to Babbs: from a scale of cold to ice, it was arctic), I wasn&#8217;t about to jump into the cold water.  I took a whole bunch of photos to post on my photos site.  Once those are posted, I&#8217;ll update this post with an address, or comment: one of the two.</p>
<p>After the hot tub, and shwimmin pool, we took a walk on the beach where Charley lost his flip flop.  We came in, took a shower and watched a movie&#8230; then went to bed.</p>
<p>Not too much happened today, but there&#8217;s much more as we&#8217;re here till Saturday!  More info to come!</p>
<p>Night!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curtisholland.com/obx-trip-day-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OBX Trip &#8211; Day 1</title>
		<link>http://www.curtisholland.com/obx-trip-day-1</link>
		<comments>http://www.curtisholland.com/obx-trip-day-1#comments</comments>
		<pubDate>Sun, 10 Oct 2010 02:56:23 +0000</pubDate>
		<dc:creator>Curtis Holland</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Camera]]></category>
		<category><![CDATA[Friends]]></category>
		<category><![CDATA[Vacation]]></category>

		<guid isPermaLink="false">http://www.curtisholland.com/?p=234</guid>
		<description><![CDATA[Well&#8230; Day 1.  What can I say?  Nothing exciting happened.  The plan was to leave at 6 PM, and drive...]]></description>
			<content:encoded><![CDATA[<p>Well&#8230; Day 1.  What can I say?  Nothing exciting happened.  The plan was to leave at 6 PM, and drive to a hotel in Winchester, Virginia.  We had 50% of the troops ready, however I received an &#8220;I&#8217;ll be late&#8221; text from a party member.  Needless to say we were an hour late getting on the road.  I was ok with this at the end of the trip, because we made pretty good time.  The girls car made it to the hotel at 2:00 AM, and we made it to the hotel at 2:15 AM.  After a little visiting of the rooms, and determining that were leaving at 10 AM, bed quickly followed.  Good night!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curtisholland.com/obx-trip-day-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Photo</title>
		<link>http://www.curtisholland.com/new-photo</link>
		<comments>http://www.curtisholland.com/new-photo#comments</comments>
		<pubDate>Mon, 04 Oct 2010 14:34:21 +0000</pubDate>
		<dc:creator>Curtis Holland</dc:creator>
				<category><![CDATA[Activities]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Amazing]]></category>
		<category><![CDATA[Camera]]></category>

		<guid isPermaLink="false">http://www.curtisholland.com/?p=229</guid>
		<description><![CDATA[I have another favorite photo to share.  Yesterday I went to my friend Amelia&#8217;s house because the corner of her...]]></description>
			<content:encoded><![CDATA[<p>I have another favorite photo to share.  Yesterday I went to my friend Amelia&#8217;s house because the corner of her street intersects a major road.  I went over there to take some photos of moving traffic, a little practice with open shutter and my tripod. I took about 6 photos, and a few of them came out, this is one of my favorite</p>
<p><span id="more-229"></span>This is the final product without any editing.  There are glares from the street light on the cars, that&#8217;s what the random white lines are, but I wanted to shot the photo unedited.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curtisholland.com/new-photo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update on the new job</title>
		<link>http://www.curtisholland.com/update-on-the-new-job</link>
		<comments>http://www.curtisholland.com/update-on-the-new-job#comments</comments>
		<pubDate>Wed, 29 Sep 2010 19:00:13 +0000</pubDate>
		<dc:creator>Curtis Holland</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.curtisholland.com/?p=221</guid>
		<description><![CDATA[So, as most of you know from my previous post, I have a new job at Pantek.  I do miss...]]></description>
			<content:encoded><![CDATA[<p>So, as most of you know from my <a href="http://www.curtisholland.com/2010/09/13/new-job" target="_blank">previous post</a>, I have a new job at <a href="http://www.pantek.com/" target="_blank">Pantek</a>.  I do miss all of my friends at <a href="http://www.tkg.com">Karcher Group</a>, but I had to move on to bigger and better things.  They know that I&#8217;m trying to keep in touch with them as I still talk to a lot of them.  I want to go visit Chad and Chris in Florida at <a href="http://www.fullsail.edu/">Full Sail University</a> but I have to find the time for that, as I now have another 3 month introductory period to complete.</p>
<p>I wanted to followup with some more information about my new job, and what I&#8217;m doing.  I&#8217;m currently training still as an Engineer, however have my first billable hour in as of last week.  I know, that doesn&#8217;t sound too interesting, however it&#8217;s really great for the company and everyone was really excited for me, so I&#8217;m all in!  I finished configuring some software called &#8220;FreeSide&#8221;, and apparently it&#8217;s not that easy to configure.  Earlier today, I finished 5 hours of training on Oracle, and how they promote changes to a DB here, which is very interesting, and very effective.  Besides the training, I&#8217;m doing little things here and there to help out around the place while I learn the systems, and how things are run.  So far: excellent job!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curtisholland.com/update-on-the-new-job/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

