Desktop Cloud and Hardware 4 Windows
From Azure Autoscaling to Next Gen Desktop Development not Forgetting Firmware on the Way
Saturday, 11 January 2025
The Helm Package Manager for Kubernetes
Tuesday, 3 December 2024
Learning about .eml files
An .eml file is a plaintext version of an email which users can save to devices. These files can be sent and received via RFC-822 compliant programs. In Windows you can also right-click on an .eml file and open it in Microsoft Word.
Opening an .eml in Notepad you may see sections specifying DKIM-Signature designed to prevent email spoofing.
Wednesday, 14 August 2024
Using Resource Manager templates to create virtual networks
Here is a good tutorial that covers a lot of infrastructure-as-code concepts in the context of creating a virtual network with two subnets using Resource manager templates (also referred to as Azure Resource Manager, or ARM, templates).
Cloud Services on Snowflake
How does Snowflake store data?
Tuesday, 13 August 2024
gRPC for .NET
The recommended library for using gRPC in .NET is grpc/grpc-dotnet under the Apache 2.0 license (The original implementation is now deprecated). gRPC is a (language agnostic) remote procedure call framework designed for high performance. Coding is structured around .proto files explained here. Common use cases include gRPC authentication (gRPC can converse with a variety of authentication systems), compression and other distributed communication scenarios. gRPC is often used with protobuf.