<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>ColdFusion Muse</title>
			<link>http://www.coldfusionmuse.com/index.cfm</link>
			<description>Musings and Other Things from CF Guru Mark Kruger</description>
			<language>en-us</language>
			<pubDate>Thu, 17 May 2012 07:25:08 -0500</pubDate>
			<lastBuildDate>Thu, 10 May 2012 19:11:00 -0500</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>mkruger@cfwebtools.com</managingEditor>
			<webMaster>mkruger@cfwebtools.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>mkruger@cfwebtools.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>ColdFusion Muse</title>
				<link>http://www.coldfusionmuse.com/index.cfm</link>
			</image>
			<itunes:explicit>no</itunes:explicit>
			
			
			
			
			
			<item>
				<title>Muse Abroad - the Ugly ColdFusian</title>
				<link>http://www.coldfusionmuse.com/index.cfm/2012/5/10/Muse-Abroad--the-Ugly-ColdFusian</link>
				<description>
				
				&lt;p&gt;
     Muse readers - next week I&apos;ll be in Minneapolis MN at the &lt;a href=&quot;http://www.cfobjective.com&quot;&gt;Cf.objective&lt;/a&gt; conference. I&apos;ll be waxing eloquent in the ad hoc room (TBD) about 2 topics near to my heard. The first is web sockets and the second is consulting. It seems like that&apos;s something these conferences could do well to address as the employment landscape changes. Indeed if you are a consultant, freelancer, company owner or whatever and you want Muse tips on getting paid, landing contracts, selling yourself and your technologies, saving troubled customers, getting beyond your skill set, hiring your first and tenth employee etc. - come to that one for a lively discussion. If you are a corporate lackey you can come too, but we may look at you suspiciously out of the corner of one eye.
&lt;/p&gt;
&lt;p&gt;
	I also have a new plan for cfobjective this year. Since I actually don&apos;t do a lot of hard core programming any more I&apos;m not going to dig into a specific topic and try to gain a lion&apos;s share of expertise. Instead my plan is to:
&lt;ul&gt;
	&lt;li&gt;Flit from room to rom and booth to booth and pick up as much general knowledge and witty banter as I can.&lt;/li&gt;
	&lt;li&gt;Tweet copiously from the conference about everything and anything of interest to me. My twitter handle is @cfwebtools and the hash tag for cf.objective is #cfobjective.&lt;/li&gt;
	&lt;li&gt;Blog a few times per day. Naturally these will not be my typical wordy tomes of dubious length. Instead I plan on a few paragraphs highlighting various workshops or interesting thoughts or even people I&apos;ve met who are blog-worthy.&lt;/li&gt;
&lt;/ul&gt;
Of course I will mention names and companies so if you want to give me a heads up about your workshop so I can stop in and say something nice (and the Muse is always positive - no worries there), let me know. I&apos;ll be happy to oblige.  
&lt;/p&gt;
&lt;p&gt;
	If you are going to be at CF Objective and would like to chat about consulting, working for CFWT, the next big thing, why CF is dead (again - Lord Beric eat your heart out), or anything else I&apos;d be thrilled to meet you and hear about your latest project or pet mice or see your knitting or whatever. I&apos;ll make it a point to wear a &lt;em&gt;RED SHIRT&lt;/em&gt; every day. I&apos;m 6&apos;, a little pudgy, balding, with lovely blue eyes (says my wife), a little too verbal and over-confident, and I&apos;ll be hanging around everywhere like a ubiquitous traveling salesman. So don&apos;t be shy - if you see me give a shout! Let&apos;s have a drink, pants Ray, make fun of Mark Drew&apos;s accent or at least put soap in the hotel fountain or something. Don&apos;t leave me hanging.
&lt;/p&gt;
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Thu, 10 May 2012 19:11:00 -0500</pubDate>
				<guid>http://www.coldfusionmuse.com/index.cfm/2012/5/10/Muse-Abroad--the-Ugly-ColdFusian</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Datasource Attribute in Application.cfc</title>
				<link>http://www.coldfusionmuse.com/index.cfm/2012/5/9/Datasource-Attribute-in-Applicationcfc</link>
				<description>
				
				&lt;p&gt;	
	You may know about the &quot;datasource&quot; property in ColdFusion 9.  It allows you to create a variable in your Application.cfc file called &quot;datasource&quot; and then skip the &quot;datasource&quot; attribute of your query tags. That&apos;s pretty neato. Here&apos;s how it works. In the Application.cfc properties...
&lt;code&gt;
&lt;!---Application.cfc---&gt;
&lt;cfscript&gt;
	this.name = &apos;mort&apos;;
	this.sessionmanagement = true;
	this.datasource = &apos;myDsn&apos;;
&lt;/cfscript&gt;
....
&lt;/code&gt;
Then in any component that is &quot;inside&quot; of my application &quot;mort&quot; above I can do something like this:
&lt;code&gt;
&lt;!--- myMethods.cfc ---&gt;
&lt;cffunction name=&quot;getAllUsers&quot;&gt;
	&lt;cfset var &apos;myQry = &apos;&apos;/&gt;
	&lt;cfquery name=&quot;myQry&quot;&gt;
		SELECT  username, email 
		FROM 	users
	&lt;/cfquery&gt;
	&lt;cfreturn myQry/&gt;
&lt;/cffunction&gt;
&lt;/code&gt;
Do you notice what is missing? There&apos;s no &quot;datasource&quot; attribute in the cfquery tag. ColdFusion automatically picks up the datasource from the Application.cfc instead. It&apos;s a nice time saving effort that reduces code and allows for fewer mistakes. Good for multi-tenant code too.
&lt;/p&gt;
&lt;h4&gt;A Minor Detail&lt;/h4&gt;
&lt;p&gt;
 There is one issue that I was made aware of with this approach. Super genius guru Phillip Senn had a head scratching problem where he would set this variable in Application.cfc. Periodically he began getting and error which said:
&lt;code&gt;
The value of the attribute datasource, which is currently &quot;&quot; is invalid.
&lt;/code&gt;
He tried some different things - working with the application names and extended properties of the Application.cfc but nothing seemed to help. Finally he ran the &lt;a href=&quot;http://varscoper.riaforge.org/&quot;&gt;var scope checker&lt;/a&gt; which identifies places where un&apos;varred variables exist inside of CFCs. He found several un&apos;varred variables. After he fixed them the problem went away.
&lt;/p&gt;
&lt;p&gt;So if you are using this Application based &lt;em&gt;this.datasource&lt;/em&gt; approach and you get some random errors where the variable seems undefined - or seems defined as a blank string - start looking for vars that are not properly scoped within your components. It may just fix you right up.&lt;/p&gt;
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Wed, 09 May 2012 14:19:00 -0500</pubDate>
				<guid>http://www.coldfusionmuse.com/index.cfm/2012/5/9/Datasource-Attribute-in-Applicationcfc</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Able Commerce 5 on CF - Email Problem</title>
				<link>http://www.coldfusionmuse.com/index.cfm/2012/5/4/Able-Commerce-5-on-CF--Email-Problem</link>
				<description>
				
				&lt;p&gt;
	A while back a product called &quot;Able Commerce Builder&quot; (ACB) was a popular (or pseudo popular) platform for CF folks. This would have been as far back as 1999. At some point they hired one of those developers who believe his technology choices are up there with the Scripture and the Holy Grail  but &quot;he chose poorly&quot;. 
&lt;/p&gt;
&lt;p&gt;
He rewrote the entire application in Java with a ColdFusion facade. He moved everything into objects and the code became a byzantine maze of object instantiation and java arrays and objects and looping. Of course none of ColdFusion&apos;s strengths were on display (easy to read code, modifiable queries, list handling, looping and outputing, query objects etc. Thankfully ACB moved on to .NET and left CF behind - and good riddance! They were giving it a bad name. I trust their new platform was written by actual .NET developers - let&apos;s hope anyway. I wish them well.
&lt;/p&gt;
&lt;p&gt;
	Over the past couple of days ACB on CF has risen its ugly head again. I&apos;ve been trying (with the help of super Tech Kevin Fatkin at &lt;a href=&quot;http://www.edgewebhosting.net&quot;&gt;Edge Web&lt;/a&gt;) to fix an issue with an ACB server.  After an upgrade of the JVM and some hotfixes on a CF server running ACB, the customer discovered email had suddenly stopped going out. The fix for that is simple right?  Check out the cfmail tags, double-check resolution, run a few telnets etc. Install a cert etc. Ah... if it were only that easy. In fact ACB under the hood (in keeping with its face melting decision making) reinvented the wheel and deployed its own Java based mail classes. Something changed, email is not going out, and we can&apos;t modify it the code in any real way. It&apos;s enough to make me want to have my leg chewed off by a Laplander.  Fortunately if you have this problem we actually &lt;em&gt;did&lt;/em&gt; find a solution.
&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Fri, 04 May 2012 18:54:00 -0500</pubDate>
				<guid>http://www.coldfusionmuse.com/index.cfm/2012/5/4/Able-Commerce-5-on-CF--Email-Problem</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>A Whole Heaping Helping of Normal</title>
				<link>http://www.coldfusionmuse.com/index.cfm/2012/4/27/knowning-a-normal-jvm-heap</link>
				<description>
				
				&lt;p&gt;
	When I&apos;m called into a data center or large application to look at a ColdFusion performance problem I often find myself in a &quot;war room&quot; with highly skilled technicians and admins who may or may not know much about the JVM runtime. One of the things that require experience is knowing what &lt;em&gt;normal memory patterns&lt;/em&gt; look like for a typical production heap. Windows admins will often go directly to the task manager or resource monitor to examine memory usage. If they are uninitiated the first thing they say is &quot;Wow... Jrun is using a lot of memory.&quot; This often doesn&apos;t sit right to them, particularly if the site is idle. So this post is to help those windows folks (and Linux as well) to an understanding of what &lt;em&gt;normal&lt;/em&gt; heap activity looks like. 
&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>Coldfusion Optimization</category>				
				
				<pubDate>Fri, 27 Apr 2012 17:49:00 -0500</pubDate>
				<guid>http://www.coldfusionmuse.com/index.cfm/2012/4/27/knowning-a-normal-jvm-heap</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>DB Indexing Matters: Using the &quot;Database Engine Tuning Advisor - MSSQL 2008</title>
				<link>http://www.coldfusionmuse.com/index.cfm/2012/4/26/db-engine-tuning-advisor</link>
				<description>
				
				&lt;p&gt;
	Here&apos;s a Muse mantra you can hang your hat on (and your overalls and duck suite as well). &lt;em&gt;Application performance starts at the database.&lt;/em&gt; Sure JVM tuning is important. So is networking, processor power, memory, file i/o and keeping cousin Eustace from pressing the red button on the front of the server. It&apos;s all important and it all has a place. But as someone who does an interminable amount of application tuning I can tell you that after setting an appropriate heap size 8 out of 10 performance issues are DB related. And 8 out of 10 DB performance problems are related to indexing. So the first thing a Muse troubleshooter does is &lt;em&gt;check for appropriate indexing&lt;/em&gt;. 
&lt;/p&gt;
&lt;p&gt;
This is often a matter of pouring over the longest page requests or queries and making educated attempts at new indexes (or removing and changing old ones). But more often than not it&apos;s simply a matter of informing the client there &lt;em&gt;is no indexing&lt;/em&gt; and some will need to be added. This begs the question, why don&apos;t developers think about indexing when they create table schemas? Surely they can&apos;t all have come from enormous shops with in-house DBA&apos;s (who are just as likely to forget indexing in my experience). In this post I&apos;m going to share a helpful tip for those of you lucky enough to be using MS SQL Server. The specifics below are for MSSQL server 2005 or 2008, but there is a version of this tool in the MSSQL 2000 profiler as well.
&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>MS SQL Server</category>				
				
				<pubDate>Thu, 26 Apr 2012 16:58:00 -0500</pubDate>
				<guid>http://www.coldfusionmuse.com/index.cfm/2012/4/26/db-engine-tuning-advisor</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>You Might be a Muse All-Star</title>
				<link>http://www.coldfusionmuse.com/index.cfm/2012/4/20/ColdFusion-Jobs</link>
				<description>
				
				&lt;p&gt;
About twice a week I have a developer send me an email chatting about their current job and wondering if they should send me a resume. The answer is always yes! Send me a resume!  I mean... what could it hurt? Generally I will walk you through our CF Testing procedure and &quot;pre-qualify&quot; you to work on the CF Webtools (CFWT) team. Then if I have openings you might get an offer, but even if I do &lt;em&gt;not&lt;/em&gt; have openings I can guarantee that sooner rather than later I &lt;em&gt;&lt;strong&gt;will&lt;/strong&gt;&lt;/em&gt; have openings. With 27 developers you can bet we will be looking for new CF Talent - and other talent as well. In fact, let&apos;s play &quot;...you might be a Muse all-star&quot;.
&lt;/p&gt;
&lt;p&gt;
&lt;ul&gt;
	&lt;li&gt;If you think pouring through the latest CF 10 docs looking for &quot;hidden gems&quot; is the equivalent of a day at the Louvre... you might be a Muse all-star.&lt;/li&gt;
	&lt;li&gt;If you have turned down a night out so you could sit at home and migrate a fusebox app to FW/1... you might be a Muse all-star.&lt;/li&gt;
	&lt;li&gt;If you have traveled more than 50 miles to attend a meeting just because Ray Camden, Sam Farmer, Ben Forta, Ben Nadel or Sean Corefield was presenting ... you might be a Muse all-star (extra points if it was actually a webcast).&lt;/li&gt;
	&lt;li&gt;If you have made more than 2 useful comments on this blog... you might be a Muse all-star.&lt;/li&gt;
	&lt;li&gt;If you have a technical blog that I&apos;ve ever linked to... you might be a Muse all-star.&lt;/li&gt;
	&lt;li&gt;If you have ever refactored an entire CFC service layer &quot;just so you could see what it looked like in pure cfscript&quot;... you might be a Muse all-star.&lt;/li&gt;
	&lt;li&gt;If you love frameworks but are not married to any one of them... you might be a Muse all-star.&lt;/li&gt;
	&lt;li&gt;If you like ribbing windows experts (or mac experts or Linux experts) but can still be friends with them... you might be a Muse all-star. (If not move back home you still need your mother) &lt;/li&gt;
	&lt;li&gt;If your skill set is eclectic enough to include &lt;em&gt;high level&lt;/em&gt; skills in at least 3 IT areas including ColdFusion... you might be a Muse all-star.&lt;/li&gt;
	&lt;li&gt;If you think &quot;exercising your right to vote&quot; has something to do with the CF 10 bug list... you might be a Muse all-star.&lt;/li&gt;
	&lt;li&gt;If your mouth waters just a little when you hear about a programming problem that someone couldn&apos;t solve... you might be a Muse all-star.&lt;/li&gt;
	&lt;li&gt;If you like other developers, other people, communities both real and virtual and hob knobbing with folks who are experts at something &lt;em&gt;other than&lt;/em&gt; IT... you might be a Muse all-star.&lt;/li&gt;
	&lt;li&gt;If you are ready for a change that includes well supported SDLC infrastructure, full time remote development (live where you want to), great flexibility, benefits, and a terrific community of developers... you might be a Muse all-star.&lt;/li&gt;
&lt;/ul&gt;
	
&lt;/p&gt;
&lt;p&gt;
	As of right now the Muse is looking for ColdFusion developers and IOS/Android developers. We are giving special consideration to any developer with a high level skill set in ColdFusion &lt;em&gt;and&lt;/em&gt; either .NET or PHP (not dabblers - you have to be good at both). Our sales projections show us growing to add at least 4-6 developers by the end of this fiscal quarter. So if you are in the market to make a change, or if you are a contractor who loves working from home but is tired of having to gin up your own work, do please send me your resume. You can send it to jobs@cfwebtools.com or send it to mkruger - or tweet me at @cfwebtools and let me know you want to explore the possibilities.
&lt;/p&gt;
				
				</description>
						
				
				<category>Job Openings</category>				
				
				<pubDate>Fri, 20 Apr 2012 16:52:00 -0500</pubDate>
				<guid>http://www.coldfusionmuse.com/index.cfm/2012/4/20/ColdFusion-Jobs</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Class Compiling Fun with ColdFusion</title>
				<link>http://www.coldfusionmuse.com/index.cfm/2012/4/6/Class-Compiling-Fun-with-ColdFusion</link>
				<description>
				
				&lt;p&gt;
	ColdFusion is Java - most people know this in the abstract sense. In sales meetings with the non-initiated I speak about ColdFusion as a &lt;em&gt;layer of Java Services&lt;/em&gt; like mail, networking, jdbc, and &lt;em&gt;compiling&lt;/em&gt; coupled with a language and syntax that offers faster development and better maintenance. I keep the conversation firmly rooted in Java because in reality this description is spot on. With the advent of ColdFusion 10 my case will be bolstered by TomCat as well - making it even easier to sell (and frankly it&apos;s not very hard if you know what you are doing). 
&lt;/p&gt;
&lt;p&gt;
	Since it is Java you probably already know that ColdFusion takes your CFML code and compiles it down into Java Classes. In the days of CF 6 (back when I had more hair) you could use a command line to pre-compile CFML and even save off the .JAVA files. I&apos;m not sure if you can still do that but it was a neat trick. Every time you run a cfm or cfc file ColdFusion checks (assuming trusted cache is &lt;em&gt;off&lt;/em&gt;) to see if the file has changed and recompiles it if needed. You can see this happening with a little effort. The easiest way is to go to the /cfclasses folder for the instance you are using and delete all the class files that are there. Then run a CF page. You should see class files show up for every page and each function within the page. 
&lt;/p&gt;
&lt;p&gt;
	Knowing (or not knowing) how things &lt;em&gt;really work&lt;/em&gt; is very important to a high skill set developer. It amazes me to no end when developers profess they are &quot;uninterested&quot; in certain things regarding the technology they work with. I can&apos;t imagine Tony Stewart being uninterested in the bore size of his cylinders or the torque of 4rth gear or whatever. I&apos;m sure Tiger Woods has more than a passing knowledge of how golf balls and clubs are made and customized. Indeed the more broad your knowledge and the more eclectic your skill set the more likely it is that you are an effective troubleshooter. The Muse (for example) has more than a little networking, hardware and server config experience. Often this is the difference between many hours of fruitless searching and a fast &quot;Aha!&quot; moment. With that in mind I&apos;d like to share a little tidbit I picked up along the way (on StackOverflow from ColdFusion/Flex developer Sean Coyne of &lt;a href=&quot;http://n42designs.com&quot;&gt;n42designs.com&lt;/a&gt;) having to do with compiling. It started with an error I have seen many times... &quot;Routines cannot be declared more than once&quot;. I&apos;m sharing this because I thought the work around was unique and I had not seen it before.
&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Fri, 06 Apr 2012 10:55:00 -0500</pubDate>
				<guid>http://www.coldfusionmuse.com/index.cfm/2012/4/6/Class-Compiling-Fun-with-ColdFusion</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>The Muse on the Radio</title>
				<link>http://www.coldfusionmuse.com/index.cfm/2012/3/27/Muse-On-The-Radio</link>
				<description>
				
				&lt;p&gt;
I was privileged to appear on a local radio show called &quot;Success in Action&quot; on Saturday March 25th).  The host is popular local business Coach &lt;a href=&quot;http://www.actioncoach.com/jimbarger&quot;&gt;Jim Barger&lt;/a&gt;. He works for &quot;Action Coach&quot; - an organization with which I was unfamiliar. But I found his low key approach (devoid of the usual Rah-Rah marketing hype) refreshing, and he had many insightful comments for me both on and off the air. The show explores strategies for successful business growth. It was fun and exciting to be able to talk about where we have been and where we are going. Check it out. 
&lt;/p&gt;
				
				</description>
						
				
				<category>Business Of Development</category>				
				
				<pubDate>Tue, 27 Mar 2012 12:40:00 -0500</pubDate>
				<guid>http://www.coldfusionmuse.com/index.cfm/2012/3/27/Muse-On-The-Radio</guid>
				
				
				<enclosure url="http://www.coldfusionmuse.com/enclosures/mak_kcro.mp3" length="10689879" type="audio/mp3"/>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Email Follies - How to Make E-friends and Influence E-people</title>
				<link>http://www.coldfusionmuse.com/index.cfm/2012/3/16/email-etiquette</link>
				<description>
				
				&lt;p&gt;
	Note - this is not a technical post. It&apos;s strictly intended to make people laugh or at least chuckle. And for the record I like cats.
&lt;/p&gt;
&lt;p&gt;
	In a recent meeting with a group of mad guitar players (meaning they have a high skill level - not that they are angry) it was suggested that I write a quick post on email etiquette for posterity. Going around the circle it became clear that each of these &quot;normal users&quot; - that&apos;s how us tech types think of everyone else - had stories of emails that were unintentionally vague, ambiguous, redundant and also said the same thing twice.  So I thought I&apos;d put my pen to paper so to speak and try to give my take on the proper use of email.
&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>Humor and Life</category>				
				
				<pubDate>Fri, 16 Mar 2012 14:34:00 -0500</pubDate>
				<guid>http://www.coldfusionmuse.com/index.cfm/2012/3/16/email-etiquette</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Web Sockets - Going Where No Muse Has Gone Before</title>
				<link>http://www.coldfusionmuse.com/index.cfm/2012/3/14/Web-Sockets--Going-Where-No-Muse-Has-Gone-Before</link>
				<description>
				
				&lt;p&gt;
	You might wonder where I&apos;ve been holed up for more than a month. Never fear - I&apos;m still slogging away. My current project is a dashboard  for &lt;a href=&quot;http://www.cfwebtools.com&quot;&gt;CF Webtools&lt;/a&gt; that tracks all of our consulting activity.  CF Webtools runs a custom tracking and management system as a core component of our business. This system has many cool features that have evolved over the years for tracking hours, performance, tasks, groups of tasks, assignments, productivity, estimates, deadlines etc. Myself and my VP, Jason Herbolsheimer (a brilliant programmer and manager who you would all know and love &lt;em&gt;if&lt;/em&gt; he would ever blog), have spent thousands of hours on it to make it fit our business model of transparency, measurable productivity and cash positive block hours.  
&lt;div align=&quot;center&quot;&gt;&lt;img src=&quot;http://www.coldfusionmuse.com/images/tracker-collage.jpg&quot;&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;
	The reports and features it contains are useful, but a bit of a hodgepodge. Meanwhile, over time my role has changed considerably. Other than troubleshooting, mentoring and experimentation I&apos;m not involved in day to day tasks directly with our clients any more. But I still monitor our overall productivity closely. Indeed, now that I&apos;m a step back from the work I have a much better sense of what we are accomplishing and where our weak spots are. In the past I have used cfcharts called up on internal pages to show hours and individual developer performance but 3 things had changed.
&lt;ol&gt;
	&lt;li&gt;We now have many more developers to track (29 at last count). &lt;/li&gt;
	&lt;li&gt;With 3000+ consulting hours per month the system receives a constant stream of updates, notes etc.&lt;/li&gt;
	&lt;li&gt;I have a fancy new set up with 3x27 inch monitors plus a 46 inch wall mounted monitor that looked lonely and I wanted some fancy-pants dashboard to display&lt;/li&gt;
&lt;/ol&gt;
Ok, that last reason is simple hubris but still, it was good enough to boot me down the path. But I had some decisions to make.
&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Wed, 14 Mar 2012 14:47:00 -0500</pubDate>
				<guid>http://www.coldfusionmuse.com/index.cfm/2012/3/14/Web-Sockets--Going-Where-No-Muse-Has-Gone-Before</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Muse Rant: Open Letter to Sales People</title>
				<link>http://www.coldfusionmuse.com/index.cfm/2012/2/6/dont.call.me.please.dont.call.me</link>
				<description>
				
				&lt;p&gt;
	In the immortal words of John Cleese &quot;And now for something completely different.&quot; Please note that this post is intended to be funny. As a geek with a sort of geek sense of humor I have to say that up front or some folks may miss it. The Muse does not typically castigate sales people over the phone unless they are calling from a NY boiler room (the stock kind - I actually have an affinity for maintenance people). I&apos;m generally nice with the goal of getting off the phone as quickly as possible. But I suppose some of these things are bubbling along inside of me all the same. If this gives you a laugh then I&apos;m pleased, but I am not setting out to offend anyone. If you are trying to make a living calling folks to sell them something you might want to stop here unless you have a thick skin. I know you are just trying to make a living and I wish you success (but don&apos;t call me... please don&apos;t call me!!). And now....
&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>Humor and Life</category>				
				
				<pubDate>Mon, 06 Feb 2012 14:35:00 -0500</pubDate>
				<guid>http://www.coldfusionmuse.com/index.cfm/2012/2/6/dont.call.me.please.dont.call.me</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Performance Tip - CF Builder 2 Plugin on Windows 7 64 bit</title>
				<link>http://www.coldfusionmuse.com/index.cfm/2012/1/27/cfbuilder-performance-64bit-plugin</link>
				<description>
				
				&lt;p&gt;
	The Muse is a slow moving tools user.  I just switched to CF Builder about a year ago in fact. Before that I was using CF Eclipse. I still use the venerable Homesite for quick troubleshooting on production servers or to review code. I&apos;m using it to write this blog in fact. I have written my blogs in hand coded HTML for many years - which I&apos;m sure, explains the copious amounts of in-line CSS throughout. But I&apos;m a full convert to CF Builder now and have been for some time. All my &quot;Code-for-production&quot; work is done using CFB with integrated SVN through a local environment. Recently on one of the email lists I follow I heard a tip from mad-genius Kevin Miller (&lt;a href=&quot;http://www.websolete.com/&quot;&gt;Websolete.com&lt;/a&gt;).
&lt;/p&gt;
&lt;p&gt;
	Like the Muse, Kevin runs CF Builder 2 on Windows 7 64bit as a plugin against a heavily customized version of eclipse 64bit. Also like the Muse he finds it to be an underachiever. CFB (or perhaps it&apos;s just 64bit Eclipse and we are throwing CFB in there unnecessarily) tends to use way more processor than seems necessary and at times seem to lag and catch up like a fat man at a marathon. On rare occasions when I&apos;m editing large files or (in particular) browsing files on the network it simply peters out and needs to be defibrillated - also like the fat man I suppose.  Of course I have edited the eclipse.ini file and I run a large heap. I&apos;ve experimented with different GC&apos;s and other params. In the end I just kind of assumed that.... well that it was a dog like many Java desktop apps (don&apos;t judge me). And at age 46 I&apos;ve learned to settle for a lot of things, so I was reasonably content to simply live with it. I know - it sounds horrible when I write it down like that (doh!).
&lt;/p&gt;
&lt;p&gt;
	But Kevin suggested switching from javaw.exe to the jvm.dll by adding the &quot;-vm&quot; switch. I had assumed that &quot;javaw.exe&quot; was necessary because it builds a Windows GUI. But that &quot;GUI&quot; is not the &lt;em&gt;Eclipse&lt;/em&gt; gui (at least I don&apos;t think so). More likely it is that annoying system tray thingy that keeps begging me to let it spout all the wonderful things Oracle is doing while it upgrades my SDK. Anyway, with a little trial and error I found that Eclipse runs splendidly using the jvm.dll and I&apos;m having fewer lags and problems with. Kevin&apos;s post is &lt;a href=&quot;http://www.websolete.com/posts/cfbuilder-2-performance-problems-on-windows-7-64-bit-solved&quot;&gt;here&lt;/a&gt; if you want the full story. Let me add to his comments that I had a bit of trouble finding the right &quot;jvm.dll&quot;.  The first one I tried was apparently 32 bit. The one I needed was in the jre6 folder - which eventually I found installed elswhere on my machine. Thinking back I think the SDK install does ask for a specific location for those files - so that makes sense. 
&lt;/p&gt;
&lt;p&gt;
	Once I had right path I opened my eclipse short cut and added.. &lt;br&gt;&lt;br&gt; &lt;em style=&quot;font-size:11pt; font-family:courier new;&quot;&gt;eclipse.exe -vm &quot;C:\Program Files\Java\jre6\bin\server\jvm.dll&quot;&lt;/em&gt;&lt;br&gt;&lt;br&gt;...to the target area so that I&apos;m using it each time I open eclipse. Note the necessary quotes around the path. They are needed because of the space in &quot;program files&quot;. As always I count on my readers to add to the conversation - just be nice. Remember I grew up on Andy Griffith, not South Park. So let&apos;s leave Kenny alone on this post. On the other hand Aunt Bee is fair game.
&lt;/p&gt;
				
				</description>
						
				
				<category>Coldfusion Tips and Techniques</category>				
				
				<pubDate>Fri, 27 Jan 2012 11:20:00 -0500</pubDate>
				<guid>http://www.coldfusionmuse.com/index.cfm/2012/1/27/cfbuilder-performance-64bit-plugin</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>New Opportunities: Boston/Providence and Omaha</title>
				<link>http://www.coldfusionmuse.com/index.cfm/2011/12/16/New-Opportunities-Boston-Providence-and-Omaha</link>
				<description>
				
				&lt;p&gt;
The Muse is on the lookout for any and all ColdFusion resources in the Boston/Providence area. One of our Tier 1 clients is looking to build a new team in that area and is asking for our assistance. So if you are a senior developer who thinks you can get through my grueling test and interview process and you want to work for a terrific consulting company that has doubled in size in the last year - send your resume to jobs@cfwebtools.com and let&apos;s have a chat.
&lt;/p&gt;
&lt;p&gt;
	On a related note I am looking for some local Omaha talent as well. Specifically I need a design resource that specializes in User Interface Design - creating user lexicons, visibility analysis, consistency, error and feedback standards, recognition vs. recall, minimalism etc. - &lt;em&gt;and&lt;/em&gt; you live in or around the Omaha area (and by around I mean Sioux City, Lincoln, Council Bluffs and the Omaha Metro area), then feel free to contact me. We might have a great opportunity for you to make a &lt;em&gt;significant&lt;/em&gt; contribution to an amazing suite of applications for a thriving business. Again - you would have to live in and around Omaha, or at least be willing to brook the subject of moving to Omaha within a reasonable time frame. 
&lt;/p&gt;
&lt;p&gt;
	For those of you waiting for me to call you about the resume you already sent me in the last few weeks (there are about 15 or 20 of you) hang in there. We are in a 4 week cycle right now so you can bet I&apos;ll be contacting you very soon.
&lt;/p&gt;
				
				</description>
						
				
				<category>Job Openings</category>				
				
				<pubDate>Fri, 16 Dec 2011 17:46:00 -0500</pubDate>
				<guid>http://www.coldfusionmuse.com/index.cfm/2011/12/16/New-Opportunities-Boston-Providence-and-Omaha</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Fun and Games With Googlebot</title>
				<link>http://www.coldfusionmuse.com/index.cfm/2011/12/14/working.with.crawlers.and.bots</link>
				<description>
				
				&lt;p&gt;
	When planning for scalability one of the things that is sometimes left out is the impact of indexing bots on your site. If you have a news or ecommerce site that is constantly changing, you definitely &lt;em&gt;want&lt;/em&gt; bots to be indexing your site. How else are the latest and greatest products or stories going to show up in organic searches after all?  But you also want bots to be well behaved. It would great if you could greet the bots at the door and say &quot;Hey... it&apos;s 2:00am, not much going on so index to your heart&apos;s content.&quot; Or, &quot;Whoa there fella - do you have a reservation? This is Cyber Monday and I&apos;m afraid all our seats are full for paying customers. Can you come back in 12 hours?&quot; But that sort of smart interaction is sadly not in the cards. Some bots have defined rules, some do not. Some honor things you put in the robots.txt file others do not. So here are some tips that might save you some time.
&lt;/p&gt;
				 [More]
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>Hosting and Networking</category>				
				
				<pubDate>Wed, 14 Dec 2011 16:56:00 -0500</pubDate>
				<guid>http://www.coldfusionmuse.com/index.cfm/2011/12/14/working.with.crawlers.and.bots</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>FileZilla Vs. FileZilla - Battle of the Century</title>
				<link>http://www.coldfusionmuse.com/index.cfm/2011/12/8/FileZilla.vs.FileZilla</link>
				<description>
				
				&lt;p&gt;
	Here&apos;s a problem that comes under the heading of the right hand being unaware of what the left hand is doing. Seriously the right hand is like sitting back, relaxing, maybe pushing the remote and the left hand playing the drums, waving at passers-by and tap-dancing wearing a little tuxedo. The right hand says, &quot;Hey.. what in the ham sandwich is going on over there?&quot; And the left hand says... Eh... I&apos;d say that is as far as I want to go with the whole left-hand-right-hand thing. 
&lt;/p&gt;
&lt;h4&gt;The Problem&lt;/h4&gt;
&lt;p&gt;
	From time to time I end up troubleshooting an FTP connection. Like most system admins I hate FTP with a capital ick. Insecure, clunky, fault intolerant... It&apos;s like arriving at the Oscars in a VW Bus. It gets you there but there has to be a better transport than this! Where we need to support FTP (and always through a VPN please - do the rest of us a favor!), we use a product called &lt;a href=&quot;http://filezilla-project.org/index.php&quot;&gt;FileZilla FTP Server&lt;/a&gt;. It&apos;s a great product and you can be up and running in about 5 minutes on just about any windows platform. Simply add users, folders, IP restrictions etc. and you are off and running. 
&lt;/p&gt;
&lt;p&gt;
	The only problem is that occasionally people will call and simply can&apos;t get connected. The server is able to recognize them and verify their credentials but when it issues its first server side command (list I think) it times out and drops the connection. After a while I realized that the folks who were experiencing this problem were people running the FileZilla &lt;em&gt;client&lt;/em&gt;. That&apos;s right - the FileZilla client has trouble connecting to the FileZilla server. If I asked them to use a different client the problem went away.
&lt;/p&gt;
&lt;h4&gt;The Solution&lt;/h4&gt;
&lt;p&gt;
	A few weeks ago I finally figured out the solution based on a comment by super-genius-guru Wil Genovese of &lt;a href=&quot;http://www.trunkful.com&quot;&gt;Trunkful.com&lt;/a&gt; who (I&apos;m thrilled to say) works for the Muse and does miraculous things almost every day for our company and staff. He mentioned the problem with FileZilla and UTF-8 encoding. Some experimentation helped me determine an actual fix. Apparently the FileZilla client is passing the string UTF-8 for encoding (which looks ok to me) and the FileZilla server is expecting &quot;UTF8&quot;. Fortunately the site manager has a way of specifying a &quot;custom encoding&quot; string. Click on a site then click on the &quot;charset&quot; properties tab. One of the choices is &quot;custom character set&quot;. Choose it and enter UTF8 (without the dash). You should be able to connect fine after that. 
&lt;br&gt;
&lt;br&gt;
&lt;img src=&quot;http://www.coldfusionmuse.com/images/fz.jpg&quot;/&gt;&lt;br&gt;
&lt;br&gt;
Note: this problem doesn&apos;t exist with every version of client and server combination.
&lt;/p&gt;
				
				</description>
						
				
				<category>Hosting and Networking</category>				
				
				<pubDate>Thu, 08 Dec 2011 16:11:00 -0500</pubDate>
				<guid>http://www.coldfusionmuse.com/index.cfm/2011/12/8/FileZilla.vs.FileZilla</guid>
				
				
			</item>
			
		 	
			</channel></rss>
