5 commands to get you up and running with Docker

Docker has revolutionized the way software is being written and deployed throughout our industry. With the use of it's lightweight containers you can deploy your whole environment locally - or in your clients machine quickly and easily. At Practical Software we've used Docker to test how multiple servers behaves when one of them crash and … Continue reading 5 commands to get you up and running with Docker

How to count the number of event invocations using Rx

A while ago I've needed to count the number of events arriving from an external system and perform a specific task once a specific threshold has been reached. I've needed to count groups of events each group had it's own unique key. Although I might have been able to solve this problem using a dictionary … Continue reading How to count the number of event invocations using Rx

New Pluralsight course – AWS Developer: Lambda Deep Dive

My latest course - AWS Developer: Lambda Deep Dive was published today! I've wanted to create a practical course on using FaaS (Functions as a Service) in the AWS cloud and I felt that on top of explaining about Lambda functions I should also cover how to build event driven applications using AWS services and … Continue reading New Pluralsight course – AWS Developer: Lambda Deep Dive

Assert.AreEqual in MSTest – done right

Every unit testing framework out there comes with a plethora of assertion methods - this is not necessarily a good thing. Instead of writing simple code a developer is forced to choose the correct assertion method from a seemingly endless list of methods, most of which look exactly the same! Having multiple overloaded methods with … Continue reading Assert.AreEqual in MSTest – done right