<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.5" -->
<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/"
	>

<channel>
	<title>Stillnet Studios</title>
	<link>http://www.stillnetstudios.com</link>
	<description>Web Development notes and commentary</description>
	<pubDate>Thu, 17 Apr 2008 22:16:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.5</generator>
	<language>en</language>
			<item>
		<title>Using CFID and CFToken to jump between ColdFusion servers</title>
		<link>http://www.stillnetstudios.com/2008/04/17/maintaining-state-between-servers/</link>
		<comments>http://www.stillnetstudios.com/2008/04/17/maintaining-state-between-servers/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 22:10:00 +0000</pubDate>
		<dc:creator>Ryan Stille</dc:creator>
		
		<category>Web Development</category>

		<category>ColdFusion</category>

		<guid isPermaLink="false">http://www.stillnetstudios.com/2008/04/17/maintaining-state-between-servers/</guid>
		<description><![CDATA[In a couple application&#8217;s I&#8217;ve found it necessary to send a user to another ColdFusion server, but still maintain their current session.  Usually this is for a payment gateway, or encryption process, or some other kind of functionality that only exists on that other server.  In CF5 this was pretty straight forward.  [...]]]></description>
		<wfw:commentRss>http://www.stillnetstudios.com/2008/04/17/maintaining-state-between-servers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cleaning up orphaned records in MySQL</title>
		<link>http://www.stillnetstudios.com/2008/04/11/cleaning-up-orphaned-records-in-mysql/</link>
		<comments>http://www.stillnetstudios.com/2008/04/11/cleaning-up-orphaned-records-in-mysql/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 19:44:58 +0000</pubDate>
		<dc:creator>Ryan Stille</dc:creator>
		
		<category>Web Development</category>

		<category>SQL</category>

		<guid isPermaLink="false">http://www.stillnetstudios.com/2008/04/11/cleaning-up-orphaned-records-in-mysql/</guid>
		<description><![CDATA[I needed to clean out some orphaned records from a MySQL database today.  I thought this would be as simple as 
DELETE FROM subTable WHERE ID IN (
  SELECT subTable.ID from subTable
  LEFT OUTER JOIN parentTable ON subTable.parentID = parentTable.ID
  WHERE  parentTable.ID IS NULL
  )
But this resulted in an [...]]]></description>
		<wfw:commentRss>http://www.stillnetstudios.com/2008/04/11/cleaning-up-orphaned-records-in-mysql/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ryan takes home the trophy - Uber Geek of the year</title>
		<link>http://www.stillnetstudios.com/2008/04/08/uber-geek-award/</link>
		<comments>http://www.stillnetstudios.com/2008/04/08/uber-geek-award/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 01:00:57 +0000</pubDate>
		<dc:creator>Ryan Stille</dc:creator>
		
		<category>Misc</category>

		<guid isPermaLink="false">http://www.stillnetstudios.com/2008/04/08/uber-geek-award/</guid>
		<description><![CDATA[Last weekend was my annual company dinner.  We had a wonderful meal at Colton&#8217;s Woodfired Grill.  Several awards were handed out, and somehow I was chosen to receive the grand prize - Uber Geek of the Year.  I was told my achievements that led up to this were:


Always working through a large [...]]]></description>
		<wfw:commentRss>http://www.stillnetstudios.com/2008/04/08/uber-geek-award/feed/</wfw:commentRss>
		</item>
		<item>
		<title>3GB of memory for ColdFusion on Linux</title>
		<link>http://www.stillnetstudios.com/2008/03/08/3gb-of-memory-for-coldfusion-on-linux/</link>
		<comments>http://www.stillnetstudios.com/2008/03/08/3gb-of-memory-for-coldfusion-on-linux/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 04:22:57 +0000</pubDate>
		<dc:creator>Ryan Stille</dc:creator>
		
		<category>Web Development</category>

		<category>ColdFusion</category>

		<category>Linux</category>

		<guid isPermaLink="false">http://www.stillnetstudios.com/2008/03/08/3gb-of-memory-for-coldfusion-on-linux/</guid>
		<description><![CDATA[There has been some discussion on various ColdFusion discussion lists regarding the maximum heap size you can allocate to ColdFusion/Jrun.  Windows allows a process to grab as much as 2GB of contiguous memory.  Subtracting out memory for overhead, permgen memory, etc. you are left somewhere with 1.5-1.8GB available for general heap memory.
We were [...]]]></description>
		<wfw:commentRss>http://www.stillnetstudios.com/2008/03/08/3gb-of-memory-for-coldfusion-on-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Getting cfstat to work</title>
		<link>http://www.stillnetstudios.com/2008/03/04/getting-cfstat-to-work/</link>
		<comments>http://www.stillnetstudios.com/2008/03/04/getting-cfstat-to-work/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 21:12:11 +0000</pubDate>
		<dc:creator>Ryan Stille</dc:creator>
		
		<category>Web Development</category>

		<category>ColdFusion</category>

		<category>Linux</category>

		<guid isPermaLink="false">http://www.stillnetstudios.com/2008/03/04/getting-cfstat-to-work/</guid>
		<description><![CDATA[The command line statistics program supplied with ColdFusion, cfstat, has never worked for me.  I&#8217;ve never tried it on Windows, but I have tried it on Linux on versions 6 and 7, and now version 8.
A little digging around told me why it never worked in CFMX 6-7.  Apparently the cfstat script was [...]]]></description>
		<wfw:commentRss>http://www.stillnetstudios.com/2008/03/04/getting-cfstat-to-work/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Rotating PDFs in ColdFusion</title>
		<link>http://www.stillnetstudios.com/2008/02/24/rotating-pdfs-in-coldfusion/</link>
		<comments>http://www.stillnetstudios.com/2008/02/24/rotating-pdfs-in-coldfusion/#comments</comments>
		<pubDate>Sun, 24 Feb 2008 17:22:28 +0000</pubDate>
		<dc:creator>Ryan Stille</dc:creator>
		
		<category>Web Development</category>

		<category>ColdFusion</category>

		<guid isPermaLink="false">http://www.stillnetstudios.com/2008/02/24/rotating-pdfs-in-coldfusion/</guid>
		<description><![CDATA[On a recent project I needed to be able to rotate PDF documents.  I thought for sure there would be something like &#60;cfpdf action="rotate"&#62;, but I was surprised there was no such option.  I came across ColdFusion 8&#8217;s built in DDX processing feature, and thought I would just do it with that.  [...]]]></description>
		<wfw:commentRss>http://www.stillnetstudios.com/2008/02/24/rotating-pdfs-in-coldfusion/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Getting the size of a file in ColdFusion</title>
		<link>http://www.stillnetstudios.com/2008/02/13/get-file-size-coldfusion/</link>
		<comments>http://www.stillnetstudios.com/2008/02/13/get-file-size-coldfusion/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 20:55:02 +0000</pubDate>
		<dc:creator>Ryan Stille</dc:creator>
		
		<category>Web Development</category>

		<category>ColdFusion</category>

		<guid isPermaLink="false">http://www.stillnetstudios.com/2008/02/13/get-file-size-coldfusion/</guid>
		<description><![CDATA[Today I needed to get the size of a file I&#8217;m working with.  If the file was being uploaded from an html form, I can get the file size after calling &#60;cffile action="upload"&#62; by looking to the cffile.fileSize variable.  But in this case, my file was uploaded long ago.
It is possible to get [...]]]></description>
		<wfw:commentRss>http://www.stillnetstudios.com/2008/02/13/get-file-size-coldfusion/feed/</wfw:commentRss>
		</item>
		<item>
		<title>You *can* set Java system properties via ColdFusion</title>
		<link>http://www.stillnetstudios.com/2008/02/11/you-can-set-java-system-properties-via-coldfusion/</link>
		<comments>http://www.stillnetstudios.com/2008/02/11/you-can-set-java-system-properties-via-coldfusion/#comments</comments>
		<pubDate>Mon, 11 Feb 2008 23:39:09 +0000</pubDate>
		<dc:creator>Ryan Stille</dc:creator>
		
		<category>Web Development</category>

		<category>ColdFusion</category>

		<guid isPermaLink="false">http://www.stillnetstudios.com/2008/02/11/you-can-set-java-system-properties-via-coldfusion/</guid>
		<description><![CDATA[I was recently working with some java libraries that looked to a system property for a configuration setting.  The sample Java app that came with the library was setting the system property on the command line.  Their windows .bat file and Linux shell script both launched the java app like this:
java.exe -cp .;package1.jar [...]]]></description>
		<wfw:commentRss>http://www.stillnetstudios.com/2008/02/11/you-can-set-java-system-properties-via-coldfusion/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ColdFusion 8 auto-suggest shows through other form fields</title>
		<link>http://www.stillnetstudios.com/2008/01/30/cf8-autosuggest-shows-through/</link>
		<comments>http://www.stillnetstudios.com/2008/01/30/cf8-autosuggest-shows-through/#comments</comments>
		<pubDate>Wed, 30 Jan 2008 23:17:24 +0000</pubDate>
		<dc:creator>Ryan Stille</dc:creator>
		
		<category>Web Development</category>

		<category>ColdFusion</category>

		<category>AJAX / JavaScript</category>

		<guid isPermaLink="false">http://www.stillnetstudios.com/2008/01/30/cf8-autosuggest-shows-through/</guid>
		<description><![CDATA[I was creating a form the other day that had 3 form fields, layed out vertically on top of one another.  I switched the first field to be a cfinput, so I could use the autosuggest feature:


Then I switched the other two fields to be cfinputs so I could add autosuggest to them, too. [...]]]></description>
		<wfw:commentRss>http://www.stillnetstudios.com/2008/01/30/cf8-autosuggest-shows-through/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ColdFusion 8 inline array syntax doesn&#8217;t work everywhere</title>
		<link>http://www.stillnetstudios.com/2007/12/21/coldfusion-8-inline-array/</link>
		<comments>http://www.stillnetstudios.com/2007/12/21/coldfusion-8-inline-array/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 17:54:32 +0000</pubDate>
		<dc:creator>Ryan Stille</dc:creator>
		
		<category>Web Development</category>

		<category>ColdFusion</category>

		<guid isPermaLink="false">http://www.stillnetstudios.com/2007/12/21/coldfusion-8-inline-array/</guid>
		<description><![CDATA[I was trying to use QueryAddColumn() today to add an additional column to a single-row array I&#8217;m working with.  The 4th parameter to QueryAddColumn is an array of values to add to the query - 1 element in the array for each row in the query.   Since my query only has on [...]]]></description>
		<wfw:commentRss>http://www.stillnetstudios.com/2007/12/21/coldfusion-8-inline-array/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
