<?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>Dave Ferguson&apos;s Blog</title>
			<link>http://blog.dkferguson.com/index.cfm</link>
			<description>Things I have figured out while learning to type.</description>
			<language>en-us</language>
			<pubDate>Sat, 18 May 2013 05:14:20 -1200</pubDate>
			<lastBuildDate>Mon, 25 Mar 2013 06:35:00 -1200</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>dave@dkferguson.com</managingEditor>
			<webMaster>dave@dkferguson.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>dave@dkferguson.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>Combining query results using QofQ</title>
				<link>http://blog.dkferguson.com/index.cfm/2013/3/25/Combining-query-results-using-QofQ</link>
				<description>
				
				I have a process that processes an xml document.  For each node in the xml a stored proc is called to update data.  What I wanted to do was combine all the results into a single query return.   I did some digging and found an old blog post &lt;a href=&quot;http://www.bennadel.com/blog/114-ColdFusion-QueryAppend-qOne-qTwo-.htm&quot;&gt;http://www.bennadel.com/blog/114-ColdFusion-QueryAppend-qOne-qTwo-.htm - Ben Nadel&lt;/a&gt; that showed how to do it.  However, that post was a bit old so I figured there must be a better way by now.

I asked a friend and he suggested to try using query of queries with a union to combine them.  This seemed intriguing but there was an issue with this.  The code I was working with was all in cfscript.  I remembered that dealing with queries of queries in cfscript is, well, challenging.  I dug up a ColdFusion Cookbook entry &lt;a href=&quot;http://cookbooks.adobe.com/post_Query_of_Query_with_CFSCRIPT-16492.html&quot;&gt;http://cookbooks.adobe.com/post_Query_of_Query_with_CFSCRIPT-16492.html&lt;/a&gt; on using QofQ in cfscript.

Using this I was able to fashion together a function to combine two queries into one.  I am not sure how will this would work if the queries had different columns.  Now, instead of dealing with about 100 independent queries, I can deal with just one.

&lt;code&gt;
 private any function combineQuery(qA, qB) 
    {
        var qry1Result = arguments.qA;
        var qry2Result = arguments.qB;
        var qoqResult = &apos;&apos;;
		
        // create new query object
        var qoq = new Query();
       
        // set attribute of new query object to be a query result with arbortrary name
        
        qoq.setAttributes(QoQsrcTableA = qry1Result);
        qoq.setAttributes(QoQsrcTableB = qry2Result);
       
        // use previously set attribute as table name for QoQ andset dbtype = query
        qoqResult = qoq.execute(sql=&quot;select * from QoQsrcTableA union select * from QoQsrcTableB&quot;, dbtype=&quot;query&quot;);
       
        // return result
        return qoqResult.getResult();
       
    }
	
}

&lt;/code&gt;



Till next time...

--Dave 
				</description>
				
				<category>ColdFusion</category>
				
				<pubDate>Mon, 25 Mar 2013 06:35:00 -1200</pubDate>
				<guid>http://blog.dkferguson.com/index.cfm/2013/3/25/Combining-query-results-using-QofQ</guid>
				
				
			</item>
			
			<item>
				<title>The road to my first commercial app</title>
				<link>http://blog.dkferguson.com/index.cfm/2013/1/18/The-road-to-my-first-commercial-app</link>
				<description>
				
				I have been wanting to build an actual app for such a long time.  But, I wanted to build something that was not out there yet.  Everything I thought of there was at least 2 of in every app store.  I just needed to find that one thing that didn&apos;t exist yet.  Then I finally figured it out.

My family is very active in Taekwondo.  My son will be a black belt soon and he is only 7.  We were at a tournament a while ago and I noticed that people always wrote down scores on paper.  This is because the judges give a score and write it down on their official paperwork but it is not displayed anywhere.  It is up to the spectators to keep track of scores as they deem fit.  After watching people fumble around doing this I knew there had to be a better way.

I did some investigation and discovered there was no app to do this.  This is when I knew I found the app to build.  

I then spent about 3 months building a prototype.  I showed it a few people and they were very excited about it.  I showed it the school owner and he said he had never seen anything like it.  I knew at that point that I was on the right track.

With a working (mostly) prototype I went to a tournament to test it out.  I ran into a ton of usability issues that made me rethink how the app should work.  I also showed it to a few people and the basic reaction was &quot;Where do I get that?&quot;.

The next 2 months were spent rebuilding the app from scratch.  I started completely over and redesigned about 90% of it.  I needed to make the app faster and cleaner to use. After some more feedback and user testing, the app was complete.

Then, I gave it to my 7yr old son.  He played with the app for about 10 minutes and found a very critical bug in the app.  I managed to use the app in a way that I never intended or foresaw happening.  I made the necessary adjustments to the app and then finalized the rest of it.  

My initial intent was to just build it for Android.  However, my wife convinced me that I really needed to create it for iOS as well.  This process was something I was not looking forward to.  But I did it anyways.  The process was made much easer as I was using PhoneGap and PhoneGap Build to create the app.

I had to make a few changes to the app so it would work correctly and look right on iOS but it was all minor.  If I recall it only took a day to make the adjustments.  In the end I was glad that the wife pushed me to do it.


Ultimately I have my first comercial app on the app stores.  I think my son is more excited then I am.  

You can check it out here...

iOS: &lt;a href=&quot;https://itunes.apple.com/us/app/tournament-scorecard/id593299409&quot;&gt;Tournament Scorecard&lt;/a&gt;

Google Play:  &lt;a href=&quot;https://play.google.com/store/apps/details?id=com.dkferguson.tournamentscorecard&quot;&gt;Tournament Scorecard&lt;/a&gt;

Amazon:  &lt;a href=&quot;http://www.amazon.com/Dave-Ferguson-Tournament-Scorecard/dp/B00B0H4OBS&quot;&gt;Tournament Scorecard&lt;/a&gt;


Till next time,

--Dave 
				</description>
				
				<category>App, PhoneGap</category>
				
				<pubDate>Fri, 18 Jan 2013 07:49:00 -1200</pubDate>
				<guid>http://blog.dkferguson.com/index.cfm/2013/1/18/The-road-to-my-first-commercial-app</guid>
				
				
			</item>
			
			<item>
				<title>Speaking at cf.Objective() 2013</title>
				<link>http://blog.dkferguson.com/index.cfm/2013/1/10/Speaking-at-cfObjective-2013</link>
				<description>
				
				I honored once again to be speaking at cf.Objective().  This year I am privileged enough to have two proposals selected.  The ones selected are... 

&lt;ul&gt;
&lt;li&gt;My SQL Skills Killed the Server .. This session is all about writing better SQL.&lt;/li&gt;
&lt;li&gt;Fuse All the Greatness - Combining Charts, Websockets, and Scheduled Tasks to Present Realtime Data .. Long title that pretty much says it all. &lt;/li&gt;
&lt;/ul&gt;


I look forward to seeing you all the conference.

Till next time,

--Dave 
				</description>
				
				<category>cf.Objective()</category>
				
				<pubDate>Thu, 10 Jan 2013 05:08:00 -1200</pubDate>
				<guid>http://blog.dkferguson.com/index.cfm/2013/1/10/Speaking-at-cfObjective-2013</guid>
				
				
			</item>
			
			<item>
				<title>ColdFusion Platform Survey</title>
				<link>http://blog.dkferguson.com/index.cfm/2012/12/11/ColdFusion-Platform-Survey</link>
				<description>
				
				Take a quick moment out of your day and fill out this survey.  Let Adobe know what production platforms you are running ColdFusion on.

&lt;a href=&quot;https://www.surveymonkey.com/s/HMQG62Y&quot;&gt;https://www.surveymonkey.com/s/HMQG62Y&lt;/a&gt;


Till next time...

--Dave 
				</description>
				
				<category>ColdFusion</category>
				
				<category>Survey</category>
				
				<pubDate>Tue, 11 Dec 2012 04:56:00 -1200</pubDate>
				<guid>http://blog.dkferguson.com/index.cfm/2012/12/11/ColdFusion-Platform-Survey</guid>
				
				
			</item>
			
			<item>
				<title>ColdFusion 10 Scheduled tasks and misfires</title>
				<link>http://blog.dkferguson.com/index.cfm/2012/12/6/ColdFusion-10-Scheduled-tasks-and-misfires</link>
				<description>
				
				In the event that you missed the changes in ColdFusion 10, I will recap one of them.  The scheduled task engine was replaced with the Quartz Job Scheduler.  This fancy new scheduler comes with more features then you will probably ever use.  There are now handlers for when tasks start, finish, and error.  Tasks can now call other tasks when they finish.  You can even define rules for when a task fails or fails to start on-time.  

There is also greater control on when tasks run.  You can now schedule tasks to run faster than every 60 seconds.  You can also use crontime to schedule a task.  For example, this... &quot;0 23 ? * MON-FRI&quot; states to run a task every weekday at 23:00:00.  You could even do something crazy like this &quot;2-59/3 1,9,22 11-26 1-6 ? 2003&quot; which translates into &quot;In 2003 on the 11th to 26th of each month from January to June every third minute starting from 2 past 1am, 9am and 10pm&quot;.

But in creating crazy schedules or faster run times you now run into another feature of the new scheduled task engine, misfires.  Misfires are a fancy name for a task that didn&apos;t start when it should have.  For example, if the task was scheduled to start at 10:00:00 and it is now 10:00:01 and the task has not started it is now considered misfired.

Missing the start time is just one of a few reasons a task can misfire.  Some of the others are, the scheduler engine is down, there were no available worker threads, or a task was configured to start in the past.  You can also generate a misfire by resuming a paused task.  By default the scheduler uses a &quot;smart policy&quot; to handle misfires.  [More]
				</description>
				
				<category>ColdFusion 10</category>
				
				<pubDate>Thu, 06 Dec 2012 10:36:00 -1200</pubDate>
				<guid>http://blog.dkferguson.com/index.cfm/2012/12/6/ColdFusion-10-Scheduled-tasks-and-misfires</guid>
				
				
			</item>
			
			<item>
				<title>Real-world Testing your Application</title>
				<link>http://blog.dkferguson.com/index.cfm/2012/12/3/Realworld-Testing-your-Application</link>
				<description>
				
				A couple months ago, at the time of writing this, I noticed there was a need for a mobile app.  The app was very targeted to a group of people and an organization.  After talking with a few people about my idea I decide that the need for this target group was large enough that I should go ahead with building the app.

The app in question is for spectators to record the scores given by judges as an ATA event.  Currently people just write them down on paper and keep track there.  The scoring is a fairly simple 3 judge scoring system.  The problem for the spectators is that there is no score board for them view.

I am using jQuery Mobile, and PhoneGap to build the app.  I have build a bunch of things with these tools before but mostly for fun.  This will be the first commercial type app, that will go into the app stores, that has my name on it.

Over the course of the next couple months I made a few UI designs and floated those around.  I received feedback and took parts of each one and created the final UI prototype.  After checking with some people I went ahead and started building the app.

It took about a month to build the app from the UI mockups to a working, but crude, pro to type.  I again enlisted feedback from some people and got more great feedback.  I then continued to build the app out to a more alpha level and it worked as well as expected.  I also finalized the features list for the first release.  All that was left was to test it in the real world.

My real world testing would let me know a lot of things.  Most importantly, if my design would hold up under real world conditions.  I could also show the app to people outside my testing group and get some feedback.  

The people that I showed it to were excited that someone was finally filling the void.  Most of them had been looking for something like it for a long time but found nothing.  They all asked the same basic question, when will it be available.

I didn&apos;t let anyone play with the app so all they had to go on was what I showed them. At this point I have at least gotten past my first problem.  There is a need for it and people will want it.  This got me excited as I felt I was on the right track.  [More]
				</description>
				
				<category>Testing</category>
				
				<pubDate>Mon, 03 Dec 2012 06:30:00 -1200</pubDate>
				<guid>http://blog.dkferguson.com/index.cfm/2012/12/3/Realworld-Testing-your-Application</guid>
				
				
			</item>
			
			<item>
				<title>New source for learning ColdFusion</title>
				<link>http://blog.dkferguson.com/index.cfm/2012/11/8/New-source-for-learning-ColdFusion</link>
				<description>
				
				&lt;table&gt;

&lt;tr&gt;

&lt;td width=&quot;200&quot; valign=&quot;top&quot;&gt;
&lt;a href=&quot;http://www.learncfinaweek.com&quot; target=&quot;_new&quot;&gt;&lt;img src=&quot;http://www.learncfinaweek.com/banners/250x250-dark-url.png&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/td&gt;
&lt;td width=&quot;400&quot; valign=&quot;top&quot; style=&quot;padding-left: 20px;&quot;&gt;

A new source for getting your ColdFusion learning on has been launched.  &lt;a href=&quot;http://www.learncfinaweek.com/&quot; target=&quot;_blank&quot;&gt;Learn CF in a Week&lt;/a&gt; will guild you through all the major aspects of the ColdFusion language and get you writing your own application in a week.

I think one of the best parts about this is how it was done.  This course was not created in a vacuum buy a bunch of marketing people.  It was actually created by experts in the community that live and breath this stuff every day.

So, if you are new to ColdFusion, or just want to expand what you know already, check it out.  

&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;



Till next time,

--Dave 
				</description>
				
				<category>LearnCF</category>
				
				<pubDate>Thu, 08 Nov 2012 05:30:00 -1200</pubDate>
				<guid>http://blog.dkferguson.com/index.cfm/2012/11/8/New-source-for-learning-ColdFusion</guid>
				
				
			</item>
			
			<item>
				<title>Websockets and the vanishing scopes, Part 2</title>
				<link>http://blog.dkferguson.com/index.cfm/2012/9/14/Websockets-and-the-vanishing-scopes-Part-2</link>
				<description>
				
				Yesterday I &lt;a href=&quot;http://blog.dkferguson.com/index.cfm/2012/9/13/Websockets-and-the-vanishing-scopes&quot;&gt;blogged&lt;/a&gt; about an issue I was having with Websockets and scopes vanishing.  After some comments to the post and subsequent messages on the FW\1 Google group I decided to do a little more testing.  I was trying to see under what condition were the scopes being lost.

Initial test.

First step was to have an application.cfc setup with a websocket channel.

Application.cfc content:
&lt;code&gt;
component  {
	
	this.name = &quot;wstesting&quot;;
	this.wschannels = [{name:&quot;wstest&quot;}];
	this.sessionmanagement = true;
	this.sessiontimeout = CreateTimeSpan(0,2,0,0);
	
}
&lt;/code&gt;


Next up is the cfm files. These 2 blocks of code would go into separate files.

First the file to receive messages (receive.cfm):
&lt;code&gt;
&lt;script language=&quot;JavaScript&quot;&gt;
	function myHandler(msg){
		console.dir(msg);
	}	
	
&lt;/script&gt;
&lt;cfwebsocket name=&quot;myws&quot; onmessage=&quot;myHandler&quot; subscribeto=&quot;wstest&quot;&gt;
&lt;/code&gt;

Then the file to send a message (send.cfm):
&lt;code&gt;
&lt;cfscript&gt;
	writeDump(var: cgi, label: &apos;cgi before&apos;);
	writeDump(var: session, label: &apos;session before&apos;);
	wsPublish(&quot;wstest&quot;,&apos;my message&apos;);
	writeOutput(&quot;&lt;hr&gt;&quot;);
	writeDump(var: cgi, label: &apos;cgi before&apos;);
	writeDump(var: session, label: &apos;session before&apos;);
&lt;/cfscript&gt;
&lt;/code&gt;


So, to set it all up.  Create the 3 files.  First call the receive.cfm in a browser.  Then in a new browser window call the send.cfm.

What you should see is that the session dumps are the same before and after.  However, the cgi dump is different.  The cgi dump is all based of the wspublish call and not the original request.  However, the session scope is left untouched.

Now, lets make some modifications to do the same test inside a Framework One application.  If you are unfamiliar with FW\1 then some of this may not make sense.  But if you are you should be able to follow along.

First, modify the the application.cfc to extend the framework.  Also, add a before and after function to the app.cfc that contain the scope dumps.
&lt;code&gt;
function before( rc ) {
	writeDump(var: request, label: &apos;request before&apos;);
	writeDump(var: cgi, label: &apos;cgi before&apos;);
	writeDump(var: session, label: &apos;session before&apos;);
}
	
	
function after ( rc ) {
	writeDump(var: request, label: &apos;request after&apos;);
	writeDump(var: cgi, label: &apos;cgi after&apos;);
	writeDump(var: session, label: &apos;session after&apos;);			
}	
&lt;/code&gt;

Next create a view for the send and receive. In the receive put in the same code as the first example.  The send view can be an empty file. 

In the controller that would be called for the send just do a simple wspublish.
&lt;code&gt;
public void function send( rc ) {
	wsPublish(&quot;wstest&quot;, &apos;something&apos;);
}
&lt;/code&gt;

Now, that you have all that setup lets run the code.  Just like before, first call the receive code.  You should see 6 dumps that all mirror each other.  Next call the send.  This should throw an error.  You should have 5 dumps and then the error.  Take careful note of the dumps.  The request dump in the after is all but gone except for one value.  The CGI scope is redone just like the first example.  

Now the odd part.  The error that is thrown should state that &quot;Variable SESSION is undefined.&quot;

For fun, go into the controller and remove the wspublish line.  Then call the send again.  This time the dumps should all work without error.

So there you go.  While this doesn&apos;t correct the issue it at least gives more insite as to what is going on.

Till next time... 

--Dave 
				</description>
				
				<category>Error Messages</category>
				
				<category>FW\1</category>
				
				<pubDate>Fri, 14 Sep 2012 04:33:00 -1200</pubDate>
				<guid>http://blog.dkferguson.com/index.cfm/2012/9/14/Websockets-and-the-vanishing-scopes-Part-2</guid>
				
				
			</item>
			
			<item>
				<title>Websockets and the vanishing scopes</title>
				<link>http://blog.dkferguson.com/index.cfm/2012/9/13/Websockets-and-the-vanishing-scopes</link>
				<description>
				
				I have been working on a new application in FW\1.  This application has a messaging aspect to it that sends alerts to users.  The alerts can be either on screen, email, or a websocket message.  When I went to start adding the websocket parts I started running into strange errors.

First, I was getting the following error after sending a websocket message and trying to do a redirect in FW\1.

The code looks like this (just a couple relevant parts)
&lt;code&gt;
getmessengerService().sendMessage(message: &quot;Message goes here&quot;, type: &quot;error&quot;, delivery: 2);
variables.fw.redirect(&apos;home:main.default&apos;, &quot;displayMessage&quot;);	
&lt;/code&gt;

&lt;b&gt;Original exception in onRequest&lt;/b&gt;&lt;br&gt;
&lt;b&gt;Cannot lock session scope.&lt;/b&gt;&lt;br&gt;
Cannot use cflock to lock the application or session shared scopes without these scopes using the cfapplication tag. To use the session scope, you must enable session management. Application and/or Session variables must also be enabled in the ColdFusion Administrator. (Lock)

This struck me as odd because on refresh, I still had a session and was still logged in.  I checked the redirect code and removed the preserve item (2nd argument) and tried again.  This time I received a different error: 

&lt;b&gt;File not found:&lt;/b&gt;
/Users/dferguson/Documents/Development/nfmtools/common/config/handler.cfc/Users/dferguson/Documents/Development/nfmtools/common/config/handler.cfc

Now I was totally lost.  The redirect was going to a very odd place.  However, the odd place it was going to was to not as odd as it seems.  It was the defined handler for the websocket channel.  So, I then decided to take out the handler and see how that would affect it.  I now received this error:

&lt;b&gt;File not found:&lt;/b&gt; /Applications/ColdFusion10/cfusion/wwwroot/CFIDE/websocket/ChannelListener.cfc/Applications/ColdFusion10/cfusion/wwwroot/CFIDE/websocket/ChannelListener.cfc

This is the default system handler for websockets.  So, now I am totally confused and resting my head on my desk... over and over.  I can&apos;t seem to get around these errors.  Also, if I take out the wspublish() code everything works just fine.  I even went as far as to put an application.cfc file in the directory with the handler to see if that did anything.  Well... it didn&apos;t.

At this point I went in and started using the line debugger.  If you have never used this tool then you are missing out.  Instead of putting dumps and traces in your code you can actually watch the path that CF it taking through the code and what vars are being set.   You can also see what is being passed to functions.  So, I added a few breakpoints and ran the debugger.  [More]
				</description>
				
				<category>websockets</category>
				
				<category>Error Messages</category>
				
				<pubDate>Thu, 13 Sep 2012 11:22:00 -1200</pubDate>
				<guid>http://blog.dkferguson.com/index.cfm/2012/9/13/Websockets-and-the-vanishing-scopes</guid>
				
				
			</item>
			
			<item>
				<title>RIACon 2012 is almost here</title>
				<link>http://blog.dkferguson.com/index.cfm/2012/7/31/RIACon-2012-is-almost-here</link>
				<description>
				
				The title says it all.  In just under a week RIACon will be upon us.  I am very excited to be attending the conference this year.  It is one of the conferences I have yet to get to.  Not only am I going to attend, I will also be speaking this year.  My session will be covering Websockets in ColdFusion 10.  

Websockets is probably one of the most underrated HTML5 features.  Forms, Canvas, and Video seem to get all the HTML5 press.  But, once you start using websockets you will start to think of ways to add it into your applications.  They are super easy to implement but can become very powerful.

Then, if all that wasn&apos;t enough some big conference news came out this week.  First off, I know I am a terrible spy, so keeping this to myself for a few days totally sucked.  It was announced that there will be a panel discussion. The panel is titled.. &quot;Developing for the Future: A Community Panel Discussion hosted by CFHour&quot;.  Scott and myself will be moderating a panel to discuss current and future development trends.  If you are going to the conference you will want to come to this.  If you were thinking of going this should push you over the edge and make you want to be there.

&lt;a href=&quot;http://riacon.com/content/developing-future-community-panel-discussion-hosted-cfhour&quot;&gt;http://riacon.com/content/developing-future-community-panel-discussion-hosted-cfhour&lt;/a&gt;

The list of panel members is very impressive.  The list includes...

Kelly Brown&lt;br&gt;
Chief Technology Officer - AboutWeb&lt;br&gt;

Gert Franz&lt;br&gt;
Chief Executive Officer - Railo Technologies&lt;br&gt;

Adam Lehman&lt;br&gt;
Sr. Product Manager for Interactive Development - PhoneGap/Adobe&lt;br&gt;

Joe Rinehart&lt;br&gt;
Lead Associate - Booz Allen Hamilton&lt;br&gt;

Todd Sharp&lt;br&gt;
Associate - Booz Allen Hamilton&lt;br&gt;

On a more personal note.  I am very honored that we (CFHour) were chosen to moderate the panel.  A big thank you goes out to Phill &quot;From Brazil&quot; Nacelli and the rest of those involved in the conference.  I am excited to be a part of this event and am looking forward to it.

See you at RIACon.

Till next time...

--Dave 
				</description>
				
				<category>RIACon</category>
				
				<pubDate>Tue, 31 Jul 2012 04:43:00 -1200</pubDate>
				<guid>http://blog.dkferguson.com/index.cfm/2012/7/31/RIACon-2012-is-almost-here</guid>
				
				
			</item>
			
			<item>
				<title>ColdFusion Developer Week Recordings</title>
				<link>http://blog.dkferguson.com/index.cfm/2012/6/15/ColdFusion-Developer-Week-Recordings</link>
				<description>
				
				So, you missed one of the ColdFusion Developer week presentations?  Fear not... all the  sessions were recorded.  You can view them all here... &lt;a href=&quot;http://www.adobe.com/devnet/coldfusion/events.html&quot;&gt;http://www.adobe.com/devnet/coldfusion/events.html&lt;/a&gt;. 

Most, if not all, of the presenters have posted their slides and demo code as well.  Unfortunately, the Adobe site doesn&apos;t list those.  You might want to check the respective presenters blogs or use Google to find them.

till next time,

--Dave 
				</description>
				
				<category>Presentations</category>
				
				<category>ColdFusion</category>
				
				<pubDate>Fri, 15 Jun 2012 07:33:00 -1200</pubDate>
				<guid>http://blog.dkferguson.com/index.cfm/2012/6/15/ColdFusion-Developer-Week-Recordings</guid>
				
				
			</item>
			
			<item>
				<title>Developer Week Slides and Code</title>
				<link>http://blog.dkferguson.com/index.cfm/2012/6/12/Developer-Week-Slides-and-Code</link>
				<description>
				
				Sorry for the delay in getting this posted.  Here are the slides and the sample code from my ColdFusion Developer Week 2012 presentation; User Experience upgrade through HTML5 charts and videos.

The sample code does contain the sample videos as well so it is a bit large (45mb).

&lt;a href=&quot;http://blog.dkferguson.com/uploads/cfdevweek.zip&quot;&gt;Download Sample Code&lt;/a&gt;

&lt;img style=&quot;visibility:hidden;width:0px;height:0px;&quot; border=0 width=0 height=0 src=&quot;http://c.gigcount.com/wildfire/IMP/CXNID=2000002.0NXC/bT*xJmx*PTEzMzk1NTcxMzE1MzAmcHQ9MTMzOTU1NzE*ODE5OSZwPTEwMDA3NTImZD*mZz*yJm89MTFiNWRlMWUwYTRlNDA*OTg4/ZTMzMDUxN2I4N2JjYjMmb2Y9MA==.gif&quot; /&gt;&lt;object height=&quot;425&quot; width=&quot;550&quot;&gt;
	&lt;param name=&quot;movie&quot; value=&quot;http://slidesix.com/viewer/SlideSixViewer.swf?alias=CioldFusion-10-HTML5-Charts-and-Graphs&quot;/&gt;
	&lt;param name=&quot;menu&quot; value=&quot;false&quot;/&gt;
	&lt;param name=&quot;scale&quot; value=&quot;noScale&quot;/&gt;
	&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;/&gt;
	&lt;param name=&quot;allowScriptAccess&quot; value=&quot;always&quot; /&gt;
	&lt;embed src=&quot;http://slidesix.com/viewer/SlideSixViewer.swf?alias=CioldFusion-10-HTML5-Charts-and-Graphs&quot; allowscriptaccess=&quot;always&quot; allowFullScreen=&quot;true&quot; height=&quot;425&quot; width=&quot;550&quot; type=&quot;application/x-shockwave-flash&quot;  FlashVars=&quot;gig_lt=1339557131530&amp;gig_pt=1339557148199&amp;gig_g=2&quot;/&gt;
 &lt;param name=&quot;FlashVars&quot; value=&quot;gig_lt=1339557131530&amp;gig_pt=1339557148199&amp;gig_g=2&quot; /&gt;&lt;/object&gt;

Till next time...

--Dave 
				</description>
				
				<category>Presentations</category>
				
				<category>ColdFusion 10</category>
				
				<category>Code Examples</category>
				
				<pubDate>Tue, 12 Jun 2012 17:09:00 -1200</pubDate>
				<guid>http://blog.dkferguson.com/index.cfm/2012/6/12/Developer-Week-Slides-and-Code</guid>
				
				
			</item>
			
			<item>
				<title>ColdFusion Developer Week</title>
				<link>http://blog.dkferguson.com/index.cfm/2012/6/2/ColdFusion-Developer-Week</link>
				<description>
				
				In just a couple days begins ColdFusion Developer Week.  Developer week is a full week of online sessions all about ColdFusion 10.  

Yours truly will be speaking on HTML5 charts and video.  While neither of these are new to ColdFusion 10 they did get a overhaul.

So, signup, attend a couple sessions, and build something great.  Oh... and the best part... it is all FREE!

Here are the details.... 

ColdFusion Developer Week is happening between the 4th and 8th June.

With the launch of ColdFusion 10, we are back with the 2nd ColdFusion Developer Week, a series of free, live webinars hosted by seasoned ColdFusion experts. The webinars cover a wide range of topics, from what ColdFusion is and how to code it, to more in-depth topics related to CF10- HTML5, REST, ORM, Security enhancements and more.

If you are a new developer, someone with little or no ColdFusion experience, or even if you have been using ColdFusion all your life, these sessions are ideal for you. The ColdFusion Developer Week provides something for everyone so &lt;a href=&quot;http://www.adobe.com/cfusion/event/index.cfm?event=detail&amp;id=2021647&amp;loc=en_us&quot;&gt;sign up now&lt;/a&gt;.

&lt;a href=&quot;http://adobe.com/go/cfdeveloperweek&quot;&gt;http://adobe.com/go/cfdeveloperweek&lt;/a&gt;


See you there...

--Dave 
				</description>
				
				<category>Presentations</category>
				
				<category>ColdFusion 10</category>
				
				<pubDate>Sat, 02 Jun 2012 04:12:00 -1200</pubDate>
				<guid>http://blog.dkferguson.com/index.cfm/2012/6/2/ColdFusion-Developer-Week</guid>
				
				
			</item>
			
			<item>
				<title>Application Security - Myth or Fact Slides</title>
				<link>http://blog.dkferguson.com/index.cfm/2012/5/19/Application-Security--Myth-or-Fact-Slides</link>
				<description>
				
				Here are the slides from my session at cf.Objective().  Unfortunately, I can&apos;t attach the demo app that I used during the presentation.  If you have any questions please let me know.

&lt;iframe src=&quot;http://www.slideshare.net/slideshow/embed_code/15185862?rel=0&quot; width=&quot;427&quot; height=&quot;356&quot; frameborder=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; scrolling=&quot;no&quot; style=&quot;border:1px solid #CCC;border-width:1px 1px 0;margin-bottom:5px&quot; allowfullscreen webkitallowfullscreen mozallowfullscreen&gt; &lt;/iframe&gt; &lt;div style=&quot;margin-bottom:5px&quot;&gt; &lt;strong&gt; &lt;a href=&quot;http://www.slideshare.net/dfgrumpy/application-security-myth-or-fact-slides&quot; title=&quot;Application Security - Myth or Fact Slides&quot; target=&quot;_blank&quot;&gt;Application Security - Myth or Fact Slides&lt;/a&gt; &lt;/strong&gt; from &lt;strong&gt;&lt;a href=&quot;http://www.slideshare.net/dfgrumpy&quot; target=&quot;_blank&quot;&gt;dfgrumpy&lt;/a&gt;&lt;/strong&gt; &lt;/div&gt;


Till next time...

--Dave 
				</description>
				
				<category>cf.Objective()</category>
				
				<category>Presentations</category>
				
				<pubDate>Sat, 19 May 2012 07:20:00 -1200</pubDate>
				<guid>http://blog.dkferguson.com/index.cfm/2012/5/19/Application-Security--Myth-or-Fact-Slides</guid>
				
				
			</item>
			
			<item>
				<title>ColdFusion 10 released</title>
				<link>http://blog.dkferguson.com/index.cfm/2012/5/14/ColdFusion-10-released</link>
				<description>
				
				Here is the obligatory blog about the release of the next version of ColdFusion 10.  I have to say I am very excited about this release and the new features in it. 

Go get it.. Go build something amazing.

&lt;a href=&quot;http://www.coldfusion.com&quot;&gt;www.coldfusion.com&lt;/a&gt;

Till next time,

--Dave 
				</description>
				
				<category>ColdFusion 10</category>
				
				<pubDate>Mon, 14 May 2012 21:10:00 -1200</pubDate>
				<guid>http://blog.dkferguson.com/index.cfm/2012/5/14/ColdFusion-10-released</guid>
				
				
			</item>
			</channel></rss>