<?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>Ja.mesBrown JavaScript and Web Development</title>
	<atom:link href="http://ja.mesbrown.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ja.mesbrown.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Wed, 16 May 2012 13:30:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Obtain or Check Which jQuery Version</title>
		<link>http://ja.mesbrown.com/2012/05/obtain-check-jquery-version/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=obtain-check-jquery-version</link>
		<comments>http://ja.mesbrown.com/2012/05/obtain-check-jquery-version/#comments</comments>
		<pubDate>Wed, 16 May 2012 13:30:40 +0000</pubDate>
		<dc:creator>James Brown</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Quick Tip]]></category>

		<guid isPermaLink="false">http://ja.mesbrown.com/?p=151</guid>
		<description><![CDATA[If you need to check which version of jQuery you are running (think Firebug or possibly), you can check the version using the following: or use the shortcut Also, if you are loading multiple versions of jQuery on your page and need to verify, you can also use the property:]]></description>
			<content:encoded><![CDATA[<p>If you need to check which version of jQuery you are running (think Firebug or possibly), you can check the version using the following:</p>
<pre class="brush: jscript; title: ; notranslate">
jQuery.fn.jquery
</pre>
<p>or use the shortcut</p>
<pre class="brush: jscript; title: ; notranslate">
$.fn.jquery
</pre>
<p>Also, if you are loading multiple versions of jQuery on your page and need to verify, you can also use the property:</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js&quot;&gt;&lt;/script&gt;

&lt;script language='JavaScript'&gt;
	var $_144 = jQuery.noConflict(true);
&lt;/script&gt;

&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js&quot;&gt;&lt;/script&gt;

&lt;script language='JavaScript'&gt;
	var $_171 = jQuery.noConflict(true);

	console.log($_144.fn.jquery);   //   &quot;1.4.4&quot;
	console.log($_171.fn.jquery);   //   &quot;1.7.1&quot;
&lt;/script&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://ja.mesbrown.com/2012/05/obtain-check-jquery-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe ColdFusion 10 Released &#8211; Videos</title>
		<link>http://ja.mesbrown.com/2012/05/adobe-coldfusion-10-released/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=adobe-coldfusion-10-released</link>
		<comments>http://ja.mesbrown.com/2012/05/adobe-coldfusion-10-released/#comments</comments>
		<pubDate>Tue, 15 May 2012 03:40:50 +0000</pubDate>
		<dc:creator>James Brown</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ja.mesbrown.com/?p=142</guid>
		<description><![CDATA[Naturally, AdobeTV already has videos about the new features: ColdFusion 10 Features and Benefits ColdFusion 10 Deep-Dives for Developers &#160; If you want to find out what&#8217;s new, watch this video: &#160;]]></description>
			<content:encoded><![CDATA[<p>Naturally, AdobeTV already has videos about the new features:</p>
<p><a href="http://tv.adobe.com/show/coldfusion-10-features-and-benefits/">ColdFusion 10 Features and Benefits</a></p>
<div><a href="http://tv.adobe.com/show/coldfusion-10-deep-dives-for-developers/">ColdFusion 10 Deep-Dives for Developers</a></div>
<div></div>
<p>&nbsp;</p>
<p>If you want to find out what&#8217;s new, watch this video:</p>
<p>&nbsp;</p>
<p><iframe title="AdobeTV Video Player" src="http://tv.adobe.com/embed/991/12583/" frameborder="0" scrolling="no" width="515" height="296"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://ja.mesbrown.com/2012/05/adobe-coldfusion-10-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adventures in Mockjax</title>
		<link>http://ja.mesbrown.com/2012/04/adventures-in-mockjax/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=adventures-in-mockjax</link>
		<comments>http://ja.mesbrown.com/2012/04/adventures-in-mockjax/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 23:02:47 +0000</pubDate>
		<dc:creator>James Brown</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://ja.mesbrown.com/?p=133</guid>
		<description><![CDATA[If you are developing web applications that utilize Ajax (and most do today) and are using jQuery and/or Backbone.js, you should be building with mock Ajax JSON responses. You can view the code on Github: https://github.com/ibjhb/mockjaxExample  or the examples: http://ibjhb.github.com/mockjaxExample/ Reasons to Mock Ajax Servers are slow / Rapid Iteration When developing against a local server, the ...]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: medium;">If you are developing web applications that utilize Ajax (and most do today) and are using jQuery and/or Backbone.js, you should be building with mock Ajax JSON responses.</span></p>
<p>You can view the code on Github: <a href="https://github.com/ibjhb/mockjaxExample">https://github.com/ibjhb/mockjaxExample</a>  or the examples: <a href="http://ibjhb.github.com/mockjaxExample/">http://ibjhb.github.com/mockjaxExample/</a></p>
<h1>Reasons to Mock Ajax</h1>
<h3>Servers are slow / Rapid Iteration</h3>
<p>When developing against a local server, the ajax response will typically 100-300 milliseconds, but could even be longer. If you are developing against a remote end-point, you could see varying response times that could even be 500 milliseconds to over a second. If you are trying to quickly develop an application that takes one second per response, it is going to take a while and you are going to get frustrated and/or bored. The faster the response time, the faster you can develop.</p>
<h3>Endpoints Unavailable or Developing on an Airplane</h3>
<p>There are a number of reasons that an API endpoint could be unavailable and inevitably, it will be when you want to work on your application. This can be very frustrating and could even cause you to miss a deadline. Additionally, if you are at a location or on an airplane that doesn&#8217;t supply WiFi, mocking Ajax responses would allow you to continue working.</p>
<h3>Undeveloped Endpoints</h3>
<p>If you are working in a team, or even on your own project, and the server-side code isn&#8217;t completed yet, Ajax mocking would allow you to complete the front-end code before the back-end is complete. Additionally, it allows you and whoever is developing the API to agree upon JSON response structures to ensure they don&#8217;t change unexpectedly during development.</p>
<h3>Unit Testing</h3>
<p>After rapid iteration, unit testing is probably the number one reason for mocking. The same mocks you use to develop your application become the &#8216;stone copies&#8217; of your responses and objects in your unit tests. If you try to unit test against a live server, or even a unit test server, it is very possible that the data you expect isn&#8217;t the data that is returned. This could cause your unit test assertions to fail, even though the code is technically working properly. Mocking prevents this problem.</p>
<h3>Slow or Unavailable Server Simulation</h3>
<p>How does your application handle a slow or unavailable remote server? Without mocking, this would be difficult to handle consistently, especially if you don&#8217;t control the end-point. When mocking, you can control the response delay and intentionally simulate a slow or unavailable server reliably.</p>
<h1>Introducing Mockjax</h1>
<p style="font-size: medium;">AppendTo&#8217;s Mockjax is a simple but powerful interface for simulating ajax responses. Below, we will explore different uses cases of the library.</p>
<p style="font-size: medium;"><span id="more-133"></span></p>
<h3>Simple Example</h3>
<p>In this example, we&#8217;re going to setup the most basic mock. If you run the code in example one, you&#8217;ll notice it outputs &#8216;Your beer today is Sam Adams&#8217;. If you open Firebug or the console. you&#8217;ll notice that Mockjax has logged: &#8216;MOCK GET: /api/beer/random&#8217;. This lets us know we&#8217;re mocking, so we don&#8217;t forget if we&#8217;re debugging in the future.</p>
<div class="logRow logRow-log"></div>
<pre class="brush: jscript; title: ; notranslate">
$.mockjax({
	url: '/api/beer/random',
	responseTime: 150,
	responseText: {
		success        : true
		,beerName       : 'Sam Adams'
	}
});

$.getJSON('/api/beer/random', function(resp){
	var html = (resp.success) ? 'Your random beer is ' + resp.beerName : 'No beer today';
	$('#content').html(html);
});
</pre>
<h3>URL Matching</h3>
<p><span style="font-size: 12px;">Mockjax allows for three ways to define the URL:<br />
</span></p>
<ul>
<li>Direct matching (seen above in the Simple Example)</li>
<li>Wildcards (notice the &#8220;*&#8221; in the URL)
<pre class="brush: jscript; title: ; notranslate">
$.mockjax({
	url: '/api/beer/*',
});
</pre>
</li>
<li>Regular Expressions (this would match &#8216;/api/beer&#8217; and &#8216;/api/wine&#8217; but not &#8216;/api/cheese&#8217;)
<pre class="brush: jscript; title: ; notranslate">
$.mockjax({
	url: /^\/api\/(beer|wine)$/i
});
</pre>
</li>
</ul>
<h3>Advanced Callback Responses</h3>
<p>Mockjax also allows you to specify a callback response instead of a specific responseText. This allows us to define the response programmatically. To view the functional example, view the Callback Response Example.</p>
<pre class="brush: jscript; title: ; notranslate">
$.mockjax(function(settings){
	// Try to match our API URL string
	var service = settings.url.match(/\/api\/beer\/get\/(.*)$/i);

	// If we find a match, handle the response
	if (service) {

		// Convert the string to a number
		var beer_id = Number(service[1]);

		// JavaScript counts from 0
		var response = ibjhb.mock.beer[beer_id - 1];

		// If the response doesn't exist, defer to making an ajax,
		// otherwise create our return JSON packet to be returned
		return (typeof response === 'undefined')
			? undefined
			: 	{
					responseText : {
						 success 	: true
						,beer		: response
					}
				}
	}
	return;
});
</pre>
<p>If you read through the JavaScript comments, you&#8217;ll get an idea of this more complex example.</p>
<h3>Latency Simulations</h3>
<p>With Mockjax, we can also simulate slow servers. You can add a &#8216;responseTime&#8217; property to the function call:</p>
<pre class="brush: jscript; title: ; notranslate">
$.mockjax({
	url: '/api/beer/random'
	,responseTime: 5000  // 5 seconds
	,responseText: 'Text from a slow server'
});
</pre>
<p>This example would wait five seconds before returning a response. Be sure to specify the value in milliseconds.</p>
<h3>HTTP Response Status Simulations</h3>
<p>We can also simulate an error from the server:</p>
<pre class="brush: jscript; title: ; notranslate">
$.mockjax({
       url: '/api/beer/random',
       responseTime: 750
       ,status: 500   // Simulate 500 error
       ,responseText: 'Text from a slow server'
});
</pre>
<p><span style="font-family: Helvetica; white-space: normal;">We can also simulate a server timeout:</span></p>
<pre class="brush: jscript; title: ; notranslate">
$.mockjax({
	url: '/api/beer/random',
	isTimeout: true
});
</pre>
<h1>Conclusion</h1>
<p>As you can see, Mockjax is a powerful library that can speed up your development. Be sure to check out the full feature set on <a href="https://github.com/appendto/jquery-mockjax">Github</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ja.mesbrown.com/2012/04/adventures-in-mockjax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speaking at Front End Conference</title>
		<link>http://ja.mesbrown.com/2012/03/speaking-at-front-end-conference/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=speaking-at-front-end-conference</link>
		<comments>http://ja.mesbrown.com/2012/03/speaking-at-front-end-conference/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 13:00:37 +0000</pubDate>
		<dc:creator>James Brown</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ja.mesbrown.com/?p=121</guid>
		<description><![CDATA[I was just confirmed as a speaker on Day 2 of the Front End Design Conference. If you haven&#8217;t attended this conference previously, it is one of the best conferences in the industry. Day 1 is at the Palladium Theater and is a great venue! Day 2&#8242;s location hasn&#8217;t been announce but if it&#8217;s anything ...]]></description>
			<content:encoded><![CDATA[<p>I was just confirmed as a speaker on Day 2 of the <a href="http://frontenddesignconference.com/">Front End Design Conference</a>.  If you haven&#8217;t attended this conference previously, it is one of the best conferences in the industry.  Day 1 is at the Palladium Theater and is a great venue!  Day 2&#8242;s location hasn&#8217;t been announce but if it&#8217;s anything like last year, it will be an awesome day of presentations, in and of itself.</p>
<p>Day 2&#8242;s presentations are only 15 minutes.  I&#8217;ll be talking quickly but I&#8221;ll be presenting on the following:</p>
<p>We will explore different techniques and methods to speed up your mobile and desktop web applications. Consumers and end-users have come to expect pages to load quickly and be responsive. Research shows that our brains can perceive time around 100 millisecond intervals and those intervals can add up if you have bottlenecks in your page load times or the responsiveness of the pages is poor once they are loaded. We are going to look at techniques you will be able to implement immediately to speed up both the actual and perceived experience of your site. This session will cover some server techniques but primarily focus on client-side technologies. We will explore real-world mobile use-cases and demonstrate various tools you can use today. </p>
<p>Are you attending the Front End Design Conference?  Leave me a comment below!</p>
]]></content:encoded>
			<wfw:commentRss>http://ja.mesbrown.com/2012/03/speaking-at-front-end-conference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exploring Backbone.Mutators Plugin</title>
		<link>http://ja.mesbrown.com/2012/03/exploring-backbone-mutators-plugin/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=exploring-backbone-mutators-plugin</link>
		<comments>http://ja.mesbrown.com/2012/03/exploring-backbone-mutators-plugin/#comments</comments>
		<pubDate>Sat, 24 Mar 2012 13:10:45 +0000</pubDate>
		<dc:creator>James Brown</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://ja.mesbrown.com/?p=94</guid>
		<description><![CDATA[I recently came across a Backbone.js plugin called Backbone.Mutators. It&#8217;s an awesome but simple design pattern to utilize in your applications and the minified library is pretty small. By including this library in your application, you can adhere to a standard method of retrieving properties out of Backbone models. For instructions or examples on how ...]]></description>
			<content:encoded><![CDATA[<p>I recently came across a Backbone.js plugin called <a href="https://github.com/asciidisco/Backbone.Mutators">Backbone.Mutators</a>. It&#8217;s an awesome but simple design pattern to utilize in your applications and the minified library is pretty small. By including this library in your application, you can adhere to a standard method of retrieving properties out of Backbone models. For instructions or examples on how include the library in your project, either view the <a href="https://github.com/asciidisco/Backbone.Mutators/blob/master/README.md">README.md</a> or clone <a href="https://github.com/ibjhb/Exploring-Backbone.Mutators">my repo</a>. Below are some examples exploring <a href="https://github.com/asciidisco/Backbone.Mutators">Backbone.Mutators</a>.</p>
<p>If you clone the <a href="http://github.com/ibjhb/Exploring-Backbone.Mutators">Exploring-Backbone.Mutators</a> repository, you can view and run unit tests for each the below examples.</p>
<p>For our examples, we&#8217;ll model our data on Major League Baseball (MLB) and their teams/players.</p>
<p>We&#8217;ll start with a real basic example:</p>
<pre class="brush: jscript; title: ; notranslate">
ibjhb.mvc.model.Team = Backbone.Model.extend({
	initialize                        : function(model) {
		return this;
	}
	,mutators                        : {
		teamName                : function(){
			return this.city + ' ' + this.nickname;
		}
	}
});

var team =  new window.ibjhb.mvc.model.Team({
	 city                : 'Tampa Bay'
	,nickname            : 'Rays'
});

team.get('teamName')   // New York Yankees
</pre>
<p>This example is very basic but it demonstrates the use of get() instead of creating functions like team.getTeamName();. This may not seem like a big change, but when using in an application or unit testing, it&#8217;s a huge difference.</p>
<p>In our next example, we&#8217;ll calculate and return the batting average of a player:</p>
<pre class="brush: jscript; title: ; notranslate">
ibjhb.mvc.model.Player = Backbone.Model.extend({
	initialize                        : function(model) {
		return this;
	}
	,mutators                        : {
		battingAverage        : function(){
			var multiple = Math.pow(10, 3);
			return (Math.round((this.hits / this.at_bats) * multiple) / multiple);
		}
	}
});

var player = new window.ibjhb.mvc.model.Player({
	 name                : 'Evan Longoria'
	,at_bats             : 55
	,hits                : 14
});

player.get('battingAverage');     // .255
</pre>
<p>This value corresponds to the <a href="http://tampabay.rays.mlb.com/stats/sortable.jsp?c_id=tb">Evan&#8217;s statistics</a>.</p>
<p>In our final example, we&#8217;re going to convert the player object to JSON using the Backbone.js toJSON() function:</p>
<pre class="brush: jscript; title: ; notranslate">
ibjhb.mvc.model.Player = Backbone.Model.extend({
	initialize                        : function(model) {
		return this;
	}
	,mutators                        : {
		battingAverage        : function(){
			var multiple = Math.pow(10, 3);
			return (Math.round((this.hits / this.at_bats) * multiple) / multiple);
		}
	}
});

var player = new window.ibjhb.mvc.model.Player({
	 name                : 'Evan Longoria'
	,at_bats             : 55
	,hits                : 14
});
console.log(player.toJSON());
</pre>
<p>When you view your console log, you&#8217;ll see the &#8216;battingAverage&#8217; property is included:</p>
<pre class="brush: jscript; title: ; notranslate">
{
	 name                           : 'Evan Longoria'
	,at_bats                        : 55
	,hits                           : 14
	,battingAverage                 : 0.255
}
</pre>
<p>This is very cool! This is where some of the power of the library is apparent. When you put this returned value under unit test, you can test a large number of values very quickly.</p>
<p>If you&#8217;ve been using Backbone.js at all, these examples are relatively simple but if you use this library, they illustrate a shift in how you design your models. I&#8217;m going to start using it in all my projects.</p>
]]></content:encoded>
			<wfw:commentRss>http://ja.mesbrown.com/2012/03/exploring-backbone-mutators-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scubaman Adobe TV Embed Test</title>
		<link>http://ja.mesbrown.com/2012/02/scubaman-adobe-tv-embed-test/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=scubaman-adobe-tv-embed-test</link>
		<comments>http://ja.mesbrown.com/2012/02/scubaman-adobe-tv-embed-test/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 17:36:37 +0000</pubDate>
		<dc:creator>James Brown</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ja.mesbrown.com/?p=32</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe title="AdobeTV Video Player" width="480" height="296" src="http://tv.adobe.com/embed/28/5835/" frameborder="0" allowfullscreen scrolling="no"></iframe></p>
<p><iframe title="AdobeTV Video Player" width="515" height="296" src="http://office.v4.tv.adobe.com/embed/0/8426/" frameborder="0" allowfullscreen scrolling="no"></iframe> </p>
]]></content:encoded>
			<wfw:commentRss>http://ja.mesbrown.com/2012/02/scubaman-adobe-tv-embed-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backbone.js 0.9.0 Released</title>
		<link>http://ja.mesbrown.com/2012/02/backbone-js-0-9-0-released/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=backbone-js-0-9-0-released</link>
		<comments>http://ja.mesbrown.com/2012/02/backbone-js-0-9-0-released/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 16:54:00 +0000</pubDate>
		<dc:creator>James Brown</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.coldfusioning.com/index.cfm/2012/2/1/Backbonejs-090-Released</guid>
		<description><![CDATA[Yesterday, Backbone.js 0.9.0 was released. If you&#8217;d like to know what changed, you can view the Changelog. NOTE: You must use Underscore.js > 1.3.1 with this Backbone.js update I just dropped the new library into my favorite video website and ran our client-side unit tests. It did not go well. It looks like there will ...]]></description>
			<content:encoded><![CDATA[<p>				Yesterday, <a href="http://documentcloud.github.com/backbone/">Backbone.js 0.9.0</a> was released.  If you&#8217;d like to know what changed, you can view <a href="http://documentcloud.github.com/backbone/#changelog">the Changelog</a>.</p>
<p>NOTE:  You must use <a href="http://documentcloud.github.com/underscore/">Underscore.js</a> > 1.3.1 with this Backbone.js update</p>
<p>I just dropped the new library into <a href="http://tv.adobe.com/">my favorite video</a> website and ran our client-side unit tests.  It did not go well.  It looks like there will be some work done before implementing this release.  Around half of the tests failed.</p>
<p>This new version looks like a great update and it is exciting that Backbone.js is nearing a 1.0 release.  However, this isn&#8217;t a minor upgrade and it is not backwards compatible. </p>
]]></content:encoded>
			<wfw:commentRss>http://ja.mesbrown.com/2012/02/backbone-js-0-9-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript QuickTip : Pass hashMap vs Argument List</title>
		<link>http://ja.mesbrown.com/2011/12/javascript-quicktip-pass-hashmap-vs-argument-list/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=javascript-quicktip-pass-hashmap-vs-argument-list</link>
		<comments>http://ja.mesbrown.com/2011/12/javascript-quicktip-pass-hashmap-vs-argument-list/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 04:42:23 +0000</pubDate>
		<dc:creator>James Brown</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Quick Tip]]></category>

		<guid isPermaLink="false">http://ja.mesbrown.com/?p=20</guid>
		<description><![CDATA[When passing arguments, a single hashMap is MUCH easier to deal with than a list of arguments.]]></description>
			<content:encoded><![CDATA[<p>When passing arguments, a single hashMap is MUCH easier to deal with than a list of arguments.</p>
]]></content:encoded>
			<wfw:commentRss>http://ja.mesbrown.com/2011/12/javascript-quicktip-pass-hashmap-vs-argument-list/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Building Lightning Fast Mobile &amp; Desktop Web Applications Presentation</title>
		<link>http://ja.mesbrown.com/2011/09/building-lightning-fast-mobile-desktop-web-applications-presentation/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=building-lightning-fast-mobile-desktop-web-applications-presentation</link>
		<comments>http://ja.mesbrown.com/2011/09/building-lightning-fast-mobile-desktop-web-applications-presentation/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 00:14:00 +0000</pubDate>
		<dc:creator>James Brown</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.coldfusioning.com/index.cfm/2011/9/17/Building-Lightning-Fast-Mobile--Desktop-Web-Applications-Presentation</guid>
		<description><![CDATA[I gave a presentation at NCDevCon 2011 on &#8220;Building Lightning Fast Mobile &#038; Desktop Web Applications&#8221;. If you missed the presentation, they have posted the presentation online! You can view it anytime but it does require Microsoft Silverlight: View Online Though the slides are in the video, if you don&#8217;t have Silverlight installed, I&#8217;m including ...]]></description>
			<content:encoded><![CDATA[<p>				I gave a presentation at NCDevCon 2011 on &#8220;Building Lightning Fast Mobile &#038; Desktop Web Applications&#8221;.  If you missed the presentation, they have posted the presentation online!  You can view it anytime but it does require Microsoft Silverlight:  <a href="http://textiles.online.ncsu.edu/online/Viewer/?peid=338b3dad14034e199a20395d142fe44c1d">View Online</a></p>
<p>Though the slides are in the video, if you don&#8217;t have Silverlight installed, I&#8217;m including the slides in a PDF.  Also, the presentation description is:</p>
<p>In this session we are going to explore different techniques and methods to speed up your mobile and desktop web applications and websites. Consumers and end-users have come to expect pages to load quickly and be responsive. Research shows that our brains can perceive time around 100 millisecond intervals and those intervals can add up if you have bottlenecks in your page load times or the responsiveness of the pages is poor once they are loaded. We are going to look at techniques you will be able to implement immediately to speed up both the actual and perceived experience of your site. This session will cover both server and client-side technologies. We will explore desktop and mobile use-cases and demonstrate various tools you can use today. This session will utilize ColdFusion and Backbone.js but concepts will apply to all web applications. </p>
]]></content:encoded>
			<wfw:commentRss>http://ja.mesbrown.com/2011/09/building-lightning-fast-mobile-desktop-web-applications-presentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.coldfusioning.com/enclosures/Lightning Fast - NCDevCon.pdf" length="6290487" type="" />
		</item>
		<item>
		<title>I&#8217;m speaking at NCDevCon 2011!</title>
		<link>http://ja.mesbrown.com/2011/08/im-speaking-at-ncdevcon-2011/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=im-speaking-at-ncdevcon-2011</link>
		<comments>http://ja.mesbrown.com/2011/08/im-speaking-at-ncdevcon-2011/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 18:29:00 +0000</pubDate>
		<dc:creator>James Brown</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.coldfusioning.com/index.cfm/2011/8/4/Im-speaking-at-NCDevCon-2011</guid>
		<description><![CDATA[I am very honored to have been selected to speak at NCDevCon 2011! The event is September 17-18th, 2011. If you&#8217;d like to come hear me (or these other great speakers ) be sure not to miss this event. My topic is &#8220;Building lightning fast mobile &#038; desktop web applications&#8221;. We&#8217;ll be exploring different techniques ...]]></description>
			<content:encoded><![CDATA[<p>				I am very honored to have been selected to speak at NCDevCon 2011!  The event is September 17-18th, 2011.  If you&#8217;d like to come hear me (or <a href="http://www.ncdevcon.com/post.cfm/ncdevcon-2011-speaker-topic-list">these other great speakers</a> ) be sure not to miss this event.  My topic is &#8220;Building lightning fast mobile &#038; desktop web applications&#8221;.  We&#8217;ll be exploring different techniques to build extremely fast and responsive web applications.  We&#8217;ll also look at Backbone.js and using it to build Single Page Web Applications (SPWA).  </p>
<p>If there is anything specific you&#8217;d like me to address or specifically speak on, either related to &#8216;lightning  fast mobile &#038; desktop web applications&#8221; or Backbone.js specifically, let me know in the comments below.</p>
<p>See you in Raleigh, NC on September 17 &#8211; 18, 2011!</p>
<p><a href="http://www.ncdevcon.com/"><img src="http://www.coldfusioning.com/images/posts/NCDevCon.jpg" border="0"></a> </p>
]]></content:encoded>
			<wfw:commentRss>http://ja.mesbrown.com/2011/08/im-speaking-at-ncdevcon-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

