ProgNet 2019

Last week I attended ProgNet 2019 held at SkillsMatter in London.

This is my sixth year of attendance (last year’s notes are here), and as usual I sketchnoted the talks that I attended. Videos for all of the talks are available on the ProgNet 2019 website.

We Are The Guardians Of Our Future

by Tess Ferrandez Website Twitter Video

We Are The Guardians Of Our Future by Tess Ferrandez

Beyond HTTP In ASP.Net Core 3.0 With gRPC

by Steve Gordon Website Twitter Slides Video Code

Beyond HTTP In ASP.Net Core 3.0 With gRPC by Steve Gordon

Globalization And Localization In ASP.Net Core

by Rachel Appel Website Twitter Video

Globalization And Localization In ASP.Net Core by Rachel Appel

Communication In A Microservice World

by Irina Scurtu Twitter Video

Communication In A Microservice World by Irina Scurtu

Surviving Microservices

by Michele Leroux Bustamante Website Twitter Video

Surviving Microservices by Michele Leroux Bustamante

TDD And The Terminator - A Guide To Better TDD

by Layla Porter Twitter Slides Video Code

TDD And The Terminator - A Guide To Better TDD by Layla Porter

The Pipeline Driven Organisation

by Roy Osherove Website Twitter Video

The Pipeline Driven Organisation by Roy Osherove

Bayesian Decision Making In The Face Of Uncertainty

by Gary Short Website Twitter

Bayesian Decision Making In The Face Of Uncertainty by Gary Short


DDD South West 9

DDD South West took place this last weekend in Bristol. It was a really good event as usual.

Here are the sketchnotes I did during the day.

Nailing Down Distributed Workflows With Microservices

by Ben Arroyo Twitter Code

Nailing Down Distributed Workflows With Microservices by Ben Arroyo

Writing High Performance C# And .Net Code

by Steve Gordon Website Twitter Slides

Writing High Performance C# And .Net Code by Steve Gordon

GraphQL And Dapper

by John Stovin Twitter

GraphQL And Dapper by John Stovin

Better The DevTool You Know

by Viv Richards Twitter Code

Better The DevTool You Know by Viv Richards

Kubernetes, Raspberry Pis, And More

by Dan Clarke Website Twitter

Kubernetes, Raspberry Pis, And More by Dan Clarke


DDD North 8

I’ve just got back from DDD North, held for the first time in Hull.

Here are the sketchnotes I did during the day.

IoT With Nothing But A Laptop

by Pete Gallagher Website Twitter Slides

IoT With Nothing But A Laptop by Pete Gallagher

Selling Unicorns With Shopify And Azure

by Michael Stephenson Website Twitter

Selling Unicorns With Shopify And Azure by Michael Stephenson

Making Noise With F#

by John Stovin Twitter Code

Making Noise With F# by John Stovin

Air Quality, LoRa And Azure Functions

by Rob Miles Website Twitter

Air Quality, LoRa And Azure Functions by Rob Miles

Solving Microservices Challenges On The Kubernetes Platform

by Shahid Iqbal Website Twitter

Solving Microservices Challenges On The Kubernetes Platform by Shahid Iqbal


NDC London 2019

A few weeks ago I attended NDC London. This time I attended as part of the NDC crew. In exchange for a free ticket to the event, you agree to help out for 50% of the time you are there.

The evening before the conference, I joined the other volunteer crew members at the venue to help get set up for registration. This involved unpacking the NDC hoodies (each attendee receives one) from their boxes and getting the registration desk set up with the conference lanyards and badges. The following morning, we had to be there bright and early to welcome the attendees, check them in, and issue their conference badges.

For the rest of the conference, half of each day is spent working, and half is yours to do as you please. I was assigned to one of the conference rooms for each afternoon. This involved ensuring that the speaker turned up to the room before their talk, dealing with any problems that may happen during the talk, and giving the speaker their NDC speaker gift after their talk. A downside of being assigned to a specific room is that you don’t get to choose the talks you see, but having volunteered before back in 2014, I knew I would still see some good talks.

Dynamic Runtime Code With Roslyn

by Jeremy Miller Website Twitter Video

Dynamic Runtime Code With Roslyn by Jeremy Miller

Pragmatic Performance

by David Wengier Website Twitter Slides Video

Pragmatic Performance by David Wengier

CSS Grid - What Is This Magic?

by Amy Kapernick Website Twitter Slides Video

CSS Grid - What Is This Magic? by Amy Kapernick

A Lap Around Azure DevOps

by Jakob Ehn Website Twitter Video

A Lap Around Azure DevOps by Jakob Ehn

ASP.Net Core One Hour Makeover

by Jon Galloway Website Twitter Slides Video Code

ASP.Net Core One Hour Makeover by Jon Galloway

Leadership Guide For The Reluctant Leader

by David Neal Website Twitter Slides Video

Leadership Guide For The Reluctant Leader by David Neal

Keeping It DRYer With Templates

by Layla Porter Twitter Video

Keeping It DRYer With Templates by Layla Porter

ML.Net For Developers Without Any AI Experience

by Lee Mallon Website Twitter Video

ML.Net For Developers Without Any AI Experience by Lee Mallon

Reverse Engineering A Bluetooth Lightbulb

by Jesse Phelps Twitter Video

Reverse Engineering A Bluetooth Lightbulb by Jesse Phelps

Let’s Talk HTTP In .Net Core

by Steve Gordon Website Twitter Slides Video

Let's Talk HTTP In .Net Core by Steve Gordon

Ctrl-Alt-Del: Learning To Love Legacy Code

by Dylan Beattie Website Twitter Video

Ctrl-Alt-Del: Learning To Love Legacy Code by Dylan Beattie

These are the other talks I attended but didn’t sketchnote:

Microsoft’s Open Source Journey

by Scott Hanselman Website Twitter Video

The Functional Programming Toolkit

by Scott Wlaschin Website Twitter Video

Solving Diabetes With An Open Source Artificial Pancreas

by Scott Hanselman Website Twitter Video


ProgNet 2018

I’m currently attending ProgNet 2018 held at SkillsMatter in London. This is an annual conference that focuses on the latest trends and technologies in the .Net space. The conference runs over three days, and consists of a day of talks followed by two days of instructor-led workshops.

I’ve been several times before and it’s always a good event, with a variety of topics covered over the three days. I especially enjoy the conversations outside of the sessions during the breaks and in the evenings, and the chance to mix with some very knowledgeable people.

During the first day of the conference, I sketchnoted the talks that I attended. Videos for all of the talks are available on the ProgNet 2018 website.

Own The Future

by Udi Dahan Website Twitter Video

Own The Future by Udi Dahan

In this talk, Udi talked about the problems that companies tend to have when trying to maintain a piece of software over time. He highlighted the traps that are easy to fall into, including attempting to rewrite the software only to be left maintaining both the original big ball of mud and the rewrite side-by-side. He then suggested some techniques that can help, such as better initial requirements (including “why” something is wanted), giving better estimates, and working in a more iterative way. Ultimately his suggestion is to compose applications using the bounded context idea from Domain Driven Design to give better decoupling, keeping unrelated behaviours separate from each other, and preventing the big ball of mud from happening in the first place.

Let’s Talk HTTP In .Net Core

by Steve Gordon Website Twitter Slides Video

Let's Talk HTTP In .Net Core by Steve Gordon

Many modern applications make use of HTTP for communication for calls between microservices, to 3rd party REST APIs, or even to cloud services. HttpClient is widely used to make these calls, but can cause serious issues if not done properly.

Steve showed some example code for making a remote call using HttpClient, and highlighted the issues that can happen in the underlying TCP layer as a result of its use. He then adapted the code in several steps to show how to use the IHttpClientFactory (introduced in ASP.NET core 2.1) to do it properly, including integrating with DI containers and middleware.

He also introduced Polly, a library for introducing resilience and fault handling into an application. With Polly, it is easy to configure the behaviours that should happen when errors occur, including retries, trimeouts and fallback.

Steve finished off the talk by giving some general tips for working with HTTP calls.

Building Real Time Software With ASP.Net Core SignalR

by Rachel Appel Website Twitter Slides Video

Building Real Time Software With ASP.Net Core SignalR by Rachel Appel

This talk was a beginner’s introduction to SignalR, a technology that allows real-time asynchronous communication from a server to clients. SignalR has recently been rewritten to remove some of the problems of the previous versions, as well as adding some new features.

Rachel started by explaining how to add SignalR to a web application, including its core concept of hubs that allow the communication between clients and the server. She showed how to configure a hub and how to send messages via it, using both the C# and Javascript clients.

She concluded the talk by highlighting a couple of settings that need to be changed when deploying to Azure to allow SignalR to work properly.

Learning To Code By Making Games

by Willow Rendle Video

Learning To Code By Making Games by Willow Rendle

Starting with Scratch, then Hopscotch, and ending up at Unity, Willow (who is only 12 years old) described her journey in making games. Most of the talk revolved around Unity, its ecosystem, and the things that can be achieved with it.

Willow demonstrated some of the games she has made and the tools and techniques used to make them, including the many freely available models, textures, sounds and environments that can be downloaded from the Unit assert store. She then went on to demonstrate what is possible with Unity by showing off some of the freely available game kits (available for both 2D and 3D games) that are useful for learning from. These are full games that include the code and graphics that can be inspected to see how to achieve certain game effects and behaviours.

Security In Cloud Native

by Robin Minto Website Twitter Video

Security In Cloud Native by Robin Minto

Robin talked about the importance of security in modern software, especially in cloud based systems.

He started by giving an overview of cloud native applications and described the three major threats to them: vulnerable software, leaked credentials, and time. These threats can be mitigated using a security model developed by Pivotal called the 3Rs: Repair (fixing software, patching infrastructure, updating dependencies), Repave (destroy and recreate environments to destroy anything nasty that may have got inside), Rotate (change credentials, certificate, keys regularly).

Robin went on to talk about the different cloud providers (e.g. Microsoft Azure, Amazon AWS, Google Cloud), and how they will always be better than you at security - they employ more knowledgeable security people and have more visibility and exposure to the latest threats.

After introducing some of the security issues that are easy to do with cloud applications and how to mitigate them, Robin concluded by showing some tools to help to secure your cloud applications.

Turning Passion Into Experience

by Shawn Wildermuth Website Twitter Video

Turning Passion Into Experience by Shawn Wildermuth

Shawn spoke about the importance of having passion and excitement about what you do as a developer. It is not enough however to have just these attributes - you have to be willing to take risks alongside them. He talked about his own experiences of following technologies that even though short-lived, gave him the opportunity to learn new things. 

He gave examples from his own career of having imposter syndrome, and weighed it up against the arrogance that some developers use as camouflage to hide their insecurities. He also stressed the importance of saying “I don’t know” and that it is ok to do so, even as an experienced developer.

Shawn talked again about some of his failures, and highlighted how failures are useful because they are a learning opportunity and a moment of growth that you will be better for after experiencing. This has to be balanced against risk however, and you should understand what level of risk you are willing to take.

Career Advice For Programmers

by Tirsha Gee Website Twitter Video

Career Advice For Programmers by Trisha Gee

Trisha talked about how she now has the job she really wants (she is a developer advocate at Jetbrains and works remotely from Spain) after steering her career in that direction over a number of years.

She talked about the recruitment of developers and how the software industry is not very good at measuring programming ability, meaning that figuring out who to hire and reward is hard. As a result, being good at a job is not the same as looking good at a job. She then gave some tips on how to “hack the system” so that you can look like you are good at your job.

She concluded the talk by giving some advice on how to iterate on your career to move it forward.