Browse Blog Posts by Tags

Showing related tags and posts for the Blogs application. See all tags in the site
  • Using repeating elements in AngularJS

      Index: Getting started with AngularJS Creating an AngularJS Controller The AngularJS $scope is not the MVC Model Using repeating elements in AngularJS Filtering the data in an AngularJS ngRepeat element   In the previous  posts I showed how to get started with AngularJS and use some...
    Posted to The Problem Solver by Maurice on Fri, May 10 2013
    Filed under: Filed under: ,
  • The AngularJS $scope is not the MVC Model

      Index: Getting started with AngularJS Creating an AngularJS Controller The AngularJS $scope is not the MVC Model Using repeating elements in AngularJS Filtering the data in an AngularJS ngRepeat element   In the previous post I showed how to create and use an MVC Controller in AngularJS to...
    Posted to The Problem Solver by Maurice on Mon, Apr 15 2013
    Filed under: Filed under: ,
  • Creating an AngularJS Controller

      Index: Getting started with AngularJS Creating an AngularJS Controller The AngularJS $scope is not the MVC Model Using repeating elements in AngularJS Filtering the data in an AngularJS ngRepeat element   In the previous blog post I showed how to get started with a really minimal AngularJS...
    Posted to The Problem Solver by Maurice on Wed, Apr 10 2013
    Filed under: Filed under: , ,
  • Getting started with AngularJS

        Index: Getting started with AngularJS Creating an AngularJS Controller The AngularJS $scope is not the MVC Model Using repeating elements in AngularJS Filtering the data in an AngularJS ngRepeat element   One of the nicer JavaScript frameworks out there to work with must be AngularJS...
    Posted to The Problem Solver by Maurice on Fri, Apr 5 2013
    Filed under: Filed under: ,
  • SignalR and camelCase data contracts

    I really like SignalR for its capability to do push notifications from the server to the client. But there are a few thing in SignalR I am not quite happy with. Fortunately SignalR is really pluggable and you can change it to suit your needs. :-)   PascalCase versus camelCase One thing I am not...
    Posted to The Problem Solver by Maurice on Thu, Mar 14 2013
    Filed under: Filed under: ,
  • Using optimistic concurrency with RavenDB

    Whatever database your are using, relational or document, there is one thing you can be certain of as soon as you get a second user of the system and that is concurrency conflicts. It may not happen often but eventually it will happen that two users load the same document, make some changes to it and...
    Posted to The Problem Solver by Maurice on Wed, Jan 30 2013
    Filed under: Filed under: , ,
  • Paging through data in RavenDB

    RavenDB has a very nice feature in it being safe by default and returns just 128 documents. Now you can override these safe defaults but it is very unwise to do so. And even if you decide to do so are you really going to show a million customers to your user at the same time? I would guess not as the...
    Posted to The Problem Solver by Maurice on Mon, Jan 28 2013
    Filed under: Filed under: , , ,
  • Practical HTML5

    The slides from my presentation on Practical use of HTML5 for the DotNed user group.   Practical html5 from Maurice Beijer     The source code can be found here .   There is an online demo version hosted on Azure websites here .   Enjoy!
    Posted to The Problem Solver by Maurice on Fri, Jan 25 2013
    Filed under: Filed under: , , , , , ,
  • Praktisch aan de slag met HTML5

    Donderdag 24 januari 2013 doe ik weer een presentatie over HTML5 voor de DotNed gebruikersgroep.   Op dit moment is HTML5 een van de grote hypes. Door de HTML5 standaard te gebruiken gaan we alles anders doen op het web. Uiteraard gaat alles goed en vanaf nu werkt alles gewoon zoals verwacht op...
    Posted to The Problem Solver by Maurice on Tue, Jan 8 2013
    Filed under: Filed under: ,
  • Enabling Tincr on Windows 8

    Some time ago I posted a blog post on Tincr and live reloading of CSS/JavaScript in Google Chrome. This works really well with one exception, on Windows 8 it will not install. When you try Chrome shows the following error message: This application is not supported on this computer. Installation has been...
    Posted to The Problem Solver by Maurice on Fri, Dec 21 2012
    Filed under: Filed under: , , ,
  • Querying RavenDB databases

    As we have seen in previous blog posts getting data from a RavenDB database is easy. Either use the IDocumentSession.Query<T>() function to load a series of documents or the IDocumentSession..Load<T>() function to load a document using its identity. However sometimes we want more control...
    Posted to The Problem Solver by Maurice on Mon, Dec 17 2012
    Filed under: Filed under: , , , ,
  • Using RavenDB with Azure websites

    In a previous post I explored various options of hosting RavenDB . While using RavenDB as a Windows Service or hosted in IIS is probably the best way to go in most cases there are a number of cases where the embedded option is great. And one of the places where I really like the embedded option of hosting...
    Posted to The Problem Solver by Maurice on Mon, Dec 10 2012
    Filed under: Filed under: , , , ,
  • Study Material for Programming HTML5 and CSS 3 Microsoft Exam

    Hi Folks, I got a free voucher from Microsoft for programming HTML 5 and CSS 3 Exam. I studied and reviewed online video materials and i want to share with you my study notes and hope this will be helpful for passing the exam. Congratulations in advance...
    Posted to Moustafa Arafa Blog by on Sun, Dec 9 2012
    Filed under: Filed under: , , ,
  • Different options for hosting RavenDB

    In the previous blog posts about RavenDB I used the Raven.Server.exe to create a database server. Just running raven.Server.exe and connecting to it is fine for development but certainly not our only option.   Running RavenDB as a Windows Service Once you have the RavenDB.Server NuGet package you...
    Posted to The Problem Solver by Maurice on Wed, Dec 5 2012
    Filed under: Filed under: , , ,
  • Understanding Map - Reduce

    Quite a few people seem to be intimidated by the concept of Map-Reduce. As it turns out Map-Reduce is actually quite simple and straightforward when you get to understand the basic principle.   Basic principle The basic Map-Reduce consists of two steps. I guess you are not going to be very surprised...
    Posted to The Problem Solver by Maurice on Mon, Dec 3 2012
    Filed under: Filed under:
  • RavenDB and multiple databases

    In my previous two posts about RavenDB I used a Book class as the example. The first example was an ASP.NET MVC 3 application and the second was an ASP.NET MVC 4 application and I just copies the Books class from the first to the second example. As I just used the default namespace in both projects ...
    Posted to The Problem Solver by Maurice on Tue, Nov 27 2012
    Filed under: Filed under: , ,
  • Using RavenDB with ASP.NET MVC 4

    Some people might have wondered why I used ASP.NET MVC 3 in my previous blog post . The reason is that the RavenDB.Client package uses Newtonsoft.Json and ASP.NET MVC 4 also has a dependency on Newtonsoft.Json. In itself this isn’t a problem except that RavenDB requires Newtonsoft.Json version 4.0.8...
    Posted to The Problem Solver by Maurice on Mon, Nov 26 2012
    Filed under: Filed under: , , , ,
  • Getting started with RavenDB in an ASP.NET MVC application

    RavenDB is one of the newer document type databases that is conceptually comparable to MongoDB or CouchDB . One of the nice thing about RavenDB, at least for a .NET developer, is that is has been developed with .NET in mind from the start. And this makes it really easy to get started with. In fact it...
    Posted to The Problem Solver by Maurice on Sun, Nov 25 2012
    Filed under: Filed under: , , ,
  • Tincr and live reloading of CSS/JavaScript in Google Chrome

    The standard workflow with web development is run the web application, make some changes to your CSS in Visual Studio, flip back to the browser and reload the page to see the effect. While this works relatively well it can be somewhat slow at times.   One improvement is make changes to your CSS...
    Posted to The Problem Solver by Maurice on Sat, Nov 17 2012
    Filed under: Filed under: , , ,
  • Modern Web Development

    The PowerPoint and samples from my presentation at the QNH DevDays in Arnhem. Modern web development from Maurice Beijer   SignalR demo Other demos   Enjoy!
    Posted to The Problem Solver by Maurice on Sat, Nov 10 2012
    Filed under: Filed under: , , , ,
Page 1 of 4 (71 items) 1 2 3 4 Next >