Category Archives: Code

BDD, an in-depth look

This article was published in the DNC Magazine, issue 30, May-June 2017 The terms of the publication do not allow me to post on my own blog, so please read the magazine if you are interested. I have saved a local … Continue reading

Posted in Code | Leave a comment

Building better ( hopefully! ) RESTful APIs

The idea for this article came while I was at work. I was talking to an Api provider and he had some very strong ideas on how things should be done. I have built a few APIs myself and suffice … Continue reading

Posted in Code | Tagged , , , | Leave a comment

Xamarin – Rest Services PCL

Xamarin – Rest Services from a PCL I see this on a daily basis especially on the Xamarin forums. How do I use this service from an iOS app? an Android app? a Windows app? How do I write a … Continue reading

Posted in Code | Tagged , , , , , | 3 Comments

PCL Rpg engine – part 1 – actors and gear

I can see people wonder …. why would you bother ? Don’t we have enough engines already? Well, yes, but how many have you written so far ? Have you tried writing one? It is really really fun to work … Continue reading

Posted in Code | Tagged , , , | Leave a comment

Xamarin IOS – authentication using Owin, Web Api2, Json Web Tokens

This article continues the work done in a previous article : Authorization system with Owin, Web Api, Json Web Tokens. We saw how to build an Authorization system based on Owin, Web Api and Json tokens. Next we want to see … Continue reading

Posted in Code | Tagged , , , , | 8 Comments

Authorization system with Owin, Web Api, Json Web Tokens

Authorization system with Owin, Web Api, Json Web Tokens Intent What we want to accomplish here is to create a reusable authentication system using Json Web Tokens ( Jwt ), Owin and Web Api. Let’s start by clearly specifying the … Continue reading

Posted in Code | Tagged , , , , , | 11 Comments

Starting with Angular part 3 – services

We have covered basic topics in the first two tutorials. Now it is time to see something a little more advanced. In this tutorial we will see how to add services to our application, after all there is no application … Continue reading

Posted in Code | Tagged , , | Leave a comment

Starting with Angular Part 2 – loops

In this tutorial we will continue the basic tutorial and show how we can work with some simple structures, such as loops. In case you missed it, you’re welcome to visit the first tutorial in the series : Starting with Angular … Continue reading

Posted in Code | Tagged , , | Leave a comment

Starting with Angular

Angular tutorial – a first look at the framework Continue reading

Posted in Code | Tagged , , | Leave a comment

Separation of concerns – Application Layers

This isn’t meant to be a guide. It is meant to show how I like to structure my applications and get some feedback, maybe there is a better or cleaner approach or maybe I don’t go far enough. The project … Continue reading

Posted in Code | Tagged , , , , | 3 Comments