<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
	<channel>
		<title>gdp's Comments</title>
		<language>en-us</language>
		<link>https://www.intensedebate.com/users/371292</link>
		<description>Comments by Jim Cowart</description>
<item>
<title>Incremental Thought : When life gives you class vi rapids&hellip;</title>
<link>http://incrementalthought.com/?p=461#IDComment169360155</link>
<description>Steve - I&amp;#039;m trying to work in time for reflection on so many levels - even problem solving at work. I saw a great video recently  &lt;a href=&quot;http:// &lt;a href=&quot;http://(http://bit.ly/mOCZpW)&quot;&quot; target=&quot;_blank&quot;&gt;(http://bit.ly/mOCZpW)&quot;&lt;/a&gt; target=&quot;_blank&quot;&gt; &lt;a href=&quot;http://(http://bit.ly/mOCZpW)&lt;/a&gt;&quot; target=&quot;_blank&quot;&gt;(http://bit.ly/mOCZpW)&lt;/a&gt;&lt;/a&gt; by the creator of a recent language called Clojure - in which he challenges his audience (of guys like me) &amp;quot;When was the last time spent an hour thinking about a problem? Or a day? Or week?&amp;quot; I&amp;#039;ve been making the habit at work to step away from the desk, go to whiteboard and *think* through things. It&amp;#039;s really paid off. Now I hope that I can translate that to other areas of life! You give me too much credit on WWF. Clearly my prowess is only noticeable because of all the training that your defeats foisted upon me. :-)  </description>
<pubDate>Sun, 3 Jul 2011 18:13:36 +0000</pubDate>
<guid>http://incrementalthought.com/?p=461#IDComment169360155</guid>
</item><item>
<title>If &amp; Else : Making Knockout.js Support External Templates</title>
<link>http%3a%2f%2fwww.ifandelse.com%2f%3fp%3d100#IDComment166664166</link>
<description>Toby - my apologies for taking so long to respond to your comment (things have been a bit hectic schedule wise for me).  I checked out your git repo and have a couple of thoughts.  Sure, it&amp;#039;s certainly possible to do things the way you are, but I believe you&amp;#039;re making some assumptions and trade-offs that aren&amp;#039;t worth the risk.  First, if you were to build a Knockoutjs app like this, you now effectively have two entry points for templates - the manual route you&amp;#039;re taking, plus what KO provides.  KO is by no means the perfect framework, but the point of a framework is to provide a consistent abstraction over the problems it&amp;#039;s attempting to solve.  By handling templating outside KO core, you are forced to apply bindings each time you load a template.  You&amp;#039;ve also ruled out the option for nested templates - unless you manually recurse them, and apply the bindings on each one.  Ultimately, by then time you write the code to handle all these issues, you will have solved the same issue Steve Sanderson has already solved in context of working with templates inside KO.  While I&amp;#039;m not crazy about the sync call to get an external template, it&amp;#039;s a one-time hit per template, and you have the option to time it out - I consider those far less of a disadvantage as having to solve the same problems in my own code that KO already solves for me, and still lose the advantages that templates have working through a template engine that has been implemented for KO specifically (like the stock one, or the one I created, or any of the others out there).  It&amp;#039;s also a reasonable course of action to fork KO and submit a pull request with changes that allow for a callback to be invoked prior to retrieving a template, that takes a &amp;#039;continuation callback&amp;#039; as an argument.  I&amp;#039;ve voiced this frustration before - if that were possible, then a sync call wouldn&amp;#039;t be necessary.  As it stands, though, KO was written with the assumption that template retrieval would be synchronous.  Anyway - I think it&amp;#039;s good that you&amp;#039;re exploring this, but I don&amp;#039;t think I would go the route you&amp;#039;re recommending.  If you&amp;#039;re going to work with a framework like KO, I would either fork and modify to extend it to do what I want it to do, or abandon it and roll my own (or go with another) - rather than code a large of part of a separate framework and run it along side one that already has the facilities to do what I&amp;#039;ve coded as well.  Hopefully that makes sense!  Thanks a ton for giving me your feedback and for visiting the blog...  </description>
<pubDate>Sun, 26 Jun 2011 00:50:51 +0000</pubDate>
<guid>http%3a%2f%2fwww.ifandelse.com%2f%3fp%3d100#IDComment166664166</guid>
</item><item>
<title>If &amp; Else : Direction, Questions and Values</title>
<link>http%3a%2f%2fwww.ifandelse.com%2f%3fp%3d123#IDComment148911565</link>
<description>Great questions - thanks for the response!  When I left the &amp;#039;comfy job&amp;#039; in 2008, we knew it was going to be tight for a bit financially.  It put things on hold that we hated to delay.  But I&amp;#039;m blessed with an understanding spouse who saw me dying a bit each day inside, and was ready for me to get into something more fulfilling.  Who knew the new company would collapse 2 years later?  But learned valuable skills from that - learning to balance between commitment to a job, and commitment to my career.  I know any company is going have it&amp;#039;s bad days (if not seasons!), so I try to not to jump to conclusions, but I&amp;#039;m not a blind loyalist either.  That doesn&amp;#039;t rule out the very real chance of working for another idiot, but it might lessen the damage (and limit the length of exposure).  This is also a driving reason behind why I&amp;#039;m trying to be more involved in OSS.  I read a bit of your thoughts on OSS and certainly understand your frustrations (I used to have a lot of the same ones!).  But I&amp;#039;m finding that OSS involvement has sharpened my skills more than I had expected, and has exposed me to other developers that I&amp;#039;ve learned a ton from (as well as providing a relationship-network for the next time I&amp;#039;m looking for work).  I agree about Nashville - tons of great talent there (I was sad to leave!).  There are great companies (like Firefly), but they&amp;#039;re not getting the name recognition they deserve, IMO.  </description>
<pubDate>Wed, 4 May 2011 20:30:07 +0000</pubDate>
<guid>http%3a%2f%2fwww.ifandelse.com%2f%3fp%3d123#IDComment148911565</guid>
</item><item>
<title>If &amp; Else : Knockout.js vs. Backbone.js - Part 2</title>
<link>http%3a%2f%2fwww.ifandelse.com%2f%3fp%3d70#IDComment146392298</link>
<description>Diego - thanks for the comment.  I read through your blog entry.  I can understand your points regarding mixing HTML and JS - but when it comes to binding, it&amp;#039;s going to happen at some point.  Even if you use templates with Backbone, you still have to write a render method.  The main difference (and this is what I think drives the decision for what most devs are comfortable with) is declarative vs imperative binding.  You also brought up an interesting point about how Knockout.js doesn&amp;#039;t directly address the model.  This is because it&amp;#039;s entirely situational.  The model is the most malleable and fluid piece in MVVM, since it&amp;#039;s the domain model effectively.  Some MVVM frameworks might provide a level of &amp;#039;scaffolding&amp;#039; for models, but too much and it becomes too prescriptive, making the model less expressive.  I think you&amp;#039;re right in suggesting the KO could benefit from additional infrastructure for save/validate, etc.  (I&amp;#039;m actually working on a validation framework to plug into it.)  I&amp;#039;ve used amplify.js for request/communications in my KO apps thus far and have been very happy with it.  I also agree that there&amp;#039;s much less overhead in changing template engines for Backbone - hopefully as other developers write template engine plugins for KO, this will improve.  I&amp;#039;ve actually written one for KO - &lt;a href=&quot;http://www.ifandelse.com/?p=100&quot; target=&quot;_blank&quot;&gt;http://www.ifandelse.com/?p=100&lt;/a&gt;. (still jQuery templates, but allowing for them to be loaded externally).  Thanks for sharing the link to your site.  I look forward to checking out more of the work you&amp;#039;re doing there!  </description>
<pubDate>Wed, 27 Apr 2011 04:07:16 +0000</pubDate>
<guid>http%3a%2f%2fwww.ifandelse.com%2f%3fp%3d70#IDComment146392298</guid>
</item><item>
<title>If &amp; Else : Knockout.js vs. Backbone.js &ndash; Part 1</title>
<link>http%3a%2f%2fwww.ifandelse.com%2f%3fp%3d61#IDComment144236813</link>
<description>Thanks for the info - I will check it out!  </description>
<pubDate>Tue, 19 Apr 2011 16:24:23 +0000</pubDate>
<guid>http%3a%2f%2fwww.ifandelse.com%2f%3fp%3d61#IDComment144236813</guid>
</item><item>
<title>If &amp; Else : Knockout.js vs. Backbone.js - Part 2</title>
<link>http%3a%2f%2fwww.ifandelse.com%2f%3fp%3d70#IDComment143451485</link>
<description>Joel - thanks!  I&amp;#039;ve been meaning to check out javascriptMVC as well but hadn&amp;#039;t had time yet.  I agree on KO having a much quicker learning curve.  The main complaints I&amp;#039;ve heard leveled at KO are things like &amp;quot;It doesn&amp;#039;t have a built in way to talk to a RESTful server&amp;quot; or &amp;quot;It doesn&amp;#039;t have built in validation&amp;quot;, etc.  Those things really don&amp;#039;t bother me, since there are js projects out there than can be adapted to KO without much pain.  One of my friends at appendTo recently told me about amplify.js - a library they&amp;#039;re working on to abstract request, storage and pub/sub functionality.  Something like amplify has been a great fit in my own tests in coming up with a consistent &amp;amp; clean way to have my KO projects talk to servers and storage, etc.  I&amp;#039;m also working on a rough idea for a validation framework that will plug into KO (it will be viewmodel driven, and notify any subscribers in the UI of the results).  I mention all that to say that I love how easy KO is not only to learn, but to extend!  </description>
<pubDate>Sat, 16 Apr 2011 18:58:13 +0000</pubDate>
<guid>http%3a%2f%2fwww.ifandelse.com%2f%3fp%3d70#IDComment143451485</guid>
</item><item>
<title>If &amp; Else : Making Knockout.js Support External Templates</title>
<link>http%3a%2f%2fwww.ifandelse.com%2f%3fp%3d100#IDComment143449779</link>
<description>Ryan - thanks for the input.  I *love* the idea of just adding a hook to KO core and passing a callback.  I&amp;#039;m going to mull that over this weekend and try to get something submitted early this week.  It&amp;#039;s funny you mentioned the idea of adding an &amp;#039;init&amp;#039; function - I started to go that route twice and stopped myself (and can&amp;#039;t for the life of me remember why I stopped).  I hear you on forcing the ajax call to be synchronous!  It left a queasy feeling in my stomach - but I didn&amp;#039;t see a way in the existing code base to handle it asynchronously (without significant forking).  I think a great thing for all of us KO devs to consider long term would be re-factoring key pipelines to operate async - it would probably provide an easier way to extend the core via injected callbacks (like your idea above).  Also - just wanted to say that when I first stumbled onto Knockout.js, I read through a lot of your discussion board posts, and some of your site and I&amp;#039;ve seen the commits you&amp;#039;ve made on github - GREAT work man!    </description>
<pubDate>Sat, 16 Apr 2011 18:51:49 +0000</pubDate>
<guid>http%3a%2f%2fwww.ifandelse.com%2f%3fp%3d100#IDComment143449779</guid>
</item><item>
<title>If &amp; Else : Knockout.js vs. Backbone.js &ndash; Part 1</title>
<link>http%3a%2f%2fwww.ifandelse.com%2f%3fp%3d61#IDComment142269779</link>
<description>Andrew - thanks so much for the comment!  My preference would be to use templates to avoid any html-embedding if I were to move forward with a project using backbone.  I purposefully made one of the render functions use concatenated html to reflect the frequency with which I saw other backbone examples take that approach.  I definitely see your point in arguing that the Knockout approach is no better in separating the concerns, but I disagree primarily because most web developers are already used to, for example, hooking DOM events up to js handlers via element attributes - and this fits that paradigm closely.  Another reason why it&amp;#039;s less intrusive to me, admittedly, is that declarative bindings are the norm in WPF and Silverlight - and I spent a good amount of time in WPF at my last job.  When you have views driven primarily by declarative code, attribute bindings seem to be a more natural fit (in that they are readable, and provide a concise way of saying &amp;quot;Hey - I&amp;#039;m hooking this view into your model *here*.&amp;quot;) than sifting through the behavior of a imperative-based view to see what declarative elements get emitted (or are referenced, in the case of templates).  Of course - that&amp;#039;s just my opinion. :-)  While I personally lean towards frameworks like Knockout, I&amp;#039;m impressed with what I&amp;#039;ve seen done with Backbone - and I agree, the auto-REST loading &amp;amp; saving (plus the history features) are strong points for Backbone.  </description>
<pubDate>Tue, 12 Apr 2011 19:10:25 +0000</pubDate>
<guid>http%3a%2f%2fwww.ifandelse.com%2f%3fp%3d61#IDComment142269779</guid>
</item><item>
<title>If &amp; Else : Knockout.js vs. Backbone.js - Part 2</title>
<link>http%3a%2f%2fwww.ifandelse.com%2f%3fp%3d70#IDComment142267349</link>
<description>I haven&amp;#039;t tried using view engine templates yet - but I think that will make for a great post after I talk about the template engine plugin!  </description>
<pubDate>Tue, 12 Apr 2011 18:59:00 +0000</pubDate>
<guid>http%3a%2f%2fwww.ifandelse.com%2f%3fp%3d70#IDComment142267349</guid>
</item><item>
<title>If &amp; Else : Knockout.js vs. Backbone.js &ndash; Part 1</title>
<link>http%3a%2f%2fwww.ifandelse.com%2f%3fp%3d61#IDComment142109896</link>
<description>Agreed - I&amp;#039;m not a fan of emitting (or embedding) any more HTML into JS than is absolutely necessary.  This is one of the reasons the declarative binding approach of KO is so compelling.  It feels (and looks) cleaner &amp;amp; helps separate the concerns. </description>
<pubDate>Tue, 12 Apr 2011 05:52:24 +0000</pubDate>
<guid>http%3a%2f%2fwww.ifandelse.com%2f%3fp%3d61#IDComment142109896</guid>
</item><item>
<title>Incremental Thought : Gratitude</title>
<link>http%3a%2f%2fincrementalthought.com%2f%3fp%3d131#IDComment139232721</link>
<description>Seth - thanks for the kind words! I&amp;#039;m sorry it&amp;#039;s taken me so long to reply....life has been dense and busy (next thing I know, months have flown by and I haven&amp;#039;t blogged a bit!).  </description>
<pubDate>Sat, 2 Apr 2011 00:08:39 +0000</pubDate>
<guid>http%3a%2f%2fincrementalthought.com%2f%3fp%3d131#IDComment139232721</guid>
</item><item>
<title>If &amp; Else : So You Want to Interview for a Senior Developer Position....</title>
<link>http://ifandelse.com/2010/11/21/so-you-want-to-interview-for-a-senior-developer-position/#IDComment111495366</link>
<description>Several years ago, the CIO of the company I was working for and I brought a guy in for an interview who claimed he knew 35 programming languages.  We *had* to bring him in, if solely for the entertainment value.  As we suspected - he (along with his 11 page resume) was full of crap. </description>
<pubDate>Tue, 23 Nov 2010 18:09:55 +0000</pubDate>
<guid>http://ifandelse.com/2010/11/21/so-you-want-to-interview-for-a-senior-developer-position/#IDComment111495366</guid>
</item><item>
<title>If &amp; Else : So You Want to Interview for a Senior Developer Position....</title>
<link>http://ifandelse.com/2010/11/21/so-you-want-to-interview-for-a-senior-developer-position/#IDComment111326463</link>
<description>WOW.  Can&amp;#039;t get over the fact that someone put &amp;quot;with an IQ of 168&amp;quot; on their resume.  Ouch. </description>
<pubDate>Mon, 22 Nov 2010 21:24:40 +0000</pubDate>
<guid>http://ifandelse.com/2010/11/21/so-you-want-to-interview-for-a-senior-developer-position/#IDComment111326463</guid>
</item><item>
<title>If &amp; Else : So You Want to Interview for a Senior Developer Position....</title>
<link>http://ifandelse.com/2010/11/21/so-you-want-to-interview-for-a-senior-developer-position/#IDComment111295920</link>
<description>Rob - I understand the argument many organizations make on standardizing platforms, etc.  I think the problem with this approach in many instances is that it&amp;#039;s driven by a vendor (who is also selling the platform) and not necessarily an objectively informed business.  Not every organization really needs to have teams working in Java, .NET, Ruby and Erlang.  But I think that businesses as a whole would fare far better by focusing their technology budgets on hiring top talent, rather than believing vendor hype that all their &amp;#039;interoperability&amp;#039; woes will disappear if they just buy their products.  When has this *ever* been true in anything beyond the simplest of applications?  (I&amp;#039;m talking to you, organizations that decided SharePoint was a viable enterprise application development platform.)  Also - good point on the dangers of talent moving on and taking knowledge with them.  Just like distributed app architects will tell you that you MUST plan for failure (accept that it will happen, and code accordingly), businesses have to plan for this as well.  Hiring top talent that can code expressively (following SOLID principles) and adopting methodologies that keeps the code as close to expressing the business domain as possible will make it much easier for new employees to get up to speed on the code base.  But hiring a cowboy who doesn&amp;#039;t feel the need to learn good architecture and implementation will be far more painful to the company both while he/she remains employed (since you&amp;#039;re bound to run into issues with scalability and division of labor) and when they leave (since some poor soul is going to have to figure out why they wrote multiple triggers that all loop over inserted rows and call additional procs for each iteration....).  My $.02. :-) </description>
<pubDate>Mon, 22 Nov 2010 18:51:11 +0000</pubDate>
<guid>http://ifandelse.com/2010/11/21/so-you-want-to-interview-for-a-senior-developer-position/#IDComment111295920</guid>
</item><item>
<title>Stephanie Cowart : And Finally&hellip;.a Date Night!</title>
<link>http://stephaniecowart.com/2010/11/15/and-finally-a-date-night/#IDComment110172099</link>
<description>True, but Keanu Reeves kind ruins that equation.  I&amp;#039;ll take Denzel and Pine ANY day over Keanu. </description>
<pubDate>Wed, 17 Nov 2010 02:45:00 +0000</pubDate>
<guid>http://stephaniecowart.com/2010/11/15/and-finally-a-date-night/#IDComment110172099</guid>
</item><item>
<title>Stephanie Cowart : Goodbye, Vox! Hello, Wordpress!</title>
<link>http://stephaniecowart.com/2010/09/03/goodbye-vox-hello-wordpress/#IDComment96874476</link>
<description>Yeah!  So glad we finally got you set up on Wordpress.....hopefully you&amp;#039;ll find more time to blog than I have.... </description>
<pubDate>Sat, 4 Sep 2010 02:25:35 +0000</pubDate>
<guid>http://stephaniecowart.com/2010/09/03/goodbye-vox-hello-wordpress/#IDComment96874476</guid>
</item><item>
<title>If &amp; Else : CouchRS - Building Your First Report against CouchDB using SSRS</title>
<link>http://ifandelse.com/2010/07/04/couchrs-building-your-first-report-against-couchdb-using-ssrs/#IDComment85221572</link>
<description>...I definitely see tremendous potential for KPIs and targeted metrics (CouchDBs mapreduce functionality in views is great for this, so my latest post: &lt;a href=&quot;http://ifandelse.com/2010/07/05/couchrs-creating-ssrs-reports-against-couchdb-views/),&quot; target=&quot;_blank&quot;&gt;http://ifandelse.com/2010/07/05/couchrs-creating-...&lt;/a&gt; but I don&amp;#039;t think Type 1 and 2 SCDs are going to be addressed without some sort of ETL.  The potential advantage though, is that an ETL that based in a higher level language like C#, and using a NoSQL store like CouchDB or MongoDB as both source and destination, could be incredibly fast.  CouchDB also versions it&amp;#039;s documents - so it&amp;#039;s possible to programmatically examine the change history of a document over time - this has interesting implications not only for SCDs, but for rebuilding a warehouse from the ground up using current production data.... </description>
<pubDate>Wed, 7 Jul 2010 01:09:30 +0000</pubDate>
<guid>http://ifandelse.com/2010/07/04/couchrs-building-your-first-report-against-couchdb-using-ssrs/#IDComment85221572</guid>
</item><item>
<title>If &amp; Else : CouchRS - Building Your First Report against CouchDB using SSRS</title>
<link>http://ifandelse.com/2010/07/04/couchrs-building-your-first-report-against-couchdb-using-ssrs/#IDComment85221549</link>
<description>Jan - all great questions!  I have a background in data warehousing (primarily using the Kimball/Star Schema method), and have been thinking through some of the same questions you asked.  For me, part of the journey of CouchRS (and soon to be MongoRS) is to keeping pushing and see how much similar functionality (to a normal DW) I can produce from a NoSQL store.  Regarding the question of Type 2 and 3 dimension changes - I&amp;#039;m not sure, yet, if a similar approach can be taken in a NoSQL store that would act as a workable substitute.  I have no doubt as I work towards answering these types of questions that I&amp;#039;ll be faced with the reality that data warehousing, necessarily by nature, imposes a different type of data model than what a typical domain model (on the app side) or relational model can provide... (more cont&amp;#039;d in next comment...) </description>
<pubDate>Wed, 7 Jul 2010 01:09:20 +0000</pubDate>
<guid>http://ifandelse.com/2010/07/04/couchrs-building-your-first-report-against-couchdb-using-ssrs/#IDComment85221549</guid>
</item><item>
<title>Incremental Thought : From Community to Cult</title>
<link>http://incrementalthought.com/?p=128#IDComment81858012</link>
<description>Shawn - your wisdom is deeply appreciated.  What a great translation of 2 Cor. 1:24!  Thanks for the links as well, definitely going to check them out. </description>
<pubDate>Thu, 24 Jun 2010 05:25:31 +0000</pubDate>
<guid>http://incrementalthought.com/?p=128#IDComment81858012</guid>
</item><item>
<title>Incremental Thought : From Community to Cult</title>
<link>http://incrementalthought.com/?p=128#IDComment81857830</link>
<description>Thanks so much for the comment Jason - well written, as always!  &amp;quot;There&amp;#039;s such a danger in living bits &amp;amp; pieces of the Bible&amp;quot; - great way to phrase that!  Paul warned that if we didn&amp;#039;t have love, we&amp;#039;re no better than a &amp;#039;clanging cymbal&amp;#039;.  I&amp;#039;ve seen churches hurt many believers because they stopped making the effort to live out a Biblically-based life in LOVE.   </description>
<pubDate>Thu, 24 Jun 2010 05:24:14 +0000</pubDate>
<guid>http://incrementalthought.com/?p=128#IDComment81857830</guid>
</item>	</channel>
</rss>