Learning Test-Driven Development: Book Review

I am always looking for books that could unlock new possibilities and help me improve my technical skills.  TDD is an area where I consider my experience very limited and where I would like to be inspired.

When this book was published just a couple of months ago I saw an interesting opportunity to refresh my knowledge on this subject and check if what I learned so far and what I have done in my professional experience could be improved.

Continue reading “Learning Test-Driven Development: Book Review”

How to upload files to Azure Blob Storage using Powershell via the REST API

When I need to upload files on Azure Blog Storage the tools that I generally use are Storage Explorer (installed on my workstation or the web version included in the portal) or AzCopy, but within a script, I would prefer using Azure RestAPI.
Before writing this article I searched similar blogs around this topic, the most interesting one was written by Roger Zander’s blog, the only difference is that I’ve defined a function and validated the parameters, using splatting it is a bit more elegant to read in my opinion. Continue reading “How to upload files to Azure Blob Storage using Powershell via the REST API”