Content

LunchBytes Series 1 Episode 5: See Clearly with Application Insights

LunchBytes Series 1 Episode 5: See Clearly with Application Insights

2022-06-15 Microsoft

Observability across multiple components in distributed systems can be a challenge, particularly when things go wrong and need investigation. Application Insights can simplify the challenge, and give deep insights into a distributed system at multiple levels.

GitHub - More than just a Git repository

GitHub - More than just a Git repository

2022-06-07

Chris is the blogger, podcaster, host and producer of his content platform CloudWithChris.com. He uses GitHub to manage, develop, build and deploy it. In this session, Chris explores how GitHub is more than just a Git repository, and how he uses it for his own work: GitHub Issues / Projects to plan the content (Blog & Podcast) backlog GitHub repositories to version control the website's source code (and recently open sourced the theme) GitHub Codespaces to make changes to the site from any device GitHub actions to build/deploy the site, and publish podcast mp3 files

LunchBytes Series 1 Episode 4: Microsoft Build 2022 Recap with Panel

LunchBytes Series 1 Episode 4: Microsoft Build 2022 Recap with Panel

2022-06-03 Microsoft

Microsoft Build is Microsoft’s annual Developer Conference. This year, it took place from 24th – 26th May 2022. Not only were there several fantastic announcements, but we were lucky to have a regional spotlight on the UK! Join our panel of Cloud Solution Architects and Technical Specialists for an interactive discussion on the announcements from last week.

ToolUp Tuesday - #8

ToolUp Tuesday - #8

2022-05-31

Chris and Matt deploy their containerized microservices to Azure Container Apps for the first time, pulling images from GitHub Packages and exploring the Dapr, KEDA, and Envoy integrations that Container Apps provides.

Tech Roundup - May 2022

Tech Roundup - May 2022

2022-05-29

Your monthly digest covering a packed May 2022 — headlined by Microsoft Build! In this episode, Chris walks through Azure Container Apps going generally available (and why it's one to watch), the limited access preview of Azure OpenAI Service with GPT-3 and Codex models, Azure DNS Private Resolver for hybrid name resolution, Open Service Mesh extension for Azure Arc GA, NGINX natively integrated on Azure, AKS host process containers in preview, Azure Communication Services Email GA, hierarchical partition keys in Cosmos DB, and much more. Plus GitHub and Azure DevOps highlights from a very busy month for the developer ecosystem.

Microsoft Build 2022

Microsoft Build 2022

2022-05-25

Come together with peers and experts May 24–26, 2022, for an engaging experience around the latest in innovation and tools that will help you stay informed. New for this year, experience market-specific content and connection opportunities for France, Germany, Japan, Latin America, and the UK. Join April Edwards and I, who will be hosting you!

Building Serverless Cloud-Native applications with Azure Container Apps

Building Serverless Cloud-Native applications with Azure Container Apps

2022-05-19

Technology is always evolving. We’ve seen physical machines turn into virtual. Virtual machines turn into containers. But often, those containers need an orchestrator like Kubernetes to reap the full benefits. What if there was a simpler option? Join Tighe and Chris as they introduce you to Azure Container Apps (Preview), Dapr and Keda - Helping you get started on your serverless cloud native journey.

ToolUp Tuesday - #7

ToolUp Tuesday - #7

2022-05-17

Chris and Matt containerize their Go microservices by writing Dockerfiles, building images, and publishing them to GitHub Packages container registry using GitHub Actions workflows with GITHUB_TOKEN authentication.

Using GitHub Actions to summarise your Go tests

2022-05-16 · 8 min

GitHub recently posted about a new GitHub Action that can be used to summarise your test results. The action is called test-summary/action, available at github.com/test-summary/action. There are several examples on how to use the action at github.com/test-summary/examples. However, there were no examples on how to use this with Go. I contributed a pull request which showed how to achieve this. In this post, I will show how to use the action with Go.

Interfaces in Go

2022-05-16 · 10 min

In this post, I'll be talking about how to use interfaces in Go. This is a continuation of my learning using the Go language. I'll use interfaces to create an application that interacts with several types of bank accounts.