This is part of a series of articles comparing the experience of developing, deploying and maintaining an ASP.NET Core 2.0 web app on the PaaS offerings from Azure, AWS and Google Cloud Platform. You can find the introduction and contents here .
There is no process, methodology or programme that you can follow that will compensate for having the wrong people in your team to start with.
At a recent event a very interesting discussion was triggered by an aggressive question from one of…
Being a bit of a productivity nerd (especially if I could use reading about and setting up a new technique as a procrastination device) I’d read many articles on the Pomodoro Technique over the years. There was no shortage…
Consider this code that moves a noticeId from one list to another within a Unit of Work:
listManager.RemoveFromList(userId, noticeId, sourceTable);listManager.AddToList(userId, noticeId, targetTable)…
We are spending a lot of time thinking and talking about the culture we want to create at DataDIGEST. This keeps boiling down to putting people first: employees, clients, suppliers and the wider community. Whilst this is hardly a unique idea, many companies fail in putting a…
ASP.NET Identity has made it possible to unit test code that makes use of its built in user and role management features, generally by injecting a UserManager instance into your classes. It can be frustrating…