I hereby claim:
- I am flytzen on github.
- I am flytzen (https://keybase.io/flytzen) on keybase.
- I have a public key whose fingerprint is F3B5 A5DA B581 6906 6153 334B BB01 F1C0 068C 6115
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
namespace EncryptionWithCertificate | |
{ | |
using System; | |
using System.Security.Cryptography; | |
using System.Security.Cryptography.X509Certificates; | |
using System.Text; | |
class Program | |
{ | |
//// makecert -pe MyCryptCert.cer -ss my -n "CN=Frans" -sky exchange -r |
namespace EncryptionWithCertificate | |
{ | |
using System; | |
using System.Security.Cryptography; | |
using System.Security.Cryptography.X509Certificates; | |
using System.Text; | |
class Program | |
{ | |
//// makecert -pe MyCryptCert.cer -ss my -n "CN=Frans2" -sky exchange -r |
namespace MissingProperty | |
{ | |
using System; | |
using System.Linq; | |
using System.Security; | |
using System.Threading.Tasks; | |
using Microsoft.Azure.Documents; | |
using Microsoft.Azure.Documents.Client; |
using System; | |
namespace MACPlay | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int id = 200; | |
DateTime expiry = DateTime.UtcNow.AddMinutes(15); |
{"lastUpload":"2020-12-21T12:22:09.706Z","extensionVersion":"v3.4.3"} |
using System; | |
using System.Collections.Generic; | |
using System.Data; | |
using System.Linq; | |
using System.Text; | |
namespace ArrayPlay | |
{ | |
class Program | |
{ |
#!/bin/sh | |
# NOTE: On WSL, if you have not explicitly installed the az cli in the shell, it will use the one in windows. | |
# In that case, the ssh key will put into a windows directory and won't subseqentl be used when trying to ssh to the vm | |
group=fl-locust-test | |
location=northeurope | |
vmName=fl-locust-server | |
uid=locustuser |
// First: | |
// dotnet add package BenchmarkDotNet | |
// Run like this: | |
// dotnet run -c Release | |
using System.Security.Cryptography; | |
using BenchmarkDotNet.Attributes; | |
using BenchmarkDotNet.Running; |