My Angular development environment

Virtual Box I use Virtual Box with Windows 10 as the Guest Operating System. It is a combination that works well and other than the usual Windows update dance, it doesn’t cause me any distractions.  Visual Studio Code All my Angular development have been built using Visual Studio Code which allows me to build, compile […]

Sorting numbers within a JavaScript array

The problem You need to sort this JavaScript array in numeric order: Arrays have a sort method, so lets try using that The output from running this in Chrome 67 is that the array is now sorted as: [1, 11, 2] Which is not what we want, the number 11 is in the wrong place. […]

What I learnt building an Airport Explorer with ASP.NET Core

Thanks to Scott Hanselman’s tweet. I went off and had an enjoyable couple of hours building Jerrie Pelser’s Airport Explorer and learnt a lot more than I was expecting. Firstly the app is a single page ASP.NET Razor application, something I didn’t even know existed but now will be my first choice to use when developing an upcoming […]