Articles

imageWelcome to the new look “Thoughts from the Wet Coast”.  This is the third incarnation of my blog.  This time there have been a lot of changes.

A Responsive Skin

The first obvious change is the look of the site.  I have created a new responsive skin for my site based on – you guessed it – Twitter Bootstrap.  Twitter Bootstrap appears to be the #1 framework these days for developing responsive websites, and its fairly easy to integrate into a DNN 7 skin.  My new skin is based on Twitter Bootstrap 3. The skin is quite basic and looks like a typical Twitter Bootstrap site.  It was very easy to incorporate Bootstrap into a standard DNN skin and I am thinking of writing a blog to demonstrate how easy it is.

Mar 14 2014


As Senior Architect for DNN Corp I get to be involved in interviewing candidates for developer positions within the company.  Thankfully, I don’t have any direct management responsibilities - its not what I enjoy - but I am asked to interview candidates to determine both their technical competence as well as to help determine whether they will fit with the team chemistry.

Many candidates come with glowing resumes - their list of skills and experience is excellent, but I have detected a disturbing trend - too many developers don’t appear to think of software development as a craft.  They list 5 yrs. of experience with .NET or 3 yrs. experience with JavaScript.  That looks like they might be excellent candidates, but when asked about such things as variable scope in JavaScript or Dependency Injection, they can’t answer these fairly simple techniques of our craft.

Jan 25 2014

Christmas-Happy-New-year-2014-HD-WallpaperA Happy New Year to all readers of my Blog.  I hope 2013 was a good year for you and that 2014 will be prosperous for you and yours.

Here on the Wet Coast,  one of my New Year’s resolutions has been to be more regular in my blogging activity, and I have already made some plans in that regard.

Jan 9 2014


In previous posts in this series I introduced the concept of observables, and I referred to the concept of Observable Collections in Xaml (WPF and Silverlight) applications.  Knockout also supports the concept of observable collections, although because JavaScript only has one collection type they are observable arrays.

Just as an observable responds to changes in an object, an observable array responds to a change in the number of items in the array.  It tracks which objects are in the array - not the state of those objects.

Aug 16 2013

So far we have seen how we can set up simple observable values.  But what if we want to have calculated values in our ViewModel.

Lets extend our ViewModel from the previous examples, by renaming our personName property as firstName and add a second property called lastName.

Aug 15 2013

So far in this series on Knockout.js we have seen how to do simple data-binding and how to use observables to automatically update the data bound elements.  The real power of knockout though is its support of two-way data-binding. 

What do we mean my two-way data-binding?

ASP.NET developers are familiar with the concept of data-binding - the ability to bind a control to a data source and update the control based on the value of the data source.  Two way data-binding allows the control (View) to update the data source if its value changes.

Aug 10 2013

In the previous post in this series I introduced the concept of simple one-way data binding.  However the real power of knockout is its support of observables and two-way binding. 

The concept of observable objects or observable collections was developed for WPF (Xaml) and Silverlight. 

Aug 8 2013


Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

Tags