Videos

Discussing the Cloud with Chris GitHub Architecture and GitHub setup
In this session, Chris is joined by Karl Cooke - Implementation Specialist at Action Point Technology Group, Blogger at https://irishtechie.com. Chris and Karl talk all about the CloudWithChris.com architecture and the decisions surrounding the GitHub setup that drive the deployment and management of CloudWithChris.com.

V016 - Weekly Technology Vlog #16
In this video, Chris provides another update (Update #16!) on Cloud with Chris, updates on what's coming soon and Azure, Azure DevOps and GitHub related news!

V015 - Weekly Technology Vlog #15
Welcome to weekly Vlog #15! We'll be covering the latest from Azure, Azure DevOps, GitHub and Cloud with Chris!

34 - The Bulkhead Pattern (Isolate your components to prevent failures)
Do you know what caused the Titanic to sink? Poorly designed bulkheads. How can you ensure resilience between components in your cloud application? Effectively designed bulkheads! In this session, join Chris as he explores how the bulkhead pattern can help you prevent excessive load or failures in one service impacting the consumers of that service!

CGN3 - Cloud Gaming Notes Episode 3 - Inventory and Economy
Ever thought about what it takes to host a game in the Cloud? Well, this is the series for you! On the first Wednesday of every month, we explore Cloud Concepts that impact your journey to a connected multiplayer gaming experience! In this third session, we'll play Sea of Thieves and talk about building an inventory system and economy that powers certain games like MMORPGs or open world games like Sea of Thieves.

Cloud Drops - Using Microsoft Learn to get started with Azure
Have you wanted to get started learning Azure, but you're not quite sure where to start? Then you need to check out Microsoft Learn! Microsoft Learn is a hub for learning content, including modules and learning paths, information around the official Microsoft certifications, and a curated video platform called learn tv.

V014 - Tech Roundup #14 Azure, DevOps & GitHub Blogs, Azure Updates & New CloudWithChris content
In this livestream, Chris covers the latest and greatest in the Azure, Azure DevOps & GitHub world, as well as the latest and upcoming content releases on Cloud with Chris!

Cloud Drops - How Windows Terminal can make YOU productive with Azure
Windows Terminal is a modern application that allows you to use your command-line of choice, whether that is the Windows Command Prompt, PowerShell, PowerShell Core, Windows Subsystem for Linux or the Azure Cloud Shell. This Cloud Drop shows you how to install Windows Terminal, and some tips/tricks in making you productive in Azure!

33 - External Config and Claim Check Pattern - Easier Management and Externalising Payloads
How often do you think about the configuration of your applications across environments/regions/deployment boundaries? What if that configuration was stored somewhere externally but centralised, to make management easier? That's the idea behind the external config pattern! How about another scenario - What about those times where you've wanted to use a messaging service, but your payload is too big? Thought about externalising that payload too? Well, that's the Claim-check pattern! Join Peter and Chris as they talk about both of these patterns in this episode of Cloud with Chris!

Cloud Drops - Git 101 - Why use Git, and how to get started
Have you ever had a scenario where you need to maintain versions of a set of files? Or have you needed to collaborate on files with colleagues in some way? That's a common scenario for developers, infrastructure engineers or data scientists/developers. It's an increasingly common problem. Some people solve this using file shares or FTP Servers with numerous files, v1, v2, v2-final, but that doesn't scale and is quite a messy approach. Surely there is a better way? That's where a Version Control System can really help you. One such option is Git. Git is a distributed version control system, which means that rather than relying on a central location to host and store the entire set of files and history, each machine has a full version of the codebase and history locally. This means each user can be productive locally and independently on their own machine. Git is also optimised to be very lightweight and perfomant.