Computer slow despite having excellent hardware
I prefer to work through a problem backwards so if you’re just here for a solution start here. If you want to see the process, continue reading. Resolution In the end the problem ended up being that my...
View ArticleActively Blogging At InspectorIT
The TwentyTech blog is now reserved for personal items and standard technical blogging entries have moved to my company InspectorIT.com/blog Recent entries: When does the MongoDB C# Driver Get Data?...
View ArticleWindows Azure VM Subscription Transfer
I successfully managed to transfer my Windows Azure Virtual Machine to a different subscription without losing any files with minimal downtime. How did I do it? I followed the steps on the Windows...
View ArticleNinject Dependency Injection with DNN
Dependency injection (DI) has several advantages that I myself haven’t fully wrapped my head around all the use cases. But this article isn’t going to be focused on explaining why DI is important but...
View ArticleImplementation Class for DNN’s DAL2 Repository
Something that I thought was missing from DNN’s DAL2 was a generic implementation of it’s repository base class that you could inherit from instead of repeating more boiler plate. Ultimately why this...
View ArticleReset your DNN Password
I’ve previously shown how in DNN you could recover your DNN host password. In present times DNN has shifted it’s default password policy in DNN 7.1.0 to use a hash password. What this means is that...
View ArticleAngularJS Whole Form Validation
If you’re converting a legacy app or simply have a complicated validation scheme already implemented on the server that you aren’t ready to replicate on the client then whole form validation may be for...
View ArticleSeparation of concerns using Loopback
A single code base application that contains your server side rendering, API (REST or otherwise), business logic, client side application and testing frameworks is nice when your application is small...
View ArticleRunning Node On Azure Web Apps
If you don’t want to manage a virtual machine and just want to take advantage of Azure’s salable web app infrastructure for running your node.js application then this post is for you I’ve broken this...
View ArticleAdvanced configurations for Node.js on Azure WebApps
In my previous most I explained how to get started running a node.js application with Azure WebApps. In this post I will note some more advanced features that I would recommend you consider for your...
View Article