- Microsoft Documentation
- Welcome to the commercial marketplace | Microsoft Docs
- Plan a virtual machine offer
- Create an Azure virtual machine offer on Azure Marketplace ...
- Common questions about VM
- Relevant video walkthroughs related to VM publishing
- [Using Self-Test A
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.IO; | |
| using System.Threading.Tasks; | |
| using Azure; | |
| using Azure.Storage.Blobs; | |
| using Azure.Storage.Blobs.Models; | |
| static class Program | |
| { | |
| // https://github.com/Azure/azure-sdk-for-net/issues/22022 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| mkdir device server | |
| cd device | |
| # Create a key pair | |
| openssl genrsa -out device-priv.pem 2048 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| h1 {color: blue;} | |
| p {color: red;} | |
| </style> | |
| </head> | |
| <body> | |
| <h1>This is a heading</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace JoseJwtTester | |
| { | |
| using System; | |
| using System.Text.Json; | |
| using System.Text.Json.Serialization; | |
| using Jose; // <PackageReference Include="jose-jwt" Version="2.6.0" /> | |
| public class ApplicationCreationRequest | |
| { | |
| [JsonPropertyName("tenantId")] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # --proxy http://127.0.0.1:8888/ --insecure \ | |
| aadTenant="chgeuerfte.onmicrosoft.com" | |
| subscriptionId="724467b5-bee4-484b-bf13-d6a5505d2b51" | |
| resourceGroup="longterm" | |
| storageAccountName="chgeuer" | |
| containerName="aadtest" | |
| blobName="index.html" |
For a customer project, I needed to define an interface, and an implementation of that interface, implementing a factory. I wanted to pass in a creation lambda (from C#) to the factory, and the Create() function under the hood should invoke the lambda.
open SystemVideo: https://www.youtube.com/watch?v=ybkYHYKYeNw
00:02:45-00:18:00 "Welcome to fsharpConf 2020.mp4"
00:18:00-01:03:40 "Hedy - A gradual programming language for education (Felienne Hermans).mp4"
01:14:42-01:50:26 "Formatting FSharp source code (Florian Verdonck).mp4"
01:55:40-02:21:24 "When Korean Hackers Met FSharp (Sang Kil Cha, JongHyup Lee).mp4"
03:06:20-03:55:07 "On Independence! (Don Syme).mp4"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace XUnitLoadTestProject | |
| { | |
| using Microsoft.Extensions.Configuration; | |
| using Microsoft.FSharp.Core; | |
| using NBomber.Contracts; | |
| using NBomber.CSharp; | |
| using Serilog; | |
| using System; | |
| using System.Net; | |
| using System.Net.Http; |