Most Active Speaker

Brandon Minnick

Brandon Minnick

Developer Advocate @ AWS

Actions

Brandon is a Microsoft MVP and a .NET Developer Advocate at AWS where he gets to work closely with the developer community to help fellow mobile app and cloud developers make 5-star apps.

Brandon previously worked at Xamarin + Microsoft where he focused on creating mobile apps in C# using Xamarin + .NET MAUI.

An avid mobile app developer, Brandon loves to code and has contributed to and published countless apps!

Awards

  • Most Active Speaker 2023

Azure and Xamarin: Build the Mobile Apps of Tomorrow with Serverless, AI and Mobile

This hands-on workshop will take you from 0 to a fully working, cloud-connected, AI-powered mobile app.

We'll help you get setup with Visual Studio and the Xamarin tooling on either Windows or Mac, and connect your iPhone or your Android device ready to run an app.

Once you are set-up, we'll cover some basics of Xamarin and Xamarin.Forms, then it's on to setting up cloud services for storage, processing, and authentication.

The iOS and Android apps we build will combine accessing device hardware using Xamarin.Essentials, online AI services for face and emotion detection, and other services like authentication and blob storage, all built using a serverless architecture.

By the end of the workshop, you will have a production ready, AI and cloud-powered mobile app.

Introduction to Serverless with .NET + AWS Lambda

What is Serverless and how can AWS Lambda make your life better? Good question!
Join me for this session on Serverless where we'll answer all of the following questions:
- What is Serverless?
- How does it work?
- How can I scale my Serverless instance?
- Can I use Serverless like an API? How else can I trigger + run the code?
- And is it really cheaper? What's the catch?

The Pain and Success of Moving from Azure to AWS

In 2024, I ported my entire .NET cloud backend from Azure to AWS; databases, serverless apps, APIs, all of it. In this talk, I'll not only show you how you can do it yourself, but I'll also share the code and all of the lessons I've learned along the way!

As a long-time Azure user, I thought "How hard could it be?". It turns out that the workflows and toolsets for AWS are vastly different, and unfortunately, the docs aren't that great at helping us getting us there.

If you're seeking to embark on the same journey, come learn from my mistakes and gain the knowledge I wish I had before I spent months of my life learning AWS the hard way.

Creating Mobile Apps with .NET MAUI for iOS, Android, Windows and Mac

.NET MAUI is Microsoft's new framework for building cross-platform apps for iOS, Android, Windows and macOS, all using C#. Join me as we learn how to create our first .NET MAUI app.

As the lead developer for the .NET MAUI Community Toolkit, and a former Xamarin employee (.NET MAUI is the evolution of Xamarin), I know a thing or two about creating mobile apps in C#!

Join me as we discuss all of the tips + tricks to get started and do it yourself!

GitHub in the Trenches: How to Maintain Popular Open Source Libraries Without Losing Your Mind

Working in open-source can be difficult. As the creator and maintainer of multiple open-source libraries that have hundreds of external collaborators and millions of downloads, I've learned a thing or two about what to do (and what not to do!) to maintain an open-source library without losing your mind.

In this session, I share with you the best practices I've learned for maintaining successful open source libraries:
- Branch Protection Rules
- Project Workflows
- Issue + Pull Request Templates
- Issue Reporting + Bug Reproductions
- New Feature suggestions
- CI / CD Best Practices
- Building a Sustainable Community

Read The Documentation? Nah - Let's use Generative AI Instead!

CodeWhisperer is plugin for Visual Studio, Visual Studio Code and Jet Brains Rider that uses Generative AI to write our code for us!

Instead of spending our day pouring through documentation, we can instead describe to CodeWhisperer what we want, and let it show us how to implement it.

Join me for this session where we'll create new APIs, Mobile Apps and Web Apps without ever looking at the docs!

Using GraphQL with .NET MAUI

GraphQL is an exciting new API architecture that enables huge performance benefits over REST APIs. But why is it better than REST, and how do we interact with GraphQL APIs from our .NET MAUI apps?

Join me as we demonstrate how our mobile apps can benefit from GraphQL!

We’ll start by demonstrating the benefit of GraphQL: fewer API queries and smaller payloads.

We’ll then jump into a live-coding demo where we’ll learn how to consume GraphQL APIs in C#.

The .NET MAUI Community Toolkits: Three (3) Essential Libraries for Every .NET MAUI Developer

Three (3) Community Toolkits have revolutionized the way we create our .NET MAUI apps. They allow us to write more-concise, more-readable code, more quickly.

The MVVM Community Toolkit allows includes Source Generators that write all of the boilerplate MVVM code for you. The .NET MAUI Community Toolkit includes Converters, Behaviors, Custom Views like DrawingView + Popup + MediaElement; all of the essentials you need for your mobile apps. And the .NET MAUI Markup toolkit allows you to quickly + easily write your .NET MAUI UIs in C# (no XAML!).

As the creator of the .NET MAUI Community Toolkit, I am a bit biased, but I promise that you will use these libraries in all of your .NET MAUI apps going forward if you aren't already!

Join me in this session as we dive deep in the Community Toolkits to learn best practices and shine a spotlight on some of its best features!

Introduction to Serverless with AWS Lambda in C#

What is Serverless and how can AWS Lambda make your life better? Good question!

Join me for this session on Serverless where we'll cover
- What is Serverless?
- How does it work?
- How can I scale my Serverless instance?
- Can I use Serverless like an API? How else can I trigger + run the code?
- And is it really cheaper? What's the catch?

Choosing The Best AWS Service For Your Website + API

Have you ever been confused by the myriad of choices offered by AWS for hosting a website or an API?

Lambda, Elastic Beanstalk, Lightsail, Amplify, S3 (and more!) can each host websites + APIs. But which one should we choose?

Which one is cheapest? Which one is fastest? Which one will scale to meet our needs?

Join me in this session as we dive into each AWS hosting service to determine which one is best for your scenario and explain why!

Correcting Common Async/Await Mistakes in .NET 9

Did you know that the .NET compiler turns our async methods into classes? And that .NET adds a try/catch block to each of these classes, potentially hiding thrown exceptions? It's true!

In this session, we will learn how to best use async/await in C# by analyzing how .NET compiles our async code.

Join me as we take an existing app and optimize its async code together, showing off performance gains, better exception handling, improved run-time speed, and smaller app size!

Consuming GraphQL using C#

GraphQL has become a staple technology in the JavaScript community, but it is still relatively new and unknown in the C# world.

Join me as we explore the GraphQL tools available for .NET developers, like HotChocolate + Strawberry Shake, and how these tools make it easy to consume GraphQL APIs in C#!

Choosing The Best Mobile Framework

Choosing a mobile app framework is overwhelming - there are dozens to evaluate. From native frameworks written in Swift, ObjC, Java, and Kotlin to cross-platform frameworks like React Native and Xamarin, it is difficult to understand the key differences between them.

Join me as we review the pros and cons of popular mobile app frameworks to determine which one is right for you!

Building .NET MAUI UIs in C#

Many developers use XAML to create UIs in .NET MAUI, but did you know that everything you can do in XAML can be done in C#?

Join me as we discuss the benefits of C# vs XAML, learn how to create our UIs in C# by exploring new exciting frameworks like C# Markup and MVU in .NET MAUI that make creating mobile apps even easier!

Building GraphQL APIs in C#

GraphQL is an exciting new API architecture that enables huge performance benefits over REST APIs.

But what is GraphQL? Why is it better than REST? And how do you create a GraphQL API in C#.

Join me as we learn all of this and more!
- Introduction to GraphQL
- Difference between REST & GraphQL
- C# libraries for building GraphQL APIs
- How to create a GraphQL API in C# using Hot Chocolate
- How AWS App Sync makes it easy to create GraphQL APIs in the cloud

Easily Add Artificial Intelligence To Your Apps Using Machine Learning as a Service

Machine Learning is hard, but MLaaS makes it cheap and easy to add artificial intelligence to your apps!

Companies like Microsoft, Amazon and Google have trained world-class models that allow us to implement AI with one line of code, making it easier than ever to implement Facial Recognition, Emotion Analysis, Optical Character Recognition and more!

Join me for a live-coding session to learn how to easily add Facial Recognition and Text Sentiment Analysis to your existing apps, and how we can leverage GenAI tools to write the code for us!

Copenhagen Developers Festival 2024 Sessionize Event Upcoming

August 2024 Copenhagen, Denmark

KCDC 2024 Sessionize Event

June 2024 Kansas City, Missouri, United States

NDC Oslo 2024 Sessionize Event

June 2024 Oslo, Norway

Techorama 2024 Belgium Sessionize Event

May 2024 Antwerpen, Belgium

Copenhagen Developers Festival 2023 Sessionize Event

August 2023 Copenhagen, Denmark

KCDC 2023 Sessionize Event

June 2023 Kansas City, Missouri, United States

Orlando Code Camp 2023 Sessionize Event

March 2023 Sanford, Florida, United States

Expert Day for Xamarin presents .NET MAUI Sessionize Event

February 2023 Köln, Germany

NDC London 2023 Sessionize Event

January 2023 London, United Kingdom

NDC Oslo 2022 Sessionize Event

September 2022 Oslo, Norway

KCDC 2022 Sessionize Event

August 2022 Kansas City, Missouri, United States

NDC Oslo 2021 Sessionize Event

November 2021 Oslo, Norway

Update Conference Prague 2021 Sessionize Event

November 2021 Prague, Czechia

Xamarin Assemble 2020 **Online** Sessionize Event

July 2020

NDC Oslo 2020 Sessionize Event

June 2020 Oslo, Norway

NDC Porto 2020 Sessionize Event

April 2020 Porto, Portugal

Orlando Codecamp & Tech Conference 2020 Sessionize Event

March 2020 Sanford, Florida, United States

Techorama Netherlands 2019 Sessionize Event

October 2019 Ede, The Netherlands

NDC Oslo 2019 Sessionize Event

June 2019 Oslo, Norway

NDC Sydney 2018 Sessionize Event

September 2018 Sydney, Australia

Brandon Minnick

Developer Advocate @ AWS

Actions

Please note that Sessionize is not responsible for the accuracy or validity of the data provided by speakers. If you suspect this profile to be fake or spam, please let us know.

Jump to top