Monday, May 14, 2018

Microsoft Build 2018 Trip Report

Microsoft Build 2018 Report

Overall View

The conference was good, but didn't seem as good as Ignite was 2 years ago.

On the good side, the conference center was easy to access and navigate. Restrooms were plentiful and didn't seem as overcrowded as one would expect from a large tech conference. There was live music playing in the conference center all three days, and the music was very good. Sessions were located well, meaning that there was ample seating for the sessions that I attended.

Another really good aspect to the conference was networking. I had a chance to catch up with a few former employees and keep those connections going. I was able to meet up with tech leaders from some of our sister companies, and that was great. On a tip from my CTO, I talked to the Azure AD people and learned that we may be able to use the Azure AD B2C service for identity management cheaper than our current provider.

On the negative side, the food was awful. The lunch meals were lackluster, and there was no breakfast. Coffee wasn't served until after the first session or two in the morning, and that makes for grumpy attendees. Registration Monday morning took a LONG time to get a badge and t-shirt, making it almost impossible to catch the first part of the opening keynote. The combination of slow registration and limited seating forced me to attend the opening keynote in an overflow room. I could have had a better view watching it from home.

Session Summaries

Below are the summaries of the sessions I attended, or at least what I took from the sessions.

Future of Visual Studio

Amanda Silver, Kendra Haven, and Anthony Cangialosi

  • VS Code is more popular than Visual Studio.
  • Visual Studio supports side by side installation.
  • Using source-based discovery for unit tests instead of assembly-based discovery.
  • Supports a "watch" functionality where unit tests will automatically run.
  • Can step into code from a NuGet package (Source Link).
  • More editor configs are available.
  • Performance improvements for git branch switching.
  • Can work with pull requests directly in Visual Studio.
  • Debugging support from a code dump (or trace).
    • Can capture what occurred in prod.
    • Using the captured dump, can step through code as the steps occurred.
    • I'm not sure how the trace or dump is created.
  • "Time Travel Debugging"
    • Allows you to step backward through the stack.

.NET Overview

Scott Hanselman and Scott Hunter

  • .NET Core 2.1 RC was made available.
  • .NET Compatibility Pack provides some functionality that is still not supported in .NET Core (i.e. Directory Services).
  • .NET SDK works on Raspberry Pi.
  • There is an embedded HTTP "browser" that support Postman-like calls
  • Has a UI that works with Swagger to exercise API calls.
  • .NET 3.0 will support WPF and WinForms.
  • New refactorings for things like transforming LinQ queries to for each calls.
  • ML.NET was released; OSS machine learning framework.
  • Blazor is .NET running in WebAssembly in the browser.

AI for Earth

Jennifer Marsman

  • Right now, this is mostly a grant program to get researchers using AI for Earth.
  • Has some REST APIs exposing cognitive services for the earth.
  • Starting to do some machine learning based research around the spread of disease and tree cover mapping.

Building Event-Driven Serverless Apps w/ Azure Functions and Azure Containers

Rafat Sarosh and Luis Bosquez

  • There is a CLI tool for working with and developing Azure functions.
  • CosmosDB provides a Change Feed for detecting and working with changes.
    • Provides all changes made to CosmosDB in the order they were made.
    • Change Feed is on by default.
    • The Change Feed is persistent.

Empowering the Quantum Revolution with Q#

John Azariah and Julie Love

  • Q# is inspired by functional programming.
  • Supports first-class functions.
  • Is a strongly-typed system.
  • Being created to support the eventual existence of a quantum computer.
  • Microsoft is working hard to create a scalable quantum computer.

Meet the New Stack for Real-Time We Communication: ASP.NET Core SignalR

Damian Edwards and David Fowler

  • This was mainly live coding and was EXTREMELY entertaining!
  • Javascript SignalR client has been rewritten so that it doesn't use jQuery.
  • The Javascript client and C# client look the same.
  • SignalR uses Kestrel as the "communication" engine.
  • There have been a LOT of performance improvements made to Kestrel.
  • SignalR supports JSON and MessagePack message protocols.
  • Can support additional protocols if someone needs to create something different.
  • Default networking protocol is HTTP, but can support raw TCP now.
  • Additional networking protocols can be created too.

The Future of C#

Mads Torgersen and Dustin Campbell

  • There have been many performance improvements.
    • Many of them have enabled integration with unsafe code in a safe way.
  • Span allocates T in such a way that the memory isn't copied excessively.
  • Introducing a Range operator, very similar to the one in Python.
  • My observation: Many of the changes is that many were done to improve the performance of Kestrel and SignalR.

Demystifying Machine and Deep Learning for Developers

Seth Juarez and Chris Lauren

  • Seth did a GREAT job explaining enough of the math behind data science to make it less scary.
  • I didn't take many notes because I plan on re-watching the video.
  • There is a new "standard" for sharing model data called ONNX. I need to explore this more.

Inside Azure DataCenter Architecture with Mark Russinovich

Mark Russinovich

  • It was interesting seeing how the Azure data centers are set up and configured.
  • Most of the content of this talk should be more publicized because it is cutting-edge research.
  • 2 projects caught my attention:
    • Project Silicia -> storage on panes of glass.
    • Project Palix -> data storage using DNA.

Hybrid multi-cloud Strategies Using Terraform OSS with Azure

Arun Chandrasekhar, Damien Caro, and Tom Harvey

  • I missed the first 5 minutes of this session, and had a hard time catching up.
  • There looks to be some interesting stuff in Terraform, but I couldn't piece it all together.
  • I need to investigate Terraform more.

Looking Ahead with SQL Operations Studio

Ken Van Hyning and Alan Yu

  • It was stressed that SSMS is NOT going away.
  • This tool was created to help support running SQL Server on Linux.
  • The project is a fork of Visual Studio Code.
  • They have some visualizations built-in to the tool.
  • They are very excited to get contributions. ** Seems like everyone who wants to contribute doesn't know C#.

Amplify Your Awesome

Donovan Brown, Lorraine Bardeen, Raymond Chen, Chris Jackson, Jennifer Marsman, Jessica Payne

  • This was a series of 6 "lightning" talks around self-improvement.
  • It was neat seeing the auto-advancing slides.
  • For one of the last sessions of the conference, it was packed.

Other Take-Aways

I spoke with someone at the Azure AD booth. She talked to me about the B2C program, and it sounds like a program we should pursue.