Anthony Chu Contact Me

Joining Microsoft as a Cloud Developer Advocate

Monday, July 24, 2017

Today, I begin a new chapter in my career as a Cloud Developer Advocate at Microsoft.

I'll be joining a new and rapidly growing group of advocates led by Jeff Sandquist (there has been a constant stream of announcements like this one recently). I'll be on Scott Cate's team; our focus is on helping .NET developers get the most out of Azure.

Cloud Advocacy Photo of the sweet lights in Bryan Liston's office (used with permission)

Continue Reading...


Saying Goodbye to BuildDirect

Friday, July 21, 2017

Today is my last day at BuildDirect. It's time for my next adventure.

It's been an amazing two and a half year journey. We built a talented and cohesive team with a great culture. Together, we persevered though challenges and celebrated successes. We grew from an online retailer to a marketplace platform.

There are so many things I'm grateful for. I was encouraged to to pursue my passions and I got to work with awesome new technologies everyday. I had the opportunity to play a small leadership role and help shape the way we deliver software. I learned a lot from everyone in the company and had the privilege to mentor others. I made many friendships and memories that will last a lifetime.

It's been the best 2.5 years so far in my career. Thank you to everyone at BuildDirect!

Continue Reading...


First Look: Nested Hyper-V Virtualization in Azure v3 Virtual Machines

Saturday, July 15, 2017

Nested virtualization has finally arrived on Azure. It is available on Dv3 and Ev3 virtual machines. This enables a lot of scenarios. For instance, you can run a VM inside a VM, and Windows containers can now run with Hyper-V isolation.

The most exciting part about nested virtualization coming to Azure for me is I can finally run a fully functional dev machine in the cloud. This is particularly useful because I want to set up VMs with Windows, Visual Studio, Docker (Linux and Windows) for presentations and demos. Prior to this, I had to run a lot of my Docker presentations from my laptop.

I might even want to run a dev machine in the cloud instead of on Parallels on my Mac.

Continue Reading...


Querying Cosmos DB from Azure API Management Policies

Monday, June 12, 2017

The default user accounts in Azure API Management don't store a lot of data about the user; they mostly just store a name and an email address. But what if we want to store more information about each user and pass it along to the backend API?

In this article, we'll store additional information about our API Management users in a Cosmos DB collection. When our API is called, we'll query Cosmos DB for the user data using an API Management policy and pass this information to the backend via an HTTP header.

In addition, we'll leverage the API Management value cache to prevent calling Cosmos DB on every request.

Continue Reading...


Saving Mail Attachments to Blob Storage with Logic Apps

Thursday, June 8, 2017

When I was working on a Logic App to save email attachments to Blob Storage, I ran into an error:

InvalidTemplate. Unable to process template language expressions in action 'Create_blob' inputs at line '1' and column '2656': 'The template language function 'base64ToBinary' expects its parameter to be a string. The provided value is of type 'Null'. Please see https://aka.ms/logicexpressions#base64ToBinary for usage details.'.

Logic Apps error

Continue Reading...