<?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>jDowdle.com &#187; Work</title>
	<atom:link href="http://jdowdle.com/wp/category/work/feed/" rel="self" type="application/rss+xml" />
	<link>http://jdowdle.com/wp</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 01:10:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>My New Job at Interfolio Inc.</title>
		<link>http://jdowdle.com/wp/2009/05/new-job-at-interfolio-inc/</link>
		<comments>http://jdowdle.com/wp/2009/05/new-job-at-interfolio-inc/#comments</comments>
		<pubDate>Thu, 14 May 2009 19:22:59 +0000</pubDate>
		<dc:creator>Jon Dowdle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[washington dc]]></category>

		<guid isPermaLink="false">http://jdowdle.com/wp/?p=290</guid>
		<description><![CDATA[Two weeks ago I posted to Twitter that Emily and I would be moving to Washington, D.C.  I wanted to fill in the blanks for anyone that hasn't heard the whole story. Around mid-November, I applied for a job after seeing a post on Sam Farmer's blog. Long story short, one phone interview, one trip [...]]]></description>
			<content:encoded><![CDATA[<p>Two weeks ago I posted to Twitter that Emily and I would be moving to Washington, D.C.  I wanted to fill in the blanks for anyone that hasn't heard the whole story.</p>
<p>Around mid-November, I applied for a job after seeing a post on Sam Farmer's blog. Long story short, one phone interview, one trip to D.C. and four months later, I formally accepted a position with the Interfolio team. I've now officially started in my new position and thought a blog post was deserving.</p>
<p>As far as time lines, I will be working from home for the rest of May and we're moving during the first week of June. We're both excited for the great opportunities that this move presents to us.</p>
<p>Also, I'd like to say thank you to the team that I left at Mojo Interactive. If you're looking for a Coldfusion job in the Orlando area, send me your resume and I'll pass it to the right person at Mojo Interactive.</p>
<ul>
<li><a href="http://www.interfolio.com">Interfolio<br />
</a></li>
<li><a href="http://www.mojointeractive.com">Mojo Interactive</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jdowdle.com/wp/2009/05/new-job-at-interfolio-inc/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Integrating freeform &lt;select&gt; with JavaScript and CSS</title>
		<link>http://jdowdle.com/wp/2007/03/integrating-freeform-select-with-javascript-and-css/</link>
		<comments>http://jdowdle.com/wp/2007/03/integrating-freeform-select-with-javascript-and-css/#comments</comments>
		<pubDate>Mon, 12 Mar 2007 19:14:36 +0000</pubDate>
		<dc:creator>Jon Dowdle</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://jdowdle.com/wp/?p=8</guid>
		<description><![CDATA[At work I have an application that requires a user to select a choice from a drop down box or a &#60;select&#62; control for the HTML savvy. As far as I know (or could find) there is no such control in HTML 4.01 that allows both a select box with the added bonus of taking [...]]]></description>
			<content:encoded><![CDATA[<p>At work I have an application that requires a user to select a choice from a drop down box or a &lt;select&gt; control for the HTML savvy.  As far as I know (or could find) there is no such control in HTML 4.01 that allows both a select box with the added bonus of taking free form user input.  So to meet the needs of this project I crafted one up using CSS and JavaScript.  This is my first dive into CSS/JS in a while so be gentle.<br />
<span id="more-8"></span><br />
I accomplished this by creating two elements (SELECT & INPUT) and then switching the elements visibility properties.<br />
<code><br />
&lt;script type="text/javascript" &gt;<br />
function showOther(id, id2){<br />
&nbsp;&nbsp;if(id.options[id.selectedIndex].label == "Other"){<br />
&nbsp;&nbsp;&nbsp;id.style.visibility = "hidden";<br />
&nbsp;&nbsp;&nbsp;id2.style.visibility = "visible";<br />
&nbsp;&nbsp;}<br />
}<br />
&lt;/script&gt;<br />
&lt;select id="sel1" onChange="showOther(sel1, inp1)"<br />
 style="position:absolute; left:10; top:10;" &gt;<br />
&nbsp;   &lt;option value="0" label=""&gt;&lt;/option&gt;<br />
&nbsp;   &lt;option value="1" label="Choice1"&gt;Choice1&lt;/option&gt;<br />
&nbsp;   &lt;option value="2" label="Choice2"&gt;Choice2&lt;/option&gt;<br />
&nbsp; &lt;option value="3" label="Other"&gt;Other&lt;/option&gt;<br />
&lt;/select&gt;<br />
&lt;input&nbsp;type="text"&nbsp;id="inp1"&nbsp;style="visibility='hidden'"<br />
style="position:absolute; left:10; top:10;" /&gt;<br />
</code></p>
<p>To see it in action go <a href="http://www.jdowdle.com/code/selectInputJs.html">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jdowdle.com/wp/2007/03/integrating-freeform-select-with-javascript-and-css/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Legacy systems and how they woe me!</title>
		<link>http://jdowdle.com/wp/2007/02/legacy-systems-and-how-they-woe-me/</link>
		<comments>http://jdowdle.com/wp/2007/02/legacy-systems-and-how-they-woe-me/#comments</comments>
		<pubDate>Thu, 01 Mar 2007 02:50:17 +0000</pubDate>
		<dc:creator>Jon Dowdle</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://jdowdle.com/wp/?p=7</guid>
		<description><![CDATA[Stayed late at work today in order to watch an outside consultant install a tape drive on our server (more on the server in a second). Of course, Murphy's Law was in full effect and one of our new harddrives had a motor go out on it. So long story short, we've got a new [...]]]></description>
			<content:encoded><![CDATA[<p>Stayed late at work today in order to watch an outside consultant install a tape drive on our server (more on the server in a second).  Of course, <a href="http://en.wikipedia.org/wiki/Murphy's_law">Murphy's Law</a> was in full effect and one of our new harddrives had a motor go out on it.  So long story short, we've got a new and much larger capacity tape drive now installed.<br />
To read more about our particular system ...<span id="more-7"></span><br />
<strong>CMHC...</strong><br />
When I first interviewed for my current job, I was told that I would be dealing with CMHC very often.  As anyone would do, I decided to inquire as to what exactly this product was.  So here's the skinny in case there are any other possible people alive that would want to know this information.  CMHC is a computerized system written a while ago ( `80's ).  The acronym stands for Clinical and Mental Health C? Not quite sure as to what the C means and as far as I can tell the CMH part is never really defined anywhere (and I don't feel like hunting it down in the horrible documentation).  CMHC was bought by another company who also dealt primarily with the mental health sector.  This company had another product and now supports both systems.  More can possibly be found on their website at <a href="http://www.ntst.com">www.ntst.com</a>.  More information on CMHC might be able to be found on the national user groups website <a href="http://www.nugmis.org/">http://www.nugmis.org/</a>.</p>
<p><strong>The OS</strong><br />
From what I can tell, CMHC only runs on 2 OS's.  SCO Unix and AIX by IBM.  Currently we are running AIX 4.3 which looks like it was released in <a href="http://www.osdata.com/holistic/age/age.htm">Oct. 1997</a>.  I don't know if we plan on upgrading the OS. Doing the CMHC installs is pretty big pain already.</p>
<p><strong>The Problems</strong><br />
The tape drive installation wasn't a big issue.  The more serious issue came when we rebooted the server and heard some strange noises.  Turns out the motor in a relatively new drive (not older than a month) had gone bad.  So we pulled it out and swapped in a replacement drive.  Rebooted and then found out that the new tape drive could only read tapes (so much for that nights backup).</p>
<p>And that wraps up the story of that installation.  Thinking on it now, I hope that our current systems have a little more foresight than the systems of yesterday, or else the future is doomed.</p>
<p>-J</p>
]]></content:encoded>
			<wfw:commentRss>http://jdowdle.com/wp/2007/02/legacy-systems-and-how-they-woe-me/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Site Update</title>
		<link>http://jdowdle.com/wp/2007/02/site-update/</link>
		<comments>http://jdowdle.com/wp/2007/02/site-update/#comments</comments>
		<pubDate>Thu, 22 Feb 2007 12:23:17 +0000</pubDate>
		<dc:creator>Jon Dowdle</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://jdowdle.com/wp/?p=5</guid>
		<description><![CDATA[Haven't had much time for work on much. After work I really don't have an abundance of time or much energy. I have done some sample logos but I can't seem to find a color scheme that I like. I wanted a basic layout (with some kind of graphics) to be done by Wednesday...yes...the Wednesday [...]]]></description>
			<content:encoded><![CDATA[<p>Haven't had much time for work on much.  After work I really don't have an abundance of time or much energy.</p>
<p>I have done some sample logos but I can't seem to find a color scheme that I like.  I wanted a basic layout (with some kind of graphics)  to be done by Wednesday...yes...the Wednesday that happened yesterday.  The more I think about it the more I think I might just whip up a nice textual site and come back with the graphics.</p>
<p>I also plan on looking into (and writing on) automating a process I've been having to wake up and do every other week at 5am.  Basically compressing TISAM files on the system we use at work.</p>
<p>Until later</p>
<p>-J</p>
]]></content:encoded>
			<wfw:commentRss>http://jdowdle.com/wp/2007/02/site-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

