Andrew's Dev Site

About

Blog

6 Posts

Write a simple formula parser in JavaScript — 02 January, 2021

In this post I want to show how to add simple formula functionality to a JavaScript application. This will include:A code editor with syntax…

Stream Files to Zip File in Azure Blob Storage using C# — 24 March, 2020

Here’s a neat way to write multiple files to a zip file in Azure Blob Storage using C#. Only a single file will be in memory at once, so you…

Dependency Injection with Durable Task Framework — 19 January, 2020

When using Durable Task Framework it’s important to be able to use dependency injection in Task Orchestrations and Task Activities.When…

Azure DevOps Templates — 28 December, 2019

I recently migrated a CI/CD pipeline from TeamCity and Octopus Deploy to Azure DevOps (AzDo) . We have a mostly micro-services architecture…

Create a NuGet package that targets both .NET Standard and PCL — 01 September, 2019

Recently when migrating a library to .NET Standard, I needed to keep it compatible as a Portable Class Library (PCL) for a Xamarin project.I…

useApi React Hook — 29 June, 2019

One of the most common React Hooks that I’ve found myself using is one to handle api calls.For this post we’re going to use axios for our…