Cross-Platform IoT Programming with .NET Core 3.0

https://msdn.microsoft.com/en-us/magazine/mt833493

Send A Patch To Someone Using `git format-patch`

https://thoughtbot.com/blog/send-a-patch-to-someone-using-git-format-patch

IS 7.5 – How to enable IIS Configuration Auditing?

https://blogs.msdn.microsoft.com/webtopics/2010/03/19/iis-7-5-how-to-enable-iis-configuration-auditing/

Image Classification: Face Detection and Identification using Azure Face API Cognitive Service

https://www.codeproject.com/Articles/5061022/Image-Classification-Face-Detection-and-Identifica

Windows on Linode

https://github.com/ClickSimply/docs/blob/windows-on-linode/docs/tools-reference/windows-on-linode/installing-windows-on-linode-vps.md

If VirtualBox does not start the VM:

RUN > CMD > bcdedit /set hypervisorlaunchtype off
then reboot host machine.

Expand virtual hard disks on a Linux VM with the Azure CLI

az login
az account set --subscription "Visual Studio Premium with MSDN"
az vm deallocate --resource-group myResourceGroup --name myVM

az disk list \
    --resource-group dev-desktop \
    --query '[*].{Name:name,Gb:diskSizeGb,Tier:accountType}' \
    --output table
	
az disk update \
    --resource-group dev-desktop \
    --name myDataDisk \
    --size-gb 256	
		
az vm start --resource-group myResourceGroup  --name myVM	

Original link: https://docs.microsoft.com/en-us/azure/virtual-machines/linux/expand-disks