<?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>Jonathon Joyce - ColdFusion Developer &#187; ColdFusion</title>
	<atom:link href="http://www.jonathonjoyce.co.uk/tag/coldfusion/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jonathonjoyce.co.uk</link>
	<description></description>
	<lastBuildDate>Thu, 02 Feb 2012 16:31:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Updating DataTables display orders by drag and drop</title>
		<link>http://www.jonathonjoyce.co.uk/2011/04/08/updating-datatables-display-orders-by-drag-and-drop/</link>
		<comments>http://www.jonathonjoyce.co.uk/2011/04/08/updating-datatables-display-orders-by-drag-and-drop/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 16:08:22 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Datatables]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery UI]]></category>
		<category><![CDATA[datatables]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery ui]]></category>
		<category><![CDATA[json]]></category>

		<guid isPermaLink="false">http://www.jonathonjoyce.co.uk/?p=207</guid>
		<description><![CDATA[Using the DataTables plugin for jQuery? In my opinion its the easiest to use datatable plugin with great built in functionality, however, i came across a situation that needed to have display orders for data in the table (think CMS data tables and ordering of records for front end use). DataTables doesnt have that functionality [...]]]></description>
			<content:encoded><![CDATA[<p>Using the <a href="http://www.datatables.net">DataTables</a> plugin for jQuery? In my opinion its the easiest to use datatable plugin with great built in functionality, however, i came across a situation that needed to have display orders for data in the table (think CMS data tables and ordering of records for front end use). DataTables doesnt have that functionality built in. jQuery UI to the rescue!</p>
<p>My basic datatable markup with data built via a cfoutput query:</p>
<pre class="brush: coldfusion; title: ; notranslate">
&lt;table id=&quot;myQueryList&quot; class=&quot;datatable-display&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;100%&quot;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th width=&quot;360&quot;&gt;Title&lt;/th&gt;
&lt;th width=&quot;50&quot;&gt;Display&lt;/th&gt;
&lt;th class=&quot;no-order&quot; width=&quot;50&quot;&gt;Options&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td width=&quot;360&quot;&gt;#HTMLEditFormat(variables.qryWhatever.szDocumentName)#&lt;/td&gt;
&lt;td width=&quot;50&quot;&gt;YesNo&lt;/td&gt;
&lt;td style=&quot;border-right: 1px solid ##26344F;&quot; width=&quot;50&quot;&gt;
				&lt;a title=&quot;Edit&quot; onclick=&quot;editFile('#variables.qryWhatever.uuidWhatever#')&quot; href=&quot;javascript:void(0)&quot;&gt;&lt;img src=&quot;/images/icons/general/edit.png&quot; border=&quot;0&quot; alt=&quot;Edit&quot; /&gt;&lt;/a&gt;
				&lt;a title=&quot;Delete&quot; onclick=&quot;removeFile('#variables.qryWhatever.uuidWhatever#')&quot; href=&quot;javascript:void(0)&quot;&gt;&lt;img src=&quot;/images/icons/general/delete.png&quot; border=&quot;0&quot; alt=&quot;Delete&quot; /&gt;&lt;/a&gt;
				&lt;input id=&quot;whatever_#variables.qryWhatever.uuidWhatever#&quot; name=&quot;uuidWhatevers&quot; type=&quot;hidden&quot; value=&quot;#variables.qryWhatever.uuidWhatever#&quot; /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
</pre>
<p>Then the basic init code for datatables (All standard stuff):</p>
<pre class="brush: jscript; title: ; notranslate">
homePageFileList = $('#myQueryList').dataTable({
	&quot;bProcessing&quot;: false,
	&quot;bStateSave&quot;: true,
	&quot;bJQueryUI&quot;: true,
	&quot;bAutoWidth&quot;: false,
	&quot;bSort&quot;: false,
	&quot;sPaginationType&quot;: &quot;full_numbers&quot;,
	&quot;oLanguage&quot;:{
		&quot;sZeroRecords&quot;: &quot;No records found.&quot;,
		&quot;sLengthMenu&quot;: &quot;Display: _MENU_&quot;,
		&quot;sInfoFiltered&quot;: &quot;&quot;
	}
});
</pre>
<p>Next to use jQuery UI to make the table orderable via drag and drop:</p>
<pre class="brush: jscript; title: ; notranslate">
//var startPosition;
//var endPosition;
$(&quot;#myQueryList tbody&quot;).sortable({
	cursor: &quot;move&quot;,
	/*start:function(event, ui){
		startPosition = ui.item.prevAll().length + 1;
	},*/
	update: function(event, ui) {
		//endPosition = ui.item.prevAll().length + 1;
		var szUUIDList = &quot;&quot;;
		$('#myQueryList input[name=uuidWhatever]').each(function(i){
			szUUIDList = szUUIDList + ',' + $(this).val();
		});
		$.getJSON('/path/to/handler.cfc', {
			method:'YourMethod',
			returnFormat:'JSON',
			listUUIDs:szUUIDList
		},
		function(data){
			if(data.intSuccess == 1){
				alert('Display order updated');
			} else {
				alert('Sorry, there was a problem updating the display order.');
			}
		});
 	 }
});
</pre>
<p>Hey presto, your datatable is now able to drag and drop!<br />
Simply have your handler CFC update the necessary database order with the order from the uuid list.</p>
<p>Example is just a simple html page showing the drag and drop enabled (alerts the start/end position) but you can easily hook into a database.<br />
<a href="http://www.jonathonjoyce.co.uk/examples/jquery-drag-drop-datatable/">Example Page</a> | <a href="http://www.jonathonjoyce.co.uk/examples/jquery-drag-drop-datatable.zip">Download Example</a></p>
<p>You may also want to to check out <a href="http://www.mccran.co.uk/index.cfm/2011/5/15/Combining-JQuery-Datatable-with-drag-and-drop-functions">this article by Shaun McCran</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathonjoyce.co.uk/2011/04/08/updating-datatables-display-orders-by-drag-and-drop/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Campaign Monitor CFC &#8211; Update 1.1</title>
		<link>http://www.jonathonjoyce.co.uk/2010/10/01/campaign-monitor-cfc-update-1-1/</link>
		<comments>http://www.jonathonjoyce.co.uk/2010/10/01/campaign-monitor-cfc-update-1-1/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 15:07:01 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[CampaignMonitor.cfc]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Campaign Monitor]]></category>
		<category><![CDATA[RIA Forge]]></category>

		<guid isPermaLink="false">http://www.jonathonjoyce.co.uk/?p=197</guid>
		<description><![CDATA[Just a quick post to let you know that i&#8217;ve just updated Campaign Monitor CFC on RiaForge to the latest version of the CFCs. The update includes 6 new functions for managing custom fields for lists and subscribers. Functions added: campaign-monitor.cfc &#8211; ListCustomFieldTypes lists.cfc &#8211; ListAddCustomField lists.cfc &#8211; ListCustomFields lists.cfc &#8211; ListDeleteCustomField subscribers.cfc &#8211; AddSubscriberCustomFields [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick post to let you know that i&#8217;ve just updated <a href="http://campaignmonitorcfc.riaforge.org/" target="_blank">Campaign Monitor CFC on RiaForge</a> to the latest version of the CFCs.</p>
<p>The update includes 6 new functions for managing custom fields for lists and subscribers. Functions added:</p>
<ul>
<li>campaign-monitor.cfc &#8211; ListCustomFieldTypes</li>
<li>lists.cfc &#8211; ListAddCustomField</li>
<li>lists.cfc &#8211; ListCustomFields</li>
<li>lists.cfc &#8211; ListDeleteCustomField</li>
<li>subscribers.cfc &#8211; AddSubscriberCustomFields</li>
<li>subscribers.cfc &#8211; AddResubscribeSubscriberCustomFields</li>
</ul>
<p>If anyone is using this wrapper, please can you provide some feedback / criticism etc etc? Please use my <a href="http://www.jonathonjoyce.co.uk/contact-me/">contact form</a> or via twitter, <a href="http://www.twitter.com/jonjoyce" target="_blank">@JonJoyce</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathonjoyce.co.uk/2010/10/01/campaign-monitor-cfc-update-1-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SOTR2010 &#8211; Links</title>
		<link>http://www.jonathonjoyce.co.uk/2010/05/26/scotch-on-the-rocks-links/</link>
		<comments>http://www.jonathonjoyce.co.uk/2010/05/26/scotch-on-the-rocks-links/#comments</comments>
		<pubDate>Wed, 26 May 2010 08:16:02 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[SOTR2010]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Coldfusion Community]]></category>
		<category><![CDATA[Mobile Development]]></category>
		<category><![CDATA[Railo]]></category>
		<category><![CDATA[Scotch on the Rocks]]></category>

		<guid isPermaLink="false">http://www.jonathonjoyce.co.uk/?p=87</guid>
		<description><![CDATA[Just a quick list of links to Presentations, Slides and Code examples all provided by the speakers from SOTR 2010. Keynote &#8211; Terry Ryan Coldfusion Application Framework &#8211; Ben Nadel HTML5 &#38; CSS3 &#8211; Chris Mills The art of emotional of design &#8211; Aral Balkan * Extending ColdFusion Builder &#8211; Raymond Camden Two CFBuilder Extensions [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick list of links to Presentations, Slides and Code examples all provided by the speakers from SOTR 2010.</p>
<ul>
<li>Keynote &#8211; Terry Ryan</li>
<li><a href="http://www.bennadel.com/blog/1933-Mastering-The-ColdFusion-Application-Framework.htm" target="_blank">Coldfusion Application Framework &#8211; Ben Nadel</a></li>
<li><a href="http://www.slideshare.net/chrisdavidmills/html5-and-css3-shizzle" target="_blank">HTML5 &amp; CSS3 &#8211; Chris Mills</a></li>
<li><a href="http://carsonified.com/blog/design/aral-balkan-at-future-of-web-design-london-on-emotional-design/" target="_blank">The art of emotional of design &#8211; Aral Balkan *</a></li>
<li><a href="http://www.coldfusionjedi.com/index.cfm/2010/5/24/Scotch-on-the-Rocks-Preso-and-Files" target="_blank">Extending ColdFusion Builder &#8211; Raymond Camden</a></li>
<li><a href="http://www.coldfusionjedi.com/index.cfm/2010/5/25/Two-CFBuilder-Extensions">Two CFBuilder Extensions &#8211; Raymond Camden</a></li>
<li><a href="http://www.slideshare.net/sjespers/mobile-revolution" target="_blank">Getting ready for the mobile revolution &#8211; Serge Jespers</a></li>
<li>Cloudy with a chance of Clustering &#8211; Mark Drew</li>
<li><a href="http://appgen.pbell.com/2010/05/06/webdu-productive-work-practices-deck/" target="_blank">Productive work environment / practices &#8211; Peter Bell **</a></li>
<li><a href="http://www.pomodorotechnique.com/" target="_blank">Pomodorro Technique</a></li>
<li>Advanced ORM &#8211; Terry Ryan</li>
<li><a href="http://www.aliaspooryorik.com/blog/index.cfm/e/posts.details/post/sql-to-hql-slides-from-scotch-on-the-rocks-265" target="_blank">SQL to HQL &#8211; John Whish</a></li>
<li><a href="http://www.bennadel.com/blog/1934-Applying-Twitter-s-API-Best-Practices-In-A-ColdFusion-Application.htm" target="_blank">Applying Twitter&#8217;s API &#8220;Best Practices&#8221; In A ColdFusion Application &#8211; Ben Nadel</a></li>
</ul>
<p>As you can see, this list is far from complete (only sessions i went to) but i&#8217;ll keep it updated when presentations go up! (Feel free to drop in a comment and i&#8217;ll add any other sessions&#8217; presentations or add new links when the become available).</p>
<p>* Video is actually from the Future of Web Design conference&#8230; but its the same presentation..<br />
** Video is actually from the WebDU conference</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathonjoyce.co.uk/2010/05/26/scotch-on-the-rocks-links/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>SOTR2010 &#8211; Day 2</title>
		<link>http://www.jonathonjoyce.co.uk/2010/05/25/scotch-on-the-rocks-day-2/</link>
		<comments>http://www.jonathonjoyce.co.uk/2010/05/25/scotch-on-the-rocks-day-2/#comments</comments>
		<pubDate>Tue, 25 May 2010 21:04:57 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[SOTR2010]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Air]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Coldfusion Community]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Mobile Development]]></category>
		<category><![CDATA[Railo]]></category>
		<category><![CDATA[Scotch on the Rocks]]></category>
		<category><![CDATA[Server Clustering]]></category>

		<guid isPermaLink="false">http://www.jonathonjoyce.co.uk/?p=85</guid>
		<description><![CDATA[So, unfortunately, Scotch on the Rocks is over for 2010! I&#8217;ve had a great couple of days, met a few people from Twitter that i often tweet, met a couple of my idols and learnt a hell of a lot about things going on in the ColdFusion world! So a brief rundown of the things [...]]]></description>
			<content:encoded><![CDATA[<p>So, unfortunately, Scotch on the Rocks is over for 2010! I&#8217;ve had a great couple of days, met a few people from Twitter that i often tweet, met a couple of my idols and learnt a hell of a lot about things going on in the ColdFusion world!</p>
<p>So a brief rundown of the things i&#8217;ve learnt/enjoyed at the second and final day&#8230;</p>
<h2><span style="font-weight: normal;">Get ready for the mobile revolution &#8211; Serge Jespers</span></h2>
<p><span style="font-weight: normal;">This session really has inspired me to get into mobile application development and look into learning flash/actionscript and flex. His session went into the changes of Flash and the upcoming release of Flash 10.1 (Full mobile version of Flash!) Must try and convince my boss to get us an Android for &#8220;development purposes&#8221;, preferably the Nexus One! I love the idea of writing Adobe Air apps for phones, and could benefit the company i work for a lot.</span></p>
<h2><span style="font-weight: normal;">AJAX is the answer to everything and we never need to worry again and life is full of unicorns! &#8211; Raymond Camden</span></h2>
<p><span style="font-weight: normal;">Rays session was another eye opener. It was more of a questions and answers session but it worked extremely well. It brought common ajax issues to  my attention, what to look out for, some tips for security etc.</span></p>
<h2><span style="font-weight: normal;">SQL to HQL &#8211; John Whish</span></h2>
<p><span style="font-weight: normal;">Johns presentation was also very inspiring, not bad for his first presentation either! HQL/Hibernate looks like a very interesting solution and a real time saver. Definately something to look at when we migrate to ColdFusion 9.0.1 when thats released. Although i&#8217;m slightly worried about performance in regard to using it for our high usage e-portfolio system.</span></p>
<h2><span style="font-weight: normal;">Cloudy with a chance of Caching and Clustering &#8211; Mark Drew</span></h2>
<p><span style="font-weight: normal;">This was the first time i&#8217;ve ever given any real thought to Railo. After seeing the backend panel and the options it gives you, it makes me wonder why Adobe is taking a lot of leaves from Railo&#8217;s book! What i really like was the clustering solution and the way that the instances all synchronise! Also the way you can run Railo using only Amazon web services sounds very very cool. Only pay what you use for. Great idea!</span></p>
<h2><span style="font-weight: normal;">Productive Work Environment / Practices &#8211; Peter Bell</span></h2>
<p><span style="font-weight: normal;">This session wasnt of much interest too myself but i do see what he was saying. Things like Launchers, Multiple Clipboard and Macro tools could indeed speed up my day and a few of the techniques could help keep myself motivated, in the right frame of mind and reduce distraction. Quite sceptical about the &#8216;Pomodorro Technique&#8217; though.</span></p>
<h2><span style="font-weight: normal;">Advanced ORM &#8211; Terry Ryan</span></h2>
<p><span style="font-weight: normal;">Terry&#8217;s speech was kind of an expansion of John Whish&#8217;s SQL to HQL session and provided a lot more incite to overall usage and limitations. Definitely a good idea to wait until 9.0.1 before i think about using it though. I do like how Adobe though of all of the common issues that could crop up and the easy work arounds for them!</span></p>
<p><span style="font-weight: normal;">All thats left to say really is a big thank you to all the Scotch on the Rocks team for putting on a great conference. Enjoyed it a lot and i&#8217;m glad it was my first conference. Hopefully see you all again next year!</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathonjoyce.co.uk/2010/05/25/scotch-on-the-rocks-day-2/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>SOTR &#8211; Day 1</title>
		<link>http://www.jonathonjoyce.co.uk/2010/05/24/scotch-on-the-rocks-day-1/</link>
		<comments>http://www.jonathonjoyce.co.uk/2010/05/24/scotch-on-the-rocks-day-1/#comments</comments>
		<pubDate>Mon, 24 May 2010 19:08:04 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[SOTR2010]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Coldfusion Community]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[HQL]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Scotch on the Rocks]]></category>

		<guid isPermaLink="false">http://www.jonathonjoyce.co.uk/?p=81</guid>
		<description><![CDATA[A brief overview of what i&#8217;ve learnt / taken away from day one of Scotch on the Rocks. Adobe Keynote &#8211; Terry Ryan The keynote for me was very interesting, Terry Ryan gave a brief overview of new bits and pieces of ColdFusion 9 including ORM which i think i definately need to look into [...]]]></description>
			<content:encoded><![CDATA[<p>A brief overview of what i&#8217;ve learnt / taken away from day one of Scotch on the Rocks.</p>
<h2>Adobe Keynote &#8211; Terry Ryan</h2>
<p>The keynote for me was very interesting, Terry Ryan gave a brief overview of new bits and pieces of ColdFusion 9 including ORM which i think i definately need to look into and learn. He also mentioned things about ColdFusion 9.0.1, such things as fuller cfscript support and also mentioned a &#8216;top secret&#8217; development, Amazon S3 support, which could be extremely handy!</p>
<h2>Mastering the ColdFusion Application Framework &#8211; Ben Nadel</h2>
<p>Ben Nadel never ceases to amaze me. His blog always comes up with a solution when i google for some help and he delivers yet again. Ben went through many of the common issues of the application.cfc file usage, as well as pointing out solutions to application.cfc issues. Cant wait to read his blog posts / get hold of his examples!</p>
<h2>A whistlestop tour of HTML5 and CSS3 &#8211; Chris Mills</h2>
<p>Chris Mills from Opera gave a really great presentation of the upcoming changes in the web development world in regard to HTML5 and CSS3. He expanded on what i already new about the new canvas / video / audio tags as well as explained the changes to the semantics of the html4 documents such as the new header, footer, nav tags etc.</p>
<h2>How Catalyst Will Transform The ColdFusion Developer &#8211; Terry Ryan</h2>
<p>Again Terry Ryan gave a great presentation on the the Adobe Catalyst product, sadly i dont think this is something that will ever affect me but was interesting to see the work flows between design, catalyst, flex/flash builder etc. As well as his &#8216;Apptastic&#8217; ColdFusion Builder extension, which makes generating a skeleton app from just a datasource!</p>
<h2>The Art of Emotional Design: A story of pleasure, joy, and delight &#8211; Aral Balkan</h2>
<p>Aral Balkan has presentations down to a pat. What a great presentation it was as well! He started off by talking about his infamous &#8216;<a href="http://aralbalkan.com/1864" target="_blank">ColdFusion is dead</a>&#8216; blog post and explaining his reasons for it. I&#8217;m sure this was well received within the community. He then went on to explain the reasonings for user friendly design, putting the user first and lots of other &#8216;delighters&#8217;.</p>
<h2>Supercharge your ColdFusionBuilder &#8211; Ray Camden</h2>
<p>Again, Ray Camdens blog has also been of great help to myself during my learning, and even Ray himself has been kind enough to point me in the right direction on a few occasions! His presentation was mainly to do with Snippets and Extensions within ColdFusionBuilder. It was great being shown examples of extensions, being told the pitfalls that CFBuilder has, oddities, features, what to do, what not to do etc. Great! Must use ColdFusion builder more!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathonjoyce.co.uk/2010/05/24/scotch-on-the-rocks-day-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SOTR2010 – Sessions</title>
		<link>http://www.jonathonjoyce.co.uk/2010/05/23/scotch-on-the-rocks-sessions/</link>
		<comments>http://www.jonathonjoyce.co.uk/2010/05/23/scotch-on-the-rocks-sessions/#comments</comments>
		<pubDate>Sun, 23 May 2010 17:27:21 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[SOTR2010]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Catalyst]]></category>
		<category><![CDATA[Coldfusion Builder]]></category>
		<category><![CDATA[Coldfusion Community]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HQL]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Scotch on the Rocks]]></category>
		<category><![CDATA[Server Clustering]]></category>

		<guid isPermaLink="false">http://www.jonathonjoyce.co.uk/?p=78</guid>
		<description><![CDATA[Just a post of the sessions i&#8217;m really looking forward to for this years Scotch on the Rocks! Monday Mastering the ColdFusion Application Framework &#8211; Ben Nadel A whistlestop tour of HTML5 and CSS3 &#8211; Chris Mills How Catalyst Will Transform The ColdFusion Developer &#8211; Terry Ryan The Art of Emotional Design: A story of [...]]]></description>
			<content:encoded><![CDATA[<p>Just a post of the sessions i&#8217;m really looking forward to for this years <a href="http://scotch-on-the-rocks.co.uk/" target="_blank">Scotch on the Rocks!</a></p>
<h2>Monday</h2>
<ul>
<li>Mastering the ColdFusion Application Framework &#8211; Ben Nadel</li>
<li>A whistlestop tour of HTML5 and CSS3 &#8211; Chris Mills</li>
<li>How Catalyst Will Transform The ColdFusion Developer &#8211; Terry Ryan</li>
<li>The Art of Emotional Design: A story of pleasure, joy, and delight &#8211; Arai Balkan</li>
<li>Supercharge your ColdFusionBuilder &#8211; Ray Camden</li>
</ul>
<h2>Tuesday</h2>
<ul>
<li>Get ready for the mobile revolution &#8211; Serge Jespers</li>
<li>AJAX is the answer to everything and we never need to worry again and life is full of unicorns! &#8211; Ray Camden</li>
<li>SQL to HQL &#8211; John Whish</li>
<li>Cloudy with a chance of Caching and Clustering &#8211; Mark Drew</li>
<li>Productive Work Environment / Practices &#8211; Peter Bell</li>
<li>Applying Twitter&#8217;s API &#8220;Best Practices&#8221; In A ColdFusion Application &#8211; Ben Nadel</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathonjoyce.co.uk/2010/05/23/scotch-on-the-rocks-sessions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scotch on the Rocks 2010</title>
		<link>http://www.jonathonjoyce.co.uk/2010/05/11/scotch-on-the-rocks-2010/</link>
		<comments>http://www.jonathonjoyce.co.uk/2010/05/11/scotch-on-the-rocks-2010/#comments</comments>
		<pubDate>Tue, 11 May 2010 08:46:25 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[SOTR2010]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Coldfusion Community]]></category>
		<category><![CDATA[Scotch on the Rocks]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.jonathonjoyce.co.uk/?p=75</guid>
		<description><![CDATA[I must say, with less than 2 weeks to go until Scotch on the Rocks 2010, i&#8217;m getting very excited! I&#8217;ve only been working with ColdFusion for the past 2 years or so and its quite easily changed my life. I was incredibly lucky to get a job at Frontmedia in 2008 and they started [...]]]></description>
			<content:encoded><![CDATA[<p>I must say, with less than 2 weeks to go until <a title="Scotch on the Rocks, ColdFusion Conference" href="http://www.scotch-on-the-rocks.co.uk/" target="_blank">Scotch on the Rocks 2010</a>, i&#8217;m getting very excited!</p>
<p>I&#8217;ve only been working with ColdFusion for the past 2 years or so and its quite easily changed my life. I was incredibly lucky to get a job at <a href="http://www.frontmedia.co.uk" target="_blank">Frontmedia</a> in 2008 and they started me down the right track. Since then i&#8217;ve changed jobs and work for <a href="http://www.learningassistant.com/" target="_blank">Learning Assistant</a>, its a gream team here and they&#8217;ve introduced me to the likes of jQuery, ajax, flex and greatly extending my SQL and ColdFusion knowledge!</p>
<p>Since joining <a href="http://www.learningassistant.com/" target="_blank">Learning Assistant</a>, i&#8217;ve been getting involved with the ColdFusion Community a lot more on Twitter and i must say, the community is brilliant! Whenever i&#8217;ve had issues with ColdFusion, i&#8217;ve done some Google&#8217;ing and usually found a solution of one of the commnuity members&#8217; blogs, especially my personal favourite, <a href="http://www.coldfusionjedi.com" target="_blank">Ray Camdens blog</a>. If i havent been able to find a solution, tweet it and i have suggestions it minutes. Its great to know such a friendly bunch of guys (and girls!).</p>
<p>Scotch on the Rocks for me is a chance for me to finally meet the guys i&#8217;ve been tweeting, my ColdFusion heroes (yes it may be corny but a fair few developers out there have inspired me to want to be a better developer!) and to have fun and learn a lot more about the technologies and aspects of ColdFusion that i have no clue about!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathonjoyce.co.uk/2010/05/11/scotch-on-the-rocks-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CampaignMonitor.cfc</title>
		<link>http://www.jonathonjoyce.co.uk/2009/12/09/campaignmonitor-cfc/</link>
		<comments>http://www.jonathonjoyce.co.uk/2009/12/09/campaignmonitor-cfc/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 15:46:36 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[CampaignMonitor.cfc]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Campaign Monitor]]></category>
		<category><![CDATA[CFC]]></category>

		<guid isPermaLink="false">http://www.jonathonjoyce.co.uk/?p=41</guid>
		<description><![CDATA[After a recent project at work involving some work with Campaign Monitor i&#8217;ve decided to build a ColdFusion based wrapper / cfc to go with there API. (I couldnt find any other previous attempts at it!) I&#8217;m still wondering whether i should create a simple CFC for just listing / getting information, another for adding [...]]]></description>
			<content:encoded><![CDATA[<p>After a recent project at work involving some work with <a href="http://www.campaignmonitor.com" target="_blank">Campaign Monitor</a> i&#8217;ve decided to build a ColdFusion based wrapper / cfc to go with there API. (I couldnt find any other previous attempts at it!)</p>
<p>I&#8217;m still wondering whether i should create a simple CFC for just listing / getting information, another for adding and sending campaigns or just bundle it all together in one big set? Any ideas?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathonjoyce.co.uk/2009/12/09/campaignmonitor-cfc/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>

