Skip to content

Instantly share code, notes, and snippets.

View AArnott's full-sized avatar

Andrew Arnott AArnott

View GitHub Profile
@AArnott
AArnott / RSAParameterCalculation.cs
Created February 7, 2016 06:17
Calculate full RSA private key parameters from the P and Q parameters
using System;
using System.Numerics;
using System.Security.Cryptography;
using System.Text;
using Xunit;
public class RSA
{
[Fact]
public void WikipediaExample()
#ref System.Numerics.dll
var rsa = new RSACryptoServiceProvider(512);
var parameters = rsa.ExportParameters(true);
var p = new BigInteger(parameters.P.Reverse().ToArray());
var q = new BigInteger(parameters.Q.Reverse().ToArray());
var n = p * q;
Assert.Equal(parameters.Modulus.Reverse().ToArray(), n.ToByteArray());
@AArnott
AArnott / AwaitOnExclusiveTaskScheduler.cs
Last active February 6, 2016 21:33
Demonstrates awaiting on a TaskScheduler
using Microsoft.VisualStudio.Threading;
public class ThreadSafeDictionary<K, V>
{
private readonly TaskScheduler exclusiveScheduler = new ConcurrentExclusiveSchedulerPair().ExclusiveScheduler;
private readonly Dictionary<K, V> inner = new Dictionary<K, V>();
public async Task AddThenRemoveAsync(K key, V value, CancellationToken cancellationToken = default(CancellationToken)) {
await this.exclusiveScheduler; // Enabled by Microsoft.VisualStudio.Threading extension method.
cancellationToken.ThrowIfCancellationRequested();
@AArnott
AArnott / ThreadSafeDictionaryWithAsyncSemaphore.cs
Created February 6, 2016 21:30
Demonstrates the using syntax of AsyncSemaphore.
using Microsoft.VisualStudio.Threading; // From the Microsoft.VisualStudio.Threading NuGet package
public class ThreadSafeDictionary<K, V>
{
private readonly AsyncSemaphore semaphore = new AsyncSemaphore(1);
private readonly Dictionary<K, V> inner = new Dictionary<K, V>();
public async Task AddThenRemoveAsync(K key, V value, CancellationToken cancellationToken = default(CancellationToken)) {
using (await this.semaphore.EnterAsync(cancellationToken)) {
this.inner.Add(key, value);
@AArnott
AArnott / MultiThreadedCallsSingleThreadedViaSemaphoreWithYield.cs
Last active February 6, 2016 21:12
Demonstrates holding a semaphore and yielding
public class ThreadSafeDictionary<K, V>
{
private readonly SemaphoreSlim semaphore = new SemaphoreSlim(1);
private readonly Dictionary<K, V> inner = new Dictionary<K, V>();
public async Task AddThenRemoveAsync(K key, V value, CancellationToken cancellationToken = default(CancellationToken)) {
await this.semaphore.WaitAsync(cancellationToken);
try {
this.inner.Add(key, value);
await Task.Delay(50); // still holding semaphore, so no one can get it!
@AArnott
AArnott / ExclusiveTaskSchedulerWithAsyncWork.cs
Created February 6, 2016 21:08
Demonstrates calling non-thread-safe code using an exclusive TaskScheduler with an async delegate.
public class ThreadSafeDictionary<K, V>
{
private readonly TaskScheduler exclusiveScheduler = new ConcurrentExclusiveSchedulerPair().ExclusiveScheduler;
private readonly Dictionary<K, V> inner = new Dictionary<K, V>();
public Task AddThenRemoveAsync(K key, V value, CancellationToken cancellationToken = default(CancellationToken)) {
return TaskScheduler.Factory.StartNew(
async delegate {
this.inner.Add(key, value);
await Task.Delay(50);
@AArnott
AArnott / ThreadSafeDictionaryWithExclusiveTaskScheduler.cs
Last active February 6, 2016 21:09
Demonstrates using an exclusive TaskScheduler to call non-thread-safe code.
public class ThreadSafeDictionary<K, V>
{
private readonly TaskScheduler exclusiveScheduler = new ConcurrentExclusiveSchedulerPair().ExclusiveScheduler;
private readonly Dictionary<K, V> inner = new Dictionary<K, V>();
public Task AddAsync(K key, V value, CancellationToken cancellationToken = default(CancellationToken)) {
return TaskScheduler.Factory.StartNew(
() => this.inner.Add(key, value),
cancellationToken,
TaskCreationOptions.None,
@AArnott
AArnott / MultiThreadedCallsSingleThreadedViaSemaphore.cs
Last active February 6, 2016 21:03
Demonstrates using a .NET semaphore as a way to synchronize access to non-thread-safe code
public class ThreadSafeDictionary<K, V>
{
private readonly SemaphoreSlim semaphore = new SemaphoreSlim(1);
private readonly Dictionary<K, V> inner = new Dictionary<K, V>();
public async Task AddAsync(K key, V value, CancellationToken cancellationToken = default(CancellationToken)) {
await this.semaphore.WaitAsync(cancellationToken);
try {
this.inner.Add(key, value);
} finally {
@AArnott
AArnott / InliningTaskContinuations.cs
Created December 31, 2015 02:49
Demonstrates how completing a Task can result in inlining of continuations' execution
using System;
using System.Threading;
using System.Threading.Tasks;
class Program
{
static void Main()
{
var tcs = new TaskCompletionSource<bool>();
Task.Run(async delegate
@AArnott
AArnott / AndroidSDKManager.ps1
Last active July 19, 2023 13:30
PowerShell script for automating the installation of Android SDKs
$AndroidToolPath = "${env:ProgramFiles(x86)}\Android\android-sdk\tools\android.bat"
if (!(Test-Path $AndroidToolPath)) {
$AndroidToolPath = "$env:localappdata\Android\android-sdk\tools\android.bat"
} elseif (!(Test-Path $AndroidToolPath)) {
Write-Error "Unable to find Android SDK Manager tools."
return
}
Function Get-AndroidSDKs() {
$output = & $AndroidToolPath list sdk --all