LAN on Hyper-V virtual machine not working on Windows 10

0 Comments

After an Windows 10 update, my Hyper-V virtual machines, did not have a working internet connection. To fix this problem I had to: – Shutdown all virtual machines – Remove all network adapters of all

CSS class naming guideline

0 Comments

Lets assume you want to create a "error notification" component and this component contains 2 sub components, a "close button" and a "read more" button in an application called "spike", something like:      

AngularJS onload image custom directive

0 Comments

If you want to execute some code, when an image is fully loaded, you can use an custom directive in AngularJS, something like: (function () { /// <summary> /// Bind to onload event, e.g. onload

How to dynamically load template for a directive in AngularJS

0 Comments

  If you want to dynamically load a template for a directive in AngularJS, just follow the steps found at: https://medium.com/angularjs-meetup-south-london/angular-directives-using-a-dynamic-template-c3fb16d03c6d   Something like:   HTML   JavaScript

UseWebApi not found / missing in Web API 2.2

0 Comments

If the IAppBuilder interface does not contain a “UseWebApi” function, this might be caused by a missing NuGetPackage “Microsoft.AspNet.WebApi.Owin”.   After installing this NuGetPackage the function was available.     See: http://www.jeffwids.com/post/where-does-iappbuilderusewebapi-come-from