<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0">
	<channel>
		<title>Dan's Shorts</title>
		<pubDate>Thu, 01 Nov 2007 00:00:00 PST</pubDate>
		<description>A blog mostly about the life and times of Dan Short, a web developer in Orange County, California. When he's not rambling about [insert latest obsession] the blog focuses on technical aspects of VBScript and ColdFusion and current projects he's working on.</description> 
		<link>http://www.dansshorts.com/</link> 
		<language>en-us</language>
		<copyright>Copyright 2002 - 2006 Daniel Short</copyright>
		<image>
			<title>Dan's Shorts</title> 
			<url>http://www.dansshorts.com/dan.gif</url> 
			<link>http://www.dansshorts.com/</link> 
			<height>112</height>
			<width>49</width>
		</image>

		<item>
			<pubDate>Thu, 01 Nov 2007 17:39:12 PST</pubDate>
			<title>I'm a Godfather</title> 
			<link>http://www.dansshorts.com/?day=11/1/2007#blog362</link> 
			<description>My girlfriend's ex-husband's girlfriend had a brand spankin' new baby today at 6:31. Isabella Johanna Buraglia is 8 pounds, 5 ounces, and 19 1/2 inches long. I'll be booking our trip to The Springer Show soon :). </description>
		</item>

		<item>
			<pubDate>Tue, 09 Jan 2007 06:27:53 PST</pubDate>
			<title>THE BLINK TAG SURVIVES!!!</title> 
			<link>http://www.dansshorts.com/?day=1/9/2007#blog361</link> 
			<description>BOOYAH! </description>
		</item>

		<item>
			<pubDate>Thu, 04 Jan 2007 13:40:15 PST</pubDate>
			<title>&quot;Not of type numeric&quot; when it damn well is....</title> 
			<link>http://www.dansshorts.com/?day=1/4/2007#blog360</link> 
			<description>I have a problem, and it's ColdFusion... We're working on some complex object interaction, and moving data in and out of our objects. Part of the &quot;moving in&quot; part involves building out a structure of arguments based on query columns, and then passing them all in via the ArgumentCollection. Unfortunately, ColdFusion doesn't love us here at lynda.com... It's pitching a fit and saying that our IDs aren't of type numeric, when I know damn well that they are (grumble grumble)... To demonstrate my point I've come up with the following code example. This fails every time for me: &amp;lt;!--- Get a query ---&amp;lt;&amp;gt; &amp;lt;cfset rs = QueryNew(&quot;ID,FirstName&quot;, &quot;integer,varchar&quot;) /&amp;lt;&amp;gt; &amp;lt;cfset QueryAddRow(rs) /&amp;lt;&amp;gt; &amp;lt;cfset QuerySetCell(rs, &quot;ID&quot;, 3) /&amp;lt;&amp;gt; &amp;lt;cfset QuerySetCell(rs, &quot;FirstName&quot;, &quot;Daniel&quot;) /&amp;lt;&amp;gt; &amp;lt;cfset TestStruct = StructNew() /&amp;lt;&amp;gt; &amp;lt;cfloop list=&quot;#rs.ColumnList#&quot; index=&quot;col&quot;&amp;lt;&amp;gt; 	&amp;lt;cfset TestStruct[col] = rs[col] /&amp;lt;&amp;gt; &amp;lt;/cfloop&amp;lt;&amp;gt; &amp;lt;cfdump var=&quot;#TestStruct#&quot; /&amp;lt;&amp;gt; &amp;lt;!--- Pass the newly created struct into the object to run each setter ---&amp;lt;&amp;gt; &amp;lt;cfset MyObject = CreateObject(&quot;component&quot;, &quot;cfcs.test&quot;).init(ArgumentCollection = TestStruct) /&amp;lt;&amp;gt; &amp;lt;cfdump var=&quot;#MyObject.getSnapShot()#&quot; /&amp;lt;&amp;gt; That generates the following error: The argument ID passed to function init() is not of type numeric. Has anyone else come across this same error? Is there some hotfix that fixes this? It's completely stymied our development... The only way around it is to set our arguments to accept type=&quot;any&quot;, which honestly is unacceptable... </description>
		</item>

		<item>
			<pubDate>Sun, 29 Oct 2006 19:26:57 PST</pubDate>
			<title>Ant, Eclipse, and FTP</title> 
			<link>http://www.dansshorts.com/?day=10/29/2006#blog359</link> 
			<description>I'm having an absolute bear of a time getting Eclipse to play nicely with Subversion, Eclipse, and an Ant build file. One of the wonderful things about working with Dreamweaver is the great FTP integration. I can upload, download, all that wonderful stuff, with a single keyboard shortcut directly in the IDE. I'm not having any such luck with Eclipse. I think the problem is that I'm not only needing FTP access, I also need Subversion/Subclipse integration. It's my understanding that I can &quot;import&quot; from an FTP site and I forever have a connection through the Team plugins. Unfortunately, I need to &quot;import&quot; from a Subversion repository in order to keep things up to date that way. This makes it damn impossible to use any sort of built in FTP integration inside Eclipse. To try and get around this I've been playing with Ant (thanks Jared) and build.xml files. The hope is that I can create an Autobuild file that will upload a file any time it's created or changed (I'm not ambitious enough yet to tackle file deletions, bear with me here). Unfortunately, the only thing I've (that means Jared) been able to find is the &quot;depends&quot; attribute of the &amp;lt;target&amp;gt; tag. Unfortunately, this also doesn't seem to work worth a damn... It always uploads the entire project any time a single file changes. The depends attribute isn't checking to see whether anything is newer or not. The most frustrating part of all of this is trying to find good documentation on complex processes. I've spent several hours on google digging through blog posts, forums, Ant documentation and trying to download jar files, write build scripts, and rebuild workspaces, and nothing seems to work as you'd expect. It seems you need to have a greybeard Java developer looking over your shoulder in order to use Ant, or make it do anything you really want it to. Can someone prove me wrong, and help me figure out how I can make Eclipse just upload a file when I save it? Is that so much to ask? Please??? </description>
		</item>

		<item>
			<pubDate>Mon, 26 Jun 2006 09:18:17 PST</pubDate>
			<title>Book Signing</title> 
			<link>http://www.dansshorts.com/?day=6/26/2006#blog358</link> 
			<description>Yes, I signed them as well :) I'm sure they'll be worth some moolah one of these days when I RULE THE WORLD!!! BWAHAHAHAHAHAHA </description>
		</item>

		<item>
			<pubDate>Tue, 06 Jun 2006 15:39:17 PST</pubDate>
			<title>Considering &quot;the switch&quot;</title> 
			<link>http://www.dansshorts.com/?day=6/6/2006#blog357</link> 
			<description>As part of my new job, I got myself a MacBook pro and have been running Bootcamp on it over the last few days. All in all the experience is good, but there are issues with Windows running on the MacBook that bother me (bad sound drivers, and the fact that the clock resets on each startup). However, before I installed BootCamp I spent quite a bit of time on the Mac and got over some of my &quot;floating windows&quot; phobias. To that end, I'm considering going all the way and switching to OSX. So to get to my point, is there anyone out there that's recently been through this that can give me some pointers on what I might miss? My biggest concern is not finding a worthy replacement for Beyond Compare. I absolutely love the program, and haven't been able to find anything comparable on the Mac. I've seen other diff tools, but nothing with the feature set that Beyond Compare has (saved sessions, full folder tree synchronizations, folder tree comparison reports, exlucsions, rule sets, etc. etc.). Any suggestions in this area would be fantastic, because honestly, the lack of a good Mac file diff tool would keep me on the PC for good... </description>
		</item>

		<item>
			<pubDate>Mon, 05 Jun 2006 20:58:16 PST</pubDate>
			<title>I've been outed</title> 
			<link>http://www.dansshorts.com/?day=6/5/2006#blog356</link> 
			<description>Angela has outted me... I do indeed now work at lynda.com. My official position is Web Application Architect. So what do I do? In no particular order (and certainly not exhaustive): Maintain existing ASP-driven site Fix issues (we don't have any y'know, our site is PERFECT!) Develop new applications for the site Infiltrate the company with ColdFusion (they will all be assimilated) I've been working at the LDC (sounds fancier that way) for about 2 months, and I'm enjoying being constantly engaged with new things to work on. So I'm sorry if my posts have been few and far between. Not only do I have a new job, but I'm getting ready to move cross-country again. I'm heading back to the homeland, Texas... We're due to move in July, and I can't wait :). Here's a sneak peek... </description>
		</item>
	</channel>
</rss>
